diff --git a/NEWS.txt b/NEWS.txt index c4ad0eeef..56c3acded 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,4 +1,4 @@ -Version UNRELEASED - 2012-XX-XX +Version 1.0 - 2012-06-XX * Add %license% tag * Made %writer% available to tagger scripts and plugins with contents of songwriter (PICARD-21) * Allow two multi-valued variables to be merged in tagger scripting (PICARD-139) diff --git a/picard/__init__.py b/picard/__init__.py index 3af63ab45..008540d99 100644 --- a/picard/__init__.py +++ b/picard/__init__.py @@ -17,7 +17,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -version_info = (0, 16, 0, 'final', 0) +version_info = (1, 0, 0, 'dev', 0) if version_info[3] == 'final': if version_info[2] == 0: diff --git a/picard/acoustid.py b/picard/acoustid.py index 0662d8c2f..2f91cba24 100644 --- a/picard/acoustid.py +++ b/picard/acoustid.py @@ -20,7 +20,7 @@ from collections import deque from PyQt4 import QtCore from picard.const import ACOUSTID_KEY -from picard.util import partial, call_next +from picard.util import partial, call_next, find_executable from picard.webservice import XmlNode @@ -32,6 +32,11 @@ class AcoustIDClient(QtCore.QObject): self._running = 0 self._max_processes = 2 + if not self.config.setting["acoustid_fpcalc"]: + fpcalc_path = find_executable("fpcalc") + if fpcalc_path: + self.config.setting["acoustid_fpcalc"] = fpcalc_path + def init(self): pass diff --git a/picard/ui/options/fingerprinting.py b/picard/ui/options/fingerprinting.py index 9b8ad3ce8..3b4aba02b 100644 --- a/picard/ui/options/fingerprinting.py +++ b/picard/ui/options/fingerprinting.py @@ -20,7 +20,7 @@ import os, sys import picard.musicdns from PyQt4 import QtCore, QtGui -from picard.util import webbrowser2 +from picard.util import webbrowser2, find_executable from picard.config import BoolOption, TextOption from picard.ui.options import OptionsPage, OptionsCheckError, register_options_page from picard.ui.ui_options_fingerprinting import Ui_FingerprintingOptionsPage @@ -77,7 +77,7 @@ class FingerprintingOptionsPage(OptionsPage): if self.ui.enable_fingerprinting.isChecked() and self.ui.use_acoustid.isChecked(): self.ui.acoustid_settings.setEnabled(True) if self.ui.acoustid_fpcalc.text().isEmpty(): - fpcalc_path = self.find_executable("fpcalc") + fpcalc_path = find_executable("fpcalc") if fpcalc_path: self.ui.acoustid_fpcalc.setText(fpcalc_path) else: @@ -95,16 +95,5 @@ class FingerprintingOptionsPage(OptionsPage): def acoustid_apikey_get(self): webbrowser2.open("http://acoustid.org/api-key") - def find_executable(self, name): - if sys.platform == 'win32': - executables = [name + '.exe'] - else: - executables = [name] - for path in os.environ.get('PATH', '').split(os.pathsep): - for executable in executables: - f = os.path.join(path, executable) - if os.path.isfile(f): - return f - register_options_page(FingerprintingOptionsPage) diff --git a/picard/util/__init__.py b/picard/util/__init__.py index 74b4c98e6..864a0293b 100644 --- a/picard/util/__init__.py +++ b/picard/util/__init__.py @@ -18,7 +18,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -import os.path +import os import re import sys import unicodedata @@ -322,6 +322,20 @@ def find_existing_path(path): return decode_filename(path) +def find_executable(name): + if sys.platform == 'win32': + executables = [name + '.exe'] + else: + executables = [name] + paths = [os.path.dirname(sys.executable)] if sys.executable else [] + paths += os.environ.get('PATH', '').split(os.pathsep) + for path in paths: + for executable in executables: + f = os.path.join(path, executable) + if os.path.isfile(f): + return f + + def call_next(func): def func_wrapper(self, *args, **kwargs): next = args[0] diff --git a/po/de.po b/po/de.po index d64c5c053..8a3545d84 100644 --- a/po/de.po +++ b/po/de.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: picard\n" "Report-Msgid-Bugs-To: http://bugs.musicbrainz.org/\n" "POT-Creation-Date: 2011-10-08 12:39+0200\n" -"PO-Revision-Date: 2012-02-05 10:41+0000\n" -"Last-Translator: Wieland Hoffmann \n" +"PO-Revision-Date: 2012-03-22 22:57+0000\n" +"Last-Translator: Philipp Wolfer \n" "Language-Team: German \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-Launchpad-Export-Date: 2012-02-06 04:39+0000\n" -"X-Generator: Launchpad (build 14747)\n" +"X-Launchpad-Export-Date: 2012-03-24 04:33+0000\n" +"X-Generator: Launchpad (build 14981)\n" "Generated-By: pygettext.py 1.5\n" #: ../picard/ui/ui_cdlookup.py:57 @@ -51,11 +51,11 @@ msgstr "CD-R" #: ../picard/const.py:51 msgid "HDCD" -msgstr "" +msgstr "HDCD" #: ../picard/const.py:52 msgid "8cm CD" -msgstr "" +msgstr "8cm CD" #: ../picard/const.py:53 msgid "Vinyl" @@ -79,11 +79,11 @@ msgstr "Digitale Medien" #: ../picard/const.py:58 msgid "USB Flash Drive" -msgstr "" +msgstr "USB-Flash-Laufwerk" #: ../picard/const.py:59 msgid "slotMusic" -msgstr "" +msgstr "slotMusic" #: ../picard/const.py:60 msgid "Cassette" @@ -107,7 +107,7 @@ msgstr "SACD" #: ../picard/const.py:65 msgid "DualDisc" -msgstr "" +msgstr "DualDisc" #: ../picard/const.py:66 msgid "MiniDisc" @@ -123,7 +123,7 @@ msgstr "HD-DVD" #: ../picard/const.py:69 msgid "Videotape" -msgstr "" +msgstr "Videokassette" #: ../picard/const.py:70 msgid "VHS" @@ -131,7 +131,7 @@ msgstr "VHS" #: ../picard/const.py:71 msgid "Betamax" -msgstr "" +msgstr "Betamax" #: ../picard/const.py:72 msgid "VCD" @@ -143,7 +143,7 @@ msgstr "SVCD" #: ../picard/const.py:74 msgid "UMD" -msgstr "" +msgstr "Universal Media Disc" #: ../picard/const.py:75 ../picard/ui/ui_options_releases.py:227 msgid "Other" @@ -159,7 +159,7 @@ msgstr "" #: ../picard/const.py:78 msgid "Reel-to-reel" -msgstr "" +msgstr "Tonband" #: ../picard/const.py:79 msgid "DAT" @@ -175,7 +175,7 @@ msgstr "Notenrolle" #: ../picard/const.py:82 msgid "DCC" -msgstr "" +msgstr "Digital Compact Cassette" #: ../picard/const.py:87 msgid "Bangladesh" @@ -1303,7 +1303,7 @@ msgstr "Norwegisches Bokmål" #: ../picard/const.py:372 ../picard/const.py:642 msgid "Low German" -msgstr "" +msgstr "Niederdeutsch" #: ../picard/const.py:373 ../picard/const.py:480 msgid "Dutch" @@ -2315,7 +2315,7 @@ msgstr "" #: ../picard/const.py:658 msgid "Mongolian" -msgstr "" +msgstr "Mongolisch" #: ../picard/const.py:659 msgid "Mongolian China" @@ -2375,7 +2375,7 @@ msgstr "" #: ../picard/const.py:673 msgid "Norwegian" -msgstr "" +msgstr "Norwegisch" #: ../picard/const.py:676 msgid "Norwegian Nynorsk" @@ -2755,7 +2755,7 @@ msgstr "" #: ../picard/const.py:785 msgid "Swiss German" -msgstr "" +msgstr "Schweizerdeutsch" #: ../picard/const.py:786 msgid "Swiss German Switzerland" @@ -2763,7 +2763,7 @@ msgstr "" #: ../picard/const.py:787 msgid "Syriac" -msgstr "" +msgstr "Syrisch" #: ../picard/const.py:788 msgid "Syriac Syria" @@ -2827,7 +2827,7 @@ msgstr "" #: ../picard/const.py:804 msgid "Tibetan" -msgstr "" +msgstr "Tibetanisch" #: ../picard/const.py:805 msgid "Tibetan China" @@ -2967,7 +2967,7 @@ msgstr "" #: ../picard/const.py:842 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamesisch" #: ../picard/const.py:843 msgid "Vietnamese Vietnam" @@ -3072,7 +3072,7 @@ msgstr "Konnnte PUID für Datei %s nicht laden." #: ../picard/acoustid.py:106 #, python-format msgid "Could not find AcoustID for file %s" -msgstr "" +msgstr "Konnte keine AcoustID für die Datei %s finden" #: ../picard/acoustid.py:110 ../picard/musicdns/__init__.py:100 #, python-format @@ -3081,16 +3081,16 @@ msgstr "Frage akustischen Fingerabdruck der Datei %s ab …" #: ../picard/acoustidmanager.py:72 msgid "Submitting AcoustIDs..." -msgstr "" +msgstr "Übermittle AcoustIDs..." #: ../picard/acoustidmanager.py:77 #, python-format msgid "AcoustID submission failed: %s" -msgstr "" +msgstr "AcoustID-Übermittlung schlug fehl: %s" #: ../picard/acoustidmanager.py:79 msgid "AcoustIDs successfully submitted!" -msgstr "" +msgstr "AcoustIDs erfolgreich übermittelt!" #: ../picard/cluster.py:165 ../picard/cluster.py:176 #, python-format @@ -3118,7 +3118,7 @@ msgstr "Übertrage PUIDs …" #: ../picard/puidmanager.py:68 #, python-format msgid "PUIDs submission failed: %d" -msgstr "" +msgstr "PUID-Übermittlung fehlgeschlagen: %d" #: ../picard/puidmanager.py:70 msgid "PUIDs successfully submitted!" @@ -3482,7 +3482,7 @@ msgstr "Autor" #: ../picard/ui/ui_options_plugins.py:135 msgid "Install plugin..." -msgstr "" +msgstr "Plugin installieren..." #: ../picard/ui/ui_options_plugins.py:136 msgid "Open plugin folder" @@ -3557,7 +3557,7 @@ msgstr "Erweiterte Syntax für Suchanfragen verwenden" #: ../picard/ui/ui_options_interface.py:62 msgid "Show a quit confirmation dialog for unsaved changes" -msgstr "" +msgstr "Zeige einen Beendenbestätigungs-Dialog für ungespeicherte Änderungen" #: ../picard/ui/ui_options_interface.py:63 msgid "User interface language:" @@ -3865,7 +3865,7 @@ msgstr "Für Lookups zu benutzendes CD-Laufwerk:" #: ../picard/ui/ui_options_fingerprinting.py:68 msgid "Fingerprinting Systems" -msgstr "" +msgstr "Fingerabdrucksystem" #: ../picard/ui/ui_options_fingerprinting.py:69 msgid "Use AmpliFIND (formerly MusicDNS)" @@ -3881,11 +3881,11 @@ msgstr "AcoustID Einstellungen" #: ../picard/ui/ui_options_fingerprinting.py:72 msgid "Fingerprinter:" -msgstr "" +msgstr "Fingerabdruckerzeuger" #: ../picard/ui/ui_options_fingerprinting.py:74 msgid "Download..." -msgstr "" +msgstr "Herunterladen ..." #: ../picard/ui/ui_options_fingerprinting.py:75 msgid "API key:" @@ -3893,7 +3893,7 @@ msgstr "API-Key:" #: ../picard/ui/ui_options_fingerprinting.py:76 msgid "Get API key..." -msgstr "" +msgstr "Hole API-Schlüssel..." #: ../picard/ui/puidsubmit.py:31 ../picard/ui/options/plugins.py:125 msgid "File" @@ -3982,6 +3982,8 @@ msgid_plural "" "There are %s unsaved files. Closing Picard will lose all unsaved changes." msgstr[0] "" msgstr[1] "" +"Es gibt %s ungesicherte Dateien. Das Beenden von Picard führt zum Verlust " +"aller ungespeicherten Änderungen." #: ../picard/ui/mainwindow.py:145 msgid "&Quit Picard" @@ -3990,11 +3992,11 @@ msgstr "Picard &verlassen" #: ../picard/ui/mainwindow.py:196 #, python-format msgid " Files: %(files)d, Pending Files: %(pending)d " -msgstr "" +msgstr " Dateien: %(files)d, unerledigte Dateien: %(pending)d " #: ../picard/ui/mainwindow.py:225 msgid "Submission Error" -msgstr "" +msgstr "Übermittlungsfehler" #: ../picard/ui/mainwindow.py:226 msgid "" @@ -4260,7 +4262,7 @@ msgstr "Metadaten" #: ../picard/ui/ui_options_metadata.py:251 msgid "Translate artist names to this locale where possible:" -msgstr "" +msgstr "Übersetze Künstlernamen in dieses Gebietsschema falls möglich" #: ../picard/ui/ui_options_metadata.py:252 msgid "Convert Unicode punctuation characters to ASCII" @@ -4284,7 +4286,7 @@ msgstr "Standardisierung" #: ../picard/ui/ui_options_metadata.py:257 msgid "As on cover" -msgstr "" +msgstr "Wie auf dem Cover" #: ../picard/ui/ui_options_metadata.py:258 msgid "Standardized" @@ -4356,7 +4358,7 @@ msgstr "Alle zurücksetzen" #: ../picard/ui/ui_options_releases.py:229 msgid "Preferred release countries" -msgstr "" +msgstr "Bevorzugte Veröffentlichungsländer" #: ../picard/ui/ui_options_releases.py:230 #: ../picard/ui/ui_options_releases.py:233 @@ -4394,7 +4396,7 @@ msgstr "Lade...." #: ../picard/ui/itemviews.py:387 msgid "[no release info]" -msgstr "" +msgstr "[Keine Veröffentlichungsinformationen]" #: ../picard/ui/itemviews.py:404 msgid "&Plugins" @@ -4459,7 +4461,7 @@ msgstr "" #: ../picard/ui/options/fingerprinting.py:31 msgid "Fingerprinting" -msgstr "" +msgstr "Erzeuge Fingerabdruck" #: ../picard/ui/options/tags.py:29 msgid "Tags" @@ -4479,6 +4481,7 @@ msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " Achim Zien https://launchpad.net/~achimzien\n" +" Daniel Dietrich https://launchpad.net/~shaddowy2\n" " Lukáš Lalinský https://launchpad.net/~luks\n" " Maximilian R. https://launchpad.net/~max-r\n" " Nikki https://launchpad.net/~nikki\n" diff --git a/po/eo.po b/po/eo.po index 8af8647bd..fa1d34621 100644 --- a/po/eo.po +++ b/po/eo.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: picard\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-10-08 12:39+0200\n" -"PO-Revision-Date: 2012-01-05 21:25+0000\n" -"Last-Translator: Kristjan SCHMIDT \n" +"PO-Revision-Date: 2012-03-27 01:02+0000\n" +"Last-Translator: Lucas Larson \n" "Language-Team: Esperanto \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-Launchpad-Export-Date: 2012-01-06 04:44+0000\n" -"X-Generator: Launchpad (build 14637)\n" +"X-Launchpad-Export-Date: 2012-03-28 04:34+0000\n" +"X-Generator: Launchpad (build 15027)\n" #: ../picard/const.py:49 msgid "CD" @@ -24,7 +24,7 @@ msgstr "KD" #: ../picard/const.py:50 msgid "CD-R" -msgstr "" +msgstr "KD-R" #: ../picard/const.py:51 msgid "HDCD" @@ -112,11 +112,11 @@ msgstr "" #: ../picard/const.py:72 msgid "VCD" -msgstr "" +msgstr "VKD" #: ../picard/const.py:73 msgid "SVCD" -msgstr "" +msgstr "SVKD" #: ../picard/const.py:74 msgid "UMD" @@ -132,7 +132,7 @@ msgstr "LaserDisko" #: ../picard/const.py:77 msgid "Cartridge" -msgstr "" +msgstr "Kartoĉo" #: ../picard/const.py:78 msgid "Reel-to-reel" @@ -144,7 +144,7 @@ msgstr "" #: ../picard/const.py:80 msgid "Wax Cylinder" -msgstr "" +msgstr "Vaksa cilindro" #: ../picard/const.py:81 msgid "Piano Roll" @@ -268,7 +268,7 @@ msgstr "Tokelao" #: ../picard/const.py:115 msgid "Guinea-Bissa" -msgstr "" +msgstr "Gvineo-Bisaŭo" #: ../picard/const.py:116 msgid "Guam" @@ -372,7 +372,7 @@ msgstr "Honduro" #: ../picard/const.py:141 msgid "Heard and Mc Donald Islands" -msgstr "" +msgstr "Herda Insulo kaj Makdonaldaj Insuloj" #: ../picard/const.py:142 msgid "Venezuela" @@ -392,7 +392,7 @@ msgstr "Portugalujo" #: ../picard/const.py:146 msgid "Svalbard and Jan Mayen Islands" -msgstr "" +msgstr "Svalbardo kaj Janmajeno" #: ../picard/const.py:147 msgid "Paraguay" @@ -436,7 +436,7 @@ msgstr "Polujo" #: ../picard/const.py:157 msgid "St. Pierre and Miquelon" -msgstr "" +msgstr "Sankta Piero kaj Mikelono" #: ../picard/const.py:158 msgid "Zambia" @@ -500,7 +500,7 @@ msgstr "Eritreo" #: ../picard/const.py:173 msgid "Moldova, Republic of" -msgstr "" +msgstr "Moldavio, Respubliko de" #: ../picard/const.py:174 msgid "Madagascar" @@ -664,7 +664,7 @@ msgstr "Nov-Zelando" #: ../picard/const.py:214 msgid "Zaire" -msgstr "" +msgstr "Kongo (Kinŝasa)" #: ../picard/const.py:215 msgid "Nepal" @@ -752,7 +752,7 @@ msgstr "Svazilando" #: ../picard/const.py:236 msgid "Syrian Arab Republic" -msgstr "" +msgstr "Sirio, Araba Respubliko" #: ../picard/const.py:237 msgid "Kyrgyzstan" @@ -848,7 +848,7 @@ msgstr "Danujo" #: ../picard/const.py:260 msgid "Virgin Islands (British)" -msgstr "" +msgstr "Britaj Virgulininsuloj" #: ../picard/const.py:261 msgid "Germany" @@ -888,7 +888,7 @@ msgstr "Sankta Lucio" #: ../picard/const.py:270 msgid "Lao People's Democratic Republic" -msgstr "" +msgstr "Laoso, Popola Demokrata Respubliko de" #: ../picard/const.py:271 msgid "Tuvalu" @@ -960,15 +960,15 @@ msgstr "Turkoj kaj Kajkoj" #: ../picard/const.py:288 msgid "Libyan Arab Jamahiriya" -msgstr "" +msgstr "Libia Araba Ĝamahario" #: ../picard/const.py:289 msgid "Vatican City State (Holy See)" -msgstr "" +msgstr "Vatikano (Sankta Seĝo)" #: ../picard/const.py:290 msgid "Saint Vincent and The Grenadines" -msgstr "" +msgstr "Sankta Vincento kaj Grenadinoj" #: ../picard/const.py:291 msgid "United Arab Emirates" @@ -992,7 +992,7 @@ msgstr "Angvilo" #: ../picard/const.py:296 msgid "Virgin Islands (U.S.)" -msgstr "" +msgstr "Usonaj Virgulininsuloj" #: ../picard/const.py:297 msgid "Iceland" @@ -1048,7 +1048,7 @@ msgstr "Barato" #: ../picard/const.py:310 msgid "Tanzania, United Republic of" -msgstr "" +msgstr "Tanzanio, Unuiĝinta Respubliko de" #: ../picard/const.py:311 msgid "Azerbaijan" @@ -1068,7 +1068,7 @@ msgstr "Ukrainujo" #: ../picard/const.py:315 msgid "Qatar" -msgstr "" +msgstr "Kataro" #: ../picard/const.py:316 msgid "Mozambique" @@ -1080,7 +1080,7 @@ msgstr "Bosnio kaj Hercegovino" #: ../picard/const.py:318 msgid "Congo, The Democratic Republic of the" -msgstr "" +msgstr "Kongo, la Demokratia Respubliko de la" #: ../picard/const.py:319 msgid "Serbia and Montenegro (historical, 2003-2006)" @@ -1112,7 +1112,7 @@ msgstr "Slovakujo" #: ../picard/const.py:326 msgid "Soviet Union (historical, 1922-1991)" -msgstr "" +msgstr "Sovet-Unio" #: ../picard/const.py:327 msgid "East Timor" @@ -1132,11 +1132,11 @@ msgstr "" #: ../picard/const.py:331 msgid "[Unknown Country]" -msgstr "" +msgstr "[Nekonata lando]" #: ../picard/const.py:332 msgid "[Worldwide]" -msgstr "" +msgstr "[Tutmonde]" #: ../picard/const.py:333 msgid "Yugoslavia (historical, 1918-1992)" @@ -1240,7 +1240,7 @@ msgstr "Hebrea" #: ../picard/const.py:362 ../picard/const.py:576 msgid "Hindi" -msgstr "" +msgstr "Hinda" #: ../picard/const.py:363 ../picard/const.py:578 msgid "Hungarian" @@ -1248,11 +1248,11 @@ msgstr "Hungara" #: ../picard/const.py:364 ../picard/const.py:584 msgid "Indonesian" -msgstr "" +msgstr "Indonezia" #: ../picard/const.py:365 msgid "Islandic" -msgstr "" +msgstr "Islanda" #: ../picard/const.py:366 ../picard/const.py:590 msgid "Italian" @@ -1332,7 +1332,7 @@ msgstr "Sveda" #: ../picard/const.py:385 ../picard/const.py:794 msgid "Tamil" -msgstr "" +msgstr "Tamila" #: ../picard/const.py:386 ../picard/const.py:818 msgid "Turkish" @@ -1340,7 +1340,7 @@ msgstr "Turka" #: ../picard/const.py:387 ../picard/const.py:826 msgid "Ukrainian" -msgstr "" +msgstr "Ukraina" #: ../picard/const.py:388 ../picard/const.py:454 msgid "Chinese" @@ -1376,7 +1376,7 @@ msgstr "" #: ../picard/const.py:400 msgid "Akan" -msgstr "" +msgstr "Akana" #: ../picard/const.py:401 msgid "Akan Ghana" @@ -1392,7 +1392,7 @@ msgstr "" #: ../picard/const.py:404 msgid "Amharic" -msgstr "" +msgstr "Amhara" #: ../picard/const.py:405 msgid "Amharic Ethiopia" @@ -1468,7 +1468,7 @@ msgstr "" #: ../picard/const.py:424 msgid "Armenian" -msgstr "" +msgstr "Armena" #: ../picard/const.py:425 msgid "Armenian Armenia" @@ -1480,7 +1480,7 @@ msgstr "" #: ../picard/const.py:427 msgid "Assamese" -msgstr "" +msgstr "Asama" #: ../picard/const.py:428 msgid "Assamese India" @@ -1496,7 +1496,7 @@ msgstr "" #: ../picard/const.py:431 msgid "Azerbaijani" -msgstr "" +msgstr "Azerbajĝana" #: ../picard/const.py:432 msgid "Azerbaijani Azerbaijan" @@ -1520,7 +1520,7 @@ msgstr "" #: ../picard/const.py:437 msgid "Basque" -msgstr "" +msgstr "Eŭska" #: ../picard/const.py:438 msgid "Basque Spain" @@ -1528,7 +1528,7 @@ msgstr "" #: ../picard/const.py:439 msgid "Belarusian" -msgstr "" +msgstr "Belorusa" #: ../picard/const.py:440 msgid "Belarusian Belarus" @@ -1536,7 +1536,7 @@ msgstr "" #: ../picard/const.py:441 msgid "Bengali" -msgstr "" +msgstr "Bengala" #: ../picard/const.py:442 msgid "Bengali Bangladesh" @@ -1556,7 +1556,7 @@ msgstr "" #: ../picard/const.py:446 msgid "Bosnian" -msgstr "" +msgstr "Bosna" #: ../picard/const.py:447 msgid "Bosnian Bosnia and Herzegovina" @@ -1568,7 +1568,7 @@ msgstr "" #: ../picard/const.py:450 msgid "Burmese" -msgstr "" +msgstr "Birma" #: ../picard/const.py:453 msgid "Catalan Spain" @@ -1632,11 +1632,11 @@ msgstr "" #: ../picard/const.py:469 msgid "Coptic" -msgstr "" +msgstr "Kopta" #: ../picard/const.py:470 msgid "Cornish" -msgstr "" +msgstr "Kornvala" #: ../picard/const.py:471 msgid "Cornish United Kingdom" @@ -1644,7 +1644,7 @@ msgstr "" #: ../picard/const.py:472 msgid "Croatian" -msgstr "" +msgstr "Kroata" #: ../picard/const.py:473 msgid "Croatian Croatia" @@ -1676,7 +1676,7 @@ msgstr "" #: ../picard/const.py:483 msgid "Dzongkha" -msgstr "" +msgstr "Dzonka" #: ../picard/const.py:484 msgid "Dzongkha Bhutan" @@ -1808,7 +1808,7 @@ msgstr "" #: ../picard/const.py:519 msgid "Ewe" -msgstr "" +msgstr "Evea" #: ../picard/const.py:520 msgid "Ewe Ghana" @@ -1824,7 +1824,7 @@ msgstr "" #: ../picard/const.py:524 msgid "Filipino" -msgstr "" +msgstr "Filipina" #: ../picard/const.py:525 msgid "Filipino Philippines" @@ -1896,7 +1896,7 @@ msgstr "" #: ../picard/const.py:545 msgid "Georgian" -msgstr "" +msgstr "Kartvela" #: ../picard/const.py:546 msgid "Georgian Georgia" @@ -1936,7 +1936,7 @@ msgstr "" #: ../picard/const.py:558 msgid "Gujarati" -msgstr "" +msgstr "Guĝarata" #: ../picard/const.py:559 msgid "Gujarati India" @@ -1944,7 +1944,7 @@ msgstr "" #: ../picard/const.py:560 msgid "Hausa" -msgstr "" +msgstr "Haŭsa" #: ../picard/const.py:561 msgid "Hausa Arabic" @@ -1992,7 +1992,7 @@ msgstr "" #: ../picard/const.py:572 msgid "Hawaiian" -msgstr "" +msgstr "Havaja" #: ../picard/const.py:573 msgid "Hawaiian United States" @@ -2012,7 +2012,7 @@ msgstr "" #: ../picard/const.py:580 msgid "Icelandic" -msgstr "" +msgstr "Islanda" #: ../picard/const.py:581 msgid "Icelandic Iceland" @@ -2020,7 +2020,7 @@ msgstr "" #: ../picard/const.py:582 msgid "Igbo" -msgstr "" +msgstr "Igba" #: ../picard/const.py:583 msgid "Igbo Nigeria" @@ -2032,7 +2032,7 @@ msgstr "" #: ../picard/const.py:586 msgid "Interlingua" -msgstr "" +msgstr "Interlingvao" #: ../picard/const.py:587 msgid "Inuktitut" @@ -2040,7 +2040,7 @@ msgstr "" #: ../picard/const.py:588 msgid "Irish" -msgstr "" +msgstr "Irlanda" #: ../picard/const.py:589 msgid "Irish Ireland" @@ -2088,7 +2088,7 @@ msgstr "" #: ../picard/const.py:603 msgid "Kazakh" -msgstr "" +msgstr "Kazaĥa" #: ../picard/const.py:604 msgid "Kazakh Cyrillic" @@ -2104,7 +2104,7 @@ msgstr "" #: ../picard/const.py:607 msgid "Khmer" -msgstr "" +msgstr "Kmera" #: ../picard/const.py:608 msgid "Khmer Cambodia" @@ -2120,7 +2120,7 @@ msgstr "" #: ../picard/const.py:611 msgid "Kirghiz" -msgstr "" +msgstr "Kirgiza" #: ../picard/const.py:612 msgid "Kirghiz Kyrgyzstan" @@ -2128,7 +2128,7 @@ msgstr "" #: ../picard/const.py:613 msgid "Konkani" -msgstr "" +msgstr "Konkana" #: ../picard/const.py:614 msgid "Konkani India" @@ -2156,7 +2156,7 @@ msgstr "" #: ../picard/const.py:622 msgid "Kurdish" -msgstr "" +msgstr "Kurda" #: ../picard/const.py:623 msgid "Kurdish Arabic" @@ -2200,7 +2200,7 @@ msgstr "" #: ../picard/const.py:633 msgid "Lao" -msgstr "" +msgstr "Laosa" #: ../picard/const.py:634 msgid "Lao Laos" @@ -2208,7 +2208,7 @@ msgstr "" #: ../picard/const.py:635 msgid "Latvian" -msgstr "" +msgstr "Latva" #: ../picard/const.py:636 msgid "Latvian Latvia" @@ -2216,7 +2216,7 @@ msgstr "" #: ../picard/const.py:637 msgid "Lingala" -msgstr "" +msgstr "Lingala" #: ../picard/const.py:638 msgid "Lingala Congo - Brazzaville" @@ -2236,7 +2236,7 @@ msgstr "" #: ../picard/const.py:644 msgid "Macedonian" -msgstr "" +msgstr "Makedona" #: ../picard/const.py:645 msgid "Macedonian Macedonia" @@ -2244,7 +2244,7 @@ msgstr "" #: ../picard/const.py:646 msgid "Malay" -msgstr "" +msgstr "Malaja" #: ../picard/const.py:647 msgid "Malay Brunei" @@ -2256,7 +2256,7 @@ msgstr "" #: ../picard/const.py:649 msgid "Malayalam" -msgstr "" +msgstr "Malajalama" #: ../picard/const.py:650 msgid "Malayalam India" @@ -2264,7 +2264,7 @@ msgstr "" #: ../picard/const.py:651 msgid "Maltese" -msgstr "" +msgstr "Malta" #: ../picard/const.py:652 msgid "Maltese Malta" @@ -2272,7 +2272,7 @@ msgstr "" #: ../picard/const.py:653 msgid "Manx" -msgstr "" +msgstr "Manksa" #: ../picard/const.py:654 msgid "Manx United Kingdom" @@ -2280,7 +2280,7 @@ msgstr "" #: ../picard/const.py:655 msgid "Marathi" -msgstr "" +msgstr "Marata" #: ../picard/const.py:656 msgid "Marathi India" @@ -2292,7 +2292,7 @@ msgstr "" #: ../picard/const.py:658 msgid "Mongolian" -msgstr "" +msgstr "Mongola" #: ../picard/const.py:659 msgid "Mongolian China" @@ -2320,7 +2320,7 @@ msgstr "" #: ../picard/const.py:665 msgid "Nepali" -msgstr "" +msgstr "Nepala" #: ../picard/const.py:666 msgid "Nepali India" @@ -2352,7 +2352,7 @@ msgstr "" #: ../picard/const.py:673 msgid "Norwegian" -msgstr "" +msgstr "Norvega" #: ../picard/const.py:676 msgid "Norwegian Nynorsk" @@ -2364,7 +2364,7 @@ msgstr "" #: ../picard/const.py:678 msgid "Nyanja" -msgstr "" +msgstr "Njanĝa" #: ../picard/const.py:679 msgid "Nyanja Malawi" @@ -2372,11 +2372,11 @@ msgstr "" #: ../picard/const.py:681 msgid "Occitan France" -msgstr "" +msgstr "Okcitana" #: ../picard/const.py:682 msgid "Oriya" -msgstr "" +msgstr "Orija" #: ../picard/const.py:683 msgid "Oriya India" @@ -2384,7 +2384,7 @@ msgstr "" #: ../picard/const.py:684 msgid "Oromo" -msgstr "" +msgstr "Oroma" #: ../picard/const.py:685 msgid "Oromo Ethiopia" @@ -2396,7 +2396,7 @@ msgstr "" #: ../picard/const.py:687 msgid "Pashto" -msgstr "" +msgstr "Paŝtua" #: ../picard/const.py:688 msgid "Pashto Afghanistan" @@ -2424,7 +2424,7 @@ msgstr "" #: ../picard/const.py:697 msgid "Punjabi" -msgstr "" +msgstr "Panĝaba" #: ../picard/const.py:698 msgid "Punjabi Arabic" @@ -2472,7 +2472,7 @@ msgstr "" #: ../picard/const.py:711 msgid "Sanskrit" -msgstr "" +msgstr "Sanskrito" #: ../picard/const.py:712 msgid "Sanskrit India" @@ -2564,7 +2564,7 @@ msgstr "" #: ../picard/const.py:739 msgid "Sinhala" -msgstr "" +msgstr "Sinhala" #: ../picard/const.py:740 msgid "Sinhala Sri Lanka" @@ -2580,7 +2580,7 @@ msgstr "" #: ../picard/const.py:745 msgid "Somali" -msgstr "" +msgstr "Somala" #: ../picard/const.py:746 msgid "Somali Djibouti" @@ -2700,7 +2700,7 @@ msgstr "" #: ../picard/const.py:776 msgid "Swahili" -msgstr "" +msgstr "Svahila" #: ../picard/const.py:777 msgid "Swahili Kenya" @@ -2712,7 +2712,7 @@ msgstr "" #: ../picard/const.py:779 msgid "Swati" -msgstr "" +msgstr "Svazia" #: ../picard/const.py:780 msgid "Swati South Africa" @@ -2740,7 +2740,7 @@ msgstr "" #: ../picard/const.py:787 msgid "Syriac" -msgstr "" +msgstr "Siria" #: ../picard/const.py:788 msgid "Syriac Syria" @@ -2748,11 +2748,11 @@ msgstr "" #: ../picard/const.py:789 msgid "Tagalog" -msgstr "" +msgstr "Tagaloga" #: ../picard/const.py:790 msgid "Tajik" -msgstr "" +msgstr "Taĝika" #: ../picard/const.py:791 msgid "Tajik Cyrillic" @@ -2780,7 +2780,7 @@ msgstr "" #: ../picard/const.py:798 msgid "Tatar" -msgstr "" +msgstr "Tatara" #: ../picard/const.py:799 msgid "Tatar Russia" @@ -2788,7 +2788,7 @@ msgstr "" #: ../picard/const.py:800 msgid "Telugu" -msgstr "" +msgstr "Telugua" #: ../picard/const.py:801 msgid "Telugu India" @@ -2796,7 +2796,7 @@ msgstr "" #: ../picard/const.py:802 msgid "Thai" -msgstr "" +msgstr "Taja" #: ../picard/const.py:803 msgid "Thai Thailand" @@ -2804,7 +2804,7 @@ msgstr "" #: ../picard/const.py:804 msgid "Tibetan" -msgstr "" +msgstr "Tibeta" #: ../picard/const.py:805 msgid "Tibetan China" @@ -2840,7 +2840,7 @@ msgstr "" #: ../picard/const.py:814 msgid "Tsonga" -msgstr "" +msgstr "Conga" #: ../picard/const.py:815 msgid "Tsonga South Africa" @@ -2848,7 +2848,7 @@ msgstr "" #: ../picard/const.py:816 msgid "Tswana" -msgstr "" +msgstr "Cvana" #: ../picard/const.py:817 msgid "Tswana South Africa" @@ -2868,7 +2868,7 @@ msgstr "" #: ../picard/const.py:822 msgid "Uighur" -msgstr "" +msgstr "Ujgura" #: ../picard/const.py:823 msgid "Uighur Arabic" @@ -2888,7 +2888,7 @@ msgstr "" #: ../picard/const.py:828 msgid "Urdu" -msgstr "" +msgstr "Urdua" #: ../picard/const.py:829 msgid "Urdu India" @@ -2900,7 +2900,7 @@ msgstr "" #: ../picard/const.py:831 msgid "Uzbek" -msgstr "" +msgstr "Uzbeka" #: ../picard/const.py:832 msgid "Uzbek Afghanistan" @@ -2936,7 +2936,7 @@ msgstr "" #: ../picard/const.py:840 msgid "Venda" -msgstr "" +msgstr "Vendaa" #: ../picard/const.py:841 msgid "Venda South Africa" @@ -2944,7 +2944,7 @@ msgstr "" #: ../picard/const.py:842 msgid "Vietnamese" -msgstr "" +msgstr "Vjetnama" #: ../picard/const.py:843 msgid "Vietnamese Vietnam" @@ -2964,7 +2964,7 @@ msgstr "" #: ../picard/const.py:848 msgid "Wolof" -msgstr "" +msgstr "Volofa" #: ../picard/const.py:849 msgid "Wolof Latin" @@ -2988,7 +2988,7 @@ msgstr "" #: ../picard/const.py:854 msgid "Yoruba" -msgstr "" +msgstr "Joruba" #: ../picard/const.py:855 msgid "Yoruba Nigeria" @@ -2996,7 +2996,7 @@ msgstr "" #: ../picard/const.py:856 msgid "Zulu" -msgstr "" +msgstr "Zulua" #: ../picard/const.py:857 msgid "Zulu South Africa" @@ -3148,7 +3148,7 @@ msgstr "" #: ../picard/util/tags.py:24 msgid "Date" -msgstr "" +msgstr "Dato" #: ../picard/util/tags.py:25 msgid "Original Release Date" @@ -3192,15 +3192,15 @@ msgstr "" #: ../picard/util/tags.py:35 msgid "ASIN" -msgstr "" +msgstr "ASIN" #: ../picard/util/tags.py:36 msgid "Grouping" -msgstr "" +msgstr "Grupado" #: ../picard/util/tags.py:37 ../picard/ui/ui_options_plugins.py:133 msgid "Version" -msgstr "" +msgstr "Versio" #: ../picard/util/tags.py:38 msgid "ISRC" @@ -4345,12 +4345,12 @@ msgstr "" #: ../picard/ui/ui_options_releases.py:230 #: ../picard/ui/ui_options_releases.py:233 msgid ">" -msgstr "" +msgstr ">" #: ../picard/ui/ui_options_releases.py:231 #: ../picard/ui/ui_options_releases.py:234 msgid "<" -msgstr "" +msgstr "<" #: ../picard/ui/ui_options_releases.py:232 msgid "Preferred release formats" @@ -4374,7 +4374,7 @@ msgstr "" #: ../picard/ui/itemviews.py:376 msgid "Loading..." -msgstr "" +msgstr "Ŝargante..." #: ../picard/ui/itemviews.py:387 msgid "[no release info]" @@ -4382,7 +4382,7 @@ msgstr "" #: ../picard/ui/itemviews.py:404 msgid "&Plugins" -msgstr "" +msgstr "&Kromprogramoj" #: ../picard/ui/itemviews.py:605 msgid "Clusters" @@ -4414,7 +4414,7 @@ msgstr "" #: ../picard/ui/options/moving.py:65 msgid "Error" -msgstr "" +msgstr "Eraro" #: ../picard/ui/options/moving.py:65 msgid "The location to move files to must not be empty." @@ -4422,7 +4422,7 @@ msgstr "" #: ../picard/ui/options/interface.py:32 msgid "User Interface" -msgstr "" +msgstr "Uzanto-interfaco" #: ../picard/ui/options/interface.py:49 msgid "System default" @@ -4430,7 +4430,7 @@ msgstr "" #: ../picard/ui/options/interface.py:76 msgid "Language changed" -msgstr "" +msgstr "Ŝanĝis lingvon" #: ../picard/ui/options/interface.py:76 msgid "" @@ -4452,7 +4452,7 @@ msgstr "" #: ../picard/ui/options/about.py:29 msgid "About" -msgstr "" +msgstr "Pri" #. Replace this with your name to have it appear in the "About" dialog. #: ../picard/ui/options/about.py:48 @@ -4461,6 +4461,7 @@ msgstr "" "Launchpad Contributions:\n" " Ian McEwen https://launchpad.net/~ian-mcewen\n" " Kristjan SCHMIDT https://launchpad.net/~kristjan-eo\n" +" Lucas Larson https://launchpad.net/~lucaslarson\n" " Michael Moroni https://launchpad.net/~airon90" #. Replace LANG with language you are translatig to. @@ -4493,7 +4494,7 @@ msgstr "" #: ../picard/ui/options/advanced.py:26 msgid "Advanced" -msgstr "" +msgstr "Altnivele" #: ../picard/ui/options/matching.py:29 msgid "Matching" @@ -4501,8 +4502,8 @@ msgstr "" #: ../picard/ui/options/scripting.py:63 msgid "Scripting" -msgstr "" +msgstr "Skriptado" #: ../picard/ui/options/scripting.py:97 msgid "Script Error" -msgstr "" +msgstr "Skript-eraro" diff --git a/po/et.po b/po/et.po index 0354757f1..16f970313 100644 --- a/po/et.po +++ b/po/et.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: picard\n" "Report-Msgid-Bugs-To: http://bugs.musicbrainz.org/\n" "POT-Creation-Date: 2011-10-08 12:39+0200\n" -"PO-Revision-Date: 2012-01-03 17:45+0000\n" +"PO-Revision-Date: 2012-02-27 23:49+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \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-Launchpad-Export-Date: 2012-01-04 04:41+0000\n" -"X-Generator: Launchpad (build 14616)\n" +"X-Launchpad-Export-Date: 2012-02-29 04:32+0000\n" +"X-Generator: Launchpad (build 14874)\n" #: ../picard/const.py:49 msgid "CD" @@ -4277,7 +4277,7 @@ msgstr "Stiilina kasutatakse folksonoomia-märgendeid" #: ../picard/ui/ui_options_metadata.py:256 msgid "Standardization" -msgstr "Standardiseerimine" +msgstr "Ühtlustamine" #: ../picard/ui/ui_options_metadata.py:257 msgid "As on cover" @@ -4285,7 +4285,7 @@ msgstr "Nagu kaanel" #: ../picard/ui/ui_options_metadata.py:258 msgid "Standardized" -msgstr "Standardiseeritud" +msgstr "Ühtlustatud" #: ../picard/ui/ui_options_metadata.py:259 msgid "Track titles" diff --git a/po/fr.po b/po/fr.po index 0331587eb..c9edc7e0b 100644 --- a/po/fr.po +++ b/po/fr.po @@ -10,15 +10,15 @@ msgstr "" "Project-Id-Version: Picard VERSION\n" "Report-Msgid-Bugs-To: http://bugs.musicbrainz.org/\n" "POT-Creation-Date: 2011-10-08 12:39+0200\n" -"PO-Revision-Date: 2011-12-22 18:00+0000\n" -"Last-Translator: SarahSlean \n" +"PO-Revision-Date: 2012-05-02 10:15+0000\n" +"Last-Translator: Aymeric PETIT \n" "Language-Team: French \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-Launchpad-Export-Date: 2011-12-23 05:30+0000\n" -"X-Generator: Launchpad (build 14560)\n" +"X-Launchpad-Export-Date: 2012-05-03 05:10+0000\n" +"X-Generator: Launchpad (build 15185)\n" "Generated-By: pygettext.py 1.5\n" #: ../picard/const.py:371 @@ -3698,7 +3698,7 @@ msgstr "Proxy Web" #: ../picard/ui/cdlookup.py:33 msgid "Labels" -msgstr "" +msgstr "Libellés" #: ../picard/ui/cdlookup.py:33 msgid "Catalog #s" @@ -3873,15 +3873,15 @@ msgstr "" #: ../picard/ui/ui_options_fingerprinting.py:69 msgid "Use AmpliFIND (formerly MusicDNS)" -msgstr "" +msgstr "Utiliser AmpliFIND (anciennement MusicDNS)" #: ../picard/ui/ui_options_fingerprinting.py:70 msgid "Use AcoustID" -msgstr "" +msgstr "Utiliser AcoustID" #: ../picard/ui/ui_options_fingerprinting.py:71 msgid "AcoustID's Settings" -msgstr "" +msgstr "Réglage d'AcoustID" #: ../picard/ui/ui_options_fingerprinting.py:72 msgid "Fingerprinter:" @@ -3889,15 +3889,15 @@ msgstr "" #: ../picard/ui/ui_options_fingerprinting.py:74 msgid "Download..." -msgstr "" +msgstr "Téléchargement..." #: ../picard/ui/ui_options_fingerprinting.py:75 msgid "API key:" -msgstr "" +msgstr "Clé de l'API :" #: ../picard/ui/ui_options_fingerprinting.py:76 msgid "Get API key..." -msgstr "" +msgstr "Obtenir la clé de l'API..." #: ../picard/ui/puidsubmit.py:31 ../picard/ui/options/plugins.py:125 msgid "File" @@ -3985,7 +3985,8 @@ msgid "" msgid_plural "" "There are %s unsaved files. Closing Picard will lose all unsaved changes." msgstr[0] "" -msgstr[1] "" +"Il y a %s fichiers non sauvegardés. En fermant Picard vous allez perdre " +"toutes les modifications non sauvegardées." #: ../picard/ui/mainwindow.py:145 msgid "&Quit Picard" @@ -3994,7 +3995,7 @@ msgstr "&Quitter Picard" #: ../picard/ui/mainwindow.py:196 #, python-format msgid " Files: %(files)d, Pending Files: %(pending)d " -msgstr "" +msgstr " Fichiers[nbsb]: %(files)d, En attente : %(pending)d " #: ../picard/ui/mainwindow.py:225 msgid "Submission Error" @@ -4071,7 +4072,7 @@ msgstr "Sauver les fichiers sélectionnées" #: ../picard/ui/mainwindow.py:284 msgid "S&ubmit" -msgstr "" +msgstr "&Envoyer" #: ../picard/ui/mainwindow.py:285 msgid "Submit fingerprints" @@ -4328,7 +4329,7 @@ msgstr "" #: ../picard/ui/ui_options_releases.py:218 msgid "Single" -msgstr "" +msgstr "Single" #: ../picard/ui/ui_options_releases.py:219 msgid "EP" @@ -4487,6 +4488,7 @@ msgid "translator-credits" msgstr "" "Launchpad Contributions:\n" " 2rock https://launchpad.net/~hub2rock\n" +" Aymeric PETIT https://launchpad.net/~mulx\n" " Baptiste Fontaine https://launchpad.net/~bfontaine\n" " Bogdan Butnaru https://launchpad.net/~bogdanb\n" " Dr Johnny Fever https://launchpad.net/~drjohnnyfever-ca\n" @@ -4495,7 +4497,7 @@ msgstr "" " Jean-Marc Liotier https://launchpad.net/~jim-liotier\n" " MCMic https://launchpad.net/~come-bernigaud\n" " Matthieu MORIN https://launchpad.net/~morinmatthieu\n" -" Matthieu Martin https://launchpad.net/~matthieu-martin\n" +" Matthieu Martin https://launchpad.net/~matthieu-martin-deactivatedaccount\n" " Mickaël Delahaye https://launchpad.net/~mdelahaye\n" " NSV https://launchpad.net/~nsv\n" " Nicolas Delvaux https://launchpad.net/~malizor\n" diff --git a/po/nb.po b/po/nb.po index c801db668..6ae551972 100644 --- a/po/nb.po +++ b/po/nb.po @@ -6,48 +6,48 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://bugs.musicbrainz.org/\n" "POT-Creation-Date: 2011-10-08 12:39+0200\n" -"PO-Revision-Date: 2009-10-26 10:09+0000\n" -"Last-Translator: Philipp Wolfer \n" +"PO-Revision-Date: 2012-03-29 14:35+0000\n" +"Last-Translator: ZaphodBeeblebrox \n" "Language-Team: Norwegian \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-Launchpad-Export-Date: 2011-10-09 05:11+0000\n" -"X-Generator: Launchpad (build 14110)\n" +"X-Launchpad-Export-Date: 2012-03-30 04:31+0000\n" +"X-Generator: Launchpad (build 15032)\n" "Generated-By: pygettext.py 1.5\n" #: ../picard/const.py:49 msgid "CD" -msgstr "" +msgstr "CD" #: ../picard/const.py:50 msgid "CD-R" -msgstr "" +msgstr "CD-R" #: ../picard/const.py:51 msgid "HDCD" -msgstr "" +msgstr "HDCD" #: ../picard/const.py:52 msgid "8cm CD" -msgstr "" +msgstr "8cm CD" #: ../picard/const.py:53 msgid "Vinyl" -msgstr "" +msgstr "Vinyl" #: ../picard/const.py:54 msgid "7\" Vinyl" -msgstr "" +msgstr "7″ Vinyl" #: ../picard/const.py:55 msgid "10\" Vinyl" -msgstr "" +msgstr "10″ Vinyl" #: ../picard/const.py:56 msgid "12\" Vinyl" -msgstr "" +msgstr "12″" #: ../picard/const.py:57 msgid "Digital Media" @@ -55,79 +55,79 @@ msgstr "" #: ../picard/const.py:58 msgid "USB Flash Drive" -msgstr "" +msgstr "USB Minnepinne" #: ../picard/const.py:59 msgid "slotMusic" -msgstr "" +msgstr "slotMusic" #: ../picard/const.py:60 msgid "Cassette" -msgstr "" +msgstr "Kassett" #: ../picard/const.py:61 msgid "DVD" -msgstr "" +msgstr "DVD" #: ../picard/const.py:62 msgid "DVD-Audio" -msgstr "" +msgstr "DVD-Audio" #: ../picard/const.py:63 msgid "DVD-Video" -msgstr "" +msgstr "DVD-Video" #: ../picard/const.py:64 msgid "SACD" -msgstr "" +msgstr "SACD" #: ../picard/const.py:65 msgid "DualDisc" -msgstr "" +msgstr "DualDisc" #: ../picard/const.py:66 msgid "MiniDisc" -msgstr "" +msgstr "MiniDisc" #: ../picard/const.py:67 msgid "Blu-ray" -msgstr "" +msgstr "Blu-ray" #: ../picard/const.py:68 msgid "HD-DVD" -msgstr "" +msgstr "HD-DVD" #: ../picard/const.py:69 msgid "Videotape" -msgstr "" +msgstr "Video" #: ../picard/const.py:70 msgid "VHS" -msgstr "" +msgstr "VHS" #: ../picard/const.py:71 msgid "Betamax" -msgstr "" +msgstr "Betamax" #: ../picard/const.py:72 msgid "VCD" -msgstr "" +msgstr "VCD" #: ../picard/const.py:73 msgid "SVCD" -msgstr "" +msgstr "SVCD" #: ../picard/const.py:74 msgid "UMD" -msgstr "" +msgstr "UMD" #: ../picard/const.py:75 ../picard/ui/ui_options_releases.py:227 msgid "Other" -msgstr "" +msgstr "Annet" #: ../picard/const.py:76 msgid "LaserDisc" -msgstr "" +msgstr "LaserDisc" #: ../picard/const.py:77 msgid "Cartridge" @@ -139,923 +139,923 @@ msgstr "" #: ../picard/const.py:79 msgid "DAT" -msgstr "" +msgstr "DAT" #: ../picard/const.py:80 msgid "Wax Cylinder" -msgstr "" +msgstr "Fonografsylinder" #: ../picard/const.py:81 msgid "Piano Roll" -msgstr "" +msgstr "Pianorull" #: ../picard/const.py:82 msgid "DCC" -msgstr "" +msgstr "DCC" #: ../picard/const.py:87 msgid "Bangladesh" -msgstr "" +msgstr "Bangladesh" #: ../picard/const.py:88 msgid "Belgium" -msgstr "" +msgstr "Belgia" #: ../picard/const.py:89 msgid "Burkina Faso" -msgstr "" +msgstr "Burkina Faso" #: ../picard/const.py:90 msgid "Bulgaria" -msgstr "" +msgstr "Bulgaria" #: ../picard/const.py:91 msgid "Barbados" -msgstr "" +msgstr "Barbados" #: ../picard/const.py:92 msgid "Wallis and Futuna Islands" -msgstr "" +msgstr "Wallis- og Futunaøyene" #: ../picard/const.py:93 msgid "Bermuda" -msgstr "" +msgstr "Bermuda" #: ../picard/const.py:94 msgid "Brunei Darussalam" -msgstr "" +msgstr "Brunei" #: ../picard/const.py:95 msgid "Bolivia" -msgstr "" +msgstr "Bolivia" #: ../picard/const.py:96 msgid "Bahrain" -msgstr "" +msgstr "Bahrain" #: ../picard/const.py:97 msgid "Burundi" -msgstr "" +msgstr "Burundi" #: ../picard/const.py:98 msgid "Benin" -msgstr "" +msgstr "Benin" #: ../picard/const.py:99 msgid "Bhutan" -msgstr "" +msgstr "Bhutan" #: ../picard/const.py:100 msgid "Jamaica" -msgstr "" +msgstr "Jamaica" #: ../picard/const.py:101 msgid "Bouvet Island" -msgstr "" +msgstr "Bouvetøya" #: ../picard/const.py:102 msgid "Botswana" -msgstr "" +msgstr "Botswana" #: ../picard/const.py:103 msgid "Samoa" -msgstr "" +msgstr "Samoa" #: ../picard/const.py:104 msgid "Brazil" -msgstr "" +msgstr "Brasil" #: ../picard/const.py:105 msgid "Bahamas" -msgstr "" +msgstr "Bahamas" #: ../picard/const.py:106 msgid "Belarus" -msgstr "" +msgstr "Hviterussland" #: ../picard/const.py:107 msgid "Belize" -msgstr "" +msgstr "Belize" #: ../picard/const.py:108 msgid "Russian Federation" -msgstr "" +msgstr "Russland" #: ../picard/const.py:109 msgid "Rwanda" -msgstr "" +msgstr "Rwanda" #: ../picard/const.py:110 msgid "Reunion" -msgstr "" +msgstr "Réunion" #: ../picard/const.py:111 msgid "Turkmenistan" -msgstr "" +msgstr "Turkmenistan" #: ../picard/const.py:112 msgid "Tajikistan" -msgstr "" +msgstr "Tadsjikistan" #: ../picard/const.py:113 msgid "Romania" -msgstr "" +msgstr "Romania" #: ../picard/const.py:114 msgid "Tokelau" -msgstr "" +msgstr "Tokelau" #: ../picard/const.py:115 msgid "Guinea-Bissa" -msgstr "" +msgstr "Guinea-Bissau" #: ../picard/const.py:116 msgid "Guam" -msgstr "" +msgstr "Guam" #: ../picard/const.py:117 msgid "Guatemala" -msgstr "" +msgstr "Guatemala" #: ../picard/const.py:118 msgid "Greece" -msgstr "" +msgstr "Hellas" #: ../picard/const.py:119 msgid "Equatorial Guinea" -msgstr "" +msgstr "Ekvatorial-Guinea" #: ../picard/const.py:120 msgid "Guadeloupe" -msgstr "" +msgstr "Guadeloupe" #: ../picard/const.py:121 msgid "Japan" -msgstr "" +msgstr "Japan" #: ../picard/const.py:122 msgid "Guyana" -msgstr "" +msgstr "Guyana" #: ../picard/const.py:123 msgid "French Guiana" -msgstr "" +msgstr "Fransk Guyana" #: ../picard/const.py:124 msgid "Georgia" -msgstr "" +msgstr "Georgia" #: ../picard/const.py:125 msgid "Grenada" -msgstr "" +msgstr "Grenada" #: ../picard/const.py:126 msgid "United Kingdom" -msgstr "" +msgstr "Storbritannia" #: ../picard/const.py:127 msgid "Gabon" -msgstr "" +msgstr "Gabon" #: ../picard/const.py:128 msgid "El Salvador" -msgstr "" +msgstr "El Salvador" #: ../picard/const.py:129 msgid "Guinea" -msgstr "" +msgstr "Guinea" #: ../picard/const.py:130 msgid "Gambia" -msgstr "" +msgstr "Gambia" #: ../picard/const.py:131 msgid "Greenland" -msgstr "" +msgstr "Grønland" #: ../picard/const.py:132 msgid "Gibraltar" -msgstr "" +msgstr "Gibraltar" #: ../picard/const.py:133 msgid "Ghana" -msgstr "" +msgstr "Ghana" #: ../picard/const.py:134 msgid "Oman" -msgstr "" +msgstr "Oman" #: ../picard/const.py:135 msgid "Tunisia" -msgstr "" +msgstr "Tunisia" #: ../picard/const.py:136 msgid "Jordan" -msgstr "" +msgstr "Jordan" #: ../picard/const.py:137 msgid "Haiti" -msgstr "" +msgstr "Haiti" #: ../picard/const.py:138 msgid "Hungary" -msgstr "" +msgstr "Ungarn" #: ../picard/const.py:139 msgid "Hong Kong" -msgstr "" +msgstr "Hong Kong" #: ../picard/const.py:140 msgid "Honduras" -msgstr "" +msgstr "Honduras" #: ../picard/const.py:141 msgid "Heard and Mc Donald Islands" -msgstr "" +msgstr "Heard- og McDonaldøyene" #: ../picard/const.py:142 msgid "Venezuela" -msgstr "" +msgstr "Venezuela" #: ../picard/const.py:143 msgid "Puerto Rico" -msgstr "" +msgstr "Puerto Rico" #: ../picard/const.py:144 msgid "Palau" -msgstr "" +msgstr "Palau" #: ../picard/const.py:145 msgid "Portugal" -msgstr "" +msgstr "Portugal" #: ../picard/const.py:146 msgid "Svalbard and Jan Mayen Islands" -msgstr "" +msgstr "Svalbard og Jan Mayen" #: ../picard/const.py:147 msgid "Paraguay" -msgstr "" +msgstr "Paraguay" #: ../picard/const.py:148 msgid "Iraq" -msgstr "" +msgstr "Irak" #: ../picard/const.py:149 msgid "Panama" -msgstr "" +msgstr "Panama" #: ../picard/const.py:150 msgid "French Polynesia" -msgstr "" +msgstr "Fransk Polynesia" #: ../picard/const.py:151 msgid "Papua New Guinea" -msgstr "" +msgstr "Papua Ny-Guinea" #: ../picard/const.py:152 msgid "Peru" -msgstr "" +msgstr "Peru" #: ../picard/const.py:153 msgid "Pakistan" -msgstr "" +msgstr "Pakistan" #: ../picard/const.py:154 msgid "Philippines" -msgstr "" +msgstr "Filippinene" #: ../picard/const.py:155 msgid "Pitcairn" -msgstr "" +msgstr "Pitcairnøyene" #: ../picard/const.py:156 msgid "Poland" -msgstr "" +msgstr "Polen" #: ../picard/const.py:157 msgid "St. Pierre and Miquelon" -msgstr "" +msgstr "Saint-Pierre og Miquelon" #: ../picard/const.py:158 msgid "Zambia" -msgstr "" +msgstr "Zambia" #: ../picard/const.py:159 msgid "Western Sahara" -msgstr "" +msgstr "Vest-Sahara" #: ../picard/const.py:160 msgid "Estonia" -msgstr "" +msgstr "Estland" #: ../picard/const.py:161 msgid "Egypt" -msgstr "" +msgstr "Egypt" #: ../picard/const.py:162 msgid "South Africa" -msgstr "" +msgstr "Sør-Afrika" #: ../picard/const.py:163 msgid "Ecuador" -msgstr "" +msgstr "Ecuador" #: ../picard/const.py:164 msgid "Italy" -msgstr "" +msgstr "Italia" #: ../picard/const.py:165 msgid "Viet Nam" -msgstr "" +msgstr "Vietnam" #: ../picard/const.py:166 msgid "Solomon Islands" -msgstr "" +msgstr "Salomonøyene" #: ../picard/const.py:167 msgid "Ethiopia" -msgstr "" +msgstr "Etiopia" #: ../picard/const.py:168 msgid "Somalia" -msgstr "" +msgstr "Somalia" #: ../picard/const.py:169 msgid "Zimbabwe" -msgstr "" +msgstr "Zimbabwe" #: ../picard/const.py:170 msgid "Saudi Arabia" -msgstr "" +msgstr "Saudi-Arabia" #: ../picard/const.py:171 msgid "Spain" -msgstr "" +msgstr "Spania" #: ../picard/const.py:172 msgid "Eritrea" -msgstr "" +msgstr "Eritrea" #: ../picard/const.py:173 msgid "Moldova, Republic of" -msgstr "" +msgstr "Moldova" #: ../picard/const.py:174 msgid "Madagascar" -msgstr "" +msgstr "Madagaskar" #: ../picard/const.py:175 msgid "Morocco" -msgstr "" +msgstr "Marokko" #: ../picard/const.py:176 msgid "Monaco" -msgstr "" +msgstr "Monaco" #: ../picard/const.py:177 msgid "Uzbekistan" -msgstr "" +msgstr "Usbekistan" #: ../picard/const.py:178 msgid "Myanmar" -msgstr "" +msgstr "Burma" #: ../picard/const.py:179 msgid "Mali" -msgstr "" +msgstr "Mali" #: ../picard/const.py:180 msgid "Macau" -msgstr "" +msgstr "Macao" #: ../picard/const.py:181 msgid "Mongolia" -msgstr "" +msgstr "Mongolia" #: ../picard/const.py:182 msgid "Marshall Islands" -msgstr "" +msgstr "Marshalløyene" #: ../picard/const.py:183 msgid "Macedonia, The Former Yugoslav Republic of" -msgstr "" +msgstr "Makedonia" #: ../picard/const.py:184 msgid "Mauritius" -msgstr "" +msgstr "Mauritius" #: ../picard/const.py:185 msgid "Malta" -msgstr "" +msgstr "Malta" #: ../picard/const.py:186 msgid "Malawi" -msgstr "" +msgstr "Malawi" #: ../picard/const.py:187 msgid "Maldives" -msgstr "" +msgstr "Maldivene" #: ../picard/const.py:188 msgid "Martinique" -msgstr "" +msgstr "Martinique" #: ../picard/const.py:189 msgid "Northern Mariana Islands" -msgstr "" +msgstr "Nord-Marianene" #: ../picard/const.py:190 msgid "Montserrat" -msgstr "" +msgstr "Montserrat" #: ../picard/const.py:191 msgid "Mauritania" -msgstr "" +msgstr "Mauritania" #: ../picard/const.py:192 msgid "Uganda" -msgstr "" +msgstr "Uganda" #: ../picard/const.py:193 msgid "Malaysia" -msgstr "" +msgstr "Malaysia" #: ../picard/const.py:194 msgid "Mexico" -msgstr "" +msgstr "Mexico" #: ../picard/const.py:195 msgid "Israel" -msgstr "" +msgstr "Israel" #: ../picard/const.py:196 msgid "France" -msgstr "" +msgstr "Frankrike" #: ../picard/const.py:197 msgid "British Indian Ocean Territory" -msgstr "" +msgstr "Det britiske territoriet i Indiahavet" #: ../picard/const.py:198 msgid "St. Helena" -msgstr "" +msgstr "St. Helena" #: ../picard/const.py:199 msgid "Finland" -msgstr "" +msgstr "Finland" #: ../picard/const.py:200 msgid "Fiji" -msgstr "" +msgstr "Fiji" #: ../picard/const.py:201 msgid "Falkland Islands (Malvinas)" -msgstr "" +msgstr "Falklandsøyene" #: ../picard/const.py:202 msgid "Micronesia, Federated States of" -msgstr "" +msgstr "Mikronesiaføderasjonen" #: ../picard/const.py:203 msgid "Faroe Islands" -msgstr "" +msgstr "Færøyene" #: ../picard/const.py:204 msgid "Nicaragua" -msgstr "" +msgstr "Nicaragua" #: ../picard/const.py:205 msgid "Netherlands" -msgstr "" +msgstr "Nederland" #: ../picard/const.py:206 msgid "Norway" -msgstr "" +msgstr "Norge" #: ../picard/const.py:207 msgid "Namibia" -msgstr "" +msgstr "Namibia" #: ../picard/const.py:208 msgid "Vanuatu" -msgstr "" +msgstr "Vanuatu" #: ../picard/const.py:209 msgid "New Caledonia" -msgstr "" +msgstr "Ny-Caledonia" #: ../picard/const.py:210 msgid "Niger" -msgstr "" +msgstr "Niger" #: ../picard/const.py:211 msgid "Norfolk Island" -msgstr "" +msgstr "Norfolkøya" #: ../picard/const.py:212 msgid "Nigeria" -msgstr "" +msgstr "Nigeria" #: ../picard/const.py:213 msgid "New Zealand" -msgstr "" +msgstr "New Zealand" #: ../picard/const.py:214 msgid "Zaire" -msgstr "" +msgstr "Zaïre" #: ../picard/const.py:215 msgid "Nepal" -msgstr "" +msgstr "Nepal" #: ../picard/const.py:216 msgid "Nauru" -msgstr "" +msgstr "Nauru" #: ../picard/const.py:217 msgid "Niue" -msgstr "" +msgstr "Niue" #: ../picard/const.py:218 msgid "Cook Islands" -msgstr "" +msgstr "Cookøyene" #: ../picard/const.py:219 msgid "Cote d'Ivoire" -msgstr "" +msgstr "Elfenbenskysten" #: ../picard/const.py:220 msgid "Switzerland" -msgstr "" +msgstr "Sveits" #: ../picard/const.py:221 msgid "Colombia" -msgstr "" +msgstr "Colombia" #: ../picard/const.py:222 msgid "China" -msgstr "" +msgstr "Kina" #: ../picard/const.py:223 msgid "Cameroon" -msgstr "" +msgstr "Kamerun" #: ../picard/const.py:224 msgid "Chile" -msgstr "" +msgstr "Chile" #: ../picard/const.py:225 msgid "Cocos (Keeling) Islands" -msgstr "" +msgstr "Kokosøyene (Keelingøyene)" #: ../picard/const.py:226 msgid "Canada" -msgstr "" +msgstr "Canada" #: ../picard/const.py:227 msgid "Congo" -msgstr "" +msgstr "Kongo (Republikken Kongo)" #: ../picard/const.py:228 msgid "Central African Republic" -msgstr "" +msgstr "Den sentralafrikanske republikk" #: ../picard/const.py:229 msgid "Czech Republic" -msgstr "" +msgstr "Tsjekkia" #: ../picard/const.py:230 msgid "Cyprus" -msgstr "" +msgstr "Kypros" #: ../picard/const.py:231 msgid "Christmas Island" -msgstr "" +msgstr "Christmasøya" #: ../picard/const.py:232 msgid "Costa Rica" -msgstr "" +msgstr "Costa Rica" #: ../picard/const.py:233 msgid "Cape Verde" -msgstr "" +msgstr "Kapp Verde" #: ../picard/const.py:234 msgid "Cuba" -msgstr "" +msgstr "Cuba" #: ../picard/const.py:235 msgid "Swaziland" -msgstr "" +msgstr "Swaziland" #: ../picard/const.py:236 msgid "Syrian Arab Republic" -msgstr "" +msgstr "Syria" #: ../picard/const.py:237 msgid "Kyrgyzstan" -msgstr "" +msgstr "Kirgisistan" #: ../picard/const.py:238 msgid "Kenya" -msgstr "" +msgstr "Kenya" #: ../picard/const.py:239 msgid "Suriname" -msgstr "" +msgstr "Surinam" #: ../picard/const.py:240 msgid "Kiribati" -msgstr "" +msgstr "Kiribati" #: ../picard/const.py:241 msgid "Cambodia" -msgstr "" +msgstr "Kambodsja" #: ../picard/const.py:242 msgid "Saint Kitts and Nevis" -msgstr "" +msgstr "Saint Kitts og Nevis" #: ../picard/const.py:243 msgid "Comoros" -msgstr "" +msgstr "Komorene" #: ../picard/const.py:244 msgid "Sao Tome and Principe" -msgstr "" +msgstr "São Tomé og Príncipe" #: ../picard/const.py:245 msgid "Slovenia" -msgstr "" +msgstr "Slovenia" #: ../picard/const.py:246 msgid "Kuwait" -msgstr "" +msgstr "Kuwait" #: ../picard/const.py:247 msgid "Senegal" -msgstr "" +msgstr "Senegal" #: ../picard/const.py:248 msgid "San Marino" -msgstr "" +msgstr "San Marino" #: ../picard/const.py:249 msgid "Sierra Leone" -msgstr "" +msgstr "Sierra Leone" #: ../picard/const.py:250 msgid "Seychelles" -msgstr "" +msgstr "Seychellene" #: ../picard/const.py:251 msgid "Kazakhstan" -msgstr "" +msgstr "Kasakhstan" #: ../picard/const.py:252 msgid "Cayman Islands" -msgstr "" +msgstr "Caymanøyene" #: ../picard/const.py:253 msgid "Singapore" -msgstr "" +msgstr "Singapore" #: ../picard/const.py:254 msgid "Sweden" -msgstr "" +msgstr "Sverige" #: ../picard/const.py:255 msgid "Sudan" -msgstr "" +msgstr "Sudan" #: ../picard/const.py:256 msgid "Dominican Republic" -msgstr "" +msgstr "Den dominikanske republikk" #: ../picard/const.py:257 msgid "Dominica" -msgstr "" +msgstr "Dominica" #: ../picard/const.py:258 msgid "Djibouti" -msgstr "" +msgstr "Djibouti" #: ../picard/const.py:259 msgid "Denmark" -msgstr "" +msgstr "Danmark" #: ../picard/const.py:260 msgid "Virgin Islands (British)" -msgstr "" +msgstr "Jomfruøyene" #: ../picard/const.py:261 msgid "Germany" -msgstr "" +msgstr "Tyskland" #: ../picard/const.py:262 msgid "Yemen" -msgstr "" +msgstr "Jemen" #: ../picard/const.py:263 msgid "Algeria" -msgstr "" +msgstr "Algerie" #: ../picard/const.py:264 msgid "United States" -msgstr "" +msgstr "Amerikas forente stater" #: ../picard/const.py:265 msgid "Uruguay" -msgstr "" +msgstr "Uruguay" #: ../picard/const.py:266 msgid "Mayotte" -msgstr "" +msgstr "Mayotte" #: ../picard/const.py:267 msgid "United States Minor Outlying Islands" -msgstr "" +msgstr "USAs ytre småøyer" #: ../picard/const.py:268 msgid "Lebanon" -msgstr "" +msgstr "Libanon" #: ../picard/const.py:269 msgid "Saint Lucia" -msgstr "" +msgstr "Saint Lucia" #: ../picard/const.py:270 msgid "Lao People's Democratic Republic" -msgstr "" +msgstr "Laos" #: ../picard/const.py:271 msgid "Tuvalu" -msgstr "" +msgstr "Tuvalu" #: ../picard/const.py:272 msgid "Taiwan" -msgstr "" +msgstr "Taiwan" #: ../picard/const.py:273 msgid "Trinidad and Tobago" -msgstr "" +msgstr "Trinidad og Tobago" #: ../picard/const.py:274 msgid "Turkey" -msgstr "" +msgstr "Tyrkia" #: ../picard/const.py:275 msgid "Sri Lanka" -msgstr "" +msgstr "Sri Lanka" #: ../picard/const.py:276 msgid "Liechtenstein" -msgstr "" +msgstr "Liechtenstein" #: ../picard/const.py:277 msgid "Latvia" -msgstr "" +msgstr "Latvia" #: ../picard/const.py:278 ../picard/const.py:812 msgid "Tonga" -msgstr "" +msgstr "Tonga" #: ../picard/const.py:279 msgid "Lithuania" -msgstr "" +msgstr "Litauen" #: ../picard/const.py:280 msgid "Luxembourg" -msgstr "" +msgstr "Luxembourg" #: ../picard/const.py:281 msgid "Liberia" -msgstr "" +msgstr "Liberia" #: ../picard/const.py:282 msgid "Lesotho" -msgstr "" +msgstr "Lesotho" #: ../picard/const.py:283 msgid "Thailand" -msgstr "" +msgstr "Thailand" #: ../picard/const.py:284 msgid "French Southern Territories" -msgstr "" +msgstr "De franske sørterritorier" #: ../picard/const.py:285 msgid "Togo" -msgstr "" +msgstr "Togo" #: ../picard/const.py:286 msgid "Chad" -msgstr "" +msgstr "Tsjad" #: ../picard/const.py:287 msgid "Turks and Caicos Islands" -msgstr "" +msgstr "Turks- og Caicosøyene" #: ../picard/const.py:288 msgid "Libyan Arab Jamahiriya" -msgstr "" +msgstr "Libya" #: ../picard/const.py:289 msgid "Vatican City State (Holy See)" -msgstr "" +msgstr "Vatikanstaten" #: ../picard/const.py:290 msgid "Saint Vincent and The Grenadines" -msgstr "" +msgstr "Saint Vincent og Grenadinene" #: ../picard/const.py:291 msgid "United Arab Emirates" -msgstr "" +msgstr "De forente arabiske emirater" #: ../picard/const.py:292 msgid "Andorra" -msgstr "" +msgstr "Andorra" #: ../picard/const.py:293 msgid "Antigua and Barbuda" -msgstr "" +msgstr "Antigua og Barbuda" #: ../picard/const.py:294 msgid "Afghanistan" -msgstr "" +msgstr "Afghanistan" #: ../picard/const.py:295 msgid "Anguilla" -msgstr "" +msgstr "Anguilla" #: ../picard/const.py:296 msgid "Virgin Islands (U.S.)" -msgstr "" +msgstr "De amerikanske Jomfruøyene" #: ../picard/const.py:297 msgid "Iceland" -msgstr "" +msgstr "Island" #: ../picard/const.py:298 msgid "Iran (Islamic Republic of)" -msgstr "" +msgstr "Iran" #: ../picard/const.py:299 msgid "Armenia" -msgstr "" +msgstr "Armenia" #: ../picard/const.py:300 msgid "Albania" -msgstr "" +msgstr "Albania" #: ../picard/const.py:301 msgid "Angola" -msgstr "" +msgstr "Angola" #: ../picard/const.py:302 msgid "Netherlands Antilles" -msgstr "" +msgstr "De nederlandske Antillene" #: ../picard/const.py:303 msgid "Antarctica" -msgstr "" +msgstr "Antarktis" #: ../picard/const.py:304 msgid "American Samoa" -msgstr "" +msgstr "Amerikansk Samoa" #: ../picard/const.py:305 msgid "Argentina" -msgstr "" +msgstr "Argentina" #: ../picard/const.py:306 msgid "Australia" -msgstr "" +msgstr "Australia" #: ../picard/const.py:307 msgid "Austria" -msgstr "" +msgstr "Østerrike" #: ../picard/const.py:308 msgid "Aruba" -msgstr "" +msgstr "Aruba" #: ../picard/const.py:309 msgid "India" -msgstr "" +msgstr "India" #: ../picard/const.py:310 msgid "Tanzania, United Republic of" -msgstr "" +msgstr "Tanzania" #: ../picard/const.py:311 msgid "Azerbaijan" -msgstr "" +msgstr "Aserbajdsjan" #: ../picard/const.py:312 msgid "Ireland" -msgstr "" +msgstr "Irland" #: ../picard/const.py:313 msgid "Indonesia" @@ -1063,103 +1063,103 @@ msgstr "" #: ../picard/const.py:314 msgid "Ukraine" -msgstr "" +msgstr "Ukraina" #: ../picard/const.py:315 msgid "Qatar" -msgstr "" +msgstr "Qatar" #: ../picard/const.py:316 msgid "Mozambique" -msgstr "" +msgstr "Mosambik" #: ../picard/const.py:317 msgid "Bosnia and Herzegovina" -msgstr "" +msgstr "Bosnia-Hercegovina" #: ../picard/const.py:318 msgid "Congo, The Democratic Republic of the" -msgstr "" +msgstr "Den demokratiske republikken Kongo" #: ../picard/const.py:319 msgid "Serbia and Montenegro (historical, 2003-2006)" -msgstr "" +msgstr "Serbia og Montenegro (historisk 2003-2006)" #: ../picard/const.py:320 msgid "Serbia" -msgstr "" +msgstr "Serbia" #: ../picard/const.py:321 msgid "Montenegro" -msgstr "" +msgstr "Montenegro" #: ../picard/const.py:322 msgid "Croatia" -msgstr "" +msgstr "Kroatia" #: ../picard/const.py:323 msgid "Korea (North), Democratic People's Republic of" -msgstr "" +msgstr "Nord-Korea (Den demokratiske folkerepublikken)" #: ../picard/const.py:324 msgid "Korea (South), Republic of" -msgstr "" +msgstr "Sør-Korea (Republikken)" #: ../picard/const.py:325 msgid "Slovakia" -msgstr "" +msgstr "Slovakia" #: ../picard/const.py:326 msgid "Soviet Union (historical, 1922-1991)" -msgstr "" +msgstr "Sovjetunionen" #: ../picard/const.py:327 msgid "East Timor" -msgstr "" +msgstr "Øst-Timor" #: ../picard/const.py:328 msgid "Czechoslovakia (historical, 1918-1992)" -msgstr "" +msgstr "Tsjekkoslovakia" #: ../picard/const.py:329 msgid "Europe" -msgstr "" +msgstr "Europa" #: ../picard/const.py:330 msgid "East Germany (historical, 1949-1990)" -msgstr "" +msgstr "Øst-Tyskland (historisk, 1949-1990)" #: ../picard/const.py:331 msgid "[Unknown Country]" -msgstr "" +msgstr "[ukjent land]" #: ../picard/const.py:332 msgid "[Worldwide]" -msgstr "" +msgstr "[hele verden]" #: ../picard/const.py:333 msgid "Yugoslavia (historical, 1918-1992)" -msgstr "" +msgstr "Jugoslavia (historisk, 1918-1992)" #: ../picard/const.py:338 ../picard/const.py:397 msgid "Afrikaans" -msgstr "" +msgstr "Afrikaans" #: ../picard/const.py:339 ../picard/const.py:406 msgid "Arabic" -msgstr "" +msgstr "Arabisk" #: ../picard/const.py:340 msgid "Asturian" -msgstr "" +msgstr "Asturisk" #: ../picard/const.py:341 ../picard/const.py:448 msgid "Bulgarian" -msgstr "" +msgstr "Bulgarsk" #: ../picard/const.py:342 ../picard/const.py:452 msgid "Catalan" -msgstr "" +msgstr "Katalansk" #: ../picard/const.py:343 ../picard/const.py:474 msgid "Czech" @@ -1167,7 +1167,7 @@ msgstr "Tsjekkisk" #: ../picard/const.py:344 ../picard/const.py:846 msgid "Welsh" -msgstr "" +msgstr "Walisisk" #: ../picard/const.py:345 ../picard/const.py:476 msgid "Danish" @@ -1179,7 +1179,7 @@ msgstr "Tysk" #: ../picard/const.py:347 ../picard/const.py:554 ../picard/const.py:555 msgid "Greek" -msgstr "" +msgstr "Gresk" #: ../picard/const.py:348 ../picard/const.py:485 msgid "English" @@ -1187,7 +1187,7 @@ msgstr "Engelsk" #: ../picard/const.py:349 msgid "English (Canada)" -msgstr "" +msgstr "Kanadisk Engelsk" #: ../picard/const.py:350 msgid "English (UK)" @@ -1195,7 +1195,7 @@ msgstr "Britisk Engelsk" #: ../picard/const.py:351 ../picard/const.py:516 msgid "Esperanto" -msgstr "" +msgstr "Esperanto" #: ../picard/const.py:352 ../picard/const.py:755 msgid "Spanish" @@ -1203,11 +1203,11 @@ msgstr "Spansk" #: ../picard/const.py:353 ../picard/const.py:517 msgid "Estonian" -msgstr "" +msgstr "Estisk" #: ../picard/const.py:354 ../picard/const.py:689 msgid "Persian" -msgstr "" +msgstr "Persisk" #: ../picard/const.py:355 ../picard/const.py:526 msgid "Finnish" @@ -1215,7 +1215,7 @@ msgstr "Finsk" #: ../picard/const.py:356 ../picard/const.py:522 msgid "Faroese" -msgstr "" +msgstr "Færøysk" #: ../picard/const.py:357 ../picard/const.py:528 msgid "French" @@ -1223,23 +1223,23 @@ msgstr "Fransk" #: ../picard/const.py:358 msgid "French (Canada)" -msgstr "" +msgstr "Kanadisk Fransk" #: ../picard/const.py:359 msgid "Frisian" -msgstr "" +msgstr "Frisisk" #: ../picard/const.py:360 ../picard/const.py:540 msgid "Galician" -msgstr "" +msgstr "Gælisk" #: ../picard/const.py:361 ../picard/const.py:574 msgid "Hebrew" -msgstr "" +msgstr "Hebraisk" #: ../picard/const.py:362 ../picard/const.py:576 msgid "Hindi" -msgstr "" +msgstr "Hindi" #: ../picard/const.py:363 ../picard/const.py:578 msgid "Hungarian" @@ -1247,11 +1247,11 @@ msgstr "Ungarsk" #: ../picard/const.py:364 ../picard/const.py:584 msgid "Indonesian" -msgstr "" +msgstr "Indonesisk" #: ../picard/const.py:365 msgid "Islandic" -msgstr "" +msgstr "Islandsk" #: ../picard/const.py:366 ../picard/const.py:590 msgid "Italian" @@ -1259,11 +1259,11 @@ msgstr "Italiensk" #: ../picard/const.py:367 ../picard/const.py:593 msgid "Japanese" -msgstr "" +msgstr "Japansk" #: ../picard/const.py:368 ../picard/const.py:601 msgid "Kannada" -msgstr "" +msgstr "Kannada" #: ../picard/const.py:369 ../picard/const.py:615 msgid "Korean" @@ -1279,7 +1279,7 @@ msgstr "Norsk (bokmål)" #: ../picard/const.py:372 ../picard/const.py:642 msgid "Low German" -msgstr "" +msgstr "Plattysk" #: ../picard/const.py:373 ../picard/const.py:480 msgid "Dutch" @@ -1287,7 +1287,7 @@ msgstr "Nederlandsk" #: ../picard/const.py:374 ../picard/const.py:680 msgid "Occitan" -msgstr "" +msgstr "Occitansk" #: ../picard/const.py:375 ../picard/const.py:692 msgid "Polish" @@ -1299,7 +1299,7 @@ msgstr "Portugisisk" #: ../picard/const.py:377 msgid "Brazilian Portuguese" -msgstr "" +msgstr "Brasiliansk Portugisisk" #: ../picard/const.py:378 ../picard/const.py:704 msgid "Romanian" @@ -1311,7 +1311,7 @@ msgstr "Russisk" #: ../picard/const.py:380 msgid "Scots" -msgstr "" +msgstr "Skotsk" #: ../picard/const.py:381 ../picard/const.py:741 msgid "Slovak" @@ -1319,11 +1319,11 @@ msgstr "Slovakisk" #: ../picard/const.py:382 ../picard/const.py:743 msgid "Slovenian" -msgstr "" +msgstr "Slovensk" #: ../picard/const.py:383 ../picard/const.py:713 ../picard/const.py:714 msgid "Serbian" -msgstr "" +msgstr "Serbisk" #: ../picard/const.py:384 ../picard/const.py:782 msgid "Swedish" @@ -1331,147 +1331,147 @@ msgstr "Svensk" #: ../picard/const.py:385 ../picard/const.py:794 msgid "Tamil" -msgstr "" +msgstr "Tamilsk" #: ../picard/const.py:386 ../picard/const.py:818 msgid "Turkish" -msgstr "" +msgstr "Tyrkisk" #: ../picard/const.py:387 ../picard/const.py:826 msgid "Ukrainian" -msgstr "" +msgstr "Ukrainsk" #: ../picard/const.py:388 ../picard/const.py:454 msgid "Chinese" -msgstr "" +msgstr "Kinesisk" #: ../picard/const.py:392 msgid "Afar" -msgstr "" +msgstr "Afar" #: ../picard/const.py:393 msgid "Afar Djibouti" -msgstr "" +msgstr "Afar Djibouti" #: ../picard/const.py:394 msgid "Afar Eritrea" -msgstr "" +msgstr "Afar Eritrea" #: ../picard/const.py:395 msgid "Afar Eritrea Saho" -msgstr "" +msgstr "Afar Eritrea Saho" #: ../picard/const.py:396 msgid "Afar Ethiopia" -msgstr "" +msgstr "Afar Etiopia" #: ../picard/const.py:398 msgid "Afrikaans Namibia" -msgstr "" +msgstr "Afrikaans Namibia" #: ../picard/const.py:399 msgid "Afrikaans South Africa" -msgstr "" +msgstr "Afrikaans Sør-Afrika" #: ../picard/const.py:400 msgid "Akan" -msgstr "" +msgstr "Akan" #: ../picard/const.py:401 msgid "Akan Ghana" -msgstr "" +msgstr "Akan Ghana" #: ../picard/const.py:402 msgid "Albanian" -msgstr "" +msgstr "Albansk" #: ../picard/const.py:403 msgid "Albanian Albania" -msgstr "" +msgstr "Albansk Albania" #: ../picard/const.py:404 msgid "Amharic" -msgstr "" +msgstr "Amharisk" #: ../picard/const.py:405 msgid "Amharic Ethiopia" -msgstr "" +msgstr "Amharisk Etiopia" #: ../picard/const.py:407 msgid "Arabic Algeria" -msgstr "" +msgstr "Arabisk Algerie" #: ../picard/const.py:408 msgid "Arabic Bahrain" -msgstr "" +msgstr "Arabisk Bahrain" #: ../picard/const.py:409 msgid "Arabic Egypt" -msgstr "" +msgstr "Arabisk Egypt" #: ../picard/const.py:410 msgid "Arabic Iraq" -msgstr "" +msgstr "Arabisk Irak" #: ../picard/const.py:411 msgid "Arabic Jordan" -msgstr "" +msgstr "Arabisk Jordan" #: ../picard/const.py:412 msgid "Arabic Kuwait" -msgstr "" +msgstr "Arabisk Kuwait" #: ../picard/const.py:413 msgid "Arabic Lebanon" -msgstr "" +msgstr "Arabisk Libanon" #: ../picard/const.py:414 msgid "Arabic Libya" -msgstr "" +msgstr "Arabisk Libya" #: ../picard/const.py:415 msgid "Arabic Morocco" -msgstr "" +msgstr "Arabisk Marokko" #: ../picard/const.py:416 msgid "Arabic Oman" -msgstr "" +msgstr "Arabisk Oman" #: ../picard/const.py:417 msgid "Arabic Qatar" -msgstr "" +msgstr "Arabisk Qatar" #: ../picard/const.py:418 msgid "Arabic Saudi Arabia" -msgstr "" +msgstr "Arabisk Saudi Arabia" #: ../picard/const.py:419 msgid "Arabic Sudan" -msgstr "" +msgstr "Arabisk Sudan" #: ../picard/const.py:420 msgid "Arabic Syria" -msgstr "" +msgstr "Arabisk Syria" #: ../picard/const.py:421 msgid "Arabic Tunisia" -msgstr "" +msgstr "Arabisk Tunisia" #: ../picard/const.py:422 msgid "Arabic United Arab Emirates" -msgstr "" +msgstr "Arabisk Forente Arabiske Amirater" #: ../picard/const.py:423 msgid "Arabic Yemen" -msgstr "" +msgstr "Arabisk Jemen" #: ../picard/const.py:424 msgid "Armenian" -msgstr "" +msgstr "Armensk" #: ../picard/const.py:425 msgid "Armenian Armenia" -msgstr "" +msgstr "Armensk Armenia" #: ../picard/const.py:426 msgid "Armenian Armenia Revised Orthography" @@ -1479,35 +1479,35 @@ msgstr "" #: ../picard/const.py:427 msgid "Assamese" -msgstr "" +msgstr "Assamesisk" #: ../picard/const.py:428 msgid "Assamese India" -msgstr "" +msgstr "Assamesisk India" #: ../picard/const.py:429 msgid "Atsam" -msgstr "" +msgstr "Atsam" #: ../picard/const.py:430 msgid "Atsam Nigeria" -msgstr "" +msgstr "Atsam Nigeria" #: ../picard/const.py:431 msgid "Azerbaijani" -msgstr "" +msgstr "Aserbajdsjansk" #: ../picard/const.py:432 msgid "Azerbaijani Azerbaijan" -msgstr "" +msgstr "Aserbajdsjansk Aserbajdsjan" #: ../picard/const.py:433 msgid "Azerbaijani Cyrillic" -msgstr "" +msgstr "Aserbajdsjansk kyrillisk" #: ../picard/const.py:434 msgid "Azerbaijani Cyrillic Azerbaijan" -msgstr "" +msgstr "Aserbajdsjansk kyrillisk Aserbajdsjan" #: ../picard/const.py:435 msgid "Azerbaijani Latin" @@ -1515,175 +1515,175 @@ msgstr "" #: ../picard/const.py:436 msgid "Azerbaijani Latin Azerbaijan" -msgstr "" +msgstr "Aserbajdsjansk Latin" #: ../picard/const.py:437 msgid "Basque" -msgstr "" +msgstr "Baskisk" #: ../picard/const.py:438 msgid "Basque Spain" -msgstr "" +msgstr "Baskisk Spania" #: ../picard/const.py:439 msgid "Belarusian" -msgstr "" +msgstr "Hviterussisk" #: ../picard/const.py:440 msgid "Belarusian Belarus" -msgstr "" +msgstr "Hviterussisk Hviterussland" #: ../picard/const.py:441 msgid "Bengali" -msgstr "" +msgstr "Bengalsk" #: ../picard/const.py:442 msgid "Bengali Bangladesh" -msgstr "" +msgstr "Bengalsk Bangladesh" #: ../picard/const.py:443 msgid "Bengali India" -msgstr "" +msgstr "Bengalsk India" #: ../picard/const.py:444 msgid "Blin" -msgstr "" +msgstr "Blin" #: ../picard/const.py:445 msgid "Blin Eritrea" -msgstr "" +msgstr "Blin Eritrea" #: ../picard/const.py:446 msgid "Bosnian" -msgstr "" +msgstr "Bosnisk" #: ../picard/const.py:447 msgid "Bosnian Bosnia and Herzegovina" -msgstr "" +msgstr "Bosnisk Bosnia-Herzegovina" #: ../picard/const.py:449 msgid "Bulgarian Bulgaria" -msgstr "" +msgstr "Bulgarsk Bulgaria" #: ../picard/const.py:450 msgid "Burmese" -msgstr "" +msgstr "Burmesisk" #: ../picard/const.py:453 msgid "Catalan Spain" -msgstr "" +msgstr "Katalansk Spania" #: ../picard/const.py:455 msgid "Chinese China" -msgstr "" +msgstr "Kinesisk Kina" #: ../picard/const.py:456 msgid "Chinese Hong Kong SAR China" -msgstr "" +msgstr "Kinesisk (Hong-Kong SAR Kina)" #: ../picard/const.py:457 msgid "Chinese Macau SAR China" -msgstr "" +msgstr "Kinesisk (Macao SAR Kina)" #: ../picard/const.py:458 msgid "Chinese Simplified Han" -msgstr "" +msgstr "Kinesisk forenklet Han" #: ../picard/const.py:459 msgid "Chinese Simplified Han China" -msgstr "" +msgstr "Kinesisk forenklet Han (Kina)" #: ../picard/const.py:460 msgid "Chinese Simplified Han Hong Kong SAR China" -msgstr "" +msgstr "Kinesisk forenklet Han (Hong-Kong SAR Kina)" #: ../picard/const.py:461 msgid "Chinese Simplified Han Macau SAR China" -msgstr "" +msgstr "Kinesisk forenklet Han (Macao SAR Kina)" #: ../picard/const.py:462 msgid "Chinese Simplified Han Singapore" -msgstr "" +msgstr "Kinesisk forenklet Han (singapore)" #: ../picard/const.py:463 msgid "Chinese Singapore" -msgstr "" +msgstr "Kinesisk (Singapore)" #: ../picard/const.py:464 msgid "Chinese Taiwan" -msgstr "" +msgstr "Kinesisk (Taiwan)" #: ../picard/const.py:465 msgid "Chinese Traditional Han" -msgstr "" +msgstr "Kinesisk tradisjonell Han" #: ../picard/const.py:466 msgid "Chinese Traditional Han Hong Kong SAR China" -msgstr "" +msgstr "Kinesisk tradisjonell Han (Hong Kong SAR Kina)" #: ../picard/const.py:467 msgid "Chinese Traditional Han Macau SAR China" -msgstr "" +msgstr "Kinesisk tradisjonell Han (Macao SAR Kina)" #: ../picard/const.py:468 msgid "Chinese Traditional Han Taiwan" -msgstr "" +msgstr "Kinesisk tradisjonell Han (Taiwan)" #: ../picard/const.py:469 msgid "Coptic" -msgstr "" +msgstr "Koptisk" #: ../picard/const.py:470 msgid "Cornish" -msgstr "" +msgstr "Kornisk" #: ../picard/const.py:471 msgid "Cornish United Kingdom" -msgstr "" +msgstr "Kornisk Storbritannia" #: ../picard/const.py:472 msgid "Croatian" -msgstr "" +msgstr "Kroatisk" #: ../picard/const.py:473 msgid "Croatian Croatia" -msgstr "" +msgstr "Kroatisk Kroatia" #: ../picard/const.py:475 msgid "Czech Czech Republic" -msgstr "" +msgstr "Tsjekkisk Tsjekkia" #: ../picard/const.py:477 msgid "Danish Denmark" -msgstr "" +msgstr "Dansk Danmark" #: ../picard/const.py:478 msgid "Divehi" -msgstr "" +msgstr "Divehi" #: ../picard/const.py:479 msgid "Divehi Maldives" -msgstr "" +msgstr "Divehi Maldivene" #: ../picard/const.py:481 msgid "Dutch Belgium" -msgstr "" +msgstr "Nederlandsk Belgia" #: ../picard/const.py:482 msgid "Dutch Netherlands" -msgstr "" +msgstr "Nederlandsk Nederland" #: ../picard/const.py:483 msgid "Dzongkha" -msgstr "" +msgstr "Dzongkha" #: ../picard/const.py:484 msgid "Dzongkha Bhutan" -msgstr "" +msgstr "Dzongkha Bhutan" #: ../picard/const.py:486 msgid "English American Samoa" -msgstr "" +msgstr "Engelsk Amerikansk Samoa" #: ../picard/const.py:487 msgid "English Australia" @@ -1695,247 +1695,247 @@ msgstr "" #: ../picard/const.py:489 msgid "English Belize" -msgstr "" +msgstr "Engelsk Belize" #: ../picard/const.py:490 msgid "English Botswana" -msgstr "" +msgstr "Engelsk Botswana" #: ../picard/const.py:491 msgid "English Canada" -msgstr "" +msgstr "Engelsk Canada" #: ../picard/const.py:492 msgid "English Deseret" -msgstr "" +msgstr "Engelsk Deseret" #: ../picard/const.py:493 msgid "English Deseret United States" -msgstr "" +msgstr "Engelsk Deseret Amerikas forente stater" #: ../picard/const.py:494 msgid "English Guam" -msgstr "" +msgstr "Engelsk Guam" #: ../picard/const.py:495 msgid "English Hong Kong SAR China" -msgstr "" +msgstr "Engelsk (Hong-Kong SAR Kina)" #: ../picard/const.py:496 msgid "English India" -msgstr "" +msgstr "Engelsk India" #: ../picard/const.py:497 msgid "English Ireland" -msgstr "" +msgstr "Engelsk Irland" #: ../picard/const.py:498 msgid "English Jamaica" -msgstr "" +msgstr "Engelsk Jamaica" #: ../picard/const.py:499 msgid "English Malta" -msgstr "" +msgstr "Engelsk Malta" #: ../picard/const.py:500 msgid "English Marshall Islands" -msgstr "" +msgstr "Engelsk Marshalløyene" #: ../picard/const.py:501 msgid "English Namibia" -msgstr "" +msgstr "Engelsk Namibia" #: ../picard/const.py:502 msgid "English New Zealand" -msgstr "" +msgstr "Engelsk New Zealand" #: ../picard/const.py:503 msgid "English Northern Mariana Islands" -msgstr "" +msgstr "Engelsk Nord-Marianene" #: ../picard/const.py:504 msgid "English Pakistan" -msgstr "" +msgstr "Engelsk Pakistan" #: ../picard/const.py:505 msgid "English Philippines" -msgstr "" +msgstr "Engelsk Filippinene" #: ../picard/const.py:506 msgid "English Shavian" -msgstr "" +msgstr "Engelsk Shavian" #: ../picard/const.py:507 msgid "English Singapore" -msgstr "" +msgstr "Engelsk Singapore" #: ../picard/const.py:508 msgid "English South Africa" -msgstr "" +msgstr "Engelsk Sør-Afrika" #: ../picard/const.py:509 msgid "English Trinidad and Tobago" -msgstr "" +msgstr "Engelsk Trinidad og Tobago" #: ../picard/const.py:510 msgid "English U.S. Minor Outlying Islands" -msgstr "" +msgstr "Engelsk USAs ytre småøyer" #: ../picard/const.py:511 msgid "English U.S. Virgin Islands" -msgstr "" +msgstr "Engelsk De amerikanske Jomfruøyene" #: ../picard/const.py:512 msgid "English United Kingdom" -msgstr "" +msgstr "Engelsk Storbritannia" #: ../picard/const.py:513 msgid "English United States" -msgstr "" +msgstr "Engelsk Amerikas forente stater" #: ../picard/const.py:514 msgid "English United States Computer" -msgstr "" +msgstr "Engelsk United States Computer" #: ../picard/const.py:515 msgid "English Zimbabwe" -msgstr "" +msgstr "Engelsk Zimbabwe" #: ../picard/const.py:518 msgid "Estonian Estonia" -msgstr "" +msgstr "Estisk Estland" #: ../picard/const.py:519 msgid "Ewe" -msgstr "" +msgstr "Ewe" #: ../picard/const.py:520 msgid "Ewe Ghana" -msgstr "" +msgstr "Ewe Ghana" #: ../picard/const.py:521 msgid "Ewe Togo" -msgstr "" +msgstr "Ewe Togo" #: ../picard/const.py:523 msgid "Faroese Faroe Islands" -msgstr "" +msgstr "Færøysk Færøyene" #: ../picard/const.py:524 msgid "Filipino" -msgstr "" +msgstr "Filipinsk" #: ../picard/const.py:525 msgid "Filipino Philippines" -msgstr "" +msgstr "Filippinsk Filippinene" #: ../picard/const.py:527 msgid "Finnish Finland" -msgstr "" +msgstr "Finks Finland" #: ../picard/const.py:529 msgid "French Belgium" -msgstr "" +msgstr "Fransk Belgia" #: ../picard/const.py:530 msgid "French Canada" -msgstr "" +msgstr "Fransk Canada" #: ../picard/const.py:531 msgid "French France" -msgstr "" +msgstr "Fransk Frankrike" #: ../picard/const.py:532 msgid "French Luxembourg" -msgstr "" +msgstr "Fransk Luxemburg" #: ../picard/const.py:533 msgid "French Monaco" -msgstr "" +msgstr "Fransk Monaco" #: ../picard/const.py:534 msgid "French Senegal" -msgstr "" +msgstr "Fransk Senegal" #: ../picard/const.py:535 msgid "French Switzerland" -msgstr "" +msgstr "Fransk Sveits" #: ../picard/const.py:536 msgid "Friulian" -msgstr "" +msgstr "Friulisk" #: ../picard/const.py:537 msgid "Friulian Italy" -msgstr "" +msgstr "Friulisk Italia" #: ../picard/const.py:538 msgid "Ga" -msgstr "" +msgstr "Ga" #: ../picard/const.py:539 msgid "Ga Ghana" -msgstr "" +msgstr "Ga Ghana" #: ../picard/const.py:541 msgid "Galician Spain" -msgstr "" +msgstr "Galisisk Spania" #: ../picard/const.py:542 msgid "Geez" -msgstr "" +msgstr "Ge'ez" #: ../picard/const.py:543 msgid "Geez Eritrea" -msgstr "" +msgstr "Ge'ez Eritrea" #: ../picard/const.py:544 msgid "Geez Ethiopia" -msgstr "" +msgstr "Ge'ez Etiopia" #: ../picard/const.py:545 msgid "Georgian" -msgstr "" +msgstr "Georgisk" #: ../picard/const.py:546 msgid "Georgian Georgia" -msgstr "" +msgstr "Georgisk Georgia" #: ../picard/const.py:548 msgid "German Austria" -msgstr "" +msgstr "Tysk Østerrike" #: ../picard/const.py:549 msgid "German Belgium" -msgstr "" +msgstr "Tysk Belgia" #: ../picard/const.py:550 msgid "German Germany" -msgstr "" +msgstr "Tysk Tyskland" #: ../picard/const.py:551 msgid "German Liechtenstein" -msgstr "" +msgstr "Tysk Liechtenstein" #: ../picard/const.py:552 msgid "German Luxembourg" -msgstr "" +msgstr "Tysk Luxemburg" #: ../picard/const.py:553 msgid "German Switzerland" -msgstr "" +msgstr "Tysk Sveits" #: ../picard/const.py:556 msgid "Greek Cyprus" -msgstr "" +msgstr "Gresk Kypros" #: ../picard/const.py:557 msgid "Greek Greece" -msgstr "" +msgstr "Greesk Hellas" #: ../picard/const.py:558 msgid "Gujarati" -msgstr "" +msgstr "Gujarati" #: ../picard/const.py:559 msgid "Gujarati India" @@ -3874,15 +3874,15 @@ msgstr "" #: ../picard/ui/puidsubmit.py:31 ../picard/ui/mainwindow.py:483 msgid "Track" -msgstr "Tittel" +msgstr "Spor" #: ../picard/ui/puidsubmit.py:31 msgid "Release" -msgstr "" +msgstr "Utgivelse" #: ../picard/ui/puidsubmit.py:31 msgid "Release ID" -msgstr "" +msgstr "Utgivelses ID" #: ../picard/ui/ui_edittagdialog.py:45 msgid "Edit Tag" @@ -4190,7 +4190,7 @@ msgstr "Lagrer spilleliste %s..." #: ../picard/ui/mainwindow.py:574 #, python-format msgid "Playlist %s saved" -msgstr "" +msgstr "Spilleliste %s lagret" #: ../picard/ui/mainwindow.py:675 ../picard/ui/mainwindow.py:684 #, python-format @@ -4199,7 +4199,7 @@ msgstr " (Feil: %s)" #: ../picard/ui/ui_options.py:42 msgid "Options" -msgstr "" +msgstr "Alternativer" #: ../picard/ui/ui_options_cdlookup.py:47 msgid "CD-ROM device to use for lookups:" @@ -4207,7 +4207,7 @@ msgstr "" #: ../picard/ui/ui_metadata.py:130 msgid "Title:" -msgstr "" +msgstr "Tittel:" #: ../picard/ui/ui_metadata.py:131 msgid "Artist:" @@ -4291,7 +4291,7 @@ msgstr "Diverse artister:" #: ../picard/ui/ui_options_metadata.py:264 msgid "Non-album tracks:" -msgstr "Albumløse spor:" +msgstr "Frittstående spor" #: ../picard/ui/ui_options_releases.py:215 msgid "Form" @@ -4303,11 +4303,11 @@ msgstr "" #: ../picard/ui/ui_options_releases.py:218 msgid "Single" -msgstr "" +msgstr "Singel" #: ../picard/ui/ui_options_releases.py:219 msgid "EP" -msgstr "" +msgstr "EP" #: ../picard/ui/ui_options_releases.py:221 msgid "Soundtrack" @@ -4319,23 +4319,23 @@ msgstr "" #: ../picard/ui/ui_options_releases.py:223 msgid "Interview" -msgstr "" +msgstr "Intervju" #: ../picard/ui/ui_options_releases.py:224 msgid "Audiobook" -msgstr "" +msgstr "Lydbok" #: ../picard/ui/ui_options_releases.py:225 msgid "Live" -msgstr "" +msgstr "Live" #: ../picard/ui/ui_options_releases.py:226 msgid "Remix" -msgstr "" +msgstr "Remiks" #: ../picard/ui/ui_options_releases.py:228 msgid "Reset all" -msgstr "" +msgstr "Tilbakestill alle" #: ../picard/ui/ui_options_releases.py:229 msgid "Preferred release countries" @@ -4344,12 +4344,12 @@ msgstr "" #: ../picard/ui/ui_options_releases.py:230 #: ../picard/ui/ui_options_releases.py:233 msgid ">" -msgstr "" +msgstr ">" #: ../picard/ui/ui_options_releases.py:231 #: ../picard/ui/ui_options_releases.py:234 msgid "<" -msgstr "" +msgstr "<" #: ../picard/ui/ui_options_releases.py:232 msgid "Preferred release formats" @@ -4409,7 +4409,7 @@ msgstr "" #: ../picard/ui/options/moving.py:33 msgid "Moving files" -msgstr "" +msgstr "Flytter filer" #: ../picard/ui/options/moving.py:65 msgid "Error" @@ -4421,15 +4421,15 @@ msgstr "" #: ../picard/ui/options/interface.py:32 msgid "User Interface" -msgstr "" +msgstr "Brukergrensesnitt" #: ../picard/ui/options/interface.py:49 msgid "System default" -msgstr "System standard" +msgstr "Systemstandard" #: ../picard/ui/options/interface.py:76 msgid "Language changed" -msgstr "" +msgstr "Språk endret" #: ../picard/ui/options/interface.py:76 msgid "" @@ -4462,7 +4462,8 @@ msgstr "" " Anders Oftedal https://launchpad.net/~anders-oftedal-gmail\n" " Lukáš Lalinský https://launchpad.net/~luks\n" " Philipp Wolfer https://launchpad.net/~phw\n" -" Simen Sandberg https://launchpad.net/~senilix" +" Simen Sandberg https://launchpad.net/~senilix\n" +" ZaphodBeeblebrox https://launchpad.net/~zaphodbeeblebrox" #. Replace LANG with language you are translatig to. #: ../picard/ui/options/about.py:51 diff --git a/po/nl.po b/po/nl.po index e7393ad35..e30cf8809 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: picard\n" "Report-Msgid-Bugs-To: http://bugs.musicbrainz.org/\n" "POT-Creation-Date: 2011-10-08 12:39+0200\n" -"PO-Revision-Date: 2011-11-03 23:10+0000\n" +"PO-Revision-Date: 2012-03-21 15:00+0000\n" "Last-Translator: drMerry \n" "Language-Team: Dutch \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-Launchpad-Export-Date: 2011-11-05 04:42+0000\n" -"X-Generator: Launchpad (build 14231)\n" +"X-Launchpad-Export-Date: 2012-03-22 04:35+0000\n" +"X-Generator: Launchpad (build 14981)\n" "Generated-By: pygettext.py 1.5\n" #: ../picard/ui/ui_cdlookup.py:57 @@ -79,7 +79,7 @@ msgstr "30cm Vinyl (lp of 45 toeren)" #: ../picard/const.py:57 msgid "Digital Media" -msgstr "Digital Media" +msgstr "Digitale media" #: ../picard/const.py:58 msgid "USB Flash Drive" @@ -147,7 +147,7 @@ msgstr "SVCD" #: ../picard/const.py:74 msgid "UMD" -msgstr "" +msgstr "UMD" #: ../picard/const.py:75 ../picard/ui/ui_options_releases.py:227 msgid "Other" @@ -159,11 +159,11 @@ msgstr "LaserDisc" #: ../picard/const.py:77 msgid "Cartridge" -msgstr "" +msgstr "Cassette" #: ../picard/const.py:78 msgid "Reel-to-reel" -msgstr "" +msgstr "Spoel-naar-spoel" #: ../picard/const.py:79 msgid "DAT" @@ -903,7 +903,7 @@ msgstr "Mayotte" #: ../picard/const.py:267 msgid "United States Minor Outlying Islands" -msgstr "United States Minor Outlying Islands" +msgstr "Verenigde Staten Minor Outlying Islands" #: ../picard/const.py:268 msgid "Lebanon" @@ -1179,7 +1179,7 @@ msgstr "Arabisch" #: ../picard/const.py:340 msgid "Asturian" -msgstr "" +msgstr "Asturisch" #: ../picard/const.py:341 ../picard/const.py:448 msgid "Bulgarian" @@ -1375,7 +1375,7 @@ msgstr "Chinees" #: ../picard/const.py:392 msgid "Afar" -msgstr "" +msgstr "Afar" #: ../picard/const.py:393 msgid "Afar Djibouti" @@ -1411,7 +1411,7 @@ msgstr "" #: ../picard/const.py:402 msgid "Albanian" -msgstr "" +msgstr "Albanees" #: ../picard/const.py:403 msgid "Albanian Albania" @@ -1435,7 +1435,7 @@ msgstr "" #: ../picard/const.py:409 msgid "Arabic Egypt" -msgstr "" +msgstr "Arabisch Egypte" #: ../picard/const.py:410 msgid "Arabic Iraq" @@ -1443,7 +1443,7 @@ msgstr "Arabisch Irak" #: ../picard/const.py:411 msgid "Arabic Jordan" -msgstr "" +msgstr "Arabisch Jordanië" #: ../picard/const.py:412 msgid "Arabic Kuwait" @@ -1667,7 +1667,7 @@ msgstr "" #: ../picard/const.py:471 msgid "Cornish United Kingdom" -msgstr "" +msgstr "Cornish Verenigd Koninkrijk" #: ../picard/const.py:472 msgid "Croatian" @@ -1695,7 +1695,7 @@ msgstr "" #: ../picard/const.py:481 msgid "Dutch Belgium" -msgstr "" +msgstr "Nederlands België" #: ../picard/const.py:482 msgid "Dutch Netherlands" @@ -1815,15 +1815,15 @@ msgstr "" #: ../picard/const.py:512 msgid "English United Kingdom" -msgstr "" +msgstr "Engels Verenigd Koninkrijk" #: ../picard/const.py:513 msgid "English United States" -msgstr "" +msgstr "Engels Verenigde Staten" #: ../picard/const.py:514 msgid "English United States Computer" -msgstr "" +msgstr "Engels Verenigde Staten Computer" #: ../picard/const.py:515 msgid "English Zimbabwe" @@ -2303,7 +2303,7 @@ msgstr "" #: ../picard/const.py:654 msgid "Manx United Kingdom" -msgstr "" +msgstr "Manx Verenigd Koninkrijk" #: ../picard/const.py:655 msgid "Marathi" @@ -2715,7 +2715,7 @@ msgstr "" #: ../picard/const.py:773 msgid "Spanish United States" -msgstr "" +msgstr "Spaans Verenigde Staten" #: ../picard/const.py:774 msgid "Spanish Uruguay" @@ -2987,7 +2987,7 @@ msgstr "" #: ../picard/const.py:847 msgid "Welsh United Kingdom" -msgstr "" +msgstr "Welsh Verenigd Koninkrijk" #: ../picard/const.py:848 msgid "Wolof" @@ -2995,39 +2995,39 @@ msgstr "" #: ../picard/const.py:849 msgid "Wolof Latin" -msgstr "" +msgstr "Wolof Latijn" #: ../picard/const.py:850 msgid "Wolof Latin Senegal" -msgstr "" +msgstr "Wolof Latijns-Senegal" #: ../picard/const.py:851 msgid "Wolof Senegal" -msgstr "" +msgstr "Wolof Senegal" #: ../picard/const.py:852 msgid "Xhosa" -msgstr "" +msgstr "Xhosa" #: ../picard/const.py:853 msgid "Xhosa South Africa" -msgstr "" +msgstr "Xhosa Zuid-Afrika" #: ../picard/const.py:854 msgid "Yoruba" -msgstr "" +msgstr "Yoruba" #: ../picard/const.py:855 msgid "Yoruba Nigeria" -msgstr "" +msgstr "Yoruba Nigeria" #: ../picard/const.py:856 msgid "Zulu" -msgstr "" +msgstr "Zoeloe" #: ../picard/const.py:857 msgid "Zulu South Africa" -msgstr "" +msgstr "Zoeloe Zuid-Afrika" #: ../picard/file.py:513 #, python-format @@ -3986,7 +3986,11 @@ msgid "" msgid_plural "" "There are %s unsaved files. Closing Picard will lose all unsaved changes." msgstr[0] "" +"Er is %s bestand niet opgeslagen. Bij afsluiten van Picard zullen de " +"wijzigingen verloren gaan." msgstr[1] "" +"Er zijn %s bestanden niet opgeslagen. Bij afsluiten van Picard zullen de " +"wijzigingen verloren gaan." #: ../picard/ui/mainwindow.py:145 msgid "&Quit Picard" diff --git a/po/picard.pot b/po/picard.pot index aafdb30db..9f52f62fd 100644 --- a/po/picard.pot +++ b/po/picard.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://tickets.musicbrainz.org/\n" -"POT-Creation-Date: 2011-10-08 12:39+0200\n" +"POT-Creation-Date: 2012-05-29 08:42+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,3020 +18,3066 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ../picard/const.py:49 -msgid "CD" -msgstr "" - -#: ../picard/const.py:50 -msgid "CD-R" -msgstr "" - -#: ../picard/const.py:51 -msgid "HDCD" -msgstr "" - -#: ../picard/const.py:52 -msgid "8cm CD" -msgstr "" - -#: ../picard/const.py:53 -msgid "Vinyl" -msgstr "" - -#: ../picard/const.py:54 -msgid "7\" Vinyl" -msgstr "" - -#: ../picard/const.py:55 -msgid "10\" Vinyl" -msgstr "" - -#: ../picard/const.py:56 -msgid "12\" Vinyl" -msgstr "" - -#: ../picard/const.py:57 -msgid "Digital Media" -msgstr "" - -#: ../picard/const.py:58 -msgid "USB Flash Drive" -msgstr "" - -#: ../picard/const.py:59 -msgid "slotMusic" -msgstr "" - -#: ../picard/const.py:60 -msgid "Cassette" -msgstr "" - -#: ../picard/const.py:61 -msgid "DVD" -msgstr "" - -#: ../picard/const.py:62 -msgid "DVD-Audio" -msgstr "" - -#: ../picard/const.py:63 -msgid "DVD-Video" -msgstr "" - -#: ../picard/const.py:64 -msgid "SACD" -msgstr "" - -#: ../picard/const.py:65 -msgid "DualDisc" -msgstr "" - -#: ../picard/const.py:66 -msgid "MiniDisc" -msgstr "" - -#: ../picard/const.py:67 -msgid "Blu-ray" -msgstr "" - -#: ../picard/const.py:68 -msgid "HD-DVD" -msgstr "" - -#: ../picard/const.py:69 -msgid "Videotape" -msgstr "" - -#: ../picard/const.py:70 -msgid "VHS" -msgstr "" - -#: ../picard/const.py:71 -msgid "Betamax" -msgstr "" - -#: ../picard/const.py:72 -msgid "VCD" -msgstr "" - -#: ../picard/const.py:73 -msgid "SVCD" -msgstr "" - -#: ../picard/const.py:74 -msgid "UMD" -msgstr "" - -#: ../picard/const.py:75 ../picard/ui/ui_options_releases.py:227 -msgid "Other" -msgstr "" - -#: ../picard/const.py:76 -msgid "LaserDisc" -msgstr "" - -#: ../picard/const.py:77 -msgid "Cartridge" -msgstr "" - -#: ../picard/const.py:78 -msgid "Reel-to-reel" -msgstr "" - -#: ../picard/const.py:79 -msgid "DAT" -msgstr "" - -#: ../picard/const.py:80 -msgid "Wax Cylinder" -msgstr "" - -#: ../picard/const.py:81 -msgid "Piano Roll" -msgstr "" - -#: ../picard/const.py:82 -msgid "DCC" -msgstr "" - -#: ../picard/const.py:87 -msgid "Bangladesh" -msgstr "" - -#: ../picard/const.py:88 -msgid "Belgium" -msgstr "" - -#: ../picard/const.py:89 -msgid "Burkina Faso" -msgstr "" - -#: ../picard/const.py:90 -msgid "Bulgaria" -msgstr "" - -#: ../picard/const.py:91 -msgid "Barbados" -msgstr "" - -#: ../picard/const.py:92 -msgid "Wallis and Futuna Islands" -msgstr "" - -#: ../picard/const.py:93 -msgid "Bermuda" -msgstr "" - -#: ../picard/const.py:94 -msgid "Brunei Darussalam" -msgstr "" - -#: ../picard/const.py:95 -msgid "Bolivia" -msgstr "" - -#: ../picard/const.py:96 -msgid "Bahrain" -msgstr "" - -#: ../picard/const.py:97 -msgid "Burundi" -msgstr "" - -#: ../picard/const.py:98 -msgid "Benin" -msgstr "" - -#: ../picard/const.py:99 -msgid "Bhutan" -msgstr "" - -#: ../picard/const.py:100 -msgid "Jamaica" -msgstr "" - -#: ../picard/const.py:101 -msgid "Bouvet Island" -msgstr "" - -#: ../picard/const.py:102 -msgid "Botswana" -msgstr "" - -#: ../picard/const.py:103 -msgid "Samoa" -msgstr "" - -#: ../picard/const.py:104 -msgid "Brazil" -msgstr "" - -#: ../picard/const.py:105 -msgid "Bahamas" -msgstr "" - -#: ../picard/const.py:106 -msgid "Belarus" -msgstr "" - -#: ../picard/const.py:107 -msgid "Belize" -msgstr "" - -#: ../picard/const.py:108 -msgid "Russian Federation" -msgstr "" - -#: ../picard/const.py:109 -msgid "Rwanda" -msgstr "" - -#: ../picard/const.py:110 -msgid "Reunion" -msgstr "" - -#: ../picard/const.py:111 -msgid "Turkmenistan" -msgstr "" - -#: ../picard/const.py:112 -msgid "Tajikistan" -msgstr "" - -#: ../picard/const.py:113 -msgid "Romania" -msgstr "" - -#: ../picard/const.py:114 -msgid "Tokelau" -msgstr "" - -#: ../picard/const.py:115 -msgid "Guinea-Bissa" -msgstr "" - -#: ../picard/const.py:116 -msgid "Guam" -msgstr "" - -#: ../picard/const.py:117 -msgid "Guatemala" -msgstr "" - -#: ../picard/const.py:118 -msgid "Greece" -msgstr "" - -#: ../picard/const.py:119 -msgid "Equatorial Guinea" -msgstr "" - -#: ../picard/const.py:120 -msgid "Guadeloupe" -msgstr "" - -#: ../picard/const.py:121 -msgid "Japan" -msgstr "" - -#: ../picard/const.py:122 -msgid "Guyana" -msgstr "" - -#: ../picard/const.py:123 -msgid "French Guiana" -msgstr "" - -#: ../picard/const.py:124 -msgid "Georgia" -msgstr "" - -#: ../picard/const.py:125 -msgid "Grenada" -msgstr "" - -#: ../picard/const.py:126 -msgid "United Kingdom" -msgstr "" - -#: ../picard/const.py:127 -msgid "Gabon" -msgstr "" - -#: ../picard/const.py:128 -msgid "El Salvador" -msgstr "" - -#: ../picard/const.py:129 -msgid "Guinea" -msgstr "" - -#: ../picard/const.py:130 -msgid "Gambia" -msgstr "" - -#: ../picard/const.py:131 -msgid "Greenland" -msgstr "" - -#: ../picard/const.py:132 -msgid "Gibraltar" -msgstr "" - -#: ../picard/const.py:133 -msgid "Ghana" -msgstr "" - -#: ../picard/const.py:134 -msgid "Oman" -msgstr "" - -#: ../picard/const.py:135 -msgid "Tunisia" -msgstr "" - -#: ../picard/const.py:136 -msgid "Jordan" -msgstr "" - -#: ../picard/const.py:137 -msgid "Haiti" -msgstr "" - -#: ../picard/const.py:138 -msgid "Hungary" -msgstr "" - -#: ../picard/const.py:139 -msgid "Hong Kong" -msgstr "" - -#: ../picard/const.py:140 -msgid "Honduras" -msgstr "" - -#: ../picard/const.py:141 -msgid "Heard and Mc Donald Islands" -msgstr "" - -#: ../picard/const.py:142 -msgid "Venezuela" -msgstr "" - -#: ../picard/const.py:143 -msgid "Puerto Rico" -msgstr "" - -#: ../picard/const.py:144 -msgid "Palau" -msgstr "" - -#: ../picard/const.py:145 -msgid "Portugal" -msgstr "" - -#: ../picard/const.py:146 -msgid "Svalbard and Jan Mayen Islands" -msgstr "" - -#: ../picard/const.py:147 -msgid "Paraguay" -msgstr "" - -#: ../picard/const.py:148 -msgid "Iraq" -msgstr "" - -#: ../picard/const.py:149 -msgid "Panama" -msgstr "" - -#: ../picard/const.py:150 -msgid "French Polynesia" -msgstr "" - -#: ../picard/const.py:151 -msgid "Papua New Guinea" -msgstr "" - -#: ../picard/const.py:152 -msgid "Peru" -msgstr "" - -#: ../picard/const.py:153 -msgid "Pakistan" -msgstr "" - -#: ../picard/const.py:154 -msgid "Philippines" -msgstr "" - -#: ../picard/const.py:155 -msgid "Pitcairn" -msgstr "" - -#: ../picard/const.py:156 -msgid "Poland" -msgstr "" - -#: ../picard/const.py:157 -msgid "St. Pierre and Miquelon" -msgstr "" - -#: ../picard/const.py:158 -msgid "Zambia" -msgstr "" - -#: ../picard/const.py:159 -msgid "Western Sahara" -msgstr "" - -#: ../picard/const.py:160 -msgid "Estonia" -msgstr "" - -#: ../picard/const.py:161 -msgid "Egypt" -msgstr "" - -#: ../picard/const.py:162 -msgid "South Africa" -msgstr "" - -#: ../picard/const.py:163 -msgid "Ecuador" -msgstr "" - -#: ../picard/const.py:164 -msgid "Italy" -msgstr "" - -#: ../picard/const.py:165 -msgid "Viet Nam" -msgstr "" - -#: ../picard/const.py:166 -msgid "Solomon Islands" -msgstr "" - -#: ../picard/const.py:167 -msgid "Ethiopia" -msgstr "" - -#: ../picard/const.py:168 -msgid "Somalia" -msgstr "" - -#: ../picard/const.py:169 -msgid "Zimbabwe" -msgstr "" - -#: ../picard/const.py:170 -msgid "Saudi Arabia" -msgstr "" - -#: ../picard/const.py:171 -msgid "Spain" -msgstr "" - -#: ../picard/const.py:172 -msgid "Eritrea" -msgstr "" - -#: ../picard/const.py:173 -msgid "Moldova, Republic of" -msgstr "" - -#: ../picard/const.py:174 -msgid "Madagascar" -msgstr "" - -#: ../picard/const.py:175 -msgid "Morocco" -msgstr "" - -#: ../picard/const.py:176 -msgid "Monaco" -msgstr "" - -#: ../picard/const.py:177 -msgid "Uzbekistan" -msgstr "" - -#: ../picard/const.py:178 -msgid "Myanmar" -msgstr "" - -#: ../picard/const.py:179 -msgid "Mali" -msgstr "" - -#: ../picard/const.py:180 -msgid "Macau" -msgstr "" - -#: ../picard/const.py:181 -msgid "Mongolia" -msgstr "" - -#: ../picard/const.py:182 -msgid "Marshall Islands" -msgstr "" - -#: ../picard/const.py:183 -msgid "Macedonia, The Former Yugoslav Republic of" -msgstr "" - -#: ../picard/const.py:184 -msgid "Mauritius" -msgstr "" - -#: ../picard/const.py:185 -msgid "Malta" -msgstr "" - -#: ../picard/const.py:186 -msgid "Malawi" -msgstr "" - -#: ../picard/const.py:187 -msgid "Maldives" -msgstr "" - -#: ../picard/const.py:188 -msgid "Martinique" -msgstr "" - -#: ../picard/const.py:189 -msgid "Northern Mariana Islands" -msgstr "" - -#: ../picard/const.py:190 -msgid "Montserrat" -msgstr "" - -#: ../picard/const.py:191 -msgid "Mauritania" -msgstr "" - -#: ../picard/const.py:192 -msgid "Uganda" -msgstr "" - -#: ../picard/const.py:193 -msgid "Malaysia" -msgstr "" - -#: ../picard/const.py:194 -msgid "Mexico" -msgstr "" - -#: ../picard/const.py:195 -msgid "Israel" -msgstr "" - -#: ../picard/const.py:196 -msgid "France" -msgstr "" - -#: ../picard/const.py:197 -msgid "British Indian Ocean Territory" -msgstr "" - -#: ../picard/const.py:198 -msgid "St. Helena" -msgstr "" - -#: ../picard/const.py:199 -msgid "Finland" -msgstr "" - -#: ../picard/const.py:200 -msgid "Fiji" -msgstr "" - -#: ../picard/const.py:201 -msgid "Falkland Islands (Malvinas)" -msgstr "" - -#: ../picard/const.py:202 -msgid "Micronesia, Federated States of" -msgstr "" - -#: ../picard/const.py:203 -msgid "Faroe Islands" -msgstr "" - -#: ../picard/const.py:204 -msgid "Nicaragua" -msgstr "" - -#: ../picard/const.py:205 -msgid "Netherlands" -msgstr "" - -#: ../picard/const.py:206 -msgid "Norway" -msgstr "" - -#: ../picard/const.py:207 -msgid "Namibia" -msgstr "" - -#: ../picard/const.py:208 -msgid "Vanuatu" -msgstr "" - -#: ../picard/const.py:209 -msgid "New Caledonia" -msgstr "" - -#: ../picard/const.py:210 -msgid "Niger" -msgstr "" - -#: ../picard/const.py:211 -msgid "Norfolk Island" -msgstr "" - -#: ../picard/const.py:212 -msgid "Nigeria" -msgstr "" - -#: ../picard/const.py:213 -msgid "New Zealand" -msgstr "" - -#: ../picard/const.py:214 -msgid "Zaire" -msgstr "" - -#: ../picard/const.py:215 -msgid "Nepal" -msgstr "" - -#: ../picard/const.py:216 -msgid "Nauru" -msgstr "" - -#: ../picard/const.py:217 -msgid "Niue" -msgstr "" - -#: ../picard/const.py:218 -msgid "Cook Islands" -msgstr "" - -#: ../picard/const.py:219 -msgid "Cote d'Ivoire" -msgstr "" - -#: ../picard/const.py:220 -msgid "Switzerland" -msgstr "" - -#: ../picard/const.py:221 -msgid "Colombia" -msgstr "" - -#: ../picard/const.py:222 -msgid "China" -msgstr "" - -#: ../picard/const.py:223 -msgid "Cameroon" -msgstr "" - -#: ../picard/const.py:224 -msgid "Chile" -msgstr "" - -#: ../picard/const.py:225 -msgid "Cocos (Keeling) Islands" -msgstr "" - -#: ../picard/const.py:226 -msgid "Canada" -msgstr "" - -#: ../picard/const.py:227 -msgid "Congo" -msgstr "" - -#: ../picard/const.py:228 -msgid "Central African Republic" -msgstr "" - -#: ../picard/const.py:229 -msgid "Czech Republic" -msgstr "" - -#: ../picard/const.py:230 -msgid "Cyprus" -msgstr "" - -#: ../picard/const.py:231 -msgid "Christmas Island" -msgstr "" - -#: ../picard/const.py:232 -msgid "Costa Rica" -msgstr "" - -#: ../picard/const.py:233 -msgid "Cape Verde" -msgstr "" - -#: ../picard/const.py:234 -msgid "Cuba" -msgstr "" - -#: ../picard/const.py:235 -msgid "Swaziland" -msgstr "" - -#: ../picard/const.py:236 -msgid "Syrian Arab Republic" -msgstr "" - -#: ../picard/const.py:237 -msgid "Kyrgyzstan" -msgstr "" - -#: ../picard/const.py:238 -msgid "Kenya" -msgstr "" - -#: ../picard/const.py:239 -msgid "Suriname" -msgstr "" - -#: ../picard/const.py:240 -msgid "Kiribati" -msgstr "" - -#: ../picard/const.py:241 -msgid "Cambodia" -msgstr "" - -#: ../picard/const.py:242 -msgid "Saint Kitts and Nevis" -msgstr "" - -#: ../picard/const.py:243 -msgid "Comoros" -msgstr "" - -#: ../picard/const.py:244 -msgid "Sao Tome and Principe" -msgstr "" - -#: ../picard/const.py:245 -msgid "Slovenia" -msgstr "" - -#: ../picard/const.py:246 -msgid "Kuwait" -msgstr "" - -#: ../picard/const.py:247 -msgid "Senegal" -msgstr "" - -#: ../picard/const.py:248 -msgid "San Marino" -msgstr "" - -#: ../picard/const.py:249 -msgid "Sierra Leone" -msgstr "" - -#: ../picard/const.py:250 -msgid "Seychelles" -msgstr "" - -#: ../picard/const.py:251 -msgid "Kazakhstan" -msgstr "" - -#: ../picard/const.py:252 -msgid "Cayman Islands" -msgstr "" - -#: ../picard/const.py:253 -msgid "Singapore" -msgstr "" - -#: ../picard/const.py:254 -msgid "Sweden" -msgstr "" - -#: ../picard/const.py:255 -msgid "Sudan" -msgstr "" - -#: ../picard/const.py:256 -msgid "Dominican Republic" -msgstr "" - -#: ../picard/const.py:257 -msgid "Dominica" -msgstr "" - -#: ../picard/const.py:258 -msgid "Djibouti" -msgstr "" - -#: ../picard/const.py:259 -msgid "Denmark" -msgstr "" - -#: ../picard/const.py:260 -msgid "Virgin Islands (British)" -msgstr "" - -#: ../picard/const.py:261 -msgid "Germany" -msgstr "" - -#: ../picard/const.py:262 -msgid "Yemen" -msgstr "" - -#: ../picard/const.py:263 -msgid "Algeria" -msgstr "" - -#: ../picard/const.py:264 -msgid "United States" -msgstr "" - -#: ../picard/const.py:265 -msgid "Uruguay" -msgstr "" - -#: ../picard/const.py:266 -msgid "Mayotte" -msgstr "" - -#: ../picard/const.py:267 -msgid "United States Minor Outlying Islands" -msgstr "" - -#: ../picard/const.py:268 -msgid "Lebanon" -msgstr "" - -#: ../picard/const.py:269 -msgid "Saint Lucia" -msgstr "" - -#: ../picard/const.py:270 -msgid "Lao People's Democratic Republic" -msgstr "" - -#: ../picard/const.py:271 -msgid "Tuvalu" -msgstr "" - -#: ../picard/const.py:272 -msgid "Taiwan" -msgstr "" - -#: ../picard/const.py:273 -msgid "Trinidad and Tobago" -msgstr "" - -#: ../picard/const.py:274 -msgid "Turkey" -msgstr "" - -#: ../picard/const.py:275 -msgid "Sri Lanka" -msgstr "" - -#: ../picard/const.py:276 -msgid "Liechtenstein" -msgstr "" - -#: ../picard/const.py:277 -msgid "Latvia" -msgstr "" - -#: ../picard/const.py:278 ../picard/const.py:812 -msgid "Tonga" -msgstr "" - -#: ../picard/const.py:279 -msgid "Lithuania" -msgstr "" - -#: ../picard/const.py:280 -msgid "Luxembourg" -msgstr "" - -#: ../picard/const.py:281 -msgid "Liberia" -msgstr "" - -#: ../picard/const.py:282 -msgid "Lesotho" -msgstr "" - -#: ../picard/const.py:283 -msgid "Thailand" -msgstr "" - -#: ../picard/const.py:284 -msgid "French Southern Territories" -msgstr "" - -#: ../picard/const.py:285 -msgid "Togo" -msgstr "" - -#: ../picard/const.py:286 -msgid "Chad" -msgstr "" - -#: ../picard/const.py:287 -msgid "Turks and Caicos Islands" -msgstr "" - -#: ../picard/const.py:288 -msgid "Libyan Arab Jamahiriya" -msgstr "" - -#: ../picard/const.py:289 -msgid "Vatican City State (Holy See)" -msgstr "" - -#: ../picard/const.py:290 -msgid "Saint Vincent and The Grenadines" -msgstr "" - -#: ../picard/const.py:291 -msgid "United Arab Emirates" -msgstr "" - -#: ../picard/const.py:292 -msgid "Andorra" -msgstr "" - -#: ../picard/const.py:293 -msgid "Antigua and Barbuda" -msgstr "" - -#: ../picard/const.py:294 -msgid "Afghanistan" -msgstr "" - -#: ../picard/const.py:295 -msgid "Anguilla" -msgstr "" - -#: ../picard/const.py:296 -msgid "Virgin Islands (U.S.)" -msgstr "" - -#: ../picard/const.py:297 -msgid "Iceland" -msgstr "" - -#: ../picard/const.py:298 -msgid "Iran (Islamic Republic of)" -msgstr "" - -#: ../picard/const.py:299 -msgid "Armenia" -msgstr "" - -#: ../picard/const.py:300 -msgid "Albania" -msgstr "" - -#: ../picard/const.py:301 -msgid "Angola" -msgstr "" - -#: ../picard/const.py:302 -msgid "Netherlands Antilles" -msgstr "" - -#: ../picard/const.py:303 -msgid "Antarctica" -msgstr "" - -#: ../picard/const.py:304 -msgid "American Samoa" -msgstr "" - -#: ../picard/const.py:305 -msgid "Argentina" -msgstr "" - -#: ../picard/const.py:306 -msgid "Australia" -msgstr "" - -#: ../picard/const.py:307 -msgid "Austria" -msgstr "" - -#: ../picard/const.py:308 -msgid "Aruba" -msgstr "" - -#: ../picard/const.py:309 -msgid "India" -msgstr "" - -#: ../picard/const.py:310 -msgid "Tanzania, United Republic of" -msgstr "" - -#: ../picard/const.py:311 -msgid "Azerbaijan" -msgstr "" - -#: ../picard/const.py:312 -msgid "Ireland" -msgstr "" - -#: ../picard/const.py:313 -msgid "Indonesia" -msgstr "" - -#: ../picard/const.py:314 -msgid "Ukraine" -msgstr "" - -#: ../picard/const.py:315 -msgid "Qatar" -msgstr "" - -#: ../picard/const.py:316 -msgid "Mozambique" -msgstr "" - -#: ../picard/const.py:317 -msgid "Bosnia and Herzegovina" -msgstr "" - -#: ../picard/const.py:318 -msgid "Congo, The Democratic Republic of the" -msgstr "" - -#: ../picard/const.py:319 -msgid "Serbia and Montenegro (historical, 2003-2006)" -msgstr "" - -#: ../picard/const.py:320 -msgid "Serbia" -msgstr "" - -#: ../picard/const.py:321 -msgid "Montenegro" -msgstr "" - -#: ../picard/const.py:322 -msgid "Croatia" -msgstr "" - -#: ../picard/const.py:323 -msgid "Korea (North), Democratic People's Republic of" -msgstr "" - -#: ../picard/const.py:324 -msgid "Korea (South), Republic of" -msgstr "" - -#: ../picard/const.py:325 -msgid "Slovakia" -msgstr "" - -#: ../picard/const.py:326 -msgid "Soviet Union (historical, 1922-1991)" -msgstr "" - -#: ../picard/const.py:327 -msgid "East Timor" -msgstr "" - -#: ../picard/const.py:328 -msgid "Czechoslovakia (historical, 1918-1992)" -msgstr "" - -#: ../picard/const.py:329 -msgid "Europe" -msgstr "" - -#: ../picard/const.py:330 -msgid "East Germany (historical, 1949-1990)" -msgstr "" - -#: ../picard/const.py:331 -msgid "[Unknown Country]" -msgstr "" - -#: ../picard/const.py:332 -msgid "[Worldwide]" -msgstr "" - -#: ../picard/const.py:333 -msgid "Yugoslavia (historical, 1918-1992)" -msgstr "" - -#: ../picard/const.py:338 ../picard/const.py:397 -msgid "Afrikaans" -msgstr "" - -#: ../picard/const.py:339 ../picard/const.py:406 -msgid "Arabic" -msgstr "" - -#: ../picard/const.py:340 -msgid "Asturian" -msgstr "" - -#: ../picard/const.py:341 ../picard/const.py:448 -msgid "Bulgarian" -msgstr "" - -#: ../picard/const.py:342 ../picard/const.py:452 -msgid "Catalan" -msgstr "" - -#: ../picard/const.py:343 ../picard/const.py:474 -msgid "Czech" -msgstr "" - -#: ../picard/const.py:344 ../picard/const.py:846 -msgid "Welsh" -msgstr "" - -#: ../picard/const.py:345 ../picard/const.py:476 -msgid "Danish" -msgstr "" - -#: ../picard/const.py:346 ../picard/const.py:547 -msgid "German" -msgstr "" - -#: ../picard/const.py:347 ../picard/const.py:554 ../picard/const.py:555 -msgid "Greek" -msgstr "" - -#: ../picard/const.py:348 ../picard/const.py:485 -msgid "English" -msgstr "" - -#: ../picard/const.py:349 -msgid "English (Canada)" -msgstr "" - -#: ../picard/const.py:350 -msgid "English (UK)" -msgstr "" - -#: ../picard/const.py:351 ../picard/const.py:516 -msgid "Esperanto" -msgstr "" - -#: ../picard/const.py:352 ../picard/const.py:755 -msgid "Spanish" -msgstr "" - -#: ../picard/const.py:353 ../picard/const.py:517 -msgid "Estonian" -msgstr "" - -#: ../picard/const.py:354 ../picard/const.py:689 -msgid "Persian" -msgstr "" - -#: ../picard/const.py:355 ../picard/const.py:526 -msgid "Finnish" -msgstr "" - -#: ../picard/const.py:356 ../picard/const.py:522 -msgid "Faroese" -msgstr "" - -#: ../picard/const.py:357 ../picard/const.py:528 -msgid "French" -msgstr "" - -#: ../picard/const.py:358 -msgid "French (Canada)" -msgstr "" - -#: ../picard/const.py:359 -msgid "Frisian" -msgstr "" - -#: ../picard/const.py:360 ../picard/const.py:540 -msgid "Galician" -msgstr "" - -#: ../picard/const.py:361 ../picard/const.py:574 -msgid "Hebrew" -msgstr "" - -#: ../picard/const.py:362 ../picard/const.py:576 -msgid "Hindi" -msgstr "" - -#: ../picard/const.py:363 ../picard/const.py:578 -msgid "Hungarian" -msgstr "" - -#: ../picard/const.py:364 ../picard/const.py:584 -msgid "Indonesian" -msgstr "" - -#: ../picard/const.py:365 -msgid "Islandic" -msgstr "" - -#: ../picard/const.py:366 ../picard/const.py:590 -msgid "Italian" -msgstr "" - -#: ../picard/const.py:367 ../picard/const.py:593 -msgid "Japanese" -msgstr "" - -#: ../picard/const.py:368 ../picard/const.py:601 -msgid "Kannada" -msgstr "" - -#: ../picard/const.py:369 ../picard/const.py:615 -msgid "Korean" -msgstr "" - -#: ../picard/const.py:370 ../picard/const.py:640 -msgid "Lithuanian" -msgstr "" - -#: ../picard/const.py:371 -msgid "Norwegian Bokmal" -msgstr "" - -#: ../picard/const.py:372 ../picard/const.py:642 -msgid "Low German" -msgstr "" - -#: ../picard/const.py:373 ../picard/const.py:480 -msgid "Dutch" -msgstr "" - -#: ../picard/const.py:374 ../picard/const.py:680 -msgid "Occitan" -msgstr "" - -#: ../picard/const.py:375 ../picard/const.py:692 -msgid "Polish" -msgstr "" - -#: ../picard/const.py:376 ../picard/const.py:694 -msgid "Portuguese" -msgstr "" - -#: ../picard/const.py:377 -msgid "Brazilian Portuguese" -msgstr "" - -#: ../picard/const.py:378 ../picard/const.py:704 -msgid "Romanian" -msgstr "" - -#: ../picard/const.py:379 ../picard/const.py:708 -msgid "Russian" -msgstr "" - -#: ../picard/const.py:380 -msgid "Scots" -msgstr "" - -#: ../picard/const.py:381 ../picard/const.py:741 -msgid "Slovak" -msgstr "" - -#: ../picard/const.py:382 ../picard/const.py:743 -msgid "Slovenian" -msgstr "" - -#: ../picard/const.py:383 ../picard/const.py:713 ../picard/const.py:714 -msgid "Serbian" -msgstr "" - -#: ../picard/const.py:384 ../picard/const.py:782 -msgid "Swedish" -msgstr "" - -#: ../picard/const.py:385 ../picard/const.py:794 -msgid "Tamil" -msgstr "" - -#: ../picard/const.py:386 ../picard/const.py:818 -msgid "Turkish" -msgstr "" - -#: ../picard/const.py:387 ../picard/const.py:826 -msgid "Ukrainian" -msgstr "" - -#: ../picard/const.py:388 ../picard/const.py:454 -msgid "Chinese" -msgstr "" - -#: ../picard/const.py:392 -msgid "Afar" -msgstr "" - -#: ../picard/const.py:393 -msgid "Afar Djibouti" -msgstr "" - -#: ../picard/const.py:394 -msgid "Afar Eritrea" -msgstr "" - -#: ../picard/const.py:395 -msgid "Afar Eritrea Saho" -msgstr "" - -#: ../picard/const.py:396 -msgid "Afar Ethiopia" -msgstr "" - -#: ../picard/const.py:398 -msgid "Afrikaans Namibia" -msgstr "" - -#: ../picard/const.py:399 -msgid "Afrikaans South Africa" -msgstr "" - -#: ../picard/const.py:400 -msgid "Akan" -msgstr "" - -#: ../picard/const.py:401 -msgid "Akan Ghana" -msgstr "" - -#: ../picard/const.py:402 -msgid "Albanian" -msgstr "" - -#: ../picard/const.py:403 -msgid "Albanian Albania" -msgstr "" - -#: ../picard/const.py:404 -msgid "Amharic" -msgstr "" - -#: ../picard/const.py:405 -msgid "Amharic Ethiopia" -msgstr "" - -#: ../picard/const.py:407 -msgid "Arabic Algeria" -msgstr "" - -#: ../picard/const.py:408 -msgid "Arabic Bahrain" -msgstr "" - -#: ../picard/const.py:409 -msgid "Arabic Egypt" -msgstr "" - -#: ../picard/const.py:410 -msgid "Arabic Iraq" -msgstr "" - -#: ../picard/const.py:411 -msgid "Arabic Jordan" -msgstr "" - -#: ../picard/const.py:412 -msgid "Arabic Kuwait" -msgstr "" - -#: ../picard/const.py:413 -msgid "Arabic Lebanon" -msgstr "" - -#: ../picard/const.py:414 -msgid "Arabic Libya" -msgstr "" - -#: ../picard/const.py:415 -msgid "Arabic Morocco" -msgstr "" - -#: ../picard/const.py:416 -msgid "Arabic Oman" -msgstr "" - -#: ../picard/const.py:417 -msgid "Arabic Qatar" -msgstr "" - -#: ../picard/const.py:418 -msgid "Arabic Saudi Arabia" -msgstr "" - -#: ../picard/const.py:419 -msgid "Arabic Sudan" -msgstr "" - -#: ../picard/const.py:420 -msgid "Arabic Syria" -msgstr "" - -#: ../picard/const.py:421 -msgid "Arabic Tunisia" -msgstr "" - -#: ../picard/const.py:422 -msgid "Arabic United Arab Emirates" -msgstr "" - -#: ../picard/const.py:423 -msgid "Arabic Yemen" -msgstr "" - -#: ../picard/const.py:424 -msgid "Armenian" -msgstr "" - -#: ../picard/const.py:425 -msgid "Armenian Armenia" -msgstr "" - -#: ../picard/const.py:426 -msgid "Armenian Armenia Revised Orthography" -msgstr "" - -#: ../picard/const.py:427 -msgid "Assamese" -msgstr "" - -#: ../picard/const.py:428 -msgid "Assamese India" -msgstr "" - -#: ../picard/const.py:429 -msgid "Atsam" -msgstr "" - -#: ../picard/const.py:430 -msgid "Atsam Nigeria" -msgstr "" - -#: ../picard/const.py:431 -msgid "Azerbaijani" -msgstr "" - -#: ../picard/const.py:432 -msgid "Azerbaijani Azerbaijan" -msgstr "" - -#: ../picard/const.py:433 -msgid "Azerbaijani Cyrillic" -msgstr "" - -#: ../picard/const.py:434 -msgid "Azerbaijani Cyrillic Azerbaijan" -msgstr "" - -#: ../picard/const.py:435 -msgid "Azerbaijani Latin" -msgstr "" - -#: ../picard/const.py:436 -msgid "Azerbaijani Latin Azerbaijan" -msgstr "" - -#: ../picard/const.py:437 -msgid "Basque" -msgstr "" - -#: ../picard/const.py:438 -msgid "Basque Spain" -msgstr "" - -#: ../picard/const.py:439 -msgid "Belarusian" -msgstr "" - -#: ../picard/const.py:440 -msgid "Belarusian Belarus" -msgstr "" - -#: ../picard/const.py:441 -msgid "Bengali" -msgstr "" - -#: ../picard/const.py:442 -msgid "Bengali Bangladesh" -msgstr "" - -#: ../picard/const.py:443 -msgid "Bengali India" -msgstr "" - -#: ../picard/const.py:444 -msgid "Blin" -msgstr "" - -#: ../picard/const.py:445 -msgid "Blin Eritrea" -msgstr "" - -#: ../picard/const.py:446 -msgid "Bosnian" -msgstr "" - -#: ../picard/const.py:447 -msgid "Bosnian Bosnia and Herzegovina" -msgstr "" - -#: ../picard/const.py:449 -msgid "Bulgarian Bulgaria" -msgstr "" - -#: ../picard/const.py:450 -msgid "Burmese" -msgstr "" - -#: ../picard/const.py:453 -msgid "Catalan Spain" -msgstr "" - -#: ../picard/const.py:455 -msgid "Chinese China" -msgstr "" - -#: ../picard/const.py:456 -msgid "Chinese Hong Kong SAR China" -msgstr "" - -#: ../picard/const.py:457 -msgid "Chinese Macau SAR China" -msgstr "" - -#: ../picard/const.py:458 -msgid "Chinese Simplified Han" -msgstr "" - -#: ../picard/const.py:459 -msgid "Chinese Simplified Han China" -msgstr "" - -#: ../picard/const.py:460 -msgid "Chinese Simplified Han Hong Kong SAR China" -msgstr "" - -#: ../picard/const.py:461 -msgid "Chinese Simplified Han Macau SAR China" -msgstr "" - -#: ../picard/const.py:462 -msgid "Chinese Simplified Han Singapore" -msgstr "" - -#: ../picard/const.py:463 -msgid "Chinese Singapore" -msgstr "" - -#: ../picard/const.py:464 -msgid "Chinese Taiwan" -msgstr "" - -#: ../picard/const.py:465 -msgid "Chinese Traditional Han" -msgstr "" - -#: ../picard/const.py:466 -msgid "Chinese Traditional Han Hong Kong SAR China" -msgstr "" - -#: ../picard/const.py:467 -msgid "Chinese Traditional Han Macau SAR China" -msgstr "" - -#: ../picard/const.py:468 -msgid "Chinese Traditional Han Taiwan" -msgstr "" - -#: ../picard/const.py:469 -msgid "Coptic" -msgstr "" - -#: ../picard/const.py:470 -msgid "Cornish" -msgstr "" - -#: ../picard/const.py:471 -msgid "Cornish United Kingdom" -msgstr "" - -#: ../picard/const.py:472 -msgid "Croatian" -msgstr "" - -#: ../picard/const.py:473 -msgid "Croatian Croatia" -msgstr "" - -#: ../picard/const.py:475 -msgid "Czech Czech Republic" -msgstr "" - -#: ../picard/const.py:477 -msgid "Danish Denmark" -msgstr "" - -#: ../picard/const.py:478 -msgid "Divehi" -msgstr "" - -#: ../picard/const.py:479 -msgid "Divehi Maldives" -msgstr "" - -#: ../picard/const.py:481 -msgid "Dutch Belgium" -msgstr "" - -#: ../picard/const.py:482 -msgid "Dutch Netherlands" -msgstr "" - -#: ../picard/const.py:483 -msgid "Dzongkha" -msgstr "" - -#: ../picard/const.py:484 -msgid "Dzongkha Bhutan" -msgstr "" - -#: ../picard/const.py:486 -msgid "English American Samoa" -msgstr "" - -#: ../picard/const.py:487 -msgid "English Australia" -msgstr "" - -#: ../picard/const.py:488 -msgid "English Belgium" -msgstr "" - -#: ../picard/const.py:489 -msgid "English Belize" -msgstr "" - -#: ../picard/const.py:490 -msgid "English Botswana" -msgstr "" - -#: ../picard/const.py:491 -msgid "English Canada" -msgstr "" - -#: ../picard/const.py:492 -msgid "English Deseret" -msgstr "" - -#: ../picard/const.py:493 -msgid "English Deseret United States" -msgstr "" - -#: ../picard/const.py:494 -msgid "English Guam" -msgstr "" - -#: ../picard/const.py:495 -msgid "English Hong Kong SAR China" -msgstr "" - -#: ../picard/const.py:496 -msgid "English India" -msgstr "" - -#: ../picard/const.py:497 -msgid "English Ireland" -msgstr "" - -#: ../picard/const.py:498 -msgid "English Jamaica" -msgstr "" - -#: ../picard/const.py:499 -msgid "English Malta" -msgstr "" - -#: ../picard/const.py:500 -msgid "English Marshall Islands" -msgstr "" - -#: ../picard/const.py:501 -msgid "English Namibia" -msgstr "" - -#: ../picard/const.py:502 -msgid "English New Zealand" -msgstr "" - -#: ../picard/const.py:503 -msgid "English Northern Mariana Islands" -msgstr "" - -#: ../picard/const.py:504 -msgid "English Pakistan" -msgstr "" - -#: ../picard/const.py:505 -msgid "English Philippines" -msgstr "" - -#: ../picard/const.py:506 -msgid "English Shavian" -msgstr "" - -#: ../picard/const.py:507 -msgid "English Singapore" -msgstr "" - -#: ../picard/const.py:508 -msgid "English South Africa" -msgstr "" - -#: ../picard/const.py:509 -msgid "English Trinidad and Tobago" -msgstr "" - -#: ../picard/const.py:510 -msgid "English U.S. Minor Outlying Islands" -msgstr "" - -#: ../picard/const.py:511 -msgid "English U.S. Virgin Islands" -msgstr "" - -#: ../picard/const.py:512 -msgid "English United Kingdom" -msgstr "" - -#: ../picard/const.py:513 -msgid "English United States" -msgstr "" - -#: ../picard/const.py:514 -msgid "English United States Computer" -msgstr "" - -#: ../picard/const.py:515 -msgid "English Zimbabwe" -msgstr "" - -#: ../picard/const.py:518 -msgid "Estonian Estonia" -msgstr "" - -#: ../picard/const.py:519 -msgid "Ewe" -msgstr "" - -#: ../picard/const.py:520 -msgid "Ewe Ghana" -msgstr "" - -#: ../picard/const.py:521 -msgid "Ewe Togo" -msgstr "" - -#: ../picard/const.py:523 -msgid "Faroese Faroe Islands" -msgstr "" - -#: ../picard/const.py:524 -msgid "Filipino" -msgstr "" - -#: ../picard/const.py:525 -msgid "Filipino Philippines" -msgstr "" - -#: ../picard/const.py:527 -msgid "Finnish Finland" -msgstr "" - -#: ../picard/const.py:529 -msgid "French Belgium" -msgstr "" - -#: ../picard/const.py:530 -msgid "French Canada" -msgstr "" - -#: ../picard/const.py:531 -msgid "French France" -msgstr "" - -#: ../picard/const.py:532 -msgid "French Luxembourg" -msgstr "" - -#: ../picard/const.py:533 -msgid "French Monaco" -msgstr "" - -#: ../picard/const.py:534 -msgid "French Senegal" -msgstr "" - -#: ../picard/const.py:535 -msgid "French Switzerland" -msgstr "" - -#: ../picard/const.py:536 -msgid "Friulian" -msgstr "" - -#: ../picard/const.py:537 -msgid "Friulian Italy" -msgstr "" - -#: ../picard/const.py:538 -msgid "Ga" -msgstr "" - -#: ../picard/const.py:539 -msgid "Ga Ghana" -msgstr "" - -#: ../picard/const.py:541 -msgid "Galician Spain" -msgstr "" - -#: ../picard/const.py:542 -msgid "Geez" -msgstr "" - -#: ../picard/const.py:543 -msgid "Geez Eritrea" -msgstr "" - -#: ../picard/const.py:544 -msgid "Geez Ethiopia" -msgstr "" - -#: ../picard/const.py:545 -msgid "Georgian" -msgstr "" - -#: ../picard/const.py:546 -msgid "Georgian Georgia" -msgstr "" - -#: ../picard/const.py:548 -msgid "German Austria" -msgstr "" - -#: ../picard/const.py:549 -msgid "German Belgium" -msgstr "" - -#: ../picard/const.py:550 -msgid "German Germany" -msgstr "" - -#: ../picard/const.py:551 -msgid "German Liechtenstein" -msgstr "" - -#: ../picard/const.py:552 -msgid "German Luxembourg" -msgstr "" - -#: ../picard/const.py:553 -msgid "German Switzerland" -msgstr "" - -#: ../picard/const.py:556 -msgid "Greek Cyprus" -msgstr "" - -#: ../picard/const.py:557 -msgid "Greek Greece" -msgstr "" - -#: ../picard/const.py:558 -msgid "Gujarati" -msgstr "" - -#: ../picard/const.py:559 -msgid "Gujarati India" -msgstr "" - -#: ../picard/const.py:560 -msgid "Hausa" -msgstr "" - -#: ../picard/const.py:561 -msgid "Hausa Arabic" -msgstr "" - -#: ../picard/const.py:562 -msgid "Hausa Arabic Nigeria" -msgstr "" - -#: ../picard/const.py:563 -msgid "Hausa Arabic Sudan" -msgstr "" - -#: ../picard/const.py:564 -msgid "Hausa Ghana" -msgstr "" - -#: ../picard/const.py:565 -msgid "Hausa Latin" -msgstr "" - -#: ../picard/const.py:566 -msgid "Hausa Latin Ghana" -msgstr "" - -#: ../picard/const.py:567 -msgid "Hausa Latin Niger" -msgstr "" - -#: ../picard/const.py:568 -msgid "Hausa Latin Nigeria" -msgstr "" - -#: ../picard/const.py:569 -msgid "Hausa Niger" -msgstr "" - -#: ../picard/const.py:570 -msgid "Hausa Nigeria" -msgstr "" - -#: ../picard/const.py:571 -msgid "Hausa Sudan" -msgstr "" - -#: ../picard/const.py:572 -msgid "Hawaiian" -msgstr "" - -#: ../picard/const.py:573 -msgid "Hawaiian United States" -msgstr "" - -#: ../picard/const.py:575 -msgid "Hebrew Israel" -msgstr "" - -#: ../picard/const.py:577 -msgid "Hindi India" -msgstr "" - -#: ../picard/const.py:579 -msgid "Hungarian Hungary" -msgstr "" - -#: ../picard/const.py:580 -msgid "Icelandic" -msgstr "" - -#: ../picard/const.py:581 -msgid "Icelandic Iceland" -msgstr "" - -#: ../picard/const.py:582 -msgid "Igbo" -msgstr "" - -#: ../picard/const.py:583 -msgid "Igbo Nigeria" -msgstr "" - -#: ../picard/const.py:585 -msgid "Indonesian Indonesia" -msgstr "" - -#: ../picard/const.py:586 -msgid "Interlingua" -msgstr "" - -#: ../picard/const.py:587 -msgid "Inuktitut" -msgstr "" - -#: ../picard/const.py:588 -msgid "Irish" -msgstr "" - -#: ../picard/const.py:589 -msgid "Irish Ireland" -msgstr "" - -#: ../picard/const.py:591 -msgid "Italian Italy" -msgstr "" - -#: ../picard/const.py:592 -msgid "Italian Switzerland" -msgstr "" - -#: ../picard/const.py:594 -msgid "Japanese Japan" -msgstr "" - -#: ../picard/const.py:595 -msgid "Jju" -msgstr "" - -#: ../picard/const.py:596 -msgid "Jju Nigeria" -msgstr "" - -#: ../picard/const.py:597 -msgid "Kalaallisut" -msgstr "" - -#: ../picard/const.py:598 -msgid "Kalaallisut Greenland" -msgstr "" - -#: ../picard/const.py:599 -msgid "Kamba" -msgstr "" - -#: ../picard/const.py:600 -msgid "Kamba Kenya" -msgstr "" - -#: ../picard/const.py:602 -msgid "Kannada India" -msgstr "" - -#: ../picard/const.py:603 -msgid "Kazakh" -msgstr "" - -#: ../picard/const.py:604 -msgid "Kazakh Cyrillic" -msgstr "" - -#: ../picard/const.py:605 -msgid "Kazakh Cyrillic Kazakhstan" -msgstr "" - -#: ../picard/const.py:606 -msgid "Kazakh Kazakhstan" -msgstr "" - -#: ../picard/const.py:607 -msgid "Khmer" -msgstr "" - -#: ../picard/const.py:608 -msgid "Khmer Cambodia" -msgstr "" - -#: ../picard/const.py:609 -msgid "Kinyarwanda" -msgstr "" - -#: ../picard/const.py:610 -msgid "Kinyarwanda Rwanda" -msgstr "" - -#: ../picard/const.py:611 -msgid "Kirghiz" -msgstr "" - -#: ../picard/const.py:612 -msgid "Kirghiz Kyrgyzstan" -msgstr "" - -#: ../picard/const.py:613 -msgid "Konkani" -msgstr "" - -#: ../picard/const.py:614 -msgid "Konkani India" -msgstr "" - -#: ../picard/const.py:616 -msgid "Korean South Korea" -msgstr "" - -#: ../picard/const.py:617 -msgid "Koro" -msgstr "" - -#: ../picard/const.py:619 -msgid "Kpelle" -msgstr "" - -#: ../picard/const.py:620 -msgid "Kpelle Guinea" -msgstr "" - -#: ../picard/const.py:621 -msgid "Kpelle Liberia" -msgstr "" - -#: ../picard/const.py:622 -msgid "Kurdish" -msgstr "" - -#: ../picard/const.py:623 -msgid "Kurdish Arabic" -msgstr "" - -#: ../picard/const.py:624 -msgid "Kurdish Arabic Iran" -msgstr "" - -#: ../picard/const.py:625 -msgid "Kurdish Arabic Iraq" -msgstr "" - -#: ../picard/const.py:626 -msgid "Kurdish Arabic Syria" -msgstr "" - -#: ../picard/const.py:627 -msgid "Kurdish Iran" -msgstr "" - -#: ../picard/const.py:628 -msgid "Kurdish Iraq" -msgstr "" - -#: ../picard/const.py:629 -msgid "Kurdish Latin" -msgstr "" - -#: ../picard/const.py:630 -msgid "Kurdish Latin Turkey" -msgstr "" - -#: ../picard/const.py:631 -msgid "Kurdish Syria" -msgstr "" - -#: ../picard/const.py:632 -msgid "Kurdish Turkey" -msgstr "" - -#: ../picard/const.py:633 -msgid "Lao" -msgstr "" - -#: ../picard/const.py:634 -msgid "Lao Laos" -msgstr "" - -#: ../picard/const.py:635 -msgid "Latvian" -msgstr "" - -#: ../picard/const.py:636 -msgid "Latvian Latvia" -msgstr "" - -#: ../picard/const.py:637 -msgid "Lingala" -msgstr "" - -#: ../picard/const.py:638 -msgid "Lingala Congo - Brazzaville" -msgstr "" - -#: ../picard/const.py:639 -msgid "Lingala Congo - Kinshasa" -msgstr "" - -#: ../picard/const.py:641 -msgid "Lithuanian Lithuania" -msgstr "" - -#: ../picard/const.py:643 -msgid "Low German Germany" -msgstr "" - -#: ../picard/const.py:644 -msgid "Macedonian" -msgstr "" - -#: ../picard/const.py:645 -msgid "Macedonian Macedonia" -msgstr "" - -#: ../picard/const.py:646 -msgid "Malay" -msgstr "" - -#: ../picard/const.py:647 -msgid "Malay Brunei" -msgstr "" - -#: ../picard/const.py:648 -msgid "Malay Malaysia" -msgstr "" - -#: ../picard/const.py:649 -msgid "Malayalam" -msgstr "" - -#: ../picard/const.py:650 -msgid "Malayalam India" -msgstr "" - -#: ../picard/const.py:651 -msgid "Maltese" -msgstr "" - -#: ../picard/const.py:652 -msgid "Maltese Malta" -msgstr "" - -#: ../picard/const.py:653 -msgid "Manx" -msgstr "" - -#: ../picard/const.py:654 -msgid "Manx United Kingdom" -msgstr "" - -#: ../picard/const.py:655 -msgid "Marathi" -msgstr "" - -#: ../picard/const.py:656 -msgid "Marathi India" -msgstr "" - -#: ../picard/const.py:657 -msgid "Moldavian" -msgstr "" - -#: ../picard/const.py:658 -msgid "Mongolian" -msgstr "" - -#: ../picard/const.py:659 -msgid "Mongolian China" -msgstr "" - -#: ../picard/const.py:660 -msgid "Mongolian Cyrillic" -msgstr "" - -#: ../picard/const.py:661 -msgid "Mongolian Cyrillic Mongolia" -msgstr "" - -#: ../picard/const.py:662 -msgid "Mongolian Mongolia" -msgstr "" - -#: ../picard/const.py:663 -msgid "Mongolian Mongolian" -msgstr "" - -#: ../picard/const.py:664 -msgid "Mongolian Mongolian China" -msgstr "" - -#: ../picard/const.py:665 -msgid "Nepali" -msgstr "" - -#: ../picard/const.py:666 -msgid "Nepali India" -msgstr "" - -#: ../picard/const.py:667 -msgid "Nepali Nepal" -msgstr "" - -#: ../picard/const.py:668 -msgid "Northern Sami" -msgstr "" - -#: ../picard/const.py:669 -msgid "Northern Sami Finland" -msgstr "" - -#: ../picard/const.py:670 -msgid "Northern Sami Norway" -msgstr "" - -#: ../picard/const.py:671 -msgid "Northern Sotho" -msgstr "" - -#: ../picard/const.py:672 -msgid "Northern Sotho South Africa" -msgstr "" - -#: ../picard/const.py:673 -msgid "Norwegian" -msgstr "" - -#: ../picard/const.py:676 -msgid "Norwegian Nynorsk" -msgstr "" - -#: ../picard/const.py:677 -msgid "Norwegian Nynorsk Norway" -msgstr "" - -#: ../picard/const.py:678 -msgid "Nyanja" -msgstr "" - -#: ../picard/const.py:679 -msgid "Nyanja Malawi" -msgstr "" - -#: ../picard/const.py:681 -msgid "Occitan France" -msgstr "" - -#: ../picard/const.py:682 -msgid "Oriya" -msgstr "" - -#: ../picard/const.py:683 -msgid "Oriya India" -msgstr "" - -#: ../picard/const.py:684 -msgid "Oromo" -msgstr "" - -#: ../picard/const.py:685 -msgid "Oromo Ethiopia" -msgstr "" - -#: ../picard/const.py:686 -msgid "Oromo Kenya" -msgstr "" - -#: ../picard/const.py:687 -msgid "Pashto" -msgstr "" - -#: ../picard/const.py:688 -msgid "Pashto Afghanistan" -msgstr "" - -#: ../picard/const.py:690 -msgid "Persian Afghanistan" -msgstr "" - -#: ../picard/const.py:691 -msgid "Persian Iran" -msgstr "" - -#: ../picard/const.py:693 -msgid "Polish Poland" -msgstr "" - -#: ../picard/const.py:695 -msgid "Portuguese Brazil" -msgstr "" - -#: ../picard/const.py:696 -msgid "Portuguese Portugal" -msgstr "" - -#: ../picard/const.py:697 -msgid "Punjabi" -msgstr "" - -#: ../picard/const.py:698 -msgid "Punjabi Arabic" -msgstr "" - -#: ../picard/const.py:699 -msgid "Punjabi Arabic Pakistan" -msgstr "" - -#: ../picard/const.py:700 -msgid "Punjabi Gurmukhi" -msgstr "" - -#: ../picard/const.py:701 -msgid "Punjabi Gurmukhi India" -msgstr "" - -#: ../picard/const.py:702 -msgid "Punjabi India" -msgstr "" - -#: ../picard/const.py:703 -msgid "Punjabi Pakistan" -msgstr "" - -#: ../picard/const.py:705 -msgid "Romanian Moldova" -msgstr "" - -#: ../picard/const.py:706 -msgid "Romanian Romania" -msgstr "" - -#: ../picard/const.py:707 -msgid "Root" -msgstr "" - -#: ../picard/const.py:709 -msgid "Russian Russia" -msgstr "" - -#: ../picard/const.py:710 -msgid "Russian Ukraine" -msgstr "" - -#: ../picard/const.py:711 -msgid "Sanskrit" -msgstr "" - -#: ../picard/const.py:712 -msgid "Sanskrit India" -msgstr "" - -#: ../picard/const.py:715 -msgid "Serbian Bosnia and Herzegovina" -msgstr "" - -#: ../picard/const.py:716 ../picard/const.py:717 -msgid "Serbian Cyrillic" -msgstr "" - -#: ../picard/const.py:718 -msgid "Serbian Cyrillic Bosnia and Herzegovina" -msgstr "" - -#: ../picard/const.py:719 -msgid "Serbian Cyrillic Montenegro" -msgstr "" - -#: ../picard/const.py:720 -msgid "Serbian Cyrillic Serbia" -msgstr "" - -#: ../picard/const.py:721 -msgid "Serbian Cyrillic Serbia and Montenegro" -msgstr "" - -#: ../picard/const.py:722 ../picard/const.py:723 -msgid "Serbian Latin" -msgstr "" - -#: ../picard/const.py:724 -msgid "Serbian Latin Bosnia and Herzegovina" -msgstr "" - -#: ../picard/const.py:725 -msgid "Serbian Latin Montenegro" -msgstr "" - -#: ../picard/const.py:726 -msgid "Serbian Latin Serbia" -msgstr "" - -#: ../picard/const.py:727 -msgid "Serbian Latin Serbia and Montenegro" -msgstr "" - -#: ../picard/const.py:728 -msgid "Serbian Montenegro" -msgstr "" - -#: ../picard/const.py:729 -msgid "Serbian Serbia" -msgstr "" - -#: ../picard/const.py:730 -msgid "Serbian Serbia and Montenegro" -msgstr "" - -#: ../picard/const.py:731 ../picard/const.py:732 -msgid "Serbo-Croatian" -msgstr "" - -#: ../picard/const.py:733 -msgid "Serbo-Croatian Bosnia and Herzegovina" -msgstr "" - -#: ../picard/const.py:734 -msgid "Serbo-Croatian Serbia and Montenegro" -msgstr "" - -#: ../picard/const.py:735 -msgid "Sichuan Yi" -msgstr "" - -#: ../picard/const.py:736 -msgid "Sichuan Yi China" -msgstr "" - -#: ../picard/const.py:737 -msgid "Sidamo" -msgstr "" - -#: ../picard/const.py:738 -msgid "Sidamo Ethiopia" -msgstr "" - -#: ../picard/const.py:739 -msgid "Sinhala" -msgstr "" - -#: ../picard/const.py:740 -msgid "Sinhala Sri Lanka" -msgstr "" - -#: ../picard/const.py:742 -msgid "Slovak Slovakia" -msgstr "" - -#: ../picard/const.py:744 -msgid "Slovenian Slovenia" -msgstr "" - -#: ../picard/const.py:745 -msgid "Somali" -msgstr "" - -#: ../picard/const.py:746 -msgid "Somali Djibouti" -msgstr "" - -#: ../picard/const.py:747 -msgid "Somali Ethiopia" -msgstr "" - -#: ../picard/const.py:748 -msgid "Somali Kenya" -msgstr "" - -#: ../picard/const.py:749 -msgid "Somali Somalia" -msgstr "" - -#: ../picard/const.py:750 -msgid "South Ndebele" -msgstr "" - -#: ../picard/const.py:751 -msgid "South Ndebele South Africa" -msgstr "" - -#: ../picard/const.py:752 -msgid "Southern Sotho" -msgstr "" - -#: ../picard/const.py:753 -msgid "Southern Sotho Lesotho" -msgstr "" - -#: ../picard/const.py:754 -msgid "Southern Sotho South Africa" -msgstr "" - -#: ../picard/const.py:756 -msgid "Spanish Argentina" -msgstr "" - -#: ../picard/const.py:757 -msgid "Spanish Bolivia" -msgstr "" - -#: ../picard/const.py:758 -msgid "Spanish Chile" -msgstr "" - -#: ../picard/const.py:759 -msgid "Spanish Colombia" -msgstr "" - -#: ../picard/const.py:760 -msgid "Spanish Costa Rica" -msgstr "" - -#: ../picard/const.py:761 -msgid "Spanish Dominican Republic" -msgstr "" - -#: ../picard/const.py:762 -msgid "Spanish Ecuador" -msgstr "" - -#: ../picard/const.py:763 -msgid "Spanish El Salvador" -msgstr "" - -#: ../picard/const.py:764 -msgid "Spanish Guatemala" -msgstr "" - -#: ../picard/const.py:765 -msgid "Spanish Honduras" -msgstr "" - -#: ../picard/const.py:766 -msgid "Spanish Mexico" -msgstr "" - -#: ../picard/const.py:767 -msgid "Spanish Nicaragua" -msgstr "" - -#: ../picard/const.py:768 -msgid "Spanish Panama" -msgstr "" - -#: ../picard/const.py:769 -msgid "Spanish Paraguay" -msgstr "" - -#: ../picard/const.py:770 -msgid "Spanish Peru" -msgstr "" - -#: ../picard/const.py:771 -msgid "Spanish Puerto Rico" -msgstr "" - -#: ../picard/const.py:772 -msgid "Spanish Spain" -msgstr "" - -#: ../picard/const.py:773 -msgid "Spanish United States" -msgstr "" - -#: ../picard/const.py:774 -msgid "Spanish Uruguay" -msgstr "" - -#: ../picard/const.py:775 -msgid "Spanish Venezuela" -msgstr "" - -#: ../picard/const.py:776 -msgid "Swahili" -msgstr "" - -#: ../picard/const.py:777 -msgid "Swahili Kenya" -msgstr "" - -#: ../picard/const.py:778 -msgid "Swahili Tanzania" -msgstr "" - -#: ../picard/const.py:779 -msgid "Swati" -msgstr "" - -#: ../picard/const.py:780 -msgid "Swati South Africa" -msgstr "" - -#: ../picard/const.py:781 -msgid "Swati Swaziland" -msgstr "" - -#: ../picard/const.py:783 -msgid "Swedish Finland" -msgstr "" - -#: ../picard/const.py:784 -msgid "Swedish Sweden" -msgstr "" - -#: ../picard/const.py:785 -msgid "Swiss German" -msgstr "" - -#: ../picard/const.py:786 -msgid "Swiss German Switzerland" -msgstr "" - -#: ../picard/const.py:787 -msgid "Syriac" -msgstr "" - -#: ../picard/const.py:788 -msgid "Syriac Syria" -msgstr "" - -#: ../picard/const.py:789 -msgid "Tagalog" -msgstr "" - -#: ../picard/const.py:790 -msgid "Tajik" -msgstr "" - -#: ../picard/const.py:791 -msgid "Tajik Cyrillic" -msgstr "" - -#: ../picard/const.py:792 -msgid "Tajik Cyrillic Tajikistan" -msgstr "" - -#: ../picard/const.py:793 -msgid "Tajik Tajikistan" -msgstr "" - -#: ../picard/const.py:795 -msgid "Tamil India" -msgstr "" - -#: ../picard/const.py:796 -msgid "Taroko" -msgstr "" - -#: ../picard/const.py:797 -msgid "Taroko Taiwan" -msgstr "" - -#: ../picard/const.py:798 -msgid "Tatar" -msgstr "" - -#: ../picard/const.py:799 -msgid "Tatar Russia" -msgstr "" - -#: ../picard/const.py:800 -msgid "Telugu" -msgstr "" - -#: ../picard/const.py:801 -msgid "Telugu India" -msgstr "" - -#: ../picard/const.py:802 -msgid "Thai" -msgstr "" - -#: ../picard/const.py:803 -msgid "Thai Thailand" -msgstr "" - -#: ../picard/const.py:804 -msgid "Tibetan" -msgstr "" - -#: ../picard/const.py:805 -msgid "Tibetan China" -msgstr "" - -#: ../picard/const.py:806 -msgid "Tibetan India" -msgstr "" - -#: ../picard/const.py:807 -msgid "Tigre" -msgstr "" - -#: ../picard/const.py:808 -msgid "Tigre Eritrea" -msgstr "" - -#: ../picard/const.py:809 -msgid "Tigrinya" -msgstr "" - -#: ../picard/const.py:810 -msgid "Tigrinya Eritrea" -msgstr "" - -#: ../picard/const.py:811 -msgid "Tigrinya Ethiopia" -msgstr "" - -#: ../picard/const.py:813 -msgid "Tonga Tonga" -msgstr "" - -#: ../picard/const.py:814 -msgid "Tsonga" -msgstr "" - -#: ../picard/const.py:815 -msgid "Tsonga South Africa" -msgstr "" - -#: ../picard/const.py:816 -msgid "Tswana" -msgstr "" - -#: ../picard/const.py:817 -msgid "Tswana South Africa" -msgstr "" - -#: ../picard/const.py:819 -msgid "Turkish Turkey" -msgstr "" - -#: ../picard/const.py:820 -msgid "Tyap" -msgstr "" - -#: ../picard/const.py:821 -msgid "Tyap Nigeria" -msgstr "" - -#: ../picard/const.py:822 -msgid "Uighur" -msgstr "" - -#: ../picard/const.py:823 -msgid "Uighur Arabic" -msgstr "" - -#: ../picard/const.py:824 -msgid "Uighur Arabic China" -msgstr "" - -#: ../picard/const.py:825 -msgid "Uighur China" -msgstr "" - -#: ../picard/const.py:827 -msgid "Ukrainian Ukraine" -msgstr "" - -#: ../picard/const.py:828 -msgid "Urdu" -msgstr "" - -#: ../picard/const.py:829 -msgid "Urdu India" -msgstr "" - -#: ../picard/const.py:830 -msgid "Urdu Pakistan" -msgstr "" - -#: ../picard/const.py:831 -msgid "Uzbek" -msgstr "" - -#: ../picard/const.py:832 -msgid "Uzbek Afghanistan" -msgstr "" - -#: ../picard/const.py:833 -msgid "Uzbek Arabic" -msgstr "" - -#: ../picard/const.py:834 -msgid "Uzbek Arabic Afghanistan" -msgstr "" - -#: ../picard/const.py:835 -msgid "Uzbek Cyrillic" -msgstr "" - -#: ../picard/const.py:836 -msgid "Uzbek Cyrillic Uzbekistan" -msgstr "" - -#: ../picard/const.py:837 -msgid "Uzbek Latin" -msgstr "" - -#: ../picard/const.py:838 -msgid "Uzbek Latin Uzbekistan" -msgstr "" - -#: ../picard/const.py:839 -msgid "Uzbek Uzbekistan" -msgstr "" - -#: ../picard/const.py:840 -msgid "Venda" -msgstr "" - -#: ../picard/const.py:841 -msgid "Venda South Africa" -msgstr "" - -#: ../picard/const.py:842 -msgid "Vietnamese" -msgstr "" - -#: ../picard/const.py:843 -msgid "Vietnamese Vietnam" -msgstr "" - -#: ../picard/const.py:844 -msgid "Walamo" -msgstr "" - -#: ../picard/const.py:845 -msgid "Walamo Ethiopia" -msgstr "" - -#: ../picard/const.py:847 -msgid "Welsh United Kingdom" -msgstr "" - -#: ../picard/const.py:848 -msgid "Wolof" -msgstr "" - -#: ../picard/const.py:849 -msgid "Wolof Latin" -msgstr "" - -#: ../picard/const.py:850 -msgid "Wolof Latin Senegal" -msgstr "" - -#: ../picard/const.py:851 -msgid "Wolof Senegal" -msgstr "" - -#: ../picard/const.py:852 -msgid "Xhosa" -msgstr "" - -#: ../picard/const.py:853 -msgid "Xhosa South Africa" -msgstr "" - -#: ../picard/const.py:854 -msgid "Yoruba" -msgstr "" - -#: ../picard/const.py:855 -msgid "Yoruba Nigeria" -msgstr "" - -#: ../picard/const.py:856 -msgid "Zulu" -msgstr "" - -#: ../picard/const.py:857 -msgid "Zulu South Africa" -msgstr "" - -#: ../picard/file.py:513 +#: ../picard/file.py:524 #, python-format msgid "No matching tracks for file %s" msgstr "" -#: ../picard/file.py:528 +#: ../picard/file.py:539 #, python-format msgid "No matching tracks above the threshold for file %s" msgstr "" -#: ../picard/file.py:531 +#: ../picard/file.py:542 #, python-format msgid "File %s identified!" msgstr "" -#: ../picard/file.py:547 +#: ../picard/file.py:558 #, python-format msgid "Looking up the PUID for file %s..." msgstr "" -#: ../picard/file.py:553 +#: ../picard/file.py:564 #, python-format msgid "Looking up the metadata for file %s..." msgstr "" -#: ../picard/tagger.py:531 +#: ../picard/const.py:39 +msgid "CD" +msgstr "" + +#: ../picard/const.py:40 +msgid "CD-R" +msgstr "" + +#: ../picard/const.py:41 +msgid "HDCD" +msgstr "" + +#: ../picard/const.py:42 +msgid "8cm CD" +msgstr "" + +#: ../picard/const.py:43 +msgid "Vinyl" +msgstr "" + +#: ../picard/const.py:44 +msgid "7\" Vinyl" +msgstr "" + +#: ../picard/const.py:45 +msgid "10\" Vinyl" +msgstr "" + +#: ../picard/const.py:46 +msgid "12\" Vinyl" +msgstr "" + +#: ../picard/const.py:47 +msgid "Digital Media" +msgstr "" + +#: ../picard/const.py:48 +msgid "USB Flash Drive" +msgstr "" + +#: ../picard/const.py:49 +msgid "slotMusic" +msgstr "" + +#: ../picard/const.py:50 +msgid "Cassette" +msgstr "" + +#: ../picard/const.py:51 +msgid "DVD" +msgstr "" + +#: ../picard/const.py:52 +msgid "DVD-Audio" +msgstr "" + +#: ../picard/const.py:53 +msgid "DVD-Video" +msgstr "" + +#: ../picard/const.py:54 +msgid "SACD" +msgstr "" + +#: ../picard/const.py:55 +msgid "DualDisc" +msgstr "" + +#: ../picard/const.py:56 +msgid "MiniDisc" +msgstr "" + +#: ../picard/const.py:57 +msgid "Blu-ray" +msgstr "" + +#: ../picard/const.py:58 +msgid "HD-DVD" +msgstr "" + +#: ../picard/const.py:59 +msgid "Videotape" +msgstr "" + +#: ../picard/const.py:60 +msgid "VHS" +msgstr "" + +#: ../picard/const.py:61 +msgid "Betamax" +msgstr "" + +#: ../picard/const.py:62 +msgid "VCD" +msgstr "" + +#: ../picard/const.py:63 +msgid "SVCD" +msgstr "" + +#: ../picard/const.py:64 +msgid "UMD" +msgstr "" + +#: ../picard/const.py:65 ../picard/ui/ui_options_releases.py:227 +msgid "Other" +msgstr "" + +#: ../picard/const.py:66 +msgid "LaserDisc" +msgstr "" + +#: ../picard/const.py:67 +msgid "Cartridge" +msgstr "" + +#: ../picard/const.py:68 +msgid "Reel-to-reel" +msgstr "" + +#: ../picard/const.py:69 +msgid "DAT" +msgstr "" + +#: ../picard/const.py:70 +msgid "Wax Cylinder" +msgstr "" + +#: ../picard/const.py:71 +msgid "Piano Roll" +msgstr "" + +#: ../picard/const.py:72 +msgid "DCC" +msgstr "" + +#: ../picard/const.py:77 +msgid "Bangladesh" +msgstr "" + +#: ../picard/const.py:78 +msgid "Belgium" +msgstr "" + +#: ../picard/const.py:79 +msgid "Burkina Faso" +msgstr "" + +#: ../picard/const.py:80 +msgid "Bulgaria" +msgstr "" + +#: ../picard/const.py:81 +msgid "Barbados" +msgstr "" + +#: ../picard/const.py:82 +msgid "Wallis and Futuna Islands" +msgstr "" + +#: ../picard/const.py:83 +msgid "Bermuda" +msgstr "" + +#: ../picard/const.py:84 +msgid "Brunei Darussalam" +msgstr "" + +#: ../picard/const.py:85 +msgid "Bolivia" +msgstr "" + +#: ../picard/const.py:86 +msgid "Bahrain" +msgstr "" + +#: ../picard/const.py:87 +msgid "Burundi" +msgstr "" + +#: ../picard/const.py:88 +msgid "Benin" +msgstr "" + +#: ../picard/const.py:89 +msgid "Bhutan" +msgstr "" + +#: ../picard/const.py:90 +msgid "Jamaica" +msgstr "" + +#: ../picard/const.py:91 +msgid "Bouvet Island" +msgstr "" + +#: ../picard/const.py:92 +msgid "Botswana" +msgstr "" + +#: ../picard/const.py:93 +msgid "Samoa" +msgstr "" + +#: ../picard/const.py:94 +msgid "Brazil" +msgstr "" + +#: ../picard/const.py:95 +msgid "Bahamas" +msgstr "" + +#: ../picard/const.py:96 +msgid "Belarus" +msgstr "" + +#: ../picard/const.py:97 +msgid "Belize" +msgstr "" + +#: ../picard/const.py:98 +msgid "Russian Federation" +msgstr "" + +#: ../picard/const.py:99 +msgid "Rwanda" +msgstr "" + +#: ../picard/const.py:100 +msgid "Reunion" +msgstr "" + +#: ../picard/const.py:101 +msgid "Turkmenistan" +msgstr "" + +#: ../picard/const.py:102 +msgid "Tajikistan" +msgstr "" + +#: ../picard/const.py:103 +msgid "Romania" +msgstr "" + +#: ../picard/const.py:104 +msgid "Tokelau" +msgstr "" + +#: ../picard/const.py:105 +msgid "Guinea-Bissa" +msgstr "" + +#: ../picard/const.py:106 +msgid "Guam" +msgstr "" + +#: ../picard/const.py:107 +msgid "Guatemala" +msgstr "" + +#: ../picard/const.py:108 +msgid "Greece" +msgstr "" + +#: ../picard/const.py:109 +msgid "Equatorial Guinea" +msgstr "" + +#: ../picard/const.py:110 +msgid "Guadeloupe" +msgstr "" + +#: ../picard/const.py:111 +msgid "Japan" +msgstr "" + +#: ../picard/const.py:112 +msgid "Guyana" +msgstr "" + +#: ../picard/const.py:113 +msgid "French Guiana" +msgstr "" + +#: ../picard/const.py:114 +msgid "Georgia" +msgstr "" + +#: ../picard/const.py:115 +msgid "Grenada" +msgstr "" + +#: ../picard/const.py:116 +msgid "United Kingdom" +msgstr "" + +#: ../picard/const.py:117 +msgid "Gabon" +msgstr "" + +#: ../picard/const.py:118 +msgid "El Salvador" +msgstr "" + +#: ../picard/const.py:119 +msgid "Guinea" +msgstr "" + +#: ../picard/const.py:120 +msgid "Gambia" +msgstr "" + +#: ../picard/const.py:121 +msgid "Greenland" +msgstr "" + +#: ../picard/const.py:122 +msgid "Gibraltar" +msgstr "" + +#: ../picard/const.py:123 +msgid "Ghana" +msgstr "" + +#: ../picard/const.py:124 +msgid "Oman" +msgstr "" + +#: ../picard/const.py:125 +msgid "Tunisia" +msgstr "" + +#: ../picard/const.py:126 +msgid "Jordan" +msgstr "" + +#: ../picard/const.py:127 +msgid "Haiti" +msgstr "" + +#: ../picard/const.py:128 +msgid "Hungary" +msgstr "" + +#: ../picard/const.py:129 +msgid "Hong Kong" +msgstr "" + +#: ../picard/const.py:130 +msgid "Honduras" +msgstr "" + +#: ../picard/const.py:131 +msgid "Heard and Mc Donald Islands" +msgstr "" + +#: ../picard/const.py:132 +msgid "Venezuela" +msgstr "" + +#: ../picard/const.py:133 +msgid "Puerto Rico" +msgstr "" + +#: ../picard/const.py:134 +msgid "Palau" +msgstr "" + +#: ../picard/const.py:135 +msgid "Portugal" +msgstr "" + +#: ../picard/const.py:136 +msgid "Svalbard and Jan Mayen Islands" +msgstr "" + +#: ../picard/const.py:137 +msgid "Paraguay" +msgstr "" + +#: ../picard/const.py:138 +msgid "Iraq" +msgstr "" + +#: ../picard/const.py:139 +msgid "Panama" +msgstr "" + +#: ../picard/const.py:140 +msgid "French Polynesia" +msgstr "" + +#: ../picard/const.py:141 +msgid "Papua New Guinea" +msgstr "" + +#: ../picard/const.py:142 +msgid "Peru" +msgstr "" + +#: ../picard/const.py:143 +msgid "Pakistan" +msgstr "" + +#: ../picard/const.py:144 +msgid "Philippines" +msgstr "" + +#: ../picard/const.py:145 +msgid "Pitcairn" +msgstr "" + +#: ../picard/const.py:146 +msgid "Poland" +msgstr "" + +#: ../picard/const.py:147 +msgid "St. Pierre and Miquelon" +msgstr "" + +#: ../picard/const.py:148 +msgid "Zambia" +msgstr "" + +#: ../picard/const.py:149 +msgid "Western Sahara" +msgstr "" + +#: ../picard/const.py:150 +msgid "Estonia" +msgstr "" + +#: ../picard/const.py:151 +msgid "Egypt" +msgstr "" + +#: ../picard/const.py:152 +msgid "South Africa" +msgstr "" + +#: ../picard/const.py:153 +msgid "Ecuador" +msgstr "" + +#: ../picard/const.py:154 +msgid "Italy" +msgstr "" + +#: ../picard/const.py:155 +msgid "Viet Nam" +msgstr "" + +#: ../picard/const.py:156 +msgid "Solomon Islands" +msgstr "" + +#: ../picard/const.py:157 +msgid "Ethiopia" +msgstr "" + +#: ../picard/const.py:158 +msgid "Somalia" +msgstr "" + +#: ../picard/const.py:159 +msgid "Zimbabwe" +msgstr "" + +#: ../picard/const.py:160 +msgid "Saudi Arabia" +msgstr "" + +#: ../picard/const.py:161 +msgid "Spain" +msgstr "" + +#: ../picard/const.py:162 +msgid "Eritrea" +msgstr "" + +#: ../picard/const.py:163 +msgid "Moldova, Republic of" +msgstr "" + +#: ../picard/const.py:164 +msgid "Madagascar" +msgstr "" + +#: ../picard/const.py:165 +msgid "Morocco" +msgstr "" + +#: ../picard/const.py:166 +msgid "Monaco" +msgstr "" + +#: ../picard/const.py:167 +msgid "Uzbekistan" +msgstr "" + +#: ../picard/const.py:168 +msgid "Myanmar" +msgstr "" + +#: ../picard/const.py:169 +msgid "Mali" +msgstr "" + +#: ../picard/const.py:170 +msgid "Macau" +msgstr "" + +#: ../picard/const.py:171 +msgid "Mongolia" +msgstr "" + +#: ../picard/const.py:172 +msgid "Marshall Islands" +msgstr "" + +#: ../picard/const.py:173 +msgid "Macedonia, The Former Yugoslav Republic of" +msgstr "" + +#: ../picard/const.py:174 +msgid "Mauritius" +msgstr "" + +#: ../picard/const.py:175 +msgid "Malta" +msgstr "" + +#: ../picard/const.py:176 +msgid "Malawi" +msgstr "" + +#: ../picard/const.py:177 +msgid "Maldives" +msgstr "" + +#: ../picard/const.py:178 +msgid "Martinique" +msgstr "" + +#: ../picard/const.py:179 +msgid "Northern Mariana Islands" +msgstr "" + +#: ../picard/const.py:180 +msgid "Montserrat" +msgstr "" + +#: ../picard/const.py:181 +msgid "Mauritania" +msgstr "" + +#: ../picard/const.py:182 +msgid "Uganda" +msgstr "" + +#: ../picard/const.py:183 +msgid "Malaysia" +msgstr "" + +#: ../picard/const.py:184 +msgid "Mexico" +msgstr "" + +#: ../picard/const.py:185 +msgid "Israel" +msgstr "" + +#: ../picard/const.py:186 +msgid "France" +msgstr "" + +#: ../picard/const.py:187 +msgid "British Indian Ocean Territory" +msgstr "" + +#: ../picard/const.py:188 +msgid "St. Helena" +msgstr "" + +#: ../picard/const.py:189 +msgid "Finland" +msgstr "" + +#: ../picard/const.py:190 +msgid "Fiji" +msgstr "" + +#: ../picard/const.py:191 +msgid "Falkland Islands (Malvinas)" +msgstr "" + +#: ../picard/const.py:192 +msgid "Micronesia, Federated States of" +msgstr "" + +#: ../picard/const.py:193 +msgid "Faroe Islands" +msgstr "" + +#: ../picard/const.py:194 +msgid "Nicaragua" +msgstr "" + +#: ../picard/const.py:195 +msgid "Netherlands" +msgstr "" + +#: ../picard/const.py:196 +msgid "Norway" +msgstr "" + +#: ../picard/const.py:197 +msgid "Namibia" +msgstr "" + +#: ../picard/const.py:198 +msgid "Vanuatu" +msgstr "" + +#: ../picard/const.py:199 +msgid "New Caledonia" +msgstr "" + +#: ../picard/const.py:200 +msgid "Niger" +msgstr "" + +#: ../picard/const.py:201 +msgid "Norfolk Island" +msgstr "" + +#: ../picard/const.py:202 +msgid "Nigeria" +msgstr "" + +#: ../picard/const.py:203 +msgid "New Zealand" +msgstr "" + +#: ../picard/const.py:204 +msgid "Zaire" +msgstr "" + +#: ../picard/const.py:205 +msgid "Nepal" +msgstr "" + +#: ../picard/const.py:206 +msgid "Nauru" +msgstr "" + +#: ../picard/const.py:207 +msgid "Niue" +msgstr "" + +#: ../picard/const.py:208 +msgid "Cook Islands" +msgstr "" + +#: ../picard/const.py:209 +msgid "Cote d'Ivoire" +msgstr "" + +#: ../picard/const.py:210 +msgid "Switzerland" +msgstr "" + +#: ../picard/const.py:211 +msgid "Colombia" +msgstr "" + +#: ../picard/const.py:212 +msgid "China" +msgstr "" + +#: ../picard/const.py:213 +msgid "Cameroon" +msgstr "" + +#: ../picard/const.py:214 +msgid "Chile" +msgstr "" + +#: ../picard/const.py:215 +msgid "Cocos (Keeling) Islands" +msgstr "" + +#: ../picard/const.py:216 +msgid "Canada" +msgstr "" + +#: ../picard/const.py:217 +msgid "Congo" +msgstr "" + +#: ../picard/const.py:218 +msgid "Central African Republic" +msgstr "" + +#: ../picard/const.py:219 +msgid "Czech Republic" +msgstr "" + +#: ../picard/const.py:220 +msgid "Cyprus" +msgstr "" + +#: ../picard/const.py:221 +msgid "Christmas Island" +msgstr "" + +#: ../picard/const.py:222 +msgid "Costa Rica" +msgstr "" + +#: ../picard/const.py:223 +msgid "Cape Verde" +msgstr "" + +#: ../picard/const.py:224 +msgid "Cuba" +msgstr "" + +#: ../picard/const.py:225 +msgid "Swaziland" +msgstr "" + +#: ../picard/const.py:226 +msgid "Syrian Arab Republic" +msgstr "" + +#: ../picard/const.py:227 +msgid "Kyrgyzstan" +msgstr "" + +#: ../picard/const.py:228 +msgid "Kenya" +msgstr "" + +#: ../picard/const.py:229 +msgid "Suriname" +msgstr "" + +#: ../picard/const.py:230 +msgid "Kiribati" +msgstr "" + +#: ../picard/const.py:231 +msgid "Cambodia" +msgstr "" + +#: ../picard/const.py:232 +msgid "Saint Kitts and Nevis" +msgstr "" + +#: ../picard/const.py:233 +msgid "Comoros" +msgstr "" + +#: ../picard/const.py:234 +msgid "Sao Tome and Principe" +msgstr "" + +#: ../picard/const.py:235 +msgid "Slovenia" +msgstr "" + +#: ../picard/const.py:236 +msgid "Kuwait" +msgstr "" + +#: ../picard/const.py:237 +msgid "Senegal" +msgstr "" + +#: ../picard/const.py:238 +msgid "San Marino" +msgstr "" + +#: ../picard/const.py:239 +msgid "Sierra Leone" +msgstr "" + +#: ../picard/const.py:240 +msgid "Seychelles" +msgstr "" + +#: ../picard/const.py:241 +msgid "Kazakhstan" +msgstr "" + +#: ../picard/const.py:242 +msgid "Cayman Islands" +msgstr "" + +#: ../picard/const.py:243 +msgid "Singapore" +msgstr "" + +#: ../picard/const.py:244 +msgid "Sweden" +msgstr "" + +#: ../picard/const.py:245 +msgid "Sudan" +msgstr "" + +#: ../picard/const.py:246 +msgid "Dominican Republic" +msgstr "" + +#: ../picard/const.py:247 +msgid "Dominica" +msgstr "" + +#: ../picard/const.py:248 +msgid "Djibouti" +msgstr "" + +#: ../picard/const.py:249 +msgid "Denmark" +msgstr "" + +#: ../picard/const.py:250 +msgid "Virgin Islands (British)" +msgstr "" + +#: ../picard/const.py:251 +msgid "Germany" +msgstr "" + +#: ../picard/const.py:252 +msgid "Yemen" +msgstr "" + +#: ../picard/const.py:253 +msgid "Algeria" +msgstr "" + +#: ../picard/const.py:254 +msgid "United States" +msgstr "" + +#: ../picard/const.py:255 +msgid "Uruguay" +msgstr "" + +#: ../picard/const.py:256 +msgid "Mayotte" +msgstr "" + +#: ../picard/const.py:257 +msgid "United States Minor Outlying Islands" +msgstr "" + +#: ../picard/const.py:258 +msgid "Lebanon" +msgstr "" + +#: ../picard/const.py:259 +msgid "Saint Lucia" +msgstr "" + +#: ../picard/const.py:260 +msgid "Lao People's Democratic Republic" +msgstr "" + +#: ../picard/const.py:261 +msgid "Tuvalu" +msgstr "" + +#: ../picard/const.py:262 +msgid "Taiwan" +msgstr "" + +#: ../picard/const.py:263 +msgid "Trinidad and Tobago" +msgstr "" + +#: ../picard/const.py:264 +msgid "Turkey" +msgstr "" + +#: ../picard/const.py:265 +msgid "Sri Lanka" +msgstr "" + +#: ../picard/const.py:266 +msgid "Liechtenstein" +msgstr "" + +#: ../picard/const.py:267 +msgid "Latvia" +msgstr "" + +#: ../picard/const.py:268 ../picard/const.py:801 +msgid "Tonga" +msgstr "" + +#: ../picard/const.py:269 +msgid "Lithuania" +msgstr "" + +#: ../picard/const.py:270 +msgid "Luxembourg" +msgstr "" + +#: ../picard/const.py:271 +msgid "Liberia" +msgstr "" + +#: ../picard/const.py:272 +msgid "Lesotho" +msgstr "" + +#: ../picard/const.py:273 +msgid "Thailand" +msgstr "" + +#: ../picard/const.py:274 +msgid "French Southern Territories" +msgstr "" + +#: ../picard/const.py:275 +msgid "Togo" +msgstr "" + +#: ../picard/const.py:276 +msgid "Chad" +msgstr "" + +#: ../picard/const.py:277 +msgid "Turks and Caicos Islands" +msgstr "" + +#: ../picard/const.py:278 +msgid "Libyan Arab Jamahiriya" +msgstr "" + +#: ../picard/const.py:279 +msgid "Vatican City State (Holy See)" +msgstr "" + +#: ../picard/const.py:280 +msgid "Saint Vincent and The Grenadines" +msgstr "" + +#: ../picard/const.py:281 +msgid "United Arab Emirates" +msgstr "" + +#: ../picard/const.py:282 +msgid "Andorra" +msgstr "" + +#: ../picard/const.py:283 +msgid "Antigua and Barbuda" +msgstr "" + +#: ../picard/const.py:284 +msgid "Afghanistan" +msgstr "" + +#: ../picard/const.py:285 +msgid "Anguilla" +msgstr "" + +#: ../picard/const.py:286 +msgid "Virgin Islands (U.S.)" +msgstr "" + +#: ../picard/const.py:287 +msgid "Iceland" +msgstr "" + +#: ../picard/const.py:288 +msgid "Iran (Islamic Republic of)" +msgstr "" + +#: ../picard/const.py:289 +msgid "Armenia" +msgstr "" + +#: ../picard/const.py:290 +msgid "Albania" +msgstr "" + +#: ../picard/const.py:291 +msgid "Angola" +msgstr "" + +#: ../picard/const.py:292 +msgid "Netherlands Antilles" +msgstr "" + +#: ../picard/const.py:293 +msgid "Antarctica" +msgstr "" + +#: ../picard/const.py:294 +msgid "American Samoa" +msgstr "" + +#: ../picard/const.py:295 +msgid "Argentina" +msgstr "" + +#: ../picard/const.py:296 +msgid "Australia" +msgstr "" + +#: ../picard/const.py:297 +msgid "Austria" +msgstr "" + +#: ../picard/const.py:298 +msgid "Aruba" +msgstr "" + +#: ../picard/const.py:299 +msgid "India" +msgstr "" + +#: ../picard/const.py:300 +msgid "Tanzania, United Republic of" +msgstr "" + +#: ../picard/const.py:301 +msgid "Azerbaijan" +msgstr "" + +#: ../picard/const.py:302 +msgid "Ireland" +msgstr "" + +#: ../picard/const.py:303 +msgid "Indonesia" +msgstr "" + +#: ../picard/const.py:304 +msgid "Ukraine" +msgstr "" + +#: ../picard/const.py:305 +msgid "Qatar" +msgstr "" + +#: ../picard/const.py:306 +msgid "Mozambique" +msgstr "" + +#: ../picard/const.py:307 +msgid "Bosnia and Herzegovina" +msgstr "" + +#: ../picard/const.py:308 +msgid "Congo, The Democratic Republic of the" +msgstr "" + +#: ../picard/const.py:309 +msgid "Serbia and Montenegro (historical, 2003-2006)" +msgstr "" + +#: ../picard/const.py:310 +msgid "Serbia" +msgstr "" + +#: ../picard/const.py:311 +msgid "Montenegro" +msgstr "" + +#: ../picard/const.py:312 +msgid "Croatia" +msgstr "" + +#: ../picard/const.py:313 +msgid "Korea (North), Democratic People's Republic of" +msgstr "" + +#: ../picard/const.py:314 +msgid "Korea (South), Republic of" +msgstr "" + +#: ../picard/const.py:315 +msgid "Slovakia" +msgstr "" + +#: ../picard/const.py:316 +msgid "Soviet Union (historical, 1922-1991)" +msgstr "" + +#: ../picard/const.py:317 +msgid "East Timor" +msgstr "" + +#: ../picard/const.py:318 +msgid "Czechoslovakia (historical, 1918-1992)" +msgstr "" + +#: ../picard/const.py:319 +msgid "Europe" +msgstr "" + +#: ../picard/const.py:320 +msgid "East Germany (historical, 1949-1990)" +msgstr "" + +#: ../picard/const.py:321 +msgid "[Unknown Country]" +msgstr "" + +#: ../picard/const.py:322 +msgid "[Worldwide]" +msgstr "" + +#: ../picard/const.py:323 +msgid "Yugoslavia (historical, 1918-1992)" +msgstr "" + +#: ../picard/const.py:328 ../picard/const.py:387 +msgid "Afrikaans" +msgstr "" + +#: ../picard/const.py:329 ../picard/const.py:396 +msgid "Arabic" +msgstr "" + +#: ../picard/const.py:330 +msgid "Asturian" +msgstr "" + +#: ../picard/const.py:331 ../picard/const.py:438 +msgid "Bulgarian" +msgstr "" + +#: ../picard/const.py:332 ../picard/const.py:442 +msgid "Catalan" +msgstr "" + +#: ../picard/const.py:333 ../picard/const.py:464 +msgid "Czech" +msgstr "" + +#: ../picard/const.py:334 ../picard/const.py:835 +msgid "Welsh" +msgstr "" + +#: ../picard/const.py:335 ../picard/const.py:466 +msgid "Danish" +msgstr "" + +#: ../picard/const.py:336 ../picard/const.py:537 +msgid "German" +msgstr "" + +#: ../picard/const.py:337 ../picard/const.py:544 ../picard/const.py:545 +msgid "Greek" +msgstr "" + +#: ../picard/const.py:338 ../picard/const.py:475 +msgid "English" +msgstr "" + +#: ../picard/const.py:339 ../picard/const.py:481 +msgid "English (Canada)" +msgstr "" + +#: ../picard/const.py:340 +msgid "English (UK)" +msgstr "" + +#: ../picard/const.py:341 ../picard/const.py:506 +msgid "Esperanto" +msgstr "" + +#: ../picard/const.py:342 ../picard/const.py:744 +msgid "Spanish" +msgstr "" + +#: ../picard/const.py:343 ../picard/const.py:507 +msgid "Estonian" +msgstr "" + +#: ../picard/const.py:344 ../picard/const.py:679 +msgid "Persian" +msgstr "" + +#: ../picard/const.py:345 ../picard/const.py:516 +msgid "Finnish" +msgstr "" + +#: ../picard/const.py:346 ../picard/const.py:512 +msgid "Faroese" +msgstr "" + +#: ../picard/const.py:347 ../picard/const.py:518 +msgid "French" +msgstr "" + +#: ../picard/const.py:348 ../picard/const.py:520 +msgid "French (Canada)" +msgstr "" + +#: ../picard/const.py:349 +msgid "Frisian" +msgstr "" + +#: ../picard/const.py:350 ../picard/const.py:530 +msgid "Galician" +msgstr "" + +#: ../picard/const.py:351 ../picard/const.py:564 +msgid "Hebrew" +msgstr "" + +#: ../picard/const.py:352 ../picard/const.py:566 +msgid "Hindi" +msgstr "" + +#: ../picard/const.py:353 ../picard/const.py:568 +msgid "Hungarian" +msgstr "" + +#: ../picard/const.py:354 ../picard/const.py:574 +msgid "Indonesian" +msgstr "" + +#: ../picard/const.py:355 +msgid "Islandic" +msgstr "" + +#: ../picard/const.py:356 ../picard/const.py:580 +msgid "Italian" +msgstr "" + +#: ../picard/const.py:357 ../picard/const.py:583 +msgid "Japanese" +msgstr "" + +#: ../picard/const.py:358 ../picard/const.py:591 +msgid "Kannada" +msgstr "" + +#: ../picard/const.py:359 ../picard/const.py:605 +msgid "Korean" +msgstr "" + +#: ../picard/const.py:360 ../picard/const.py:630 +msgid "Lithuanian" +msgstr "" + +#: ../picard/const.py:361 +msgid "Norwegian Bokmal" +msgstr "" + +#: ../picard/const.py:362 ../picard/const.py:632 +msgid "Low German" +msgstr "" + +#: ../picard/const.py:363 ../picard/const.py:470 +msgid "Dutch" +msgstr "" + +#: ../picard/const.py:364 ../picard/const.py:670 +msgid "Occitan" +msgstr "" + +#: ../picard/const.py:365 ../picard/const.py:682 +msgid "Polish" +msgstr "" + +#: ../picard/const.py:366 ../picard/const.py:684 +msgid "Portuguese" +msgstr "" + +#: ../picard/const.py:367 +msgid "Brazilian Portuguese" +msgstr "" + +#: ../picard/const.py:368 ../picard/const.py:694 +msgid "Romanian" +msgstr "" + +#: ../picard/const.py:369 ../picard/const.py:697 +msgid "Russian" +msgstr "" + +#: ../picard/const.py:370 +msgid "Scots" +msgstr "" + +#: ../picard/const.py:371 ../picard/const.py:730 +msgid "Slovak" +msgstr "" + +#: ../picard/const.py:372 ../picard/const.py:732 +msgid "Slovenian" +msgstr "" + +#: ../picard/const.py:373 ../picard/const.py:702 ../picard/const.py:703 +msgid "Serbian" +msgstr "" + +#: ../picard/const.py:374 ../picard/const.py:771 +msgid "Swedish" +msgstr "" + +#: ../picard/const.py:375 ../picard/const.py:783 +msgid "Tamil" +msgstr "" + +#: ../picard/const.py:376 ../picard/const.py:807 +msgid "Turkish" +msgstr "" + +#: ../picard/const.py:377 ../picard/const.py:815 +msgid "Ukrainian" +msgstr "" + +#: ../picard/const.py:378 ../picard/const.py:444 +msgid "Chinese" +msgstr "" + +#: ../picard/const.py:382 +msgid "Afar" +msgstr "" + +#: ../picard/const.py:383 +msgid "Afar (Djibouti)" +msgstr "" + +#: ../picard/const.py:384 +msgid "Afar (Eritrea)" +msgstr "" + +#: ../picard/const.py:385 +msgid "Afar (Eritrea) (Saho)" +msgstr "" + +#: ../picard/const.py:386 +msgid "Afar (Ethiopia)" +msgstr "" + +#: ../picard/const.py:388 +msgid "Afrikaans (Namibia)" +msgstr "" + +#: ../picard/const.py:389 +msgid "Afrikaans (South Africa)" +msgstr "" + +#: ../picard/const.py:390 +msgid "Akan" +msgstr "" + +#: ../picard/const.py:391 +msgid "Akan (Ghana)" +msgstr "" + +#: ../picard/const.py:392 +msgid "Albanian" +msgstr "" + +#: ../picard/const.py:393 +msgid "Albanian (Albania)" +msgstr "" + +#: ../picard/const.py:394 +msgid "Amharic" +msgstr "" + +#: ../picard/const.py:395 +msgid "Amharic (Ethiopia)" +msgstr "" + +#: ../picard/const.py:397 +msgid "Arabic (Algeria)" +msgstr "" + +#: ../picard/const.py:398 +msgid "Arabic (Bahrain)" +msgstr "" + +#: ../picard/const.py:399 +msgid "Arabic (Egypt)" +msgstr "" + +#: ../picard/const.py:400 +msgid "Arabic (Iraq)" +msgstr "" + +#: ../picard/const.py:401 +msgid "Arabic (Jordan)" +msgstr "" + +#: ../picard/const.py:402 +msgid "Arabic (Kuwait)" +msgstr "" + +#: ../picard/const.py:403 +msgid "Arabic (Lebanon)" +msgstr "" + +#: ../picard/const.py:404 +msgid "Arabic (Libya)" +msgstr "" + +#: ../picard/const.py:405 +msgid "Arabic (Morocco)" +msgstr "" + +#: ../picard/const.py:406 +msgid "Arabic (Oman)" +msgstr "" + +#: ../picard/const.py:407 +msgid "Arabic (Qatar)" +msgstr "" + +#: ../picard/const.py:408 +msgid "Arabic (Saudi Arabia)" +msgstr "" + +#: ../picard/const.py:409 +msgid "Arabic (Sudan)" +msgstr "" + +#: ../picard/const.py:410 +msgid "Arabic (Syria)" +msgstr "" + +#: ../picard/const.py:411 +msgid "Arabic (Tunisia)" +msgstr "" + +#: ../picard/const.py:412 +msgid "Arabic (United Arab Emirates)" +msgstr "" + +#: ../picard/const.py:413 +msgid "Arabic (Yemen)" +msgstr "" + +#: ../picard/const.py:414 +msgid "Armenian" +msgstr "" + +#: ../picard/const.py:415 +msgid "Armenian (Armenia)" +msgstr "" + +#: ../picard/const.py:416 +msgid "Armenian (Armenia) (Revised Orthography)" +msgstr "" + +#: ../picard/const.py:417 +msgid "Assamese" +msgstr "" + +#: ../picard/const.py:418 +msgid "Assamese (India)" +msgstr "" + +#: ../picard/const.py:419 +msgid "Atsam" +msgstr "" + +#: ../picard/const.py:420 +msgid "Atsam (Nigeria)" +msgstr "" + +#: ../picard/const.py:421 +msgid "Azerbaijani" +msgstr "" + +#: ../picard/const.py:422 +msgid "Azerbaijani (Azerbaijan)" +msgstr "" + +#: ../picard/const.py:423 +msgid "Azerbaijani (Cyrillic)" +msgstr "" + +#: ../picard/const.py:424 +msgid "Azerbaijani (Cyrillic) (Azerbaijan)" +msgstr "" + +#: ../picard/const.py:425 +msgid "Azerbaijani (Latin)" +msgstr "" + +#: ../picard/const.py:426 +msgid "Azerbaijani (Latin) (Azerbaijan)" +msgstr "" + +#: ../picard/const.py:427 +msgid "Basque" +msgstr "" + +#: ../picard/const.py:428 +msgid "Basque (Spain)" +msgstr "" + +#: ../picard/const.py:429 +msgid "Belarusian" +msgstr "" + +#: ../picard/const.py:430 +msgid "Belarusian (Belarus)" +msgstr "" + +#: ../picard/const.py:431 +msgid "Bengali" +msgstr "" + +#: ../picard/const.py:432 +msgid "Bengali (Bangladesh)" +msgstr "" + +#: ../picard/const.py:433 +msgid "Bengali (India)" +msgstr "" + +#: ../picard/const.py:434 +msgid "Blin" +msgstr "" + +#: ../picard/const.py:435 +msgid "Blin (Eritrea)" +msgstr "" + +#: ../picard/const.py:436 +msgid "Bosnian" +msgstr "" + +#: ../picard/const.py:437 +msgid "Bosnian (Bosnia and Herzegovina)" +msgstr "" + +#: ../picard/const.py:439 +msgid "Bulgarian (Bulgaria)" +msgstr "" + +#: ../picard/const.py:440 +msgid "Burmese" +msgstr "" + +#: ../picard/const.py:441 +msgid "Burmese (Myanmar [Burma])" +msgstr "" + +#: ../picard/const.py:443 +msgid "Catalan (Spain)" +msgstr "" + +#: ../picard/const.py:445 +msgid "Chinese (China)" +msgstr "" + +#: ../picard/const.py:446 +msgid "Chinese (Hong Kong SAR China)" +msgstr "" + +#: ../picard/const.py:447 +msgid "Chinese (Macau SAR China)" +msgstr "" + +#: ../picard/const.py:448 +msgid "Chinese (Simplified Han)" +msgstr "" + +#: ../picard/const.py:449 +msgid "Chinese (Simplified Han) (China)" +msgstr "" + +#: ../picard/const.py:450 +msgid "Chinese (Simplified Han) (Hong Kong SAR China)" +msgstr "" + +#: ../picard/const.py:451 +msgid "Chinese (Simplified Han) (Macau SAR China)" +msgstr "" + +#: ../picard/const.py:452 +msgid "Chinese (Simplified Han) (Singapore)" +msgstr "" + +#: ../picard/const.py:453 +msgid "Chinese (Singapore)" +msgstr "" + +#: ../picard/const.py:454 +msgid "Chinese (Taiwan)" +msgstr "" + +#: ../picard/const.py:455 +msgid "Chinese (Traditional Han)" +msgstr "" + +#: ../picard/const.py:456 +msgid "Chinese (Traditional Han) (Hong Kong SAR China)" +msgstr "" + +#: ../picard/const.py:457 +msgid "Chinese (Traditional Han) (Macau SAR China)" +msgstr "" + +#: ../picard/const.py:458 +msgid "Chinese (Traditional Han) (Taiwan)" +msgstr "" + +#: ../picard/const.py:459 +msgid "Coptic" +msgstr "" + +#: ../picard/const.py:460 +msgid "Cornish" +msgstr "" + +#: ../picard/const.py:461 +msgid "Cornish (United Kingdom)" +msgstr "" + +#: ../picard/const.py:462 +msgid "Croatian" +msgstr "" + +#: ../picard/const.py:463 +msgid "Croatian (Croatia)" +msgstr "" + +#: ../picard/const.py:465 +msgid "Czech (Czech Republic)" +msgstr "" + +#: ../picard/const.py:467 +msgid "Danish (Denmark)" +msgstr "" + +#: ../picard/const.py:468 +msgid "Divehi" +msgstr "" + +#: ../picard/const.py:469 +msgid "Divehi (Maldives)" +msgstr "" + +#: ../picard/const.py:471 +msgid "Dutch (Belgium)" +msgstr "" + +#: ../picard/const.py:472 +msgid "Dutch (Netherlands)" +msgstr "" + +#: ../picard/const.py:473 +msgid "Dzongkha" +msgstr "" + +#: ../picard/const.py:474 +msgid "Dzongkha (Bhutan)" +msgstr "" + +#: ../picard/const.py:476 +msgid "English (American Samoa)" +msgstr "" + +#: ../picard/const.py:477 +msgid "English (Australia)" +msgstr "" + +#: ../picard/const.py:478 +msgid "English (Belgium)" +msgstr "" + +#: ../picard/const.py:479 +msgid "English (Belize)" +msgstr "" + +#: ../picard/const.py:480 +msgid "English (Botswana)" +msgstr "" + +#: ../picard/const.py:482 +msgid "English (Deseret)" +msgstr "" + +#: ../picard/const.py:483 +msgid "English (Deseret) (United States)" +msgstr "" + +#: ../picard/const.py:484 +msgid "English (Guam)" +msgstr "" + +#: ../picard/const.py:485 +msgid "English (Hong Kong SAR China)" +msgstr "" + +#: ../picard/const.py:486 +msgid "English (India)" +msgstr "" + +#: ../picard/const.py:487 +msgid "English (Ireland)" +msgstr "" + +#: ../picard/const.py:488 +msgid "English (Jamaica)" +msgstr "" + +#: ../picard/const.py:489 +msgid "English (Malta)" +msgstr "" + +#: ../picard/const.py:490 +msgid "English (Marshall Islands)" +msgstr "" + +#: ../picard/const.py:491 +msgid "English (Namibia)" +msgstr "" + +#: ../picard/const.py:492 +msgid "English (New Zealand)" +msgstr "" + +#: ../picard/const.py:493 +msgid "English (Northern Mariana Islands)" +msgstr "" + +#: ../picard/const.py:494 +msgid "English (Pakistan)" +msgstr "" + +#: ../picard/const.py:495 +msgid "English (Philippines)" +msgstr "" + +#: ../picard/const.py:496 +msgid "English (Shavian)" +msgstr "" + +#: ../picard/const.py:497 +msgid "English (Singapore)" +msgstr "" + +#: ../picard/const.py:498 +msgid "English (South Africa)" +msgstr "" + +#: ../picard/const.py:499 +msgid "English (Trinidad and Tobago)" +msgstr "" + +#: ../picard/const.py:500 +msgid "English (U.S. Minor Outlying Islands)" +msgstr "" + +#: ../picard/const.py:501 +msgid "English (U.S. Virgin Islands)" +msgstr "" + +#: ../picard/const.py:502 +msgid "English (United Kingdom)" +msgstr "" + +#: ../picard/const.py:503 +msgid "English (United States)" +msgstr "" + +#: ../picard/const.py:504 +msgid "English (United States) (Computer)" +msgstr "" + +#: ../picard/const.py:505 +msgid "English (Zimbabwe)" +msgstr "" + +#: ../picard/const.py:508 +msgid "Estonian (Estonia)" +msgstr "" + +#: ../picard/const.py:509 +msgid "Ewe" +msgstr "" + +#: ../picard/const.py:510 +msgid "Ewe (Ghana)" +msgstr "" + +#: ../picard/const.py:511 +msgid "Ewe (Togo)" +msgstr "" + +#: ../picard/const.py:513 +msgid "Faroese (Faroe Islands)" +msgstr "" + +#: ../picard/const.py:514 +msgid "Filipino" +msgstr "" + +#: ../picard/const.py:515 +msgid "Filipino (Philippines)" +msgstr "" + +#: ../picard/const.py:517 +msgid "Finnish (Finland)" +msgstr "" + +#: ../picard/const.py:519 +msgid "French (Belgium)" +msgstr "" + +#: ../picard/const.py:521 +msgid "French (France)" +msgstr "" + +#: ../picard/const.py:522 +msgid "French (Luxembourg)" +msgstr "" + +#: ../picard/const.py:523 +msgid "French (Monaco)" +msgstr "" + +#: ../picard/const.py:524 +msgid "French (Senegal)" +msgstr "" + +#: ../picard/const.py:525 +msgid "French (Switzerland)" +msgstr "" + +#: ../picard/const.py:526 +msgid "Friulian" +msgstr "" + +#: ../picard/const.py:527 +msgid "Friulian (Italy)" +msgstr "" + +#: ../picard/const.py:528 +msgid "Ga" +msgstr "" + +#: ../picard/const.py:529 +msgid "Ga (Ghana)" +msgstr "" + +#: ../picard/const.py:531 +msgid "Galician (Spain)" +msgstr "" + +#: ../picard/const.py:532 +msgid "Geez" +msgstr "" + +#: ../picard/const.py:533 +msgid "Geez (Eritrea)" +msgstr "" + +#: ../picard/const.py:534 +msgid "Geez (Ethiopia)" +msgstr "" + +#: ../picard/const.py:535 +msgid "Georgian" +msgstr "" + +#: ../picard/const.py:536 +msgid "Georgian (Georgia)" +msgstr "" + +#: ../picard/const.py:538 +msgid "German (Austria)" +msgstr "" + +#: ../picard/const.py:539 +msgid "German (Belgium)" +msgstr "" + +#: ../picard/const.py:540 +msgid "German (Germany)" +msgstr "" + +#: ../picard/const.py:541 +msgid "German (Liechtenstein)" +msgstr "" + +#: ../picard/const.py:542 +msgid "German (Luxembourg)" +msgstr "" + +#: ../picard/const.py:543 +msgid "German (Switzerland)" +msgstr "" + +#: ../picard/const.py:546 +msgid "Greek (Cyprus)" +msgstr "" + +#: ../picard/const.py:547 +msgid "Greek (Greece)" +msgstr "" + +#: ../picard/const.py:548 +msgid "Gujarati" +msgstr "" + +#: ../picard/const.py:549 +msgid "Gujarati (India)" +msgstr "" + +#: ../picard/const.py:550 +msgid "Hausa" +msgstr "" + +#: ../picard/const.py:551 +msgid "Hausa (Arabic)" +msgstr "" + +#: ../picard/const.py:552 +msgid "Hausa (Arabic) (Nigeria)" +msgstr "" + +#: ../picard/const.py:553 +msgid "Hausa (Arabic) (Sudan)" +msgstr "" + +#: ../picard/const.py:554 +msgid "Hausa (Ghana)" +msgstr "" + +#: ../picard/const.py:555 +msgid "Hausa (Latin)" +msgstr "" + +#: ../picard/const.py:556 +msgid "Hausa (Latin) (Ghana)" +msgstr "" + +#: ../picard/const.py:557 +msgid "Hausa (Latin) (Niger)" +msgstr "" + +#: ../picard/const.py:558 +msgid "Hausa (Latin) (Nigeria)" +msgstr "" + +#: ../picard/const.py:559 +msgid "Hausa (Niger)" +msgstr "" + +#: ../picard/const.py:560 +msgid "Hausa (Nigeria)" +msgstr "" + +#: ../picard/const.py:561 +msgid "Hausa (Sudan)" +msgstr "" + +#: ../picard/const.py:562 +msgid "Hawaiian" +msgstr "" + +#: ../picard/const.py:563 +msgid "Hawaiian (United States)" +msgstr "" + +#: ../picard/const.py:565 +msgid "Hebrew (Israel)" +msgstr "" + +#: ../picard/const.py:567 +msgid "Hindi (India)" +msgstr "" + +#: ../picard/const.py:569 +msgid "Hungarian (Hungary)" +msgstr "" + +#: ../picard/const.py:570 +msgid "Icelandic" +msgstr "" + +#: ../picard/const.py:571 +msgid "Icelandic (Iceland)" +msgstr "" + +#: ../picard/const.py:572 +msgid "Igbo" +msgstr "" + +#: ../picard/const.py:573 +msgid "Igbo (Nigeria)" +msgstr "" + +#: ../picard/const.py:575 +msgid "Indonesian (Indonesia)" +msgstr "" + +#: ../picard/const.py:576 +msgid "Interlingua" +msgstr "" + +#: ../picard/const.py:577 +msgid "Inuktitut" +msgstr "" + +#: ../picard/const.py:578 +msgid "Irish" +msgstr "" + +#: ../picard/const.py:579 +msgid "Irish (Ireland)" +msgstr "" + +#: ../picard/const.py:581 +msgid "Italian (Italy)" +msgstr "" + +#: ../picard/const.py:582 +msgid "Italian (Switzerland)" +msgstr "" + +#: ../picard/const.py:584 +msgid "Japanese (Japan)" +msgstr "" + +#: ../picard/const.py:585 +msgid "Jju" +msgstr "" + +#: ../picard/const.py:586 +msgid "Jju Nigeria" +msgstr "" + +#: ../picard/const.py:587 +msgid "Kalaallisut" +msgstr "" + +#: ../picard/const.py:588 +msgid "Kalaallisut (Greenland)" +msgstr "" + +#: ../picard/const.py:589 +msgid "Kamba" +msgstr "" + +#: ../picard/const.py:590 +msgid "Kamba (Kenya)" +msgstr "" + +#: ../picard/const.py:592 +msgid "Kannada (India)" +msgstr "" + +#: ../picard/const.py:593 +msgid "Kazakh" +msgstr "" + +#: ../picard/const.py:594 +msgid "Kazakh (Cyrillic)" +msgstr "" + +#: ../picard/const.py:595 +msgid "Kazakh (Cyrillic) (Kazakhstan)" +msgstr "" + +#: ../picard/const.py:596 +msgid "Kazakh (Kazakhstan)" +msgstr "" + +#: ../picard/const.py:597 +msgid "Khmer" +msgstr "" + +#: ../picard/const.py:598 +msgid "Khmer (Cambodia)" +msgstr "" + +#: ../picard/const.py:599 +msgid "Kinyarwanda" +msgstr "" + +#: ../picard/const.py:600 +msgid "Kinyarwanda (Rwanda)" +msgstr "" + +#: ../picard/const.py:601 +msgid "Kirghiz" +msgstr "" + +#: ../picard/const.py:602 +msgid "Kirghiz (Kyrgyzstan)" +msgstr "" + +#: ../picard/const.py:603 +msgid "Konkani" +msgstr "" + +#: ../picard/const.py:604 +msgid "Konkani (India)" +msgstr "" + +#: ../picard/const.py:606 +msgid "Korean (South Korea)" +msgstr "" + +#: ../picard/const.py:607 +msgid "Koro" +msgstr "" + +#: ../picard/const.py:608 +msgid "Koro (Côte d’Ivoire)" +msgstr "" + +#: ../picard/const.py:609 +msgid "Kpelle" +msgstr "" + +#: ../picard/const.py:610 +msgid "Kpelle (Guinea)" +msgstr "" + +#: ../picard/const.py:611 +msgid "Kpelle (Liberia)" +msgstr "" + +#: ../picard/const.py:612 +msgid "Kurdish" +msgstr "" + +#: ../picard/const.py:613 +msgid "Kurdish (Arabic)" +msgstr "" + +#: ../picard/const.py:614 +msgid "Kurdish (Arabic) (Iran)" +msgstr "" + +#: ../picard/const.py:615 +msgid "Kurdish (Arabic) (Iraq)" +msgstr "" + +#: ../picard/const.py:616 +msgid "Kurdish (Arabic) (Syria)" +msgstr "" + +#: ../picard/const.py:617 +msgid "Kurdish (Iran)" +msgstr "" + +#: ../picard/const.py:618 +msgid "Kurdish (Iraq)" +msgstr "" + +#: ../picard/const.py:619 +msgid "Kurdish (Latin)" +msgstr "" + +#: ../picard/const.py:620 +msgid "Kurdish (Latin) (Turkey)" +msgstr "" + +#: ../picard/const.py:621 +msgid "Kurdish (Syria)" +msgstr "" + +#: ../picard/const.py:622 +msgid "Kurdish (Turkey)" +msgstr "" + +#: ../picard/const.py:623 +msgid "Lao" +msgstr "" + +#: ../picard/const.py:624 +msgid "Lao (Laos)" +msgstr "" + +#: ../picard/const.py:625 +msgid "Latvian" +msgstr "" + +#: ../picard/const.py:626 +msgid "Latvian (Latvia)" +msgstr "" + +#: ../picard/const.py:627 +msgid "Lingala" +msgstr "" + +#: ../picard/const.py:628 +msgid "Lingala (Congo - Brazzaville)" +msgstr "" + +#: ../picard/const.py:629 +msgid "Lingala (Congo - Kinshasa)" +msgstr "" + +#: ../picard/const.py:631 +msgid "Lithuanian (Lithuania)" +msgstr "" + +#: ../picard/const.py:633 +msgid "Low German (Germany)" +msgstr "" + +#: ../picard/const.py:634 +msgid "Macedonian" +msgstr "" + +#: ../picard/const.py:635 +msgid "Macedonian (Macedonia)" +msgstr "" + +#: ../picard/const.py:636 +msgid "Malay" +msgstr "" + +#: ../picard/const.py:637 +msgid "Malay (Brunei)" +msgstr "" + +#: ../picard/const.py:638 +msgid "Malay (Malaysia)" +msgstr "" + +#: ../picard/const.py:639 +msgid "Malayalam" +msgstr "" + +#: ../picard/const.py:640 +msgid "Malayalam (India)" +msgstr "" + +#: ../picard/const.py:641 +msgid "Maltese" +msgstr "" + +#: ../picard/const.py:642 +msgid "Maltese (Malta)" +msgstr "" + +#: ../picard/const.py:643 +msgid "Manx" +msgstr "" + +#: ../picard/const.py:644 +msgid "Manx (United Kingdom)" +msgstr "" + +#: ../picard/const.py:645 +msgid "Marathi" +msgstr "" + +#: ../picard/const.py:646 +msgid "Marathi (India)" +msgstr "" + +#: ../picard/const.py:647 +msgid "Moldavian" +msgstr "" + +#: ../picard/const.py:648 +msgid "Mongolian" +msgstr "" + +#: ../picard/const.py:649 +msgid "Mongolian (China)" +msgstr "" + +#: ../picard/const.py:650 +msgid "Mongolian (Cyrillic)" +msgstr "" + +#: ../picard/const.py:651 +msgid "Mongolian (Cyrillic) (Mongolia)" +msgstr "" + +#: ../picard/const.py:652 +msgid "Mongolian (Mongolia)" +msgstr "" + +#: ../picard/const.py:653 +msgid "Mongolian (Mongolian)" +msgstr "" + +#: ../picard/const.py:654 +msgid "Mongolian (Mongolian) (China)" +msgstr "" + +#: ../picard/const.py:655 +msgid "Nepali" +msgstr "" + +#: ../picard/const.py:656 +msgid "Nepali (India)" +msgstr "" + +#: ../picard/const.py:657 +msgid "Nepali (Nepal)" +msgstr "" + +#: ../picard/const.py:658 +msgid "Northern Sami" +msgstr "" + +#: ../picard/const.py:659 +msgid "Northern (Sami Finland)" +msgstr "" + +#: ../picard/const.py:660 +msgid "Northern (Sami Norway)" +msgstr "" + +#: ../picard/const.py:661 +msgid "Northern Sotho" +msgstr "" + +#: ../picard/const.py:662 +msgid "Northern Sotho (South Africa)" +msgstr "" + +#: ../picard/const.py:663 +msgid "Norwegian" +msgstr "" + +#: ../picard/const.py:664 +msgid "Norwegian Bokmål" +msgstr "" + +#: ../picard/const.py:665 +msgid "Norwegian Bokmål (Norway)" +msgstr "" + +#: ../picard/const.py:666 +msgid "Norwegian Nynorsk" +msgstr "" + +#: ../picard/const.py:667 +msgid "Norwegian Nynorsk (Norway)" +msgstr "" + +#: ../picard/const.py:668 +msgid "Nyanja" +msgstr "" + +#: ../picard/const.py:669 +msgid "Nyanja (Malawi)" +msgstr "" + +#: ../picard/const.py:671 +msgid "Occitan (France)" +msgstr "" + +#: ../picard/const.py:672 +msgid "Oriya" +msgstr "" + +#: ../picard/const.py:673 +msgid "Oriya (India)" +msgstr "" + +#: ../picard/const.py:674 +msgid "Oromo" +msgstr "" + +#: ../picard/const.py:675 +msgid "Oromo (Ethiopia)" +msgstr "" + +#: ../picard/const.py:676 +msgid "Oromo (Kenya)" +msgstr "" + +#: ../picard/const.py:677 +msgid "Pashto" +msgstr "" + +#: ../picard/const.py:678 +msgid "Pashto (Afghanistan)" +msgstr "" + +#: ../picard/const.py:680 +msgid "Persian (Afghanistan)" +msgstr "" + +#: ../picard/const.py:681 +msgid "Persian (Iran)" +msgstr "" + +#: ../picard/const.py:683 +msgid "Polish (Poland)" +msgstr "" + +#: ../picard/const.py:685 +msgid "Portuguese (Brazil)" +msgstr "" + +#: ../picard/const.py:686 +msgid "Portuguese (Portugal)" +msgstr "" + +#: ../picard/const.py:687 +msgid "Punjabi" +msgstr "" + +#: ../picard/const.py:688 +msgid "Punjabi (Arabic)" +msgstr "" + +#: ../picard/const.py:689 +msgid "Punjabi (Arabic) (Pakistan)" +msgstr "" + +#: ../picard/const.py:690 +msgid "Punjabi (Gurmukhi)" +msgstr "" + +#: ../picard/const.py:691 +msgid "Punjabi (Gurmukhi) (India)" +msgstr "" + +#: ../picard/const.py:692 +msgid "Punjabi (India)" +msgstr "" + +#: ../picard/const.py:693 +msgid "Punjabi (Pakistan)" +msgstr "" + +#: ../picard/const.py:695 +msgid "Romanian (Moldova)" +msgstr "" + +#: ../picard/const.py:696 +msgid "Romanian (Romania)" +msgstr "" + +#: ../picard/const.py:698 +msgid "Russian (Russia)" +msgstr "" + +#: ../picard/const.py:699 +msgid "Russian (Ukraine)" +msgstr "" + +#: ../picard/const.py:700 +msgid "Sanskrit" +msgstr "" + +#: ../picard/const.py:701 +msgid "Sanskrit (India)" +msgstr "" + +#: ../picard/const.py:704 +msgid "Serbian (Bosnia and Herzegovina)" +msgstr "" + +#: ../picard/const.py:705 ../picard/const.py:706 +msgid "Serbian (Cyrillic)" +msgstr "" + +#: ../picard/const.py:707 +msgid "Serbian (Cyrillic) (Bosnia and Herzegovina)" +msgstr "" + +#: ../picard/const.py:708 +msgid "Serbian (Cyrillic) (Montenegro)" +msgstr "" + +#: ../picard/const.py:709 +msgid "Serbian (Cyrillic) (Serbia)" +msgstr "" + +#: ../picard/const.py:710 +msgid "Serbian (Cyrillic) (Serbia and Montenegro)" +msgstr "" + +#: ../picard/const.py:711 ../picard/const.py:712 +msgid "Serbian (Latin)" +msgstr "" + +#: ../picard/const.py:713 +msgid "Serbian (Latin) (Bosnia and Herzegovina)" +msgstr "" + +#: ../picard/const.py:714 +msgid "Serbian (Latin) (Montenegro)" +msgstr "" + +#: ../picard/const.py:715 +msgid "Serbian (Latin) (Serbia)" +msgstr "" + +#: ../picard/const.py:716 +msgid "Serbian (Latin) (Serbia and Montenegro)" +msgstr "" + +#: ../picard/const.py:717 +msgid "Serbian (Montenegro)" +msgstr "" + +#: ../picard/const.py:718 +msgid "Serbian (Serbia)" +msgstr "" + +#: ../picard/const.py:719 +msgid "Serbian (Serbia and Montenegro)" +msgstr "" + +#: ../picard/const.py:720 ../picard/const.py:721 +msgid "Serbo-Croatian" +msgstr "" + +#: ../picard/const.py:722 +msgid "Serbo-Croatian (Bosnia and Herzegovina)" +msgstr "" + +#: ../picard/const.py:723 +msgid "Serbo-Croatian (Serbia and Montenegro)" +msgstr "" + +#: ../picard/const.py:724 +msgid "Sichuan Yi" +msgstr "" + +#: ../picard/const.py:725 +msgid "Sichuan (Yi China)" +msgstr "" + +#: ../picard/const.py:726 +msgid "Sidamo" +msgstr "" + +#: ../picard/const.py:727 +msgid "Sidamo (Ethiopia)" +msgstr "" + +#: ../picard/const.py:728 +msgid "Sinhala" +msgstr "" + +#: ../picard/const.py:729 +msgid "Sinhala (Sri Lanka)" +msgstr "" + +#: ../picard/const.py:731 +msgid "Slovak (Slovakia)" +msgstr "" + +#: ../picard/const.py:733 +msgid "Slovenian (Slovenia)" +msgstr "" + +#: ../picard/const.py:734 +msgid "Somali" +msgstr "" + +#: ../picard/const.py:735 +msgid "Somali (Djibouti)" +msgstr "" + +#: ../picard/const.py:736 +msgid "Somali (Ethiopia)" +msgstr "" + +#: ../picard/const.py:737 +msgid "Somali (Kenya)" +msgstr "" + +#: ../picard/const.py:738 +msgid "Somali (Somalia)" +msgstr "" + +#: ../picard/const.py:739 +msgid "South Ndebele" +msgstr "" + +#: ../picard/const.py:740 +msgid "South Ndebele (South Africa)" +msgstr "" + +#: ../picard/const.py:741 +msgid "Southern Sotho" +msgstr "" + +#: ../picard/const.py:742 +msgid "Southern Sotho (Lesotho)" +msgstr "" + +#: ../picard/const.py:743 +msgid "Southern Sotho (South Africa)" +msgstr "" + +#: ../picard/const.py:745 +msgid "Spanish (Argentina)" +msgstr "" + +#: ../picard/const.py:746 +msgid "Spanish (Bolivia)" +msgstr "" + +#: ../picard/const.py:747 +msgid "Spanish (Chile)" +msgstr "" + +#: ../picard/const.py:748 +msgid "Spanish (Colombia)" +msgstr "" + +#: ../picard/const.py:749 +msgid "Spanish (Costa Rica)" +msgstr "" + +#: ../picard/const.py:750 +msgid "Spanish (Dominican Republic)" +msgstr "" + +#: ../picard/const.py:751 +msgid "Spanish (Ecuador)" +msgstr "" + +#: ../picard/const.py:752 +msgid "Spanish (El Salvador)" +msgstr "" + +#: ../picard/const.py:753 +msgid "Spanish (Guatemala)" +msgstr "" + +#: ../picard/const.py:754 +msgid "Spanish (Honduras)" +msgstr "" + +#: ../picard/const.py:755 +msgid "Spanish (Mexico)" +msgstr "" + +#: ../picard/const.py:756 +msgid "Spanish (Nicaragua)" +msgstr "" + +#: ../picard/const.py:757 +msgid "Spanish (Panama)" +msgstr "" + +#: ../picard/const.py:758 +msgid "Spanish (Paraguay)" +msgstr "" + +#: ../picard/const.py:759 +msgid "Spanish (Peru)" +msgstr "" + +#: ../picard/const.py:760 +msgid "Spanish (Puerto Rico)" +msgstr "" + +#: ../picard/const.py:761 +msgid "Spanish (Spain)" +msgstr "" + +#: ../picard/const.py:762 +msgid "Spanish (United States)" +msgstr "" + +#: ../picard/const.py:763 +msgid "Spanish (Uruguay)" +msgstr "" + +#: ../picard/const.py:764 +msgid "Spanish (Venezuela)" +msgstr "" + +#: ../picard/const.py:765 +msgid "Swahili" +msgstr "" + +#: ../picard/const.py:766 +msgid "Swahili (Kenya)" +msgstr "" + +#: ../picard/const.py:767 +msgid "Swahili (Tanzania)" +msgstr "" + +#: ../picard/const.py:768 +msgid "Swati" +msgstr "" + +#: ../picard/const.py:769 +msgid "Swati (South Africa)" +msgstr "" + +#: ../picard/const.py:770 +msgid "Swati (Swaziland)" +msgstr "" + +#: ../picard/const.py:772 +msgid "Swedish (Finland)" +msgstr "" + +#: ../picard/const.py:773 +msgid "Swedish (Sweden)" +msgstr "" + +#: ../picard/const.py:774 +msgid "Swiss German" +msgstr "" + +#: ../picard/const.py:775 +msgid "Swiss German (Switzerland)" +msgstr "" + +#: ../picard/const.py:776 +msgid "Syriac" +msgstr "" + +#: ../picard/const.py:777 +msgid "Syriac (Syria)" +msgstr "" + +#: ../picard/const.py:778 +msgid "Tagalog" +msgstr "" + +#: ../picard/const.py:779 +msgid "Tajik" +msgstr "" + +#: ../picard/const.py:780 +msgid "Tajik (Cyrillic)" +msgstr "" + +#: ../picard/const.py:781 +msgid "Tajik (Cyrillic) (Tajikistan)" +msgstr "" + +#: ../picard/const.py:782 +msgid "Tajik (Tajikistan)" +msgstr "" + +#: ../picard/const.py:784 +msgid "Tamil (India)" +msgstr "" + +#: ../picard/const.py:785 +msgid "Taroko" +msgstr "" + +#: ../picard/const.py:786 +msgid "Taroko (Taiwan)" +msgstr "" + +#: ../picard/const.py:787 +msgid "Tatar" +msgstr "" + +#: ../picard/const.py:788 +msgid "Tatar (Russia)" +msgstr "" + +#: ../picard/const.py:789 +msgid "Telugu" +msgstr "" + +#: ../picard/const.py:790 +msgid "Telugu (India)" +msgstr "" + +#: ../picard/const.py:791 +msgid "Thai" +msgstr "" + +#: ../picard/const.py:792 +msgid "Thai (Thailand)" +msgstr "" + +#: ../picard/const.py:793 +msgid "Tibetan" +msgstr "" + +#: ../picard/const.py:794 +msgid "Tibetan (China)" +msgstr "" + +#: ../picard/const.py:795 +msgid "Tibetan (India)" +msgstr "" + +#: ../picard/const.py:796 +msgid "Tigre" +msgstr "" + +#: ../picard/const.py:797 +msgid "Tigre (Eritrea)" +msgstr "" + +#: ../picard/const.py:798 +msgid "Tigrinya" +msgstr "" + +#: ../picard/const.py:799 +msgid "Tigrinya (Eritrea)" +msgstr "" + +#: ../picard/const.py:800 +msgid "Tigrinya (Ethiopia)" +msgstr "" + +#: ../picard/const.py:802 +msgid "Tonga (Tonga)" +msgstr "" + +#: ../picard/const.py:803 +msgid "Tsonga" +msgstr "" + +#: ../picard/const.py:804 +msgid "Tsonga (South Africa)" +msgstr "" + +#: ../picard/const.py:805 +msgid "Tswana" +msgstr "" + +#: ../picard/const.py:806 +msgid "Tswana (South Africa)" +msgstr "" + +#: ../picard/const.py:808 +msgid "Turkish (Turkey)" +msgstr "" + +#: ../picard/const.py:809 +msgid "Tyap" +msgstr "" + +#: ../picard/const.py:810 +msgid "Tyap (Nigeria)" +msgstr "" + +#: ../picard/const.py:811 +msgid "Uighur" +msgstr "" + +#: ../picard/const.py:812 +msgid "Uighur (Arabic)" +msgstr "" + +#: ../picard/const.py:813 +msgid "Uighur (Arabic) (China)" +msgstr "" + +#: ../picard/const.py:814 +msgid "Uighur (China)" +msgstr "" + +#: ../picard/const.py:816 +msgid "Ukrainian (Ukraine)" +msgstr "" + +#: ../picard/const.py:817 +msgid "Urdu" +msgstr "" + +#: ../picard/const.py:818 +msgid "Urdu (India)" +msgstr "" + +#: ../picard/const.py:819 +msgid "Urdu (Pakistan)" +msgstr "" + +#: ../picard/const.py:820 +msgid "Uzbek" +msgstr "" + +#: ../picard/const.py:821 +msgid "Uzbek (Afghanistan)" +msgstr "" + +#: ../picard/const.py:822 +msgid "Uzbek (Arabic)" +msgstr "" + +#: ../picard/const.py:823 +msgid "Uzbek (Arabic) (Afghanistan)" +msgstr "" + +#: ../picard/const.py:824 +msgid "Uzbek (Cyrillic)" +msgstr "" + +#: ../picard/const.py:825 +msgid "Uzbek (Cyrillic) (Uzbekistan)" +msgstr "" + +#: ../picard/const.py:826 +msgid "Uzbek (Latin)" +msgstr "" + +#: ../picard/const.py:827 +msgid "Uzbek (Latin) (Uzbekistan)" +msgstr "" + +#: ../picard/const.py:828 +msgid "Uzbek (Uzbekistan)" +msgstr "" + +#: ../picard/const.py:829 +msgid "Venda" +msgstr "" + +#: ../picard/const.py:830 +msgid "Venda (South Africa)" +msgstr "" + +#: ../picard/const.py:831 +msgid "Vietnamese" +msgstr "" + +#: ../picard/const.py:832 +msgid "Vietnamese (Vietnam)" +msgstr "" + +#: ../picard/const.py:833 +msgid "Walamo" +msgstr "" + +#: ../picard/const.py:834 +msgid "Walamo (Ethiopia)" +msgstr "" + +#: ../picard/const.py:836 +msgid "Welsh (United Kingdom)" +msgstr "" + +#: ../picard/const.py:837 +msgid "Wolof" +msgstr "" + +#: ../picard/const.py:838 +msgid "Wolof (Latin)" +msgstr "" + +#: ../picard/const.py:839 +msgid "Wolof (Latin) (Senegal)" +msgstr "" + +#: ../picard/const.py:840 +msgid "Wolof (Senegal)" +msgstr "" + +#: ../picard/const.py:841 +msgid "Xhosa" +msgstr "" + +#: ../picard/const.py:842 +msgid "Xhosa (South Africa)" +msgstr "" + +#: ../picard/const.py:843 +msgid "Yoruba" +msgstr "" + +#: ../picard/const.py:844 +msgid "Yoruba (Nigeria)" +msgstr "" + +#: ../picard/const.py:845 +msgid "Zulu" +msgstr "" + +#: ../picard/const.py:846 +msgid "Zulu (South Africa)" +msgstr "" + +#: ../picard/acoustid.py:111 +#, python-format +msgid "Could not find AcoustID for file %s" +msgstr "" + +#: ../picard/acoustid.py:115 ../picard/musicdns/__init__.py:103 +#, python-format +msgid "Looking up the fingerprint for file %s..." +msgstr "" + +#: ../picard/acoustidmanager.py:74 +msgid "Submitting AcoustIDs..." +msgstr "" + +#: ../picard/acoustidmanager.py:79 +#, python-format +msgid "AcoustID submission failed: %s" +msgstr "" + +#: ../picard/acoustidmanager.py:81 +msgid "AcoustIDs successfully submitted!" +msgstr "" + +#: ../picard/cluster.py:177 ../picard/cluster.py:188 +#, python-format +msgid "No matching releases for cluster %s" +msgstr "" + +#: ../picard/cluster.py:190 +#, python-format +msgid "Cluster %s identified!" +msgstr "" + +#: ../picard/cluster.py:195 +#, python-format +msgid "Looking up the metadata for cluster %s..." +msgstr "" + +#: ../picard/cluster.py:260 ../picard/album.py:55 +msgid "Unmatched Files" +msgstr "" + +#: ../picard/tagger.py:536 msgid "CD Lookup Error" msgstr "" -#: ../picard/tagger.py:532 +#: ../picard/tagger.py:537 #, python-format msgid "" "Error while reading CD:\n" @@ -3039,51 +3085,18 @@ msgid "" "%s" msgstr "" -#: ../picard/tagger.py:558 +#: ../picard/tagger.py:563 #, python-format msgid "Could not find PUID for file %s" msgstr "" -#: ../picard/acoustid.py:106 +#: ../picard/album.py:180 #, python-format -msgid "Could not find AcoustID for file %s" +msgid "[could not load album %s]" msgstr "" -#: ../picard/acoustid.py:110 ../picard/musicdns/__init__.py:100 -#, python-format -msgid "Looking up the fingerprint for file %s..." -msgstr "" - -#: ../picard/acoustidmanager.py:72 -msgid "Submitting AcoustIDs..." -msgstr "" - -#: ../picard/acoustidmanager.py:77 -#, python-format -msgid "AcoustID submission failed: %s" -msgstr "" - -#: ../picard/acoustidmanager.py:79 -msgid "AcoustIDs successfully submitted!" -msgstr "" - -#: ../picard/cluster.py:165 ../picard/cluster.py:176 -#, python-format -msgid "No matching releases for cluster %s" -msgstr "" - -#: ../picard/cluster.py:178 -#, python-format -msgid "Cluster %s identified!" -msgstr "" - -#: ../picard/cluster.py:183 -#, python-format -msgid "Looking up the metadata for cluster %s..." -msgstr "" - -#: ../picard/cluster.py:248 ../picard/album.py:54 -msgid "Unmatched Files" +#: ../picard/album.py:281 +msgid "[loading album information]" msgstr "" #: ../picard/puidmanager.py:62 @@ -3099,51 +3112,1136 @@ msgstr "" msgid "PUIDs successfully submitted!" msgstr "" -#: ../picard/playlist.py:31 -msgid "M3U Playlist (*.m3u)" +#: ../picard/ui/ui_options_metadata.py:101 ../picard/ui/options/metadata.py:30 +msgid "Metadata" msgstr "" -#: ../picard/playlist.py:32 -msgid "PLS Playlist (*.pls)" +#: ../picard/ui/ui_options_metadata.py:102 +msgid "Translate artist names to this locale where possible:" msgstr "" -#: ../picard/playlist.py:33 -msgid "XSPF Playlist (*.xspf)" +#: ../picard/ui/ui_options_metadata.py:103 +msgid "Use standardized artist names" msgstr "" -#: ../picard/album.py:201 -#, python-format -msgid "[could not load album %s]" +#: ../picard/ui/ui_options_metadata.py:104 +msgid "Convert Unicode punctuation characters to ASCII" msgstr "" -#: ../picard/album.py:271 -msgid "[loading album information]" +#: ../picard/ui/ui_options_metadata.py:105 +msgid "Use release relationships" msgstr "" -#: ../picard/util/webbrowser2.py:84 -msgid "Web Browser Error" +#: ../picard/ui/ui_options_metadata.py:106 +msgid "Use track relationships" msgstr "" -#: ../picard/util/webbrowser2.py:84 -#, python-format -msgid "" -"Error while launching a web browser:\n" -"\n" -"%s" +#: ../picard/ui/ui_options_metadata.py:107 +msgid "Use folksonomy tags as genre" msgstr "" -#: ../picard/util/tags.py:21 ../picard/ui/cdlookup.py:32 -#: ../picard/ui/mainwindow.py:481 ../picard/ui/ui_options_releases.py:217 -msgid "Album" +#: ../picard/ui/ui_options_metadata.py:108 +msgid "Custom Fields" msgstr "" -#: ../picard/util/tags.py:22 ../picard/ui/cdlookup.py:32 -#: ../picard/ui/mainwindow.py:482 ../picard/ui/itemviews.py:84 +#: ../picard/ui/ui_options_metadata.py:109 +msgid "Various artists:" +msgstr "" + +#: ../picard/ui/ui_options_metadata.py:110 +msgid "Non-album tracks:" +msgstr "" + +#: ../picard/ui/ui_options_metadata.py:111 +#: ../picard/ui/ui_options_metadata.py:112 +#: ../picard/ui/ui_options_renaming.py:148 +msgid "Default" +msgstr "" + +#: ../picard/ui/itemviews.py:83 ../picard/util/tags.py:23 +msgid "Title" +msgstr "" + +#: ../picard/ui/itemviews.py:84 ../picard/util/tags.py:84 +msgid "Length" +msgstr "" + +#: ../picard/ui/itemviews.py:85 ../picard/ui/mainwindow.py:508 +#: ../picard/ui/cdlookup.py:32 ../picard/util/tags.py:22 msgid "Artist" msgstr "" -#: ../picard/util/tags.py:23 ../picard/ui/itemviews.py:82 -msgid "Title" +#: ../picard/ui/itemviews.py:207 +msgid "&Expand all" +msgstr "" + +#: ../picard/ui/itemviews.py:209 +msgid "&Collapse all" +msgstr "" + +#: ../picard/ui/itemviews.py:266 +msgid "&Other versions" +msgstr "" + +#: ../picard/ui/itemviews.py:269 +msgid "Loading..." +msgstr "" + +#: ../picard/ui/itemviews.py:279 +msgid "[no release info]" +msgstr "" + +#: ../picard/ui/itemviews.py:302 +msgid "&Plugins" +msgstr "" + +#: ../picard/ui/itemviews.py:494 +msgid "Clusters" +msgstr "" + +#: ../picard/ui/ui_options_script.py:49 +msgid "Tagger Script" +msgstr "" + +#: ../picard/ui/filebrowser.py:38 ../picard/ui/mainwindow.py:366 +msgid "&Refresh" +msgstr "" + +#: ../picard/ui/filebrowser.py:41 +msgid "&Move Tagged Files Here" +msgstr "" + +#: ../picard/ui/filebrowser.py:44 +msgid "Show &Hidden Files" +msgstr "" + +#: ../picard/ui/metadatabox.py:64 +#, python-format +msgid "(missing from %d item)" +msgid_plural "(missing from %d items)" +msgstr[0] "" +msgstr[1] "" + +#: ../picard/ui/metadatabox.py:66 +#, python-format +msgid "(different across %d items)" +msgstr "" + +#: ../picard/ui/metadatabox.py:90 +msgid "Tag" +msgstr "" + +#: ../picard/ui/metadatabox.py:90 +msgid "Original Value" +msgstr "" + +#: ../picard/ui/metadatabox.py:90 +msgid "New Value" +msgstr "" + +#: ../picard/ui/metadatabox.py:115 +msgid "Add New Tag..." +msgstr "" + +#: ../picard/ui/metadatabox.py:117 +msgid "Show Changes First" +msgstr "" + +#: ../picard/ui/metadatabox.py:162 +msgid "Copy to New Value" +msgstr "" + +#: ../picard/ui/metadatabox.py:167 +msgid "Edit..." +msgstr "" + +#: ../picard/ui/metadatabox.py:171 ../picard/ui/mainwindow.py:611 +msgid "Remove" +msgstr "" + +#: ../picard/ui/mainwindow.py:73 +msgid "MusicBrainz Picard" +msgstr "" + +#: ../picard/ui/mainwindow.py:142 +msgid "Unsaved Changes" +msgstr "" + +#: ../picard/ui/mainwindow.py:143 +msgid "Are you sure you want to quit Picard?" +msgstr "" + +#: ../picard/ui/mainwindow.py:145 +#, python-format +msgid "There is %d unsaved file. Closing Picard will lose all unsaved changes." +msgid_plural "" +"There are %d unsaved files. Closing Picard will lose all unsaved changes." +msgstr[0] "" +msgstr[1] "" + +#: ../picard/ui/mainwindow.py:151 +msgid "&Quit Picard" +msgstr "" + +#: ../picard/ui/mainwindow.py:209 +#, python-format +msgid " Files: %(files)d, Pending Files: %(pending)d " +msgstr "" + +#: ../picard/ui/mainwindow.py:238 +msgid "Submission Error" +msgstr "" + +#: ../picard/ui/mainwindow.py:239 +msgid "" +"You need to configure your AcoustID API key before you can submit " +"fingerprints." +msgstr "" + +#: ../picard/ui/mainwindow.py:246 +msgid "&Options..." +msgstr "" + +#: ../picard/ui/mainwindow.py:249 +msgid "&Cut" +msgstr "" + +#: ../picard/ui/mainwindow.py:254 +msgid "&Paste" +msgstr "" + +#: ../picard/ui/mainwindow.py:259 +msgid "&Help..." +msgstr "" + +#: ../picard/ui/mainwindow.py:264 +msgid "&About..." +msgstr "" + +#: ../picard/ui/mainwindow.py:267 +msgid "&Donate..." +msgstr "" + +#: ../picard/ui/mainwindow.py:270 +msgid "&Report a Bug..." +msgstr "" + +#: ../picard/ui/mainwindow.py:273 +msgid "&Support Forum..." +msgstr "" + +#: ../picard/ui/mainwindow.py:276 +msgid "&Add Files..." +msgstr "" + +#: ../picard/ui/mainwindow.py:277 +msgid "Add files to the tagger" +msgstr "" + +#: ../picard/ui/mainwindow.py:282 +msgid "A&dd Folder..." +msgstr "" + +#: ../picard/ui/mainwindow.py:283 +msgid "Add a folder to the tagger" +msgstr "" + +#. Keyboard shortcut for "Add Directory..." +#: ../picard/ui/mainwindow.py:285 +msgid "Ctrl+D" +msgstr "" + +#: ../picard/ui/mainwindow.py:289 +msgid "&Save" +msgstr "" + +#: ../picard/ui/mainwindow.py:290 +msgid "Save selected files" +msgstr "" + +#: ../picard/ui/mainwindow.py:296 +msgid "S&ubmit" +msgstr "" + +#: ../picard/ui/mainwindow.py:297 +msgid "Submit fingerprints" +msgstr "" + +#: ../picard/ui/mainwindow.py:301 +msgid "E&xit" +msgstr "" + +#. Keyboard shortcut for "Exit" +#: ../picard/ui/mainwindow.py:303 +msgid "Ctrl+Q" +msgstr "" + +#: ../picard/ui/mainwindow.py:306 +msgid "&Remove" +msgstr "" + +#: ../picard/ui/mainwindow.py:307 +msgid "Remove selected files/albums" +msgstr "" + +#: ../picard/ui/mainwindow.py:312 +msgid "Lookup in &Browser" +msgstr "" + +#: ../picard/ui/mainwindow.py:313 +msgid "Lookup selected item on MusicBrainz website" +msgstr "" + +#: ../picard/ui/mainwindow.py:317 +msgid "File &Browser" +msgstr "" + +#: ../picard/ui/mainwindow.py:321 +msgid "Ctrl+B" +msgstr "" + +#: ../picard/ui/mainwindow.py:324 +msgid "&Cover Art" +msgstr "" + +#: ../picard/ui/mainwindow.py:330 +msgid "Search" +msgstr "" + +#: ../picard/ui/mainwindow.py:333 +msgid "&CD Lookup..." +msgstr "" + +#: ../picard/ui/mainwindow.py:334 ../picard/ui/mainwindow.py:335 +msgid "Lookup CD" +msgstr "" + +#. Keyboard shortcut for "Lookup CD" +#: ../picard/ui/mainwindow.py:337 +msgid "Ctrl+K" +msgstr "" + +#: ../picard/ui/mainwindow.py:340 +msgid "&Scan" +msgstr "" + +#. Keyboard shortcut for "Analyze" +#: ../picard/ui/mainwindow.py:343 +msgid "Ctrl+Y" +msgstr "" + +#: ../picard/ui/mainwindow.py:346 +msgid "Cl&uster" +msgstr "" + +#. Keyboard shortcut for "Cluster" +#: ../picard/ui/mainwindow.py:349 +msgid "Ctrl+U" +msgstr "" + +#: ../picard/ui/mainwindow.py:352 +msgid "&Lookup" +msgstr "" + +#: ../picard/ui/mainwindow.py:353 ../picard/ui/mainwindow.py:354 +msgid "Lookup metadata" +msgstr "" + +#. Keyboard shortcut for "Lookup" +#: ../picard/ui/mainwindow.py:357 +msgid "Ctrl+L" +msgstr "" + +#: ../picard/ui/mainwindow.py:360 +msgid "&Info..." +msgstr "" + +#. Keyboard shortcut for "Info" +#: ../picard/ui/mainwindow.py:363 +msgid "Ctrl+I" +msgstr "" + +#: ../picard/ui/mainwindow.py:367 +msgid "Ctrl+R" +msgstr "" + +#: ../picard/ui/mainwindow.py:370 +msgid "&Rename Files" +msgstr "" + +#: ../picard/ui/mainwindow.py:375 +msgid "&Move Files" +msgstr "" + +#: ../picard/ui/mainwindow.py:380 +msgid "Save &Tags" +msgstr "" + +#: ../picard/ui/mainwindow.py:385 +msgid "Tags From &File Names..." +msgstr "" + +#: ../picard/ui/mainwindow.py:388 +msgid "View &Log..." +msgstr "" + +#: ../picard/ui/mainwindow.py:394 +msgid "&Open..." +msgstr "" + +#: ../picard/ui/mainwindow.py:395 +msgid "Open the file" +msgstr "" + +#: ../picard/ui/mainwindow.py:398 +msgid "Open &Folder..." +msgstr "" + +#: ../picard/ui/mainwindow.py:399 +msgid "Open the containing folder" +msgstr "" + +#: ../picard/ui/mainwindow.py:420 +msgid "&File" +msgstr "" + +#: ../picard/ui/mainwindow.py:428 +msgid "&Edit" +msgstr "" + +#: ../picard/ui/mainwindow.py:434 +msgid "&View" +msgstr "" + +#: ../picard/ui/mainwindow.py:442 +msgid "&Options" +msgstr "" + +#: ../picard/ui/mainwindow.py:448 +msgid "&Tools" +msgstr "" + +#: ../picard/ui/mainwindow.py:457 ../picard/ui/util.py:33 +msgid "&Help" +msgstr "" + +#: ../picard/ui/mainwindow.py:475 +msgid "&Toolbar" +msgstr "" + +#: ../picard/ui/mainwindow.py:502 +msgid "&Search Bar" +msgstr "" + +#: ../picard/ui/mainwindow.py:507 ../picard/ui/cdlookup.py:32 +#: ../picard/ui/ui_options_releases.py:217 ../picard/util/tags.py:21 +msgid "Album" +msgstr "" + +#: ../picard/ui/mainwindow.py:509 ../picard/ui/puidsubmit.py:31 +msgid "Track" +msgstr "" + +#: ../picard/ui/mainwindow.py:548 +msgid "All Supported Formats" +msgstr "" + +#: ../picard/ui/mainwindow.py:606 ../picard/ui/mainwindow.py:615 +msgid "Various Artists file naming scheme removal" +msgstr "" + +#: ../picard/ui/mainwindow.py:607 +msgid "" +"The separate file naming scheme for various artists albums has been\n" +"removed in this version of Picard. You currently do not use the this " +"option,\n" +"but have a separate file naming scheme defined. Do you want to remove it or\n" +"merge it with your file naming scheme for single artist albums?" +msgstr "" + +#: ../picard/ui/mainwindow.py:611 +msgid "Merge" +msgstr "" + +#: ../picard/ui/mainwindow.py:616 +msgid "" +"The separate file naming scheme for various artists albums has been\n" +"removed in this version of Picard. Your file naming scheme has " +"automatically\n" +"been merged with that of single artist albums." +msgstr "" + +#: ../picard/ui/mainwindow.py:661 +msgid "Configuration Required" +msgstr "" + +#: ../picard/ui/mainwindow.py:662 +msgid "" +"Audio fingerprinting is not yet configured. Would you like to configure it " +"now?" +msgstr "" + +#: ../picard/ui/mainwindow.py:735 ../picard/ui/mainwindow.py:742 +#, python-format +msgid " (Error: %s)" +msgstr "" + +#: ../picard/ui/ui_cdlookup.py:57 ../picard/ui/ui_options_cdlookup.py:46 +#: ../picard/ui/ui_options_cdlookup_select.py:53 +#: ../picard/ui/options/cdlookup.py:36 +msgid "CD Lookup" +msgstr "" + +#: ../picard/ui/ui_cdlookup.py:58 +msgid "The following releases on MusicBrainz match the CD:" +msgstr "" + +#: ../picard/ui/ui_cdlookup.py:59 ../picard/ui/ui_puidsubmit.py:52 +msgid "OK" +msgstr "" + +#: ../picard/ui/ui_cdlookup.py:60 +msgid " Lookup manually " +msgstr "" + +#: ../picard/ui/ui_cdlookup.py:61 ../picard/ui/ui_puidsubmit.py:53 +msgid "Cancel" +msgstr "" + +#: ../picard/ui/ui_options_proxy.py:74 ../picard/ui/options/proxy.py:28 +msgid "Web Proxy" +msgstr "" + +#: ../picard/ui/ui_options_proxy.py:75 ../picard/ui/ui_options_general.py:91 +#: ../picard/ui/ui_passworddialog.py:74 +msgid "Password:" +msgstr "" + +#: ../picard/ui/ui_options_proxy.py:76 ../picard/ui/ui_options_general.py:92 +#: ../picard/ui/ui_passworddialog.py:73 +msgid "Username:" +msgstr "" + +#: ../picard/ui/ui_options_proxy.py:77 ../picard/ui/ui_options_general.py:88 +msgid "Port:" +msgstr "" + +#: ../picard/ui/ui_options_proxy.py:78 ../picard/ui/ui_options_general.py:89 +msgid "Server address:" +msgstr "" + +#: ../picard/ui/ui_options_cdlookup.py:47 +msgid "CD-ROM device to use for lookups:" +msgstr "" + +#: ../picard/ui/tagsfromfilenames.py:54 ../picard/ui/tagsfromfilenames.py:99 +msgid "File Name" +msgstr "" + +#: ../picard/ui/passworddialog.py:38 +#, python-format +msgid "" +"The server %s requires you to login. Please enter your username and password." +msgstr "" + +#: ../picard/ui/passworddialog.py:76 +#, python-format +msgid "" +"The proxy %s requires you to login. Please enter your username and password." +msgstr "" + +#: ../picard/ui/ui_puidsubmit.py:51 +msgid "Submit PUIDs" +msgstr "" + +#: ../picard/ui/ui_options_matching.py:77 +msgid "Thresholds" +msgstr "" + +#: ../picard/ui/ui_options_matching.py:78 +msgid "Minimal similarity for matching files to tracks:" +msgstr "" + +#: ../picard/ui/ui_options_matching.py:79 +#: ../picard/ui/ui_options_matching.py:80 +#: ../picard/ui/ui_options_matching.py:81 +#: ../picard/ui/ui_options_folksonomy.py:110 +msgid " %" +msgstr "" + +#: ../picard/ui/ui_options_matching.py:82 +msgid "Minimal similarity for file lookups:" +msgstr "" + +#: ../picard/ui/ui_options_matching.py:83 +msgid "Minimal similarity for cluster lookups:" +msgstr "" + +#: ../picard/ui/ui_infodialog.py:66 +msgid "&Info" +msgstr "" + +#: ../picard/ui/ui_infodialog.py:67 +msgid "A&rtwork" +msgstr "" + +#: ../picard/ui/ui_options_cdlookup_select.py:54 +msgid "Default CD-ROM drive to use for lookups:" +msgstr "" + +#: ../picard/ui/ui_options_fingerprinting.py:74 +msgid "Audio Fingerprinting" +msgstr "" + +#: ../picard/ui/ui_options_fingerprinting.py:75 +msgid "Use AcoustID" +msgstr "" + +#: ../picard/ui/ui_options_fingerprinting.py:76 +msgid "Use AmpliFIND (formerly MusicDNS)" +msgstr "" + +#: ../picard/ui/ui_options_fingerprinting.py:77 +msgid "AcoustID Settings" +msgstr "" + +#: ../picard/ui/ui_options_fingerprinting.py:78 +msgid "Fingerprint calculator:" +msgstr "" + +#: ../picard/ui/ui_options_fingerprinting.py:79 +#: ../picard/ui/ui_options_renaming.py:139 +msgid "Browse..." +msgstr "" + +#: ../picard/ui/ui_options_fingerprinting.py:80 +msgid "Download..." +msgstr "" + +#: ../picard/ui/ui_options_fingerprinting.py:81 +msgid "API key:" +msgstr "" + +#: ../picard/ui/ui_options_fingerprinting.py:82 +msgid "Get API key..." +msgstr "" + +#: ../picard/ui/ui_tagsfromfilenames.py:54 +msgid "Convert File Names to Tags" +msgstr "" + +#: ../picard/ui/ui_tagsfromfilenames.py:55 +msgid "Replace underscores with spaces" +msgstr "" + +#: ../picard/ui/ui_tagsfromfilenames.py:56 +msgid "&Preview" +msgstr "" + +#: ../picard/ui/ui_options_ratings.py:53 +msgid "Enable track ratings" +msgstr "" + +#: ../picard/ui/ui_options_ratings.py:54 +msgid "" +"Picard saves the ratings together with an e-mail address identifying the " +"user who did the rating. That way different ratings for different users can " +"be stored in the files. Please specify the e-mail you want to use to save " +"your ratings." +msgstr "" + +#: ../picard/ui/ui_options_ratings.py:55 +msgid "E-mail:" +msgstr "" + +#: ../picard/ui/ui_options_ratings.py:56 +msgid "Submit ratings to MusicBrainz" +msgstr "" + +#: ../picard/ui/util.py:31 +msgid "&Ok" +msgstr "" + +#: ../picard/ui/util.py:32 +msgid "&Cancel" +msgstr "" + +#: ../picard/ui/ui_options_renaming.py:135 +msgid "Rename files when saving" +msgstr "" + +#: ../picard/ui/ui_options_renaming.py:136 +msgid "Replace non-ASCII characters" +msgstr "" + +#: ../picard/ui/ui_options_renaming.py:137 +msgid "Replace Windows-incompatible characters" +msgstr "" + +#: ../picard/ui/ui_options_renaming.py:138 +msgid "Move files to this directory when saving:" +msgstr "" + +#: ../picard/ui/ui_options_renaming.py:140 +msgid "Delete empty directories" +msgstr "" + +#: ../picard/ui/ui_options_renaming.py:141 +msgid "Move additional files:" +msgstr "" + +#: ../picard/ui/ui_options_renaming.py:142 +msgid "Name files like this" +msgstr "" + +#: ../picard/ui/ui_options_renaming.py:149 +msgid "Examples" +msgstr "" + +#: ../picard/ui/puidsubmit.py:31 ../picard/ui/options/plugins.py:125 +msgid "File" +msgstr "" + +#: ../picard/ui/puidsubmit.py:31 +msgid "PUID" +msgstr "" + +#: ../picard/ui/puidsubmit.py:31 +msgid "Release" +msgstr "" + +#: ../picard/ui/puidsubmit.py:31 +msgid "Release ID" +msgstr "" + +#: ../picard/ui/ui_options_cover.py:53 +msgid "Location" +msgstr "" + +#: ../picard/ui/ui_options_cover.py:54 +msgid "Embed cover images into tags" +msgstr "" + +#: ../picard/ui/ui_options_cover.py:55 +msgid "Save cover images as separate files" +msgstr "" + +#: ../picard/ui/ui_options_cover.py:56 +msgid "Overwrite the file if it already exists" +msgstr "" + +#: ../picard/ui/ui_options_plugins.py:131 ../picard/ui/options/plugins.py:37 +msgid "Plugins" +msgstr "" + +#: ../picard/ui/ui_options_plugins.py:132 ../picard/ui/options/plugins.py:121 +msgid "Name" +msgstr "" + +#: ../picard/ui/ui_options_plugins.py:133 ../picard/util/tags.py:37 +msgid "Version" +msgstr "" + +#: ../picard/ui/ui_options_plugins.py:134 ../picard/ui/options/plugins.py:124 +msgid "Author" +msgstr "" + +#: ../picard/ui/ui_options_plugins.py:135 +msgid "Install plugin..." +msgstr "" + +#: ../picard/ui/ui_options_plugins.py:136 +msgid "Open plugin folder" +msgstr "" + +#: ../picard/ui/ui_options_plugins.py:137 +msgid "Download plugins" +msgstr "" + +#: ../picard/ui/ui_options_plugins.py:138 +msgid "Details" +msgstr "" + +#: ../picard/ui/ui_options_general.py:87 +msgid "MusicBrainz Server" +msgstr "" + +#: ../picard/ui/ui_options_general.py:90 +msgid "Account Information" +msgstr "" + +#: ../picard/ui/ui_options_general.py:93 ../picard/ui/options/general.py:29 +msgid "General" +msgstr "" + +#: ../picard/ui/ui_options_general.py:94 +msgid "Automatically scan all new files" +msgstr "" + +#: ../picard/ui/ui_options_general.py:95 +msgid "Ignore MBIDs when loading new files" +msgstr "" + +#: ../picard/ui/logview.py:30 +msgid "Log" +msgstr "" + +#: ../picard/ui/ui_passworddialog.py:72 +msgid "Authentication required" +msgstr "" + +#: ../picard/ui/ui_passworddialog.py:75 +msgid "Save username and password" +msgstr "" + +#: ../picard/ui/infodialog.py:36 +msgid "Info" +msgstr "" + +#: ../picard/ui/infodialog.py:42 +msgid "Filename:" +msgstr "" + +#: ../picard/ui/infodialog.py:44 +msgid "Format:" +msgstr "" + +#: ../picard/ui/infodialog.py:53 +msgid "Size:" +msgstr "" + +#: ../picard/ui/infodialog.py:57 +msgid "Length:" +msgstr "" + +#: ../picard/ui/infodialog.py:59 +msgid "Bitrate:" +msgstr "" + +#: ../picard/ui/infodialog.py:61 +msgid "Sample rate:" +msgstr "" + +#: ../picard/ui/infodialog.py:63 +msgid "Bits per sample:" +msgstr "" + +#: ../picard/ui/infodialog.py:66 +msgid "Mono" +msgstr "" + +#: ../picard/ui/infodialog.py:67 +msgid "Stereo" +msgstr "" + +#: ../picard/ui/infodialog.py:69 +msgid "Channels:" +msgstr "" + +#: ../picard/ui/cdlookup.py:33 +msgid "Labels" +msgstr "" + +#: ../picard/ui/cdlookup.py:33 +msgid "Catalog #s" +msgstr "" + +#: ../picard/ui/cdlookup.py:33 ../picard/util/tags.py:75 +msgid "Barcode" +msgstr "" + +#: ../picard/ui/coverartbox.py:122 +msgid "View release on MusicBrainz" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:215 +msgid "Form" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:216 +msgid "Preferred release types" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:218 +msgid "Single" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:219 +msgid "EP" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:220 ../picard/util/tags.py:66 +msgid "Compilation" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:221 +msgid "Soundtrack" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:222 +msgid "Spokenword" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:223 +msgid "Interview" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:224 +msgid "Audiobook" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:225 +msgid "Live" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:226 +msgid "Remix" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:228 +msgid "Reset all" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:229 +msgid "Preferred release countries" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:230 +#: ../picard/ui/ui_options_releases.py:233 +msgid ">" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:231 +#: ../picard/ui/ui_options_releases.py:234 +msgid "<" +msgstr "" + +#: ../picard/ui/ui_options_releases.py:232 +msgid "Preferred release formats" +msgstr "" + +#: ../picard/ui/ui_options_folksonomy.py:106 +#: ../picard/ui/options/folksonomy.py:29 +msgid "Folksonomy Tags" +msgstr "" + +#: ../picard/ui/ui_options_folksonomy.py:107 +msgid "Ignore tags:" +msgstr "" + +#: ../picard/ui/ui_options_folksonomy.py:108 +msgid "Only use my tags" +msgstr "" + +#: ../picard/ui/ui_options_folksonomy.py:109 +msgid "Minimal tag usage:" +msgstr "" + +#: ../picard/ui/ui_options_folksonomy.py:111 +msgid "Maximum number of tags:" +msgstr "" + +#: ../picard/ui/ui_options_folksonomy.py:112 +msgid "Join multiple tags with:" +msgstr "" + +#: ../picard/ui/ui_options_folksonomy.py:113 +msgid " / " +msgstr "" + +#: ../picard/ui/ui_options_folksonomy.py:114 +msgid ", " +msgstr "" + +#: ../picard/ui/ui_options_tags.py:110 +msgid "Write tags to files" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:111 +msgid "Before tagging" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:112 +msgid "Clear existing tags" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:113 +msgid "Remove ID3 tags from FLAC files" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:114 +msgid "Remove APEv2 tags from MP3 files" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:115 +msgid "" +"Preserve these tags from being cleared or overwritten with MusicBrainz data:" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:116 +msgid "Tag compatibility" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:117 +msgid "ID3v2 version" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:118 +msgid "2.4" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:119 +msgid "2.3" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:120 +msgid "Also include ID3v1 tags in the files" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:121 +msgid "ID3v2 text encoding" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:122 +msgid "UTF-8" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:123 +msgid "UTF-16" +msgstr "" + +#: ../picard/ui/ui_options_tags.py:124 +msgid "ISO-8859-1" +msgstr "" + +#: ../picard/ui/ui_options_interface.py:58 +msgid "Miscellaneous" +msgstr "" + +#: ../picard/ui/ui_options_interface.py:59 +msgid "Show text labels under icons" +msgstr "" + +#: ../picard/ui/ui_options_interface.py:60 +msgid "Allow selection of multiple directories" +msgstr "" + +#: ../picard/ui/ui_options_interface.py:61 +msgid "Use advanced query syntax" +msgstr "" + +#: ../picard/ui/ui_options_interface.py:62 +msgid "Show a quit confirmation dialog for unsaved changes" +msgstr "" + +#: ../picard/ui/ui_options_interface.py:63 +msgid "User interface language:" +msgstr "" + +#: ../picard/ui/options/releases.py:33 +msgid "Preferred Releases" +msgstr "" + +#: ../picard/ui/options/matching.py:29 +msgid "Matching" +msgstr "" + +#: ../picard/ui/options/interface.py:32 +msgid "User Interface" +msgstr "" + +#: ../picard/ui/options/interface.py:49 +msgid "System default" +msgstr "" + +#: ../picard/ui/options/interface.py:76 +msgid "Language changed" +msgstr "" + +#: ../picard/ui/options/interface.py:76 +msgid "" +"You have changed the interface language. You have to restart Picard in order " +"for the change to take effect." +msgstr "" + +#: ../picard/ui/options/cover.py:29 +msgid "Cover Art" +msgstr "" + +#: ../picard/ui/options/scripting.py:63 +msgid "Scripting" +msgstr "" + +#: ../picard/ui/options/scripting.py:97 +msgid "Script Error" +msgstr "" + +#: ../picard/ui/options/ratings.py:29 +msgid "Ratings" +msgstr "" + +#: ../picard/ui/options/renaming.py:34 +msgid "File naming" +msgstr "" + +#: ../picard/ui/options/renaming.py:143 +msgid "Error" +msgstr "" + +#: ../picard/ui/options/renaming.py:143 +msgid "The location to move files to must not be empty." +msgstr "" + +#: ../picard/ui/options/renaming.py:153 +msgid "The file naming format must not be empty." +msgstr "" + +#: ../picard/ui/options/about.py:29 +msgid "About" +msgstr "" + +#. Replace this with your name to have it appear in the "About" dialog. +#: ../picard/ui/options/about.py:48 +msgid "translator-credits" +msgstr "" + +#. Replace LANG with language you are translatig to. +#: ../picard/ui/options/about.py:51 +#, python-format +msgid "
Translated to LANG by %s" +msgstr "" + +#: ../picard/ui/options/about.py:55 +#, python-format +msgid "" +"

MusicBrainz Picard
\n" +"Version %(version)s

\n" +"

Supported formats
%(formats)s

\n" +"

Please donate
\n" +"Thank you for using Picard. Picard relies on the MusicBrainz database, which " +"is operated by the MetaBrainz Foundation with the help of thousands of " +"volunteers. If you like this application please consider donating to the " +"MetaBrainz Foundation to keep the service running.

\n" +"

Donate now!

\n" +"

Credits
\n" +"Copyright © 2004-2011 Robert Kaye, Lukáš Lalinský and others" +"%(translator-credits)s

\n" +"

http://musicbrainz.org/doc/MusicBrainz_Picard

\n" +msgstr "" + +#: ../picard/ui/options/advanced.py:26 +msgid "Advanced" +msgstr "" + +#: ../picard/ui/options/tags.py:29 +msgid "Tags" +msgstr "" + +#: ../picard/ui/options/fingerprinting.py:32 +msgid "Fingerprinting" msgstr "" #: ../picard/util/tags.py:24 @@ -3198,10 +4296,6 @@ msgstr "" msgid "Grouping" msgstr "" -#: ../picard/util/tags.py:37 ../picard/ui/ui_options_plugins.py:133 -msgid "Version" -msgstr "" - #: ../picard/util/tags.py:38 msgid "ISRC" msgstr "" @@ -3219,1284 +4313,177 @@ msgid "Copyright" msgstr "" #: ../picard/util/tags.py:42 -msgid "Composer" +msgid "License" msgstr "" #: ../picard/util/tags.py:43 -msgid "Conductor" +msgid "Composer" msgstr "" #: ../picard/util/tags.py:44 -msgid "Lyricist" +msgid "Writer" msgstr "" #: ../picard/util/tags.py:45 -msgid "Arranger" +msgid "Conductor" msgstr "" #: ../picard/util/tags.py:46 -msgid "Producer" +msgid "Lyricist" msgstr "" #: ../picard/util/tags.py:47 -msgid "Engineer" +msgid "Arranger" msgstr "" #: ../picard/util/tags.py:48 -msgid "Subtitle" +msgid "Producer" msgstr "" #: ../picard/util/tags.py:49 -msgid "Disc Subtitle" +msgid "Engineer" msgstr "" #: ../picard/util/tags.py:50 -msgid "Remixer" +msgid "Subtitle" msgstr "" #: ../picard/util/tags.py:51 -msgid "MusicBrainz Track Id" +msgid "Disc Subtitle" msgstr "" #: ../picard/util/tags.py:52 -msgid "MusicBrainz Release Id" +msgid "Remixer" msgstr "" #: ../picard/util/tags.py:53 -msgid "MusicBrainz Artist Id" +msgid "MusicBrainz Recording Id" msgstr "" #: ../picard/util/tags.py:54 -msgid "MusicBrainz Release Artist Id" +msgid "MusicBrainz Release Id" msgstr "" #: ../picard/util/tags.py:55 -msgid "MusicBrainz Disc Id" +msgid "MusicBrainz Artist Id" msgstr "" #: ../picard/util/tags.py:56 -msgid "MusicBrainz Sort Name" +msgid "MusicBrainz Release Artist Id" msgstr "" #: ../picard/util/tags.py:57 -msgid "MusicIP PUID" +msgid "MusicBrainz Work Id" msgstr "" #: ../picard/util/tags.py:58 -msgid "MusicIP Fingerprint" +msgid "MusicBrainz Disc Id" msgstr "" #: ../picard/util/tags.py:59 -msgid "AcoustID" +msgid "MusicBrainz Sort Name" msgstr "" #: ../picard/util/tags.py:60 -msgid "AcoustID Fingerprint" +msgid "MusicIP PUID" msgstr "" #: ../picard/util/tags.py:61 -msgid "Disc Id" +msgid "MusicIP Fingerprint" msgstr "" #: ../picard/util/tags.py:62 -msgid "Website" +msgid "AcoustID" msgstr "" -#: ../picard/util/tags.py:63 ../picard/ui/ui_options_releases.py:220 -msgid "Compilation" +#: ../picard/util/tags.py:63 +msgid "AcoustID Fingerprint" msgstr "" #: ../picard/util/tags.py:64 -msgid "Comment" +msgid "Disc Id" msgstr "" #: ../picard/util/tags.py:65 -msgid "Genre" -msgstr "" - -#: ../picard/util/tags.py:66 -msgid "Encoded By" +msgid "Website" msgstr "" #: ../picard/util/tags.py:67 -msgid "Performer" +msgid "Comment" msgstr "" #: ../picard/util/tags.py:68 -msgid "Release Type" +msgid "Genre" msgstr "" #: ../picard/util/tags.py:69 -msgid "Release Status" +msgid "Encoded By" msgstr "" #: ../picard/util/tags.py:70 -msgid "Release Country" +msgid "Performer" msgstr "" #: ../picard/util/tags.py:71 -msgid "Record Label" +msgid "Release Type" msgstr "" -#: ../picard/util/tags.py:72 ../picard/ui/cdlookup.py:33 -msgid "Barcode" +#: ../picard/util/tags.py:72 +msgid "Release Status" msgstr "" #: ../picard/util/tags.py:73 -msgid "Catalog Number" +msgid "Release Country" msgstr "" #: ../picard/util/tags.py:74 -msgid "Format" -msgstr "" - -#: ../picard/util/tags.py:75 -msgid "DJ-Mixer" +msgid "Record Label" msgstr "" #: ../picard/util/tags.py:76 -msgid "Media" +msgid "Catalog Number" msgstr "" #: ../picard/util/tags.py:77 -msgid "Lyrics" +msgid "Format" msgstr "" #: ../picard/util/tags.py:78 -msgid "Mixer" +msgid "DJ-Mixer" msgstr "" #: ../picard/util/tags.py:79 -msgid "Language" +msgid "Media" msgstr "" #: ../picard/util/tags.py:80 +msgid "Lyrics" +msgstr "" + +#: ../picard/util/tags.py:81 +msgid "Mixer" +msgstr "" + +#: ../picard/util/tags.py:82 +msgid "Language" +msgstr "" + +#: ../picard/util/tags.py:83 msgid "Script" msgstr "" -#: ../picard/ui/tageditor.py:66 ../picard/ui/ui_options_plugins.py:138 -msgid "Details" +#: ../picard/util/tags.py:85 +msgid "Rating" msgstr "" -#: ../picard/ui/tageditor.py:71 ../picard/ui/tageditor.py:266 -#, python-format -msgid "%d file" -msgid_plural "%d files" -msgstr[0] "" -msgstr[1] "" - -#: ../picard/ui/tageditor.py:132 -#, python-format -msgid "(different across %d file)" -msgid_plural "(different across %d files)" -msgstr[0] "" -msgstr[1] "" - -#: ../picard/ui/tageditor.py:135 -#, python-format -msgid "(missing from %d file)" -msgid_plural "(missing from %d files)" -msgstr[0] "" -msgstr[1] "" - -#: ../picard/ui/tageditor.py:235 -msgid "Filename:" -msgstr "" - -#: ../picard/ui/tageditor.py:237 -msgid "Format:" -msgstr "" - -#: ../picard/ui/tageditor.py:246 -msgid "Size:" -msgstr "" - -#: ../picard/ui/tageditor.py:250 ../picard/ui/ui_metadata.py:134 -msgid "Length:" -msgstr "" - -#: ../picard/ui/tageditor.py:252 -msgid "Bitrate:" -msgstr "" - -#: ../picard/ui/tageditor.py:254 -msgid "Sample rate:" -msgstr "" - -#: ../picard/ui/tageditor.py:256 -msgid "Bits per sample:" -msgstr "" - -#: ../picard/ui/tageditor.py:259 -msgid "Mono" -msgstr "" - -#: ../picard/ui/tageditor.py:260 -msgid "Stereo" -msgstr "" - -#: ../picard/ui/tageditor.py:262 -msgid "Channels:" -msgstr "" - -#: ../picard/ui/ui_options_plugins.py:131 ../picard/ui/options/plugins.py:37 -msgid "Plugins" -msgstr "" - -#: ../picard/ui/ui_options_plugins.py:132 ../picard/ui/ui_tageditor.py:123 -#: ../picard/ui/options/plugins.py:121 -msgid "Name" -msgstr "" - -#: ../picard/ui/ui_options_plugins.py:134 ../picard/ui/options/plugins.py:124 -msgid "Author" -msgstr "" - -#: ../picard/ui/ui_options_plugins.py:135 -msgid "Install plugin..." -msgstr "" - -#: ../picard/ui/ui_options_plugins.py:136 -msgid "Open plugin folder" -msgstr "" - -#: ../picard/ui/ui_options_plugins.py:137 -msgid "Download plugins" -msgstr "" - -#: ../picard/ui/ui_options_matching.py:77 -msgid "Thresholds" -msgstr "" - -#: ../picard/ui/ui_options_matching.py:78 -msgid "Minimal similarity for matching files to tracks:" -msgstr "" - -#: ../picard/ui/ui_options_matching.py:79 -#: ../picard/ui/ui_options_matching.py:80 -#: ../picard/ui/ui_options_matching.py:81 -#: ../picard/ui/ui_options_folksonomy.py:110 -msgid " %" -msgstr "" - -#: ../picard/ui/ui_options_matching.py:82 -msgid "Minimal similarity for file lookups:" -msgstr "" - -#: ../picard/ui/ui_options_matching.py:83 -msgid "Minimal similarity for cluster lookups:" -msgstr "" - -#: ../picard/ui/ui_options_ratings.py:53 -msgid "Enable track ratings" -msgstr "" - -#: ../picard/ui/ui_options_ratings.py:54 -msgid "" -"Picard saves the ratings together with an e-mail address identifying the " -"user who did the rating. That way different ratings for different users can " -"be stored in the files. Please specify the e-mail you want to use to save " -"your ratings." -msgstr "" - -#: ../picard/ui/ui_options_ratings.py:55 -msgid "E-mail:" -msgstr "" - -#: ../picard/ui/ui_options_ratings.py:56 -msgid "Submit ratings to MusicBrainz" -msgstr "" - -#: ../picard/ui/ui_options_interface.py:58 -msgid "Miscellaneous" -msgstr "" - -#: ../picard/ui/ui_options_interface.py:59 -msgid "Show text labels under icons" -msgstr "" - -#: ../picard/ui/ui_options_interface.py:60 -msgid "Allow selection of multiple directories" -msgstr "" - -#: ../picard/ui/ui_options_interface.py:61 -msgid "Use advanced query syntax" -msgstr "" - -#: ../picard/ui/ui_options_interface.py:62 -msgid "Show a quit confirmation dialog for unsaved changes" -msgstr "" - -#: ../picard/ui/ui_options_interface.py:63 -msgid "User interface language:" -msgstr "" - -#: ../picard/ui/filebrowser.py:38 ../picard/ui/mainwindow.py:349 -msgid "&Refresh" -msgstr "" - -#: ../picard/ui/filebrowser.py:41 -msgid "&Move Tagged Files Here" -msgstr "" - -#: ../picard/ui/filebrowser.py:44 -msgid "Show &Hidden Files" -msgstr "" - -#: ../picard/ui/coverartbox.py:101 -msgid "Buy the album on Amazon" -msgstr "" - -#: ../picard/ui/ui_options_cover.py:53 -msgid "Location" -msgstr "" - -#: ../picard/ui/ui_options_cover.py:54 -msgid "Embed cover images into tags" -msgstr "" - -#: ../picard/ui/ui_options_cover.py:55 -msgid "Save cover images as separate files" -msgstr "" - -#: ../picard/ui/ui_options_cover.py:56 -msgid "Overwrite the file if it already exists" -msgstr "" - -#: ../picard/ui/ui_options_general.py:95 -msgid "MusicBrainz Server" -msgstr "" - -#: ../picard/ui/ui_options_general.py:96 ../picard/ui/ui_options_proxy.py:77 -msgid "Port:" -msgstr "" - -#: ../picard/ui/ui_options_general.py:97 ../picard/ui/ui_options_proxy.py:78 -msgid "Server address:" -msgstr "" - -#: ../picard/ui/ui_options_general.py:98 -msgid "Account Information" -msgstr "" - -#: ../picard/ui/ui_options_general.py:99 ../picard/ui/ui_options_proxy.py:75 -#: ../picard/ui/ui_passworddialog.py:74 -msgid "Password:" -msgstr "" - -#: ../picard/ui/ui_options_general.py:100 ../picard/ui/ui_options_proxy.py:76 -#: ../picard/ui/ui_passworddialog.py:73 -msgid "Username:" -msgstr "" - -#: ../picard/ui/ui_options_general.py:101 ../picard/ui/options/general.py:29 -msgid "General" -msgstr "" - -#: ../picard/ui/ui_options_general.py:102 -msgid "Automatically scan all new files" -msgstr "" - -#: ../picard/ui/ui_tageditor.py:124 -msgid "Value" -msgstr "" - -#: ../picard/ui/ui_tageditor.py:125 -msgid "Rating:" -msgstr "" - -#: ../picard/ui/ui_tageditor.py:126 -msgid "&Add..." -msgstr "" - -#: ../picard/ui/ui_tageditor.py:127 -msgid "&Edit..." -msgstr "" - -#: ../picard/ui/ui_tageditor.py:128 -msgid "&Delete" -msgstr "" - -#: ../picard/ui/ui_tageditor.py:129 -msgid "&Metadata" -msgstr "" - -#: ../picard/ui/ui_tageditor.py:130 -msgid "A&rtwork" -msgstr "" - -#: ../picard/ui/ui_tageditor.py:131 -msgid "&Info" -msgstr "" - -#: ../picard/ui/ui_options_moving.py:58 -msgid "Move additional files:" -msgstr "" - -#: ../picard/ui/ui_options_moving.py:59 -#: ../picard/ui/ui_options_fingerprinting.py:73 -msgid "Browse..." -msgstr "" - -#: ../picard/ui/ui_options_moving.py:60 -msgid "Delete empty directories" -msgstr "" - -#: ../picard/ui/ui_options_moving.py:61 -msgid "Move files to this directory when saving:" -msgstr "" - -#: ../picard/ui/ui_tagsfromfilenames.py:54 -msgid "Convert File Names to Tags" -msgstr "" - -#: ../picard/ui/ui_tagsfromfilenames.py:55 -msgid "Replace underscores with spaces" -msgstr "" - -#: ../picard/ui/ui_tagsfromfilenames.py:56 -msgid "&Preview" -msgstr "" - -#: ../picard/ui/logview.py:30 -msgid "Log" -msgstr "" - -#: ../picard/ui/ui_options_proxy.py:74 ../picard/ui/options/proxy.py:28 -msgid "Web Proxy" -msgstr "" - -#: ../picard/ui/cdlookup.py:33 -msgid "Labels" -msgstr "" - -#: ../picard/ui/cdlookup.py:33 -msgid "Catalog #s" -msgstr "" - -#: ../picard/ui/tagsfromfilenames.py:54 ../picard/ui/tagsfromfilenames.py:99 -msgid "File Name" -msgstr "" - -#: ../picard/ui/ui_options_script.py:49 -msgid "Tagger Script" -msgstr "" - -#: ../picard/ui/util.py:31 -msgid "&Ok" -msgstr "" - -#: ../picard/ui/util.py:32 -msgid "&Cancel" -msgstr "" - -#: ../picard/ui/util.py:33 ../picard/ui/mainwindow.py:432 -msgid "&Help" -msgstr "" - -#: ../picard/ui/ui_cdlookup.py:57 -#: ../picard/ui/ui_options_cdlookup_select.py:53 -#: ../picard/ui/ui_options_cdlookup.py:46 ../picard/ui/options/cdlookup.py:36 -msgid "CD Lookup" -msgstr "" - -#: ../picard/ui/ui_cdlookup.py:58 -msgid "The following releases on MusicBrainz match the CD:" -msgstr "" - -#: ../picard/ui/ui_cdlookup.py:59 ../picard/ui/ui_puidsubmit.py:52 -msgid "OK" -msgstr "" - -#: ../picard/ui/ui_cdlookup.py:60 -msgid " Lookup manually " -msgstr "" - -#: ../picard/ui/ui_cdlookup.py:61 ../picard/ui/ui_puidsubmit.py:53 -msgid "Cancel" +#: ../picard/util/webbrowser2.py:88 +msgid "Web Browser Error" msgstr "" -#: ../picard/ui/passworddialog.py:38 +#: ../picard/util/webbrowser2.py:88 #, python-format msgid "" -"The server %s requires you to login. Please enter your username and password." -msgstr "" - -#: ../picard/ui/passworddialog.py:76 -#, python-format -msgid "" -"The proxy %s requires you to login. Please enter your username and password." -msgstr "" - -#: ../picard/ui/ui_options_tags.py:104 -msgid "Write tags to files" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:105 -msgid "Before tagging" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:106 -msgid "Clear existing tags" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:107 -msgid "Remove ID3 tags from FLAC files" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:108 -msgid "Remove APEv2 tags from MP3 files" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:109 -msgid "Tag compatibility" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:110 -msgid "ID3v2 version" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:111 -msgid "2.4" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:112 -msgid "2.3" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:113 -msgid "Also include ID3v1 tags in the files" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:114 -msgid "ID3v2 text encoding" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:115 -msgid "UTF-8" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:116 -msgid "UTF-16" -msgstr "" - -#: ../picard/ui/ui_options_tags.py:117 -msgid "ISO-8859-1" -msgstr "" - -#: ../picard/ui/ui_options_folksonomy.py:106 -#: ../picard/ui/options/folksonomy.py:29 -msgid "Folksonomy Tags" -msgstr "" - -#: ../picard/ui/ui_options_folksonomy.py:107 -msgid "Ignore tags:" -msgstr "" - -#: ../picard/ui/ui_options_folksonomy.py:108 -msgid "Only use my tags" -msgstr "" - -#: ../picard/ui/ui_options_folksonomy.py:109 -msgid "Minimal tag usage:" -msgstr "" - -#: ../picard/ui/ui_options_folksonomy.py:111 -msgid "Maximum number of tags:" -msgstr "" - -#: ../picard/ui/ui_options_folksonomy.py:112 -msgid "Join multiple tags with:" -msgstr "" - -#: ../picard/ui/ui_options_folksonomy.py:113 -msgid " / " -msgstr "" - -#: ../picard/ui/ui_options_folksonomy.py:114 -msgid ", " -msgstr "" - -#: ../picard/ui/ui_passworddialog.py:72 -msgid "Authentication required" -msgstr "" - -#: ../picard/ui/ui_passworddialog.py:75 -msgid "Save username and password" -msgstr "" - -#: ../picard/ui/ui_puidsubmit.py:51 -msgid "Submit PUIDs" -msgstr "" - -#: ../picard/ui/ui_options_cdlookup_select.py:54 -msgid "Default CD-ROM drive to use for lookups:" -msgstr "" - -#: ../picard/ui/ui_options_fingerprinting.py:68 -msgid "Fingerprinting Systems" -msgstr "" - -#: ../picard/ui/ui_options_fingerprinting.py:69 -msgid "Use AmpliFIND (formerly MusicDNS)" -msgstr "" - -#: ../picard/ui/ui_options_fingerprinting.py:70 -msgid "Use AcoustID" -msgstr "" - -#: ../picard/ui/ui_options_fingerprinting.py:71 -msgid "AcoustID's Settings" -msgstr "" - -#: ../picard/ui/ui_options_fingerprinting.py:72 -msgid "Fingerprinter:" -msgstr "" - -#: ../picard/ui/ui_options_fingerprinting.py:74 -msgid "Download..." -msgstr "" - -#: ../picard/ui/ui_options_fingerprinting.py:75 -msgid "API key:" -msgstr "" - -#: ../picard/ui/ui_options_fingerprinting.py:76 -msgid "Get API key..." -msgstr "" - -#: ../picard/ui/puidsubmit.py:31 ../picard/ui/options/plugins.py:125 -msgid "File" -msgstr "" - -#: ../picard/ui/puidsubmit.py:31 -msgid "PUID" -msgstr "" - -#: ../picard/ui/puidsubmit.py:31 ../picard/ui/mainwindow.py:483 -msgid "Track" -msgstr "" - -#: ../picard/ui/puidsubmit.py:31 -msgid "Release" -msgstr "" - -#: ../picard/ui/puidsubmit.py:31 -msgid "Release ID" -msgstr "" - -#: ../picard/ui/ui_edittagdialog.py:45 -msgid "Edit Tag" -msgstr "" - -#: ../picard/ui/ui_options_renaming.py:154 -msgid "Rename files when saving" -msgstr "" - -#: ../picard/ui/ui_options_renaming.py:155 -msgid "Replace non-ASCII characters" -msgstr "" - -#: ../picard/ui/ui_options_renaming.py:156 -msgid "Replace Windows-incompatible characters" -msgstr "" - -#: ../picard/ui/ui_options_renaming.py:157 -msgid "Name files like this" -msgstr "" - -#: ../picard/ui/ui_options_renaming.py:163 -#: ../picard/ui/ui_options_renaming.py:166 -#: ../picard/ui/ui_options_metadata.py:265 -#: ../picard/ui/ui_options_metadata.py:266 -msgid "Default" -msgstr "" - -#: ../picard/ui/ui_options_renaming.py:164 -msgid "Name multiple artist albums differently" -msgstr "" - -#: ../picard/ui/ui_options_renaming.py:165 -msgid "Copy from above" -msgstr "" - -#: ../picard/ui/ui_options_renaming.py:167 -msgid "Examples" -msgstr "" - -#: ../picard/ui/mainwindow.py:68 -msgid "MusicBrainz Picard" -msgstr "" - -#: ../picard/ui/mainwindow.py:93 -msgid "Original Metadata" -msgstr "" - -#: ../picard/ui/mainwindow.py:95 -msgid "New Metadata" -msgstr "" - -#: ../picard/ui/mainwindow.py:136 -msgid "Unsaved Changes" -msgstr "" - -#: ../picard/ui/mainwindow.py:137 -msgid "Are you sure you want to quit Picard?" -msgstr "" - -#: ../picard/ui/mainwindow.py:139 -#, python-format -msgid "There is %d unsaved file. Closing Picard will lose all unsaved changes." -msgid_plural "" -"There are %s unsaved files. Closing Picard will lose all unsaved changes." -msgstr[0] "" -msgstr[1] "" - -#: ../picard/ui/mainwindow.py:145 -msgid "&Quit Picard" -msgstr "" - -#: ../picard/ui/mainwindow.py:196 -#, python-format -msgid " Files: %(files)d, Pending Files: %(pending)d " -msgstr "" - -#: ../picard/ui/mainwindow.py:225 -msgid "Submission Error" -msgstr "" - -#: ../picard/ui/mainwindow.py:226 -msgid "" -"You need to configure your AcoustID API key before you can submit " -"fingerprints." -msgstr "" - -#: ../picard/ui/mainwindow.py:234 -msgid "&Options..." -msgstr "" - -#: ../picard/ui/mainwindow.py:237 -msgid "&Cut" -msgstr "" - -#: ../picard/ui/mainwindow.py:242 -msgid "&Paste" -msgstr "" - -#: ../picard/ui/mainwindow.py:247 -msgid "&Help..." -msgstr "" - -#: ../picard/ui/mainwindow.py:252 -msgid "&About..." -msgstr "" - -#: ../picard/ui/mainwindow.py:255 -msgid "&Donate..." -msgstr "" - -#: ../picard/ui/mainwindow.py:258 -msgid "&Report a Bug..." -msgstr "" - -#: ../picard/ui/mainwindow.py:261 -msgid "&Support Forum..." -msgstr "" - -#: ../picard/ui/mainwindow.py:264 -msgid "&Add Files..." -msgstr "" - -#: ../picard/ui/mainwindow.py:265 -msgid "Add files to the tagger" -msgstr "" - -#: ../picard/ui/mainwindow.py:270 -msgid "A&dd Folder..." -msgstr "" - -#: ../picard/ui/mainwindow.py:271 -msgid "Add a folder to the tagger" -msgstr "" - -#. Keyboard shortcut for "Add Directory..." -#: ../picard/ui/mainwindow.py:273 -msgid "Ctrl+D" -msgstr "" - -#: ../picard/ui/mainwindow.py:277 -msgid "&Save" -msgstr "" - -#: ../picard/ui/mainwindow.py:278 -msgid "Save selected files" -msgstr "" - -#: ../picard/ui/mainwindow.py:284 -msgid "S&ubmit" -msgstr "" - -#: ../picard/ui/mainwindow.py:285 -msgid "Submit fingerprints" -msgstr "" - -#: ../picard/ui/mainwindow.py:289 -msgid "E&xit" -msgstr "" - -#. Keyboard shortcut for "Exit" -#: ../picard/ui/mainwindow.py:291 -msgid "Ctrl+Q" -msgstr "" - -#: ../picard/ui/mainwindow.py:294 -msgid "&Remove" -msgstr "" - -#: ../picard/ui/mainwindow.py:295 -msgid "Remove selected files/albums" -msgstr "" - -#: ../picard/ui/mainwindow.py:300 -msgid "File &Browser" -msgstr "" - -#: ../picard/ui/mainwindow.py:304 -msgid "Ctrl+B" -msgstr "" - -#: ../picard/ui/mainwindow.py:307 -msgid "&Cover Art" -msgstr "" - -#: ../picard/ui/mainwindow.py:313 -msgid "Search" -msgstr "" - -#: ../picard/ui/mainwindow.py:316 -msgid "&CD Lookup..." -msgstr "" - -#: ../picard/ui/mainwindow.py:317 ../picard/ui/mainwindow.py:318 -msgid "Lookup CD" -msgstr "" - -#. Keyboard shortcut for "Lookup CD" -#: ../picard/ui/mainwindow.py:320 -msgid "Ctrl+K" -msgstr "" - -#: ../picard/ui/mainwindow.py:323 -msgid "&Scan" -msgstr "" - -#. Keyboard shortcut for "Analyze" -#: ../picard/ui/mainwindow.py:326 -msgid "Ctrl+Y" -msgstr "" - -#: ../picard/ui/mainwindow.py:329 -msgid "Cl&uster" -msgstr "" - -#. Keyboard shortcut for "Cluster" -#: ../picard/ui/mainwindow.py:332 -msgid "Ctrl+U" -msgstr "" - -#: ../picard/ui/mainwindow.py:335 -msgid "&Lookup" -msgstr "" - -#: ../picard/ui/mainwindow.py:336 ../picard/ui/mainwindow.py:337 -msgid "Lookup metadata" -msgstr "" - -#. Keyboard shortcut for "Lookup" -#: ../picard/ui/mainwindow.py:340 -msgid "Ctrl+L" -msgstr "" - -#: ../picard/ui/mainwindow.py:343 -msgid "&Details..." -msgstr "" - -#. Keyboard shortcut for "Details" -#: ../picard/ui/mainwindow.py:346 -msgid "Ctrl+I" -msgstr "" - -#: ../picard/ui/mainwindow.py:352 -msgid "Generate &Playlist..." -msgstr "" - -#: ../picard/ui/mainwindow.py:355 -msgid "&Rename Files" -msgstr "" - -#: ../picard/ui/mainwindow.py:360 -msgid "&Move Files" -msgstr "" - -#: ../picard/ui/mainwindow.py:365 -msgid "Save &Tags" -msgstr "" - -#: ../picard/ui/mainwindow.py:370 -msgid "Tags From &File Names..." -msgstr "" - -#: ../picard/ui/mainwindow.py:373 -msgid "View &Log..." -msgstr "" - -#: ../picard/ui/mainwindow.py:397 -msgid "&File" -msgstr "" - -#: ../picard/ui/mainwindow.py:405 -msgid "&Edit" -msgstr "" - -#: ../picard/ui/mainwindow.py:411 -msgid "&View" -msgstr "" - -#: ../picard/ui/mainwindow.py:417 -msgid "&Options" -msgstr "" - -#: ../picard/ui/mainwindow.py:423 -msgid "&Tools" -msgstr "" - -#: ../picard/ui/mainwindow.py:450 -msgid "&Toolbar" -msgstr "" - -#: ../picard/ui/mainwindow.py:476 -msgid "&Search Bar" -msgstr "" - -#: ../picard/ui/mainwindow.py:522 -msgid "All Supported Formats" -msgstr "" - -#: ../picard/ui/mainwindow.py:571 -#, python-format -msgid "Saving playlist %s..." -msgstr "" - -#: ../picard/ui/mainwindow.py:574 -#, python-format -msgid "Playlist %s saved" -msgstr "" - -#: ../picard/ui/mainwindow.py:675 ../picard/ui/mainwindow.py:684 -#, python-format -msgid " (Error: %s)" -msgstr "" - -#: ../picard/ui/ui_options.py:42 -msgid "Options" -msgstr "" - -#: ../picard/ui/ui_options_cdlookup.py:47 -msgid "CD-ROM device to use for lookups:" -msgstr "" - -#: ../picard/ui/ui_metadata.py:130 -msgid "Title:" -msgstr "" - -#: ../picard/ui/ui_metadata.py:131 -msgid "Artist:" -msgstr "" - -#: ../picard/ui/ui_metadata.py:132 -msgid "Album:" -msgstr "" - -#: ../picard/ui/ui_metadata.py:133 -msgid "Track:" -msgstr "" - -#: ../picard/ui/ui_metadata.py:135 -msgid "Date:" -msgstr "" - -#: ../picard/ui/ui_metadata.py:136 -msgid "0000-00-00; " -msgstr "" - -#: ../picard/ui/ui_metadata.py:137 -msgid "Lookup" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:250 ../picard/ui/options/metadata.py:30 -msgid "Metadata" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:251 -msgid "Translate artist names to this locale where possible:" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:252 -msgid "Convert Unicode punctuation characters to ASCII" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:253 -msgid "Use release relationships" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:254 -msgid "Use track relationships" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:255 -msgid "Use folksonomy tags as genre" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:256 -msgid "Standardization" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:257 -msgid "As on cover" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:258 -msgid "Standardized" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:259 -msgid "Track titles" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:260 -msgid "Release titles" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:261 -msgid "Artist names" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:262 -msgid "Custom Fields" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:263 -msgid "Various artists:" -msgstr "" - -#: ../picard/ui/ui_options_metadata.py:264 -msgid "Non-album tracks:" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:215 -msgid "Form" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:216 -msgid "Preferred release types" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:218 -msgid "Single" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:219 -msgid "EP" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:221 -msgid "Soundtrack" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:222 -msgid "Spokenword" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:223 -msgid "Interview" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:224 -msgid "Audiobook" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:225 -msgid "Live" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:226 -msgid "Remix" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:228 -msgid "Reset all" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:229 -msgid "Preferred release countries" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:230 -#: ../picard/ui/ui_options_releases.py:233 -msgid ">" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:231 -#: ../picard/ui/ui_options_releases.py:234 -msgid "<" -msgstr "" - -#: ../picard/ui/ui_options_releases.py:232 -msgid "Preferred release formats" -msgstr "" - -#: ../picard/ui/itemviews.py:83 -msgid "Length" -msgstr "" - -#: ../picard/ui/itemviews.py:328 -msgid "&Expand all" -msgstr "" - -#: ../picard/ui/itemviews.py:330 -msgid "&Collapse all" -msgstr "" - -#: ../picard/ui/itemviews.py:373 -msgid "&Other versions" -msgstr "" - -#: ../picard/ui/itemviews.py:376 -msgid "Loading..." -msgstr "" - -#: ../picard/ui/itemviews.py:387 -msgid "[no release info]" -msgstr "" - -#: ../picard/ui/itemviews.py:404 -msgid "&Plugins" -msgstr "" - -#: ../picard/ui/itemviews.py:605 -msgid "Clusters" -msgstr "" - -#: ../picard/ui/options/renaming.py:35 -msgid "File naming" -msgstr "" - -#: ../picard/ui/options/renaming.py:126 -msgid "The file naming format must not be empty." -msgstr "" - -#: ../picard/ui/options/renaming.py:136 -msgid "The multiple artist file naming format must not be empty." -msgstr "" - -#: ../picard/ui/options/cover.py:29 -msgid "Cover Art" -msgstr "" - -#: ../picard/ui/options/ratings.py:29 -msgid "Ratings" -msgstr "" - -#: ../picard/ui/options/moving.py:33 -msgid "Moving files" -msgstr "" - -#: ../picard/ui/options/moving.py:65 -msgid "Error" -msgstr "" - -#: ../picard/ui/options/moving.py:65 -msgid "The location to move files to must not be empty." -msgstr "" - -#: ../picard/ui/options/interface.py:32 -msgid "User Interface" -msgstr "" - -#: ../picard/ui/options/interface.py:49 -msgid "System default" -msgstr "" - -#: ../picard/ui/options/interface.py:76 -msgid "Language changed" -msgstr "" - -#: ../picard/ui/options/interface.py:76 -msgid "" -"You have changed the interface language. You have to restart Picard in order " -"for the change to take effect." -msgstr "" - -#: ../picard/ui/options/fingerprinting.py:31 -msgid "Fingerprinting" -msgstr "" - -#: ../picard/ui/options/tags.py:29 -msgid "Tags" -msgstr "" - -#: ../picard/ui/options/releases.py:33 -msgid "Preferred Releases" -msgstr "" - -#: ../picard/ui/options/about.py:29 -msgid "About" -msgstr "" - -#. Replace this with your name to have it appear in the "About" dialog. -#: ../picard/ui/options/about.py:48 -msgid "translator-credits" -msgstr "" - -#. Replace LANG with language you are translatig to. -#: ../picard/ui/options/about.py:51 -#, python-format -msgid "
Translated to LANG by %s" -msgstr "" - -#: ../picard/ui/options/about.py:55 -#, python-format -msgid "" -"

MusicBrainz Picard
\n" -"Version %(version)s

\n" -"

Supported formats
%(formats)s

\n" -"

Please donate
\n" -"Thank you for using Picard. Picard relies on the MusicBrainz database, which " -"is operated by the MetaBrainz Foundation with the help of thousands of " -"volunteers. If you like this application please consider donating to the " -"MetaBrainz Foundation to keep the service running.

\n" -"

Donate now!

\n" -"

Credits
\n" -"Copyright © 2004-2008 Robert Kaye, Lukáš Lalinský and others" -"%(translator-credits)s

\n" -"

http://musicbrainz.org/doc/MusicBrainz_Picard

\n" -msgstr "" - -#: ../picard/ui/options/advanced.py:26 -msgid "Advanced" -msgstr "" - -#: ../picard/ui/options/matching.py:29 -msgid "Matching" -msgstr "" - -#: ../picard/ui/options/scripting.py:63 -msgid "Scripting" -msgstr "" - -#: ../picard/ui/options/scripting.py:97 -msgid "Script Error" +"Error while launching a web browser:\n" +"\n" +"%s" msgstr "" diff --git a/po/pt.po b/po/pt.po index cb3d99fd2..463accb3e 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: picard\n" "Report-Msgid-Bugs-To: http://bugs.musicbrainz.org/\n" "POT-Creation-Date: 2011-10-08 12:39+0200\n" -"PO-Revision-Date: 2010-04-26 00:21+0000\n" +"PO-Revision-Date: 2012-02-27 22:41+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \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-Launchpad-Export-Date: 2011-10-09 05:11+0000\n" -"X-Generator: Launchpad (build 14110)\n" +"X-Launchpad-Export-Date: 2012-02-28 05:20+0000\n" +"X-Generator: Launchpad (build 14874)\n" #: ../picard/ui/mainwindow.py:252 msgid "&About..." @@ -27,43 +27,43 @@ msgstr "CD" #: ../picard/const.py:50 msgid "CD-R" -msgstr "" +msgstr "CD-R" #: ../picard/const.py:51 msgid "HDCD" -msgstr "" +msgstr "HDCD" #: ../picard/const.py:52 msgid "8cm CD" -msgstr "" +msgstr "CD 8cm" #: ../picard/const.py:53 msgid "Vinyl" -msgstr "Vinyl" +msgstr "Vinil" #: ../picard/const.py:54 msgid "7\" Vinyl" -msgstr "" +msgstr "Vinil 7\"" #: ../picard/const.py:55 msgid "10\" Vinyl" -msgstr "" +msgstr "Vinil 10\"" #: ../picard/const.py:56 msgid "12\" Vinyl" -msgstr "" +msgstr "Vinil 12\"" #: ../picard/const.py:57 msgid "Digital Media" -msgstr "Mídia Digital" +msgstr "Multimédia digital" #: ../picard/const.py:58 msgid "USB Flash Drive" -msgstr "" +msgstr "Unidade USB" #: ../picard/const.py:59 msgid "slotMusic" -msgstr "" +msgstr "slotMusic" #: ../picard/const.py:60 msgid "Cassette" @@ -75,11 +75,11 @@ msgstr "DVD" #: ../picard/const.py:62 msgid "DVD-Audio" -msgstr "" +msgstr "DVD áudio" #: ../picard/const.py:63 msgid "DVD-Video" -msgstr "" +msgstr "DVD vídeo" #: ../picard/const.py:64 msgid "SACD" @@ -87,7 +87,7 @@ msgstr "SACD" #: ../picard/const.py:65 msgid "DualDisc" -msgstr "" +msgstr "DualDisc" #: ../picard/const.py:66 msgid "MiniDisc" @@ -99,35 +99,35 @@ msgstr "" #: ../picard/const.py:68 msgid "HD-DVD" -msgstr "" +msgstr "HD-DVD" #: ../picard/const.py:69 msgid "Videotape" -msgstr "" +msgstr "Videotape" #: ../picard/const.py:70 msgid "VHS" -msgstr "" +msgstr "VHS" #: ../picard/const.py:71 msgid "Betamax" -msgstr "" +msgstr "Betamax" #: ../picard/const.py:72 msgid "VCD" -msgstr "" +msgstr "VCD" #: ../picard/const.py:73 msgid "SVCD" -msgstr "" +msgstr "SVCD" #: ../picard/const.py:74 msgid "UMD" -msgstr "" +msgstr "UMD" #: ../picard/const.py:75 ../picard/ui/ui_options_releases.py:227 msgid "Other" -msgstr "Outro" +msgstr "Outros" #: ../picard/const.py:76 msgid "LaserDisc" @@ -135,11 +135,11 @@ msgstr "LaserDisc" #: ../picard/const.py:77 msgid "Cartridge" -msgstr "" +msgstr "Cartucho" #: ../picard/const.py:78 msgid "Reel-to-reel" -msgstr "" +msgstr "Reel-to-reel" #: ../picard/const.py:79 msgid "DAT" @@ -147,15 +147,15 @@ msgstr "DAT" #: ../picard/const.py:80 msgid "Wax Cylinder" -msgstr "Cilindro de Cera" +msgstr "Wax Cylinder" #: ../picard/const.py:81 msgid "Piano Roll" -msgstr "Rolo de Piano" +msgstr "Piano Roll" #: ../picard/const.py:82 msgid "DCC" -msgstr "" +msgstr "DCC" #: ../picard/const.py:87 msgid "Bangladesh" @@ -187,7 +187,7 @@ msgstr "Bermudas" #: ../picard/const.py:94 msgid "Brunei Darussalam" -msgstr "Brunei Dar-es-Salam" +msgstr "Brunei Darussalam" #: ../picard/const.py:95 msgid "Bolivia" diff --git a/po/pt_BR.po b/po/pt_BR.po index ea8d304e3..b9d92ce4f 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: picard\n" "Report-Msgid-Bugs-To: http://bugs.musicbrainz.org/\n" "POT-Creation-Date: 2011-10-08 12:39+0200\n" -"PO-Revision-Date: 2012-01-10 20:03+0000\n" -"Last-Translator: Rosiney Gomes Pereira \n" +"PO-Revision-Date: 2012-04-23 04:45+0000\n" +"Last-Translator: Neliton Pereira Jr \n" "Language-Team: Portuguese (Brazil) \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-Launchpad-Export-Date: 2012-01-11 04:33+0000\n" -"X-Generator: Launchpad (build 14640)\n" +"X-Launchpad-Export-Date: 2012-04-24 04:36+0000\n" +"X-Generator: Launchpad (build 15135)\n" #: ../picard/ui/ui_options_proxy.py:74 ../picard/ui/options/proxy.py:28 msgid "Web Proxy" @@ -72,7 +72,7 @@ msgstr "Mídia Digital" #: ../picard/const.py:58 msgid "USB Flash Drive" -msgstr "" +msgstr "Unidade Flash USB" #: ../picard/const.py:59 msgid "slotMusic" @@ -88,11 +88,11 @@ msgstr "DVD" #: ../picard/const.py:62 msgid "DVD-Audio" -msgstr "" +msgstr "DVD-Áudio" #: ../picard/const.py:63 msgid "DVD-Video" -msgstr "" +msgstr "DVD-Vídeo" #: ../picard/const.py:64 msgid "SACD" @@ -100,7 +100,7 @@ msgstr "SACD" #: ../picard/const.py:65 msgid "DualDisc" -msgstr "" +msgstr "DualDisc" #: ../picard/const.py:66 msgid "MiniDisc" @@ -108,35 +108,35 @@ msgstr "Mini disco" #: ../picard/const.py:67 msgid "Blu-ray" -msgstr "" +msgstr "Blu-ray" #: ../picard/const.py:68 msgid "HD-DVD" -msgstr "" +msgstr "HD-DVD" #: ../picard/const.py:69 msgid "Videotape" -msgstr "" +msgstr "Videotape" #: ../picard/const.py:70 msgid "VHS" -msgstr "" +msgstr "VHS" #: ../picard/const.py:71 msgid "Betamax" -msgstr "" +msgstr "Betamax" #: ../picard/const.py:72 msgid "VCD" -msgstr "" +msgstr "VCD" #: ../picard/const.py:73 msgid "SVCD" -msgstr "" +msgstr "SVCD" #: ../picard/const.py:74 msgid "UMD" -msgstr "" +msgstr "UMD" #: ../picard/const.py:75 ../picard/ui/ui_options_releases.py:227 msgid "Other" @@ -148,7 +148,7 @@ msgstr "Disco a leser" #: ../picard/const.py:77 msgid "Cartridge" -msgstr "" +msgstr "Cartucho" #: ../picard/const.py:78 msgid "Reel-to-reel" @@ -726,7 +726,7 @@ msgstr "Suiça" #: ../picard/const.py:221 msgid "Colombia" -msgstr "Colombia" +msgstr "Colômbia" #: ../picard/const.py:222 msgid "China" @@ -1186,7 +1186,7 @@ msgstr "Arábico" #: ../picard/const.py:340 msgid "Asturian" -msgstr "" +msgstr "Asturiano" #: ../picard/const.py:341 ../picard/const.py:448 msgid "Bulgarian" @@ -1214,7 +1214,7 @@ msgstr "Alemão" #: ../picard/const.py:347 ../picard/const.py:554 ../picard/const.py:555 msgid "Greek" -msgstr "" +msgstr "Grego" #: ../picard/const.py:348 ../picard/const.py:485 msgid "English" @@ -1230,7 +1230,7 @@ msgstr "Inglês Britânico" #: ../picard/const.py:351 ../picard/const.py:516 msgid "Esperanto" -msgstr "" +msgstr "Esperanto" #: ../picard/const.py:352 ../picard/const.py:755 msgid "Spanish" @@ -1250,7 +1250,7 @@ msgstr "Finlandês" #: ../picard/const.py:356 ../picard/const.py:522 msgid "Faroese" -msgstr "" +msgstr "Feroês" #: ../picard/const.py:357 ../picard/const.py:528 msgid "French" @@ -1258,7 +1258,7 @@ msgstr "Francês" #: ../picard/const.py:358 msgid "French (Canada)" -msgstr "" +msgstr "Francês (Canadá)" #: ../picard/const.py:359 msgid "Frisian" @@ -1282,7 +1282,7 @@ msgstr "Húngaro" #: ../picard/const.py:364 ../picard/const.py:584 msgid "Indonesian" -msgstr "" +msgstr "Indonésio" #: ../picard/const.py:365 msgid "Islandic" @@ -1294,7 +1294,7 @@ msgstr "Italiano" #: ../picard/const.py:367 ../picard/const.py:593 msgid "Japanese" -msgstr "" +msgstr "Japonês" #: ../picard/const.py:368 ../picard/const.py:601 msgid "Kannada" @@ -1314,7 +1314,7 @@ msgstr "Norueguês (Bokmal)" #: ../picard/const.py:372 ../picard/const.py:642 msgid "Low German" -msgstr "" +msgstr "Baixo-alemão" #: ../picard/const.py:373 ../picard/const.py:480 msgid "Dutch" @@ -1322,7 +1322,7 @@ msgstr "Holandês" #: ../picard/const.py:374 ../picard/const.py:680 msgid "Occitan" -msgstr "" +msgstr "Occitano" #: ../picard/const.py:375 ../picard/const.py:692 msgid "Polish" @@ -1366,7 +1366,7 @@ msgstr "Sueco" #: ../picard/const.py:385 ../picard/const.py:794 msgid "Tamil" -msgstr "" +msgstr "Tâmil" #: ../picard/const.py:386 ../picard/const.py:818 msgid "Turkish" @@ -1374,7 +1374,7 @@ msgstr "Turco" #: ../picard/const.py:387 ../picard/const.py:826 msgid "Ukrainian" -msgstr "" +msgstr "Ucraniano" #: ../picard/const.py:388 ../picard/const.py:454 msgid "Chinese" @@ -1382,235 +1382,235 @@ msgstr "Chinês" #: ../picard/const.py:392 msgid "Afar" -msgstr "" +msgstr "Afar" #: ../picard/const.py:393 msgid "Afar Djibouti" -msgstr "" +msgstr "Afar (Djibouti)" #: ../picard/const.py:394 msgid "Afar Eritrea" -msgstr "" +msgstr "Afar (Eritreia)" #: ../picard/const.py:395 msgid "Afar Eritrea Saho" -msgstr "" +msgstr "Saho-Afar (Eritreia)" #: ../picard/const.py:396 msgid "Afar Ethiopia" -msgstr "" +msgstr "Afar (Etiópia)" #: ../picard/const.py:398 msgid "Afrikaans Namibia" -msgstr "" +msgstr "Africâner (Namíbia)" #: ../picard/const.py:399 msgid "Afrikaans South Africa" -msgstr "" +msgstr "Africâner (África do Sul)" #: ../picard/const.py:400 msgid "Akan" -msgstr "" +msgstr "Akan" #: ../picard/const.py:401 msgid "Akan Ghana" -msgstr "" +msgstr "Akan (Gana)" #: ../picard/const.py:402 msgid "Albanian" -msgstr "" +msgstr "Albanês" #: ../picard/const.py:403 msgid "Albanian Albania" -msgstr "" +msgstr "Albanês (Albania)" #: ../picard/const.py:404 msgid "Amharic" -msgstr "" +msgstr "Amárico" #: ../picard/const.py:405 msgid "Amharic Ethiopia" -msgstr "" +msgstr "Amárico (Etiópia)" #: ../picard/const.py:407 msgid "Arabic Algeria" -msgstr "" +msgstr "Árabe (Argélia)" #: ../picard/const.py:408 msgid "Arabic Bahrain" -msgstr "" +msgstr "Árabe (Bahrain)" #: ../picard/const.py:409 msgid "Arabic Egypt" -msgstr "" +msgstr "Árabe (Egito)" #: ../picard/const.py:410 msgid "Arabic Iraq" -msgstr "" +msgstr "Árabe (Iraque)" #: ../picard/const.py:411 msgid "Arabic Jordan" -msgstr "" +msgstr "Árabe (Jordânia)" #: ../picard/const.py:412 msgid "Arabic Kuwait" -msgstr "" +msgstr "Árabe (Kuwait)" #: ../picard/const.py:413 msgid "Arabic Lebanon" -msgstr "" +msgstr "Árabe (Líbano)" #: ../picard/const.py:414 msgid "Arabic Libya" -msgstr "" +msgstr "Árabe (Líbia)" #: ../picard/const.py:415 msgid "Arabic Morocco" -msgstr "" +msgstr "Árabe (Marrocos)" #: ../picard/const.py:416 msgid "Arabic Oman" -msgstr "" +msgstr "Árabe (Omã)" #: ../picard/const.py:417 msgid "Arabic Qatar" -msgstr "" +msgstr "Árabe (Catar)" #: ../picard/const.py:418 msgid "Arabic Saudi Arabia" -msgstr "" +msgstr "Árabe (Arábia Saudita)" #: ../picard/const.py:419 msgid "Arabic Sudan" -msgstr "" +msgstr "Árabe (Sudão)" #: ../picard/const.py:420 msgid "Arabic Syria" -msgstr "" +msgstr "Árabe (Síria)" #: ../picard/const.py:421 msgid "Arabic Tunisia" -msgstr "" +msgstr "Árabe (Tunísia)" #: ../picard/const.py:422 msgid "Arabic United Arab Emirates" -msgstr "" +msgstr "Árabe (Emirados Árabes Unidos)" #: ../picard/const.py:423 msgid "Arabic Yemen" -msgstr "" +msgstr "Árabe (Iêmen)" #: ../picard/const.py:424 msgid "Armenian" -msgstr "" +msgstr "Armênio" #: ../picard/const.py:425 msgid "Armenian Armenia" -msgstr "" +msgstr "Armênio (Armênia)" #: ../picard/const.py:426 msgid "Armenian Armenia Revised Orthography" -msgstr "" +msgstr "Armênio (Ortografia Revisada da Armênia)" #: ../picard/const.py:427 msgid "Assamese" -msgstr "" +msgstr "Assamês" #: ../picard/const.py:428 msgid "Assamese India" -msgstr "" +msgstr "Assamês (Índia)" #: ../picard/const.py:429 msgid "Atsam" -msgstr "" +msgstr "Atsam" #: ../picard/const.py:430 msgid "Atsam Nigeria" -msgstr "" +msgstr "Atsam (Nigéria)" #: ../picard/const.py:431 msgid "Azerbaijani" -msgstr "" +msgstr "Azeri" #: ../picard/const.py:432 msgid "Azerbaijani Azerbaijan" -msgstr "" +msgstr "Azeri (Azerbaijão)" #: ../picard/const.py:433 msgid "Azerbaijani Cyrillic" -msgstr "" +msgstr "Azeri (Cirílico)" #: ../picard/const.py:434 msgid "Azerbaijani Cyrillic Azerbaijan" -msgstr "" +msgstr "Azeri (Cirílico Azerbaijão)" #: ../picard/const.py:435 msgid "Azerbaijani Latin" -msgstr "" +msgstr "Azeri (Latino)" #: ../picard/const.py:436 msgid "Azerbaijani Latin Azerbaijan" -msgstr "" +msgstr "Azeri (Azerbaijão Latino)" #: ../picard/const.py:437 msgid "Basque" -msgstr "" +msgstr "Basco" #: ../picard/const.py:438 msgid "Basque Spain" -msgstr "" +msgstr "Basco (Espanha)" #: ../picard/const.py:439 msgid "Belarusian" -msgstr "" +msgstr "Bielorrusso" #: ../picard/const.py:440 msgid "Belarusian Belarus" -msgstr "" +msgstr "Bielorusso (Bielorrússia)" #: ../picard/const.py:441 msgid "Bengali" -msgstr "" +msgstr "Bengali" #: ../picard/const.py:442 msgid "Bengali Bangladesh" -msgstr "" +msgstr "Bengali (Bangladesh)" #: ../picard/const.py:443 msgid "Bengali India" -msgstr "" +msgstr "Bengali (Índia)" #: ../picard/const.py:444 msgid "Blin" -msgstr "" +msgstr "Blin" #: ../picard/const.py:445 msgid "Blin Eritrea" -msgstr "" +msgstr "Blin (Eritréia)" #: ../picard/const.py:446 msgid "Bosnian" -msgstr "" +msgstr "Bósnio" #: ../picard/const.py:447 msgid "Bosnian Bosnia and Herzegovina" -msgstr "" +msgstr "Bósnio (Bósnia e Herzegovina)" #: ../picard/const.py:449 msgid "Bulgarian Bulgaria" -msgstr "" +msgstr "Búlgaro (Bulgária)" #: ../picard/const.py:450 msgid "Burmese" -msgstr "" +msgstr "Birmanês" #: ../picard/const.py:453 msgid "Catalan Spain" -msgstr "" +msgstr "Catalão (Espanha)" #: ../picard/const.py:455 msgid "Chinese China" -msgstr "" +msgstr "Chinês (China)" #: ../picard/const.py:456 msgid "Chinese Hong Kong SAR China" @@ -1622,11 +1622,11 @@ msgstr "" #: ../picard/const.py:458 msgid "Chinese Simplified Han" -msgstr "" +msgstr "Chinês Simplificado" #: ../picard/const.py:459 msgid "Chinese Simplified Han China" -msgstr "" +msgstr "Chinês Simplificado (China)" #: ../picard/const.py:460 msgid "Chinese Simplified Han Hong Kong SAR China" @@ -1638,19 +1638,19 @@ msgstr "" #: ../picard/const.py:462 msgid "Chinese Simplified Han Singapore" -msgstr "" +msgstr "Chinês Simplificado (Singapura)" #: ../picard/const.py:463 msgid "Chinese Singapore" -msgstr "" +msgstr "Chinês (Singapura)" #: ../picard/const.py:464 msgid "Chinese Taiwan" -msgstr "" +msgstr "Chinês (Taiwan)" #: ../picard/const.py:465 msgid "Chinese Traditional Han" -msgstr "" +msgstr "Chinês Tradicional" #: ../picard/const.py:466 msgid "Chinese Traditional Han Hong Kong SAR China" @@ -1662,87 +1662,87 @@ msgstr "" #: ../picard/const.py:468 msgid "Chinese Traditional Han Taiwan" -msgstr "" +msgstr "Chinês Tradicional (Taiwan)" #: ../picard/const.py:469 msgid "Coptic" -msgstr "" +msgstr "Copta" #: ../picard/const.py:470 msgid "Cornish" -msgstr "" +msgstr "Córnico" #: ../picard/const.py:471 msgid "Cornish United Kingdom" -msgstr "" +msgstr "Córnico (Reino Unido)" #: ../picard/const.py:472 msgid "Croatian" -msgstr "" +msgstr "Croata" #: ../picard/const.py:473 msgid "Croatian Croatia" -msgstr "" +msgstr "Croata (Croácia)" #: ../picard/const.py:475 msgid "Czech Czech Republic" -msgstr "" +msgstr "Tcheco (República Tcheca)" #: ../picard/const.py:477 msgid "Danish Denmark" -msgstr "" +msgstr "Dinamarquês (Dinamarca)" #: ../picard/const.py:478 msgid "Divehi" -msgstr "" +msgstr "Divehi" #: ../picard/const.py:479 msgid "Divehi Maldives" -msgstr "" +msgstr "Divehi (Maldivas)" #: ../picard/const.py:481 msgid "Dutch Belgium" -msgstr "" +msgstr "Neerlandês (Bélgica)" #: ../picard/const.py:482 msgid "Dutch Netherlands" -msgstr "" +msgstr "Neerlandês (Holanda)" #: ../picard/const.py:483 msgid "Dzongkha" -msgstr "" +msgstr "Butanês" #: ../picard/const.py:484 msgid "Dzongkha Bhutan" -msgstr "" +msgstr "Butanês (Butão)" #: ../picard/const.py:486 msgid "English American Samoa" -msgstr "" +msgstr "Inglês (Samoa Americana)" #: ../picard/const.py:487 msgid "English Australia" -msgstr "" +msgstr "Inglês (Austrália)" #: ../picard/const.py:488 msgid "English Belgium" -msgstr "" +msgstr "Inglês (Bélgica)" #: ../picard/const.py:489 msgid "English Belize" -msgstr "" +msgstr "Inglês (Belize)" #: ../picard/const.py:490 msgid "English Botswana" -msgstr "" +msgstr "Inglês (Botswana)" #: ../picard/const.py:491 msgid "English Canada" -msgstr "" +msgstr "Inglês (Canadá)" #: ../picard/const.py:492 msgid "English Deseret" -msgstr "" +msgstr "Inglês (Deseret)" #: ../picard/const.py:493 msgid "English Deseret United States" @@ -1750,7 +1750,7 @@ msgstr "" #: ../picard/const.py:494 msgid "English Guam" -msgstr "" +msgstr "Inglês (Guam)" #: ../picard/const.py:495 msgid "English Hong Kong SAR China" @@ -1758,31 +1758,31 @@ msgstr "" #: ../picard/const.py:496 msgid "English India" -msgstr "" +msgstr "Inglês (Índia)" #: ../picard/const.py:497 msgid "English Ireland" -msgstr "" +msgstr "Inglês (Irlanda)" #: ../picard/const.py:498 msgid "English Jamaica" -msgstr "" +msgstr "Inglês (Jamaica)" #: ../picard/const.py:499 msgid "English Malta" -msgstr "" +msgstr "Inglês (Malta)" #: ../picard/const.py:500 msgid "English Marshall Islands" -msgstr "" +msgstr "Inglês (Ilhas Marshall)" #: ../picard/const.py:501 msgid "English Namibia" -msgstr "" +msgstr "Inglês (Namíbia)" #: ../picard/const.py:502 msgid "English New Zealand" -msgstr "" +msgstr "Inglês (Nova Zelândia)" #: ../picard/const.py:503 msgid "English Northern Mariana Islands" @@ -1790,11 +1790,11 @@ msgstr "" #: ../picard/const.py:504 msgid "English Pakistan" -msgstr "" +msgstr "Inglês (Paquistão)" #: ../picard/const.py:505 msgid "English Philippines" -msgstr "" +msgstr "Inglês (Filipinas)" #: ../picard/const.py:506 msgid "English Shavian" @@ -1802,15 +1802,15 @@ msgstr "" #: ../picard/const.py:507 msgid "English Singapore" -msgstr "" +msgstr "Inglês (Singapura)" #: ../picard/const.py:508 msgid "English South Africa" -msgstr "" +msgstr "Inglês (África do Sul)" #: ../picard/const.py:509 msgid "English Trinidad and Tobago" -msgstr "" +msgstr "Inglês (Trinidad e Tobago)" #: ../picard/const.py:510 msgid "English U.S. Minor Outlying Islands" @@ -1818,15 +1818,15 @@ msgstr "" #: ../picard/const.py:511 msgid "English U.S. Virgin Islands" -msgstr "" +msgstr "Inglês (Ilhas Virgens Americanas)" #: ../picard/const.py:512 msgid "English United Kingdom" -msgstr "" +msgstr "Inglês (Reino Unido)" #: ../picard/const.py:513 msgid "English United States" -msgstr "" +msgstr "Inglês (Estados Unidos)" #: ../picard/const.py:514 msgid "English United States Computer" @@ -1834,215 +1834,215 @@ msgstr "" #: ../picard/const.py:515 msgid "English Zimbabwe" -msgstr "" +msgstr "Inglês (Zimbabwe)" #: ../picard/const.py:518 msgid "Estonian Estonia" -msgstr "" +msgstr "Estoniano (Estônia)" #: ../picard/const.py:519 msgid "Ewe" -msgstr "" +msgstr "Éwé" #: ../picard/const.py:520 msgid "Ewe Ghana" -msgstr "" +msgstr "Éwé (Gana)" #: ../picard/const.py:521 msgid "Ewe Togo" -msgstr "" +msgstr "Éwé (Togo)" #: ../picard/const.py:523 msgid "Faroese Faroe Islands" -msgstr "" +msgstr "Feroês (Ilhas Feroe)" #: ../picard/const.py:524 msgid "Filipino" -msgstr "" +msgstr "Filipino" #: ../picard/const.py:525 msgid "Filipino Philippines" -msgstr "" +msgstr "Filipino (Filipinas)" #: ../picard/const.py:527 msgid "Finnish Finland" -msgstr "" +msgstr "Finlandês (Finlândia)" #: ../picard/const.py:529 msgid "French Belgium" -msgstr "" +msgstr "Francês (Bélgica)" #: ../picard/const.py:530 msgid "French Canada" -msgstr "" +msgstr "Francês (Canadá)" #: ../picard/const.py:531 msgid "French France" -msgstr "" +msgstr "Francês (França)" #: ../picard/const.py:532 msgid "French Luxembourg" -msgstr "" +msgstr "Francês (Luxemburgo)" #: ../picard/const.py:533 msgid "French Monaco" -msgstr "" +msgstr "Francês (Monaco)" #: ../picard/const.py:534 msgid "French Senegal" -msgstr "" +msgstr "Francês (Senegal)" #: ../picard/const.py:535 msgid "French Switzerland" -msgstr "" +msgstr "Francês (Suíça)" #: ../picard/const.py:536 msgid "Friulian" -msgstr "" +msgstr "Friulano" #: ../picard/const.py:537 msgid "Friulian Italy" -msgstr "" +msgstr "Friuliano (Itália)" #: ../picard/const.py:538 msgid "Ga" -msgstr "" +msgstr "Ga" #: ../picard/const.py:539 msgid "Ga Ghana" -msgstr "" +msgstr "Ga (Gana)" #: ../picard/const.py:541 msgid "Galician Spain" -msgstr "" +msgstr "Galego (Espanha)" #: ../picard/const.py:542 msgid "Geez" -msgstr "" +msgstr "Geez" #: ../picard/const.py:543 msgid "Geez Eritrea" -msgstr "" +msgstr "Geez (Eritreia)" #: ../picard/const.py:544 msgid "Geez Ethiopia" -msgstr "" +msgstr "Geez (Etiópia)" #: ../picard/const.py:545 msgid "Georgian" -msgstr "" +msgstr "Georgiano" #: ../picard/const.py:546 msgid "Georgian Georgia" -msgstr "" +msgstr "Georgiano (Geórgia)" #: ../picard/const.py:548 msgid "German Austria" -msgstr "" +msgstr "Alemão (Áustria)" #: ../picard/const.py:549 msgid "German Belgium" -msgstr "" +msgstr "Alemão (Bélgica)" #: ../picard/const.py:550 msgid "German Germany" -msgstr "" +msgstr "Alemão (Alemanha)" #: ../picard/const.py:551 msgid "German Liechtenstein" -msgstr "" +msgstr "Alemão (Liechtenstein)" #: ../picard/const.py:552 msgid "German Luxembourg" -msgstr "" +msgstr "Alemão (Luxemburgo)" #: ../picard/const.py:553 msgid "German Switzerland" -msgstr "" +msgstr "Alemão (Suíça)" #: ../picard/const.py:556 msgid "Greek Cyprus" -msgstr "" +msgstr "Grego (Chipre)" #: ../picard/const.py:557 msgid "Greek Greece" -msgstr "" +msgstr "Grego (Grécia)" #: ../picard/const.py:558 msgid "Gujarati" -msgstr "" +msgstr "Gujerati" #: ../picard/const.py:559 msgid "Gujarati India" -msgstr "" +msgstr "Gujerati (Índia)" #: ../picard/const.py:560 msgid "Hausa" -msgstr "" +msgstr "Hausa" #: ../picard/const.py:561 msgid "Hausa Arabic" -msgstr "" +msgstr "Hausa Árabe" #: ../picard/const.py:562 msgid "Hausa Arabic Nigeria" -msgstr "" +msgstr "Hausa Árabe (Nigéria)" #: ../picard/const.py:563 msgid "Hausa Arabic Sudan" -msgstr "" +msgstr "Hausa Árabe (Sudão)" #: ../picard/const.py:564 msgid "Hausa Ghana" -msgstr "" +msgstr "Hausa (Gana)" #: ../picard/const.py:565 msgid "Hausa Latin" -msgstr "" +msgstr "Hausa Latino" #: ../picard/const.py:566 msgid "Hausa Latin Ghana" -msgstr "" +msgstr "Hausa Latino (Gana)" #: ../picard/const.py:567 msgid "Hausa Latin Niger" -msgstr "" +msgstr "Hausa Latino (Níger)" #: ../picard/const.py:568 msgid "Hausa Latin Nigeria" -msgstr "" +msgstr "Hausa Latino (Nigéria)" #: ../picard/const.py:569 msgid "Hausa Niger" -msgstr "" +msgstr "Hausa (Níger)" #: ../picard/const.py:570 msgid "Hausa Nigeria" -msgstr "" +msgstr "Hausa (Nigéria)" #: ../picard/const.py:571 msgid "Hausa Sudan" -msgstr "" +msgstr "Hausa (Sudão)" #: ../picard/const.py:572 msgid "Hawaiian" -msgstr "" +msgstr "Havaiano" #: ../picard/const.py:573 msgid "Hawaiian United States" -msgstr "" +msgstr "Havaiano (Estados Unidos)" #: ../picard/const.py:575 msgid "Hebrew Israel" -msgstr "" +msgstr "Hebraico (Israel)" #: ../picard/const.py:577 msgid "Hindi India" -msgstr "" +msgstr "Hindi (Índia)" #: ../picard/const.py:579 msgid "Hungarian Hungary" -msgstr "" +msgstr "Húngaro (Hungria)" #: ../picard/const.py:580 msgid "Icelandic" @@ -2050,299 +2050,299 @@ msgstr "Islandês" #: ../picard/const.py:581 msgid "Icelandic Iceland" -msgstr "" +msgstr "Islandês (Islândia)" #: ../picard/const.py:582 msgid "Igbo" -msgstr "" +msgstr "Ibo" #: ../picard/const.py:583 msgid "Igbo Nigeria" -msgstr "" +msgstr "Igbo (Nigéria)" #: ../picard/const.py:585 msgid "Indonesian Indonesia" -msgstr "" +msgstr "Indonésio (Indonésia)" #: ../picard/const.py:586 msgid "Interlingua" -msgstr "" +msgstr "Interlíngua" #: ../picard/const.py:587 msgid "Inuktitut" -msgstr "" +msgstr "Inuktitut" #: ../picard/const.py:588 msgid "Irish" -msgstr "" +msgstr "Irlandês" #: ../picard/const.py:589 msgid "Irish Ireland" -msgstr "" +msgstr "Irlandês (Irlanda)" #: ../picard/const.py:591 msgid "Italian Italy" -msgstr "" +msgstr "Italiano (Itália)" #: ../picard/const.py:592 msgid "Italian Switzerland" -msgstr "" +msgstr "Italiano (Suíça)" #: ../picard/const.py:594 msgid "Japanese Japan" -msgstr "" +msgstr "Japonês (Japão)" #: ../picard/const.py:595 msgid "Jju" -msgstr "" +msgstr "Jju" #: ../picard/const.py:596 msgid "Jju Nigeria" -msgstr "" +msgstr "Jju (Nigéria)" #: ../picard/const.py:597 msgid "Kalaallisut" -msgstr "" +msgstr "Groenlandês" #: ../picard/const.py:598 msgid "Kalaallisut Greenland" -msgstr "" +msgstr "Groenlandês (Groenlândia)" #: ../picard/const.py:599 msgid "Kamba" -msgstr "" +msgstr "Kamba" #: ../picard/const.py:600 msgid "Kamba Kenya" -msgstr "" +msgstr "Kamba (Quênia)" #: ../picard/const.py:602 msgid "Kannada India" -msgstr "" +msgstr "Canarês (Índia)" #: ../picard/const.py:603 msgid "Kazakh" -msgstr "" +msgstr "Cazaque" #: ../picard/const.py:604 msgid "Kazakh Cyrillic" -msgstr "" +msgstr "Cazaque Cirílico" #: ../picard/const.py:605 msgid "Kazakh Cyrillic Kazakhstan" -msgstr "" +msgstr "Cazaque Cirílico (Cazaquistão)" #: ../picard/const.py:606 msgid "Kazakh Kazakhstan" -msgstr "" +msgstr "Cazaque (Cazaquistão)" #: ../picard/const.py:607 msgid "Khmer" -msgstr "" +msgstr "Khmer" #: ../picard/const.py:608 msgid "Khmer Cambodia" -msgstr "" +msgstr "Khmer (Camboja)" #: ../picard/const.py:609 msgid "Kinyarwanda" -msgstr "" +msgstr "Kinyarwanda" #: ../picard/const.py:610 msgid "Kinyarwanda Rwanda" -msgstr "" +msgstr "Kinyarwanda (Ruanda)" #: ../picard/const.py:611 msgid "Kirghiz" -msgstr "" +msgstr "Quirguiz" #: ../picard/const.py:612 msgid "Kirghiz Kyrgyzstan" -msgstr "" +msgstr "Quirguiz (Quirguistão)" #: ../picard/const.py:613 msgid "Konkani" -msgstr "" +msgstr "Concani" #: ../picard/const.py:614 msgid "Konkani India" -msgstr "" +msgstr "Concani (Índia)" #: ../picard/const.py:616 msgid "Korean South Korea" -msgstr "" +msgstr "Coreano (Coreia do Sul)" #: ../picard/const.py:617 msgid "Koro" -msgstr "" +msgstr "Koro" #: ../picard/const.py:619 msgid "Kpelle" -msgstr "" +msgstr "Kpelle" #: ../picard/const.py:620 msgid "Kpelle Guinea" -msgstr "" +msgstr "Kpelle (Guiné)" #: ../picard/const.py:621 msgid "Kpelle Liberia" -msgstr "" +msgstr "Kpelle (Libéria)" #: ../picard/const.py:622 msgid "Kurdish" -msgstr "" +msgstr "Curdo" #: ../picard/const.py:623 msgid "Kurdish Arabic" -msgstr "" +msgstr "Curdo Árabe" #: ../picard/const.py:624 msgid "Kurdish Arabic Iran" -msgstr "" +msgstr "Curdo Árabe (Irã)" #: ../picard/const.py:625 msgid "Kurdish Arabic Iraq" -msgstr "" +msgstr "Curdo Árabe (Iraque)" #: ../picard/const.py:626 msgid "Kurdish Arabic Syria" -msgstr "" +msgstr "Curdo Árabe (Síria)" #: ../picard/const.py:627 msgid "Kurdish Iran" -msgstr "" +msgstr "Curdo (Irã)" #: ../picard/const.py:628 msgid "Kurdish Iraq" -msgstr "" +msgstr "Curdo (Iraque)" #: ../picard/const.py:629 msgid "Kurdish Latin" -msgstr "" +msgstr "Curdo Latino" #: ../picard/const.py:630 msgid "Kurdish Latin Turkey" -msgstr "" +msgstr "Curdo Latino (Turquia)" #: ../picard/const.py:631 msgid "Kurdish Syria" -msgstr "" +msgstr "Curdo (Síria)" #: ../picard/const.py:632 msgid "Kurdish Turkey" -msgstr "" +msgstr "Curdo (Turquia)" #: ../picard/const.py:633 msgid "Lao" -msgstr "" +msgstr "Laociano" #: ../picard/const.py:634 msgid "Lao Laos" -msgstr "" +msgstr "Laociano (Laos)" #: ../picard/const.py:635 msgid "Latvian" -msgstr "" +msgstr "Letão" #: ../picard/const.py:636 msgid "Latvian Latvia" -msgstr "" +msgstr "Letão (Letônia)" #: ../picard/const.py:637 msgid "Lingala" -msgstr "" +msgstr "Lingala" #: ../picard/const.py:638 msgid "Lingala Congo - Brazzaville" -msgstr "" +msgstr "Lingala (Congo - Brazzaville)" #: ../picard/const.py:639 msgid "Lingala Congo - Kinshasa" -msgstr "" +msgstr "Lingala (Congo - Kinshasa)" #: ../picard/const.py:641 msgid "Lithuanian Lithuania" -msgstr "" +msgstr "Lituano (Lituânia)" #: ../picard/const.py:643 msgid "Low German Germany" -msgstr "" +msgstr "Baixo-alemão (Alemanha)" #: ../picard/const.py:644 msgid "Macedonian" -msgstr "" +msgstr "Macedônio" #: ../picard/const.py:645 msgid "Macedonian Macedonia" -msgstr "" +msgstr "Macedônio (Macedônia)" #: ../picard/const.py:646 msgid "Malay" -msgstr "" +msgstr "Malaio" #: ../picard/const.py:647 msgid "Malay Brunei" -msgstr "" +msgstr "Malaio (Brunei)" #: ../picard/const.py:648 msgid "Malay Malaysia" -msgstr "" +msgstr "Malaio (Malásia)" #: ../picard/const.py:649 msgid "Malayalam" -msgstr "" +msgstr "Malaiala" #: ../picard/const.py:650 msgid "Malayalam India" -msgstr "" +msgstr "Malaiala (Índia)" #: ../picard/const.py:651 msgid "Maltese" -msgstr "" +msgstr "Maltês" #: ../picard/const.py:652 msgid "Maltese Malta" -msgstr "" +msgstr "Maltês (Malta)" #: ../picard/const.py:653 msgid "Manx" -msgstr "" +msgstr "Manx" #: ../picard/const.py:654 msgid "Manx United Kingdom" -msgstr "" +msgstr "Manx (Reino Unido)" #: ../picard/const.py:655 msgid "Marathi" -msgstr "" +msgstr "Marata" #: ../picard/const.py:656 msgid "Marathi India" -msgstr "" +msgstr "Marata (Índia)" #: ../picard/const.py:657 msgid "Moldavian" -msgstr "" +msgstr "Moldávio" #: ../picard/const.py:658 msgid "Mongolian" -msgstr "" +msgstr "Mongol" #: ../picard/const.py:659 msgid "Mongolian China" -msgstr "" +msgstr "Mongol (China)" #: ../picard/const.py:660 msgid "Mongolian Cyrillic" -msgstr "" +msgstr "Mongol Cirílico" #: ../picard/const.py:661 msgid "Mongolian Cyrillic Mongolia" -msgstr "" +msgstr "Mongol Cirílico (Mongólia)" #: ../picard/const.py:662 msgid "Mongolian Mongolia" -msgstr "" +msgstr "Mongol (Mongólia)" #: ../picard/const.py:663 msgid "Mongolian Mongolian" @@ -2354,687 +2354,687 @@ msgstr "" #: ../picard/const.py:665 msgid "Nepali" -msgstr "" +msgstr "Nepali" #: ../picard/const.py:666 msgid "Nepali India" -msgstr "" +msgstr "Nepali (Índia)" #: ../picard/const.py:667 msgid "Nepali Nepal" -msgstr "" +msgstr "Nepali (Nepal)" #: ../picard/const.py:668 msgid "Northern Sami" -msgstr "" +msgstr "Sami Setentrional" #: ../picard/const.py:669 msgid "Northern Sami Finland" -msgstr "" +msgstr "Sami Setentrional (Finlândia)" #: ../picard/const.py:670 msgid "Northern Sami Norway" -msgstr "" +msgstr "Sami Setentrional (Noruega)" #: ../picard/const.py:671 msgid "Northern Sotho" -msgstr "" +msgstr "Sotho Setentrional" #: ../picard/const.py:672 msgid "Northern Sotho South Africa" -msgstr "" +msgstr "Sotho Setentrional (África do Sul)" #: ../picard/const.py:673 msgid "Norwegian" -msgstr "" +msgstr "Norueguês" #: ../picard/const.py:676 msgid "Norwegian Nynorsk" -msgstr "" +msgstr "Novo Norueguês" #: ../picard/const.py:677 msgid "Norwegian Nynorsk Norway" -msgstr "" +msgstr "Novo Norueguês (Noruega)" #: ../picard/const.py:678 msgid "Nyanja" -msgstr "" +msgstr "Nianja" #: ../picard/const.py:679 msgid "Nyanja Malawi" -msgstr "" +msgstr "Nianja (Malawi)" #: ../picard/const.py:681 msgid "Occitan France" -msgstr "" +msgstr "Occitano (França)" #: ../picard/const.py:682 msgid "Oriya" -msgstr "" +msgstr "Oriá" #: ../picard/const.py:683 msgid "Oriya India" -msgstr "" +msgstr "Oriá (Índia)" #: ../picard/const.py:684 msgid "Oromo" -msgstr "" +msgstr "Oromo" #: ../picard/const.py:685 msgid "Oromo Ethiopia" -msgstr "" +msgstr "Oromo (Etiópia)" #: ../picard/const.py:686 msgid "Oromo Kenya" -msgstr "" +msgstr "Oromo (Quênia)" #: ../picard/const.py:687 msgid "Pashto" -msgstr "" +msgstr "Pachto" #: ../picard/const.py:688 msgid "Pashto Afghanistan" -msgstr "" +msgstr "Pachto (Afeganistão)" #: ../picard/const.py:690 msgid "Persian Afghanistan" -msgstr "" +msgstr "Persa (Afeganistão)" #: ../picard/const.py:691 msgid "Persian Iran" -msgstr "" +msgstr "Persa (Iraque)" #: ../picard/const.py:693 msgid "Polish Poland" -msgstr "" +msgstr "Polonês" #: ../picard/const.py:695 msgid "Portuguese Brazil" -msgstr "" +msgstr "Português (Brasil)" #: ../picard/const.py:696 msgid "Portuguese Portugal" -msgstr "" +msgstr "Português (Portugal)" #: ../picard/const.py:697 msgid "Punjabi" -msgstr "" +msgstr "Panjabi" #: ../picard/const.py:698 msgid "Punjabi Arabic" -msgstr "" +msgstr "Panjabi Árabe" #: ../picard/const.py:699 msgid "Punjabi Arabic Pakistan" -msgstr "" +msgstr "Panjabi Árabe (Paquistão)" #: ../picard/const.py:700 msgid "Punjabi Gurmukhi" -msgstr "" +msgstr "Panjabi Gurmukhi" #: ../picard/const.py:701 msgid "Punjabi Gurmukhi India" -msgstr "" +msgstr "Panjabi Gurmukhi (Índia)" #: ../picard/const.py:702 msgid "Punjabi India" -msgstr "" +msgstr "Panjabi (Índia)" #: ../picard/const.py:703 msgid "Punjabi Pakistan" -msgstr "" +msgstr "Panjabi (Paquistão)" #: ../picard/const.py:705 msgid "Romanian Moldova" -msgstr "" +msgstr "Romeno (Moldávia)" #: ../picard/const.py:706 msgid "Romanian Romania" -msgstr "" +msgstr "Romeno (Romênia)" #: ../picard/const.py:707 msgid "Root" -msgstr "" +msgstr "Raiz" #: ../picard/const.py:709 msgid "Russian Russia" -msgstr "" +msgstr "Russo (Rússia)" #: ../picard/const.py:710 msgid "Russian Ukraine" -msgstr "" +msgstr "Russo (Ucrânia)" #: ../picard/const.py:711 msgid "Sanskrit" -msgstr "" +msgstr "Sânscrito" #: ../picard/const.py:712 msgid "Sanskrit India" -msgstr "" +msgstr "Sânscrito (Índia)" #: ../picard/const.py:715 msgid "Serbian Bosnia and Herzegovina" -msgstr "" +msgstr "Sérvio (Bósnia e Herzegovina)" #: ../picard/const.py:716 ../picard/const.py:717 msgid "Serbian Cyrillic" -msgstr "" +msgstr "Sérvio Cirílico" #: ../picard/const.py:718 msgid "Serbian Cyrillic Bosnia and Herzegovina" -msgstr "" +msgstr "Sérvio Cirílico (Bósnia e Herzegovina)" #: ../picard/const.py:719 msgid "Serbian Cyrillic Montenegro" -msgstr "" +msgstr "Sérvio Cirílico (Montenegro)" #: ../picard/const.py:720 msgid "Serbian Cyrillic Serbia" -msgstr "" +msgstr "Sérvio Cirílico (Sérvia)" #: ../picard/const.py:721 msgid "Serbian Cyrillic Serbia and Montenegro" -msgstr "" +msgstr "Sérvio Cirílico (Sérvia e Montenegro)" #: ../picard/const.py:722 ../picard/const.py:723 msgid "Serbian Latin" -msgstr "" +msgstr "Sérvio Latino" #: ../picard/const.py:724 msgid "Serbian Latin Bosnia and Herzegovina" -msgstr "" +msgstr "Sérvio Latino (Bósnia e Herzegovina)" #: ../picard/const.py:725 msgid "Serbian Latin Montenegro" -msgstr "" +msgstr "Sérvio Latino (Montenegro)" #: ../picard/const.py:726 msgid "Serbian Latin Serbia" -msgstr "" +msgstr "Sérvio Latino (Sérvia)" #: ../picard/const.py:727 msgid "Serbian Latin Serbia and Montenegro" -msgstr "" +msgstr "Sérvio Latino (Sérvia e Montenegro)" #: ../picard/const.py:728 msgid "Serbian Montenegro" -msgstr "" +msgstr "Sérvio (Montenegro)" #: ../picard/const.py:729 msgid "Serbian Serbia" -msgstr "" +msgstr "Sérvio (Sérvia)" #: ../picard/const.py:730 msgid "Serbian Serbia and Montenegro" -msgstr "" +msgstr "Sérvio (Sérvia e Montenegro)" #: ../picard/const.py:731 ../picard/const.py:732 msgid "Serbo-Croatian" -msgstr "" +msgstr "Servo-croata" #: ../picard/const.py:733 msgid "Serbo-Croatian Bosnia and Herzegovina" -msgstr "" +msgstr "Servo-croata (Bósnia e Herzegovina)" #: ../picard/const.py:734 msgid "Serbo-Croatian Serbia and Montenegro" -msgstr "" +msgstr "Servo-croata (Sérvia e Montenegro)" #: ../picard/const.py:735 msgid "Sichuan Yi" -msgstr "" +msgstr "Sichuan Yi" #: ../picard/const.py:736 msgid "Sichuan Yi China" -msgstr "" +msgstr "Sichuan Yi (China)" #: ../picard/const.py:737 msgid "Sidamo" -msgstr "" +msgstr "Sidamo" #: ../picard/const.py:738 msgid "Sidamo Ethiopia" -msgstr "" +msgstr "Sidamo (Etiópia)" #: ../picard/const.py:739 msgid "Sinhala" -msgstr "" +msgstr "Sinhala" #: ../picard/const.py:740 msgid "Sinhala Sri Lanka" -msgstr "" +msgstr "Sinhala (Sri Lanka)" #: ../picard/const.py:742 msgid "Slovak Slovakia" -msgstr "" +msgstr "Eslovaco (Eslováquia)" #: ../picard/const.py:744 msgid "Slovenian Slovenia" -msgstr "" +msgstr "Esloveno (Eslovênia)" #: ../picard/const.py:745 msgid "Somali" -msgstr "" +msgstr "Somali" #: ../picard/const.py:746 msgid "Somali Djibouti" -msgstr "" +msgstr "Somali (Djibouti)" #: ../picard/const.py:747 msgid "Somali Ethiopia" -msgstr "" +msgstr "Somali (Etiópia)" #: ../picard/const.py:748 msgid "Somali Kenya" -msgstr "" +msgstr "Somali (Quênia)" #: ../picard/const.py:749 msgid "Somali Somalia" -msgstr "" +msgstr "Somali (Somália)" #: ../picard/const.py:750 msgid "South Ndebele" -msgstr "" +msgstr "Ndebele do Sul" #: ../picard/const.py:751 msgid "South Ndebele South Africa" -msgstr "" +msgstr "Ndebele do Sul (África do Sul)" #: ../picard/const.py:752 msgid "Southern Sotho" -msgstr "" +msgstr "Soto do Sul" #: ../picard/const.py:753 msgid "Southern Sotho Lesotho" -msgstr "" +msgstr "Soto do Sul (Lesoto)" #: ../picard/const.py:754 msgid "Southern Sotho South Africa" -msgstr "" +msgstr "Soto do Sul (África do Sul)" #: ../picard/const.py:756 msgid "Spanish Argentina" -msgstr "" +msgstr "Espanhol (Argentina)" #: ../picard/const.py:757 msgid "Spanish Bolivia" -msgstr "" +msgstr "Espanhol (Bolívia)" #: ../picard/const.py:758 msgid "Spanish Chile" -msgstr "" +msgstr "Espanhol (Chile)" #: ../picard/const.py:759 msgid "Spanish Colombia" -msgstr "" +msgstr "Espanhol (Colômbia)" #: ../picard/const.py:760 msgid "Spanish Costa Rica" -msgstr "" +msgstr "Espanhol (Costa Rica)" #: ../picard/const.py:761 msgid "Spanish Dominican Republic" -msgstr "" +msgstr "Espanhol (Repúblic Dominicana)" #: ../picard/const.py:762 msgid "Spanish Ecuador" -msgstr "" +msgstr "Espanhol (Equador)" #: ../picard/const.py:763 msgid "Spanish El Salvador" -msgstr "" +msgstr "Espanhol (El Salvador)" #: ../picard/const.py:764 msgid "Spanish Guatemala" -msgstr "" +msgstr "Espanhol (Guatemala)" #: ../picard/const.py:765 msgid "Spanish Honduras" -msgstr "" +msgstr "Espanhol (Honduras)" #: ../picard/const.py:766 msgid "Spanish Mexico" -msgstr "" +msgstr "Espanhol (México)" #: ../picard/const.py:767 msgid "Spanish Nicaragua" -msgstr "" +msgstr "Espanhol (Nicarágua)" #: ../picard/const.py:768 msgid "Spanish Panama" -msgstr "" +msgstr "Espanhol (Panamá)" #: ../picard/const.py:769 msgid "Spanish Paraguay" -msgstr "" +msgstr "Espanhol (Paraguai)" #: ../picard/const.py:770 msgid "Spanish Peru" -msgstr "" +msgstr "Espanhol (Peru)" #: ../picard/const.py:771 msgid "Spanish Puerto Rico" -msgstr "" +msgstr "Espanhol (Porto Rico)" #: ../picard/const.py:772 msgid "Spanish Spain" -msgstr "" +msgstr "Espanhol (Espanha)" #: ../picard/const.py:773 msgid "Spanish United States" -msgstr "" +msgstr "Espanhol (Estados Unidos)" #: ../picard/const.py:774 msgid "Spanish Uruguay" -msgstr "" +msgstr "Espanhol (Uruguai)" #: ../picard/const.py:775 msgid "Spanish Venezuela" -msgstr "" +msgstr "Espanhol (Venezuela)" #: ../picard/const.py:776 msgid "Swahili" -msgstr "" +msgstr "Suaíli" #: ../picard/const.py:777 msgid "Swahili Kenya" -msgstr "" +msgstr "Suaíli (Quênia)" #: ../picard/const.py:778 msgid "Swahili Tanzania" -msgstr "" +msgstr "Suaíli (Tanzânia)" #: ../picard/const.py:779 msgid "Swati" -msgstr "" +msgstr "Suázi" #: ../picard/const.py:780 msgid "Swati South Africa" -msgstr "" +msgstr "Suázi (África do Sul)" #: ../picard/const.py:781 msgid "Swati Swaziland" -msgstr "" +msgstr "Suázi (Suazilândia)" #: ../picard/const.py:783 msgid "Swedish Finland" -msgstr "" +msgstr "Sueco (Finlândia)" #: ../picard/const.py:784 msgid "Swedish Sweden" -msgstr "" +msgstr "Sueco (Suécia)" #: ../picard/const.py:785 msgid "Swiss German" -msgstr "" +msgstr "Suíço-alemão" #: ../picard/const.py:786 msgid "Swiss German Switzerland" -msgstr "" +msgstr "Suíço-alemão (Suíça)" #: ../picard/const.py:787 msgid "Syriac" -msgstr "" +msgstr "Siríaco" #: ../picard/const.py:788 msgid "Syriac Syria" -msgstr "" +msgstr "Siríaco (Síria)" #: ../picard/const.py:789 msgid "Tagalog" -msgstr "" +msgstr "Tagalo" #: ../picard/const.py:790 msgid "Tajik" -msgstr "" +msgstr "Tadjique" #: ../picard/const.py:791 msgid "Tajik Cyrillic" -msgstr "" +msgstr "Tadjique Cirílico" #: ../picard/const.py:792 msgid "Tajik Cyrillic Tajikistan" -msgstr "" +msgstr "Tadjique Cirílico (Tadjiquistão)" #: ../picard/const.py:793 msgid "Tajik Tajikistan" -msgstr "" +msgstr "Tadjique (Tadjiquistão)" #: ../picard/const.py:795 msgid "Tamil India" -msgstr "" +msgstr "Tâmil (Índia)" #: ../picard/const.py:796 msgid "Taroko" -msgstr "" +msgstr "Taroko" #: ../picard/const.py:797 msgid "Taroko Taiwan" -msgstr "" +msgstr "Taroko (Taiwan)" #: ../picard/const.py:798 msgid "Tatar" -msgstr "" +msgstr "Tártaro" #: ../picard/const.py:799 msgid "Tatar Russia" -msgstr "" +msgstr "Tártaro (Rússia)" #: ../picard/const.py:800 msgid "Telugu" -msgstr "" +msgstr "Telugu" #: ../picard/const.py:801 msgid "Telugu India" -msgstr "" +msgstr "Telugu (Índia)" #: ../picard/const.py:802 msgid "Thai" -msgstr "" +msgstr "Tailandês" #: ../picard/const.py:803 msgid "Thai Thailand" -msgstr "" +msgstr "Tailandês (Tailândia)" #: ../picard/const.py:804 msgid "Tibetan" -msgstr "" +msgstr "Tibetano" #: ../picard/const.py:805 msgid "Tibetan China" -msgstr "" +msgstr "Tibetano (China)" #: ../picard/const.py:806 msgid "Tibetan India" -msgstr "" +msgstr "Tibetano (Índia)" #: ../picard/const.py:807 msgid "Tigre" -msgstr "" +msgstr "Tigré" #: ../picard/const.py:808 msgid "Tigre Eritrea" -msgstr "" +msgstr "Tigré (Eritréia)" #: ../picard/const.py:809 msgid "Tigrinya" -msgstr "" +msgstr "Tigrínia" #: ../picard/const.py:810 msgid "Tigrinya Eritrea" -msgstr "" +msgstr "Tigrínia (Eritréia)" #: ../picard/const.py:811 msgid "Tigrinya Ethiopia" -msgstr "" +msgstr "Tigrínia (Etiópia)" #: ../picard/const.py:813 msgid "Tonga Tonga" -msgstr "" +msgstr "Tonga (Tonga)" #: ../picard/const.py:814 msgid "Tsonga" -msgstr "" +msgstr "Tsonga" #: ../picard/const.py:815 msgid "Tsonga South Africa" -msgstr "" +msgstr "Tsonga (África do Sul)" #: ../picard/const.py:816 msgid "Tswana" -msgstr "" +msgstr "Tswana" #: ../picard/const.py:817 msgid "Tswana South Africa" -msgstr "" +msgstr "Tswana (África do Sul)" #: ../picard/const.py:819 msgid "Turkish Turkey" -msgstr "" +msgstr "Turco (Turquia)" #: ../picard/const.py:820 msgid "Tyap" -msgstr "" +msgstr "Tyap" #: ../picard/const.py:821 msgid "Tyap Nigeria" -msgstr "" +msgstr "Tyap (Nigéria)" #: ../picard/const.py:822 msgid "Uighur" -msgstr "" +msgstr "Uigur" #: ../picard/const.py:823 msgid "Uighur Arabic" -msgstr "" +msgstr "Uigur Árabe" #: ../picard/const.py:824 msgid "Uighur Arabic China" -msgstr "" +msgstr "Uigur Árabe (China)" #: ../picard/const.py:825 msgid "Uighur China" -msgstr "" +msgstr "Uigur (China)" #: ../picard/const.py:827 msgid "Ukrainian Ukraine" -msgstr "" +msgstr "Ucraniano (Ucrânia)" #: ../picard/const.py:828 msgid "Urdu" -msgstr "" +msgstr "Urdu" #: ../picard/const.py:829 msgid "Urdu India" -msgstr "" +msgstr "Urdu (Índia)" #: ../picard/const.py:830 msgid "Urdu Pakistan" -msgstr "" +msgstr "Urdu (Paquistão)" #: ../picard/const.py:831 msgid "Uzbek" -msgstr "" +msgstr "Uzbeque" #: ../picard/const.py:832 msgid "Uzbek Afghanistan" -msgstr "" +msgstr "Uzbeque (Afeganistão)" #: ../picard/const.py:833 msgid "Uzbek Arabic" -msgstr "" +msgstr "Uzbeque Árabe" #: ../picard/const.py:834 msgid "Uzbek Arabic Afghanistan" -msgstr "" +msgstr "Uzbeque Árabe (Afeganistão)" #: ../picard/const.py:835 msgid "Uzbek Cyrillic" -msgstr "" +msgstr "Uzbeque Cirílico" #: ../picard/const.py:836 msgid "Uzbek Cyrillic Uzbekistan" -msgstr "" +msgstr "Uzbeque Cirílico (Uzbequistão)" #: ../picard/const.py:837 msgid "Uzbek Latin" -msgstr "" +msgstr "Uzbeque Latino" #: ../picard/const.py:838 msgid "Uzbek Latin Uzbekistan" -msgstr "" +msgstr "Uzbeque Latino (Uzbequistão)" #: ../picard/const.py:839 msgid "Uzbek Uzbekistan" -msgstr "" +msgstr "Uzbeque (Uzbequistão)" #: ../picard/const.py:840 msgid "Venda" -msgstr "" +msgstr "Venda" #: ../picard/const.py:841 msgid "Venda South Africa" -msgstr "" +msgstr "Venda (África do Sul)" #: ../picard/const.py:842 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamita" #: ../picard/const.py:843 msgid "Vietnamese Vietnam" -msgstr "" +msgstr "Vietnamita (Vietnã)" #: ../picard/const.py:844 msgid "Walamo" -msgstr "" +msgstr "Walamo" #: ../picard/const.py:845 msgid "Walamo Ethiopia" -msgstr "" +msgstr "Walamo (Etiópia)" #: ../picard/const.py:847 msgid "Welsh United Kingdom" -msgstr "" +msgstr "Galês (Reino Unido)" #: ../picard/const.py:848 msgid "Wolof" -msgstr "" +msgstr "Wolof" #: ../picard/const.py:849 msgid "Wolof Latin" -msgstr "" +msgstr "Wolof Latino" #: ../picard/const.py:850 msgid "Wolof Latin Senegal" -msgstr "" +msgstr "Wolof Latino (Senegal)" #: ../picard/const.py:851 msgid "Wolof Senegal" -msgstr "" +msgstr "Wolof (Senegal)" #: ../picard/const.py:852 msgid "Xhosa" -msgstr "" +msgstr "Xhosa" #: ../picard/const.py:853 msgid "Xhosa South Africa" -msgstr "" +msgstr "Xhosa (África do Sul)" #: ../picard/const.py:854 msgid "Yoruba" -msgstr "" +msgstr "Iorubá" #: ../picard/const.py:855 msgid "Yoruba Nigeria" -msgstr "" +msgstr "Iorubá (Nigéria)" #: ../picard/const.py:856 msgid "Zulu" -msgstr "" +msgstr "Zulu" #: ../picard/const.py:857 msgid "Zulu South Africa" -msgstr "" +msgstr "Zulu (África do Sul)" #: ../picard/file.py:513 #, python-format @@ -3084,7 +3084,7 @@ msgstr "Não foi possível encontrar um PUID para o arquivo %s" #: ../picard/acoustid.py:106 #, python-format msgid "Could not find AcoustID for file %s" -msgstr "" +msgstr "Não foi possível encontrar um AcoustID para o arquivo %s" #: ../picard/acoustid.py:110 ../picard/musicdns/__init__.py:100 #, python-format @@ -3093,16 +3093,16 @@ msgstr "Procurando pela fingerprint do arquivo %s..." #: ../picard/acoustidmanager.py:72 msgid "Submitting AcoustIDs..." -msgstr "" +msgstr "Enviando AcoustIDs..." #: ../picard/acoustidmanager.py:77 #, python-format msgid "AcoustID submission failed: %s" -msgstr "" +msgstr "Falha no envio do AcoustID: %s" #: ../picard/acoustidmanager.py:79 msgid "AcoustIDs successfully submitted!" -msgstr "" +msgstr "Os AcoustIDs foram enviadas com sucesso!" #: ../picard/cluster.py:165 ../picard/cluster.py:176 #, python-format @@ -3328,11 +3328,11 @@ msgstr "MusicIP Fingerprint" #: ../picard/util/tags.py:59 msgid "AcoustID" -msgstr "" +msgstr "AcoustID" #: ../picard/util/tags.py:60 msgid "AcoustID Fingerprint" -msgstr "" +msgstr "Impressão digital do AcoustID" #: ../picard/util/tags.py:61 msgid "Disc Id" @@ -3494,7 +3494,7 @@ msgstr "Autor" #: ../picard/ui/ui_options_plugins.py:135 msgid "Install plugin..." -msgstr "" +msgstr "Instalar plugin..." #: ../picard/ui/ui_options_plugins.py:136 msgid "Open plugin folder" @@ -3569,7 +3569,7 @@ msgstr "Usar sintaxe de consulta avançada" #: ../picard/ui/ui_options_interface.py:62 msgid "Show a quit confirmation dialog for unsaved changes" -msgstr "" +msgstr "Mostre uma janela de confirmação para alterações não salvas" #: ../picard/ui/ui_options_interface.py:63 msgid "User interface language:" @@ -3708,11 +3708,11 @@ msgstr "Log" #: ../picard/ui/cdlookup.py:33 msgid "Labels" -msgstr "" +msgstr "Rótulos" #: ../picard/ui/cdlookup.py:33 msgid "Catalog #s" -msgstr "" +msgstr "Catálogo #s" #: ../picard/ui/tagsfromfilenames.py:54 ../picard/ui/tagsfromfilenames.py:99 msgid "File Name" @@ -3873,7 +3873,7 @@ msgstr "Unidade de CD-ROM padrão a ser usada para buscas:" #: ../picard/ui/ui_options_fingerprinting.py:68 msgid "Fingerprinting Systems" -msgstr "" +msgstr "Sistemas de impressão de digital" #: ../picard/ui/ui_options_fingerprinting.py:69 msgid "Use AmpliFIND (formerly MusicDNS)" @@ -3881,27 +3881,27 @@ msgstr "" #: ../picard/ui/ui_options_fingerprinting.py:70 msgid "Use AcoustID" -msgstr "" +msgstr "Usar AcoustID" #: ../picard/ui/ui_options_fingerprinting.py:71 msgid "AcoustID's Settings" -msgstr "" +msgstr "Configurações do AcoustID" #: ../picard/ui/ui_options_fingerprinting.py:72 msgid "Fingerprinter:" -msgstr "" +msgstr "Gerador de impressões digitais:" #: ../picard/ui/ui_options_fingerprinting.py:74 msgid "Download..." -msgstr "" +msgstr "Baixar..." #: ../picard/ui/ui_options_fingerprinting.py:75 msgid "API key:" -msgstr "" +msgstr "Chave API:" #: ../picard/ui/ui_options_fingerprinting.py:76 msgid "Get API key..." -msgstr "" +msgstr "Obter chave API..." #: ../picard/ui/puidsubmit.py:31 ../picard/ui/options/plugins.py:125 msgid "File" @@ -3976,11 +3976,11 @@ msgstr "Novos metadados" #: ../picard/ui/mainwindow.py:136 msgid "Unsaved Changes" -msgstr "" +msgstr "Alterações não salvas" #: ../picard/ui/mainwindow.py:137 msgid "Are you sure you want to quit Picard?" -msgstr "" +msgstr "Você tem certeza que deseja sair do Picard?" #: ../picard/ui/mainwindow.py:139 #, python-format @@ -3989,7 +3989,11 @@ msgid "" msgid_plural "" "There are %s unsaved files. Closing Picard will lose all unsaved changes." msgstr[0] "" +"Existe %s arquivo não salvo. Ao fechar o Picard todas as alterações não " +"salvas serão perdidas." msgstr[1] "" +"Existem %s arquivos não salvos. Ao fechar o Picard todas as alterações não " +"salvas serão perdidas." #: ../picard/ui/mainwindow.py:145 msgid "&Quit Picard" @@ -4002,13 +4006,15 @@ msgstr "" #: ../picard/ui/mainwindow.py:225 msgid "Submission Error" -msgstr "" +msgstr "Erro na submissão" #: ../picard/ui/mainwindow.py:226 msgid "" "You need to configure your AcoustID API key before you can submit " "fingerprints." msgstr "" +"Você precisa configurar sua chave API do AcoustID antes de enviar as " +"impressões digitais." #: ../picard/ui/mainwindow.py:234 msgid "&Options..." @@ -4077,7 +4083,7 @@ msgstr "" #: ../picard/ui/mainwindow.py:285 msgid "Submit fingerprints" -msgstr "" +msgstr "Enviar impressões digitais" #: ../picard/ui/mainwindow.py:289 msgid "E&xit" @@ -4274,7 +4280,7 @@ msgstr "Metadados" #: ../picard/ui/ui_options_metadata.py:251 msgid "Translate artist names to this locale where possible:" -msgstr "" +msgstr "Traduza os nomes dos artistas para esta localização quando possível:" #: ../picard/ui/ui_options_metadata.py:252 msgid "Convert Unicode punctuation characters to ASCII" @@ -4306,15 +4312,15 @@ msgstr "" #: ../picard/ui/ui_options_metadata.py:259 msgid "Track titles" -msgstr "" +msgstr "Títulos das faixas" #: ../picard/ui/ui_options_metadata.py:260 msgid "Release titles" -msgstr "" +msgstr "Títulos de lançamento" #: ../picard/ui/ui_options_metadata.py:261 msgid "Artist names" -msgstr "" +msgstr "Nomes dos artistas" #: ../picard/ui/ui_options_metadata.py:262 msgid "Custom Fields" @@ -4326,7 +4332,7 @@ msgstr "Vários artistas:" #: ../picard/ui/ui_options_releases.py:215 msgid "Form" -msgstr "" +msgstr "Formulário" #: ../picard/ui/ui_options_releases.py:216 msgid "Preferred release types" @@ -4375,16 +4381,16 @@ msgstr "" #: ../picard/ui/ui_options_releases.py:230 #: ../picard/ui/ui_options_releases.py:233 msgid ">" -msgstr "" +msgstr ">" #: ../picard/ui/ui_options_releases.py:231 #: ../picard/ui/ui_options_releases.py:234 msgid "<" -msgstr "" +msgstr "<" #: ../picard/ui/ui_options_releases.py:232 msgid "Preferred release formats" -msgstr "" +msgstr "Formatos preferidos de lançamento" #: ../picard/ui/itemviews.py:83 msgid "Length" @@ -4400,11 +4406,11 @@ msgstr "Fe&char todos" #: ../picard/ui/itemviews.py:373 msgid "&Other versions" -msgstr "" +msgstr "&Outras versões" #: ../picard/ui/itemviews.py:376 msgid "Loading..." -msgstr "" +msgstr "Carregando..." #: ../picard/ui/itemviews.py:387 msgid "[no release info]" @@ -4495,11 +4501,14 @@ msgstr "" " André Gondim https://launchpad.net/~andregondim\n" " Daniel Tiecher https://launchpad.net/~daniel-anderson-tiecher\n" " Diogo Gomes https://launchpad.net/~diogomes\n" +" Eduardo Bastos Rocha https://launchpad.net/~eduardorochacg\n" " Guilherme Augusto Peixoto https://launchpad.net/~guilhermeapeixot\n" " Lukáš Lalinský https://launchpad.net/~luks\n" " Mario A. C. Silva (Exp4nsion) https://launchpad.net/~marioancelmo\n" +" Neliton Pereira Jr https://launchpad.net/~nelitonpjr\n" " Philipp Wolfer https://launchpad.net/~phw\n" -" Rosiney Gomes Pereira https://launchpad.net/~rosiney-gp" +" Rosiney Gomes Pereira https://launchpad.net/~rosiney-gp\n" +" Samuel William Cortes Rodrigues https://launchpad.net/~samuelwcr" #. Replace LANG with language you are translatig to. #: ../picard/ui/options/about.py:51 diff --git a/po/update-pot.py b/po/update-pot.py new file mode 100755 index 000000000..082223cac --- /dev/null +++ b/po/update-pot.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python + +import glob +import os.path +import shutil + +sources = [] +for root, dirs, files in os.walk(os.path.join('..', 'picard')): + for name in files: + if name.endswith('.py'): + sources.append(os.path.join(root, name)) + +cmd = "xgettext --copyright-holder=MusicBrainz " \ + "--msgid-bugs-address=http://tickets.musicbrainz.org/ " \ + "--add-comments=TR -L Python -d picard -o picard.pot --keyword=N_ " + \ + " ".join(sources) + +print cmd +os.system(cmd) +print + +f = file('picard.pot', 'rt') +lines = f.readlines() +f.close() +f = file('picard.pot', 'wt') +for line in lines: + if line.startswith('#. TR: '): + line = '#. ' + line[7:] + f.write(line) +f.close() + diff --git a/setup.py b/setup.py index 8938be617..ee28df87a 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- import glob, re -import os.path +import os import sys from StringIO import StringIO from ConfigParser import RawConfigParser @@ -29,8 +29,10 @@ try: 'argv_emulation' : True, 'iconfile' : 'picard.icns', 'frameworks' : ['libofa.0.dylib', 'libiconv.2.dylib', 'libdiscid.0.dylib'], - 'includes' : ['sip', 'PyQt4.Qt', 'picard.util.astrcmp', 'picard.musicdns.ofa', 'picard.musicdns.avcodec'], - 'excludes' : ['pydoc'], + 'includes' : ['sip', 'PyQt4', 'picard.util.astrcmp', 'picard.musicdns.ofa', 'picard.musicdns.avcodec'], + 'excludes' : ['pydoc', 'PyQt4.QtDeclarative', 'PyQt4.QtDesigner', 'PyQt4.QtHelp', 'PyQt4.QtMultimedia', + 'PyQt4.QtOpenGL', 'PyQt4.QtScript', 'PyQt4.QtScriptTools', 'PyQt4.QtSql', 'PyQt4.QtSvg', + 'PyQt4.QtTest', 'PyQt4.QtWebKit', 'PyQt4.QtXmlPatterns', 'PyQt4.phonon'], 'plist' : { 'CFBundleName' : 'MusicBrainz Picard', 'CFBundleGetInfoString' : 'Picard, the next generation MusicBrainz tagger (see http://musicbrainz.org/doc/MusicBrainz_Picard)', 'CFBundleIdentifier':'org.musicbrainz.picard', @@ -486,9 +488,8 @@ try: generate_file('scripts/picard.py2exe.in', 'scripts/picard', {}) self.distribution.data_files.append( ("", ["discid.dll", "libfftw3-3.dll", "libofa.dll", - "python27.dll", "msvcr90.dll", "msvcp90.dll", "avcodec-53.dll", "avformat-53.dll", "avutil-51.dll", - "libstdc++-6.dll"])) + "fpcalc.exe", "msvcr90.dll", "msvcp90.dll"])) for locale in self.distribution.locales: self.distribution.data_files.append( ("locale/" + locale[1] + "/LC_MESSAGES", @@ -541,11 +542,41 @@ def find_file_in_path(filename): return file_path if do_py2app: + from subprocess import call + from py2app.util import copy_file, find_app + from PyQt4 import QtCore + class BuildAPP(py2app): def run(self): py2app.run(self) - args['scripts'] = [ 'tagger.py' ] + # XXX py2app can't copy Qt plugins. + plugins = os.path.join(unicode(QtCore.QLibraryInfo.location(QtCore.QLibraryInfo.PluginsPath)), "imageformats") + dest = os.path.abspath("dist/MusicBrainz Picard.app/Contents/plugins/imageformats") + self.mkpath(dest) + for lib in ("libqgif.dylib", "libqjpeg.dylib", "libqtiff.dylib"): + src_file = os.path.join(plugins, lib) + if os.path.isfile(src_file): + dest_file = os.path.join(dest, lib) + copy_file(src_file, dest_file) + call(["install_name_tool", "-change", "QtCore.framework/Versions/4/QtCore", "@executable_path/../Frameworks/QtCore.framework/Versions/4/QtCore", dest_file]) + call(["install_name_tool", "-change", "QtGui.framework/Versions/4/QtGui", "@executable_path/../Frameworks/QtGui.framework/Versions/4/QtGui", dest_file]) + + # XXX Without qt.conf, launching the app bundle results in a ton of warnings about + # "loading two sets of Qt binaries into the same process," followed by it crashing. + # Tools like macdeployqt create this file automatically, with the same contents. + fp = open("dist/MusicBrainz Picard.app/Contents/Resources/qt.conf", "w") + fp.writelines(["[Paths]", "Prefix="]) + fp.close() + + # XXX Find and bundle fpcalc, since py2app can't. + fpcalc = find_app("fpcalc") + if fpcalc: + dest_fpcalc = os.path.abspath("dist/MusicBrainz Picard.app/Contents/MacOS/fpcalc") + copy_file(fpcalc, dest_fpcalc) + os.chmod(dest_fpcalc, 0755) + + args['scripts'] = ['tagger.py'] args['cmdclass']['py2app'] = BuildAPP # FIXME: this should check for the actual command ('install' vs. 'bdist_nsis', 'py2app', ...), not installed libraries