diff --git a/setup/install.py b/setup/install.py index be786f326c..b1698d88ed 100644 --- a/setup/install.py +++ b/setup/install.py @@ -311,6 +311,16 @@ class Sdist(Command): dest = os.path.join(tdir, self.d(f)) shutil.copy2(f, dest) + tbase = self.j(self.d(self.d(self.SRC)), 'calibre-translations') + for x in ('setup/iso_639', 'src/calibre/translations'): + destdir = self.j(tdir, x) + if not os.path.exists(destdir): + os.mkdir(destdir) + for y in glob.glob(self.j(tbase, x, '*')): + dest = self.j(destdir, self.b(y)) + if y.rpartition('.')[-1] not in {'pyc', 'pyo'} and not os.path.exists(dest): + shutil.copy2(y, dest) + self.info('\tCreating tarfile...') subprocess.check_call(['tar', '-cJf', self.a(self.DEST), 'calibre'], cwd=self.d(tdir)) diff --git a/setup/translations.py b/setup/translations.py index bb108e106d..17c8d10018 100644 --- a/setup/translations.py +++ b/setup/translations.py @@ -21,30 +21,21 @@ def qt_sources(): class POT(Command): # {{{ description = 'Update the .pot translation template and upload it' - POT_PATH = os.path.join(__appname__, 'translations') - PATH = os.path.join(Command.SRC, POT_PATH) - LP_SRC = os.path.join(os.path.dirname(os.path.dirname(Command.SRC)), 'calibre-translations', 'src') - LP_PATH = os.path.join(LP_SRC, POT_PATH) + LP_BASE = os.path.join(os.path.dirname(os.path.dirname(Command.SRC)), 'calibre-translations') + LP_SRC = os.path.join(LP_BASE, 'src') + LP_PATH = os.path.join(LP_SRC, os.path.join(__appname__, 'translations')) + LP_ISO_PATH = os.path.join(LP_BASE, 'setup', 'iso_639') def upload_pot(self, pot): - upot = os.path.join(self.LP_PATH, os.path.basename(pot)) - with open(pot, 'rb') as src, open(upot, 'wb') as dest: - shutil.copyfileobj(src, dest) - if subprocess.check_output(['git', 'status', '-z', pot]): - # pot has changed - msg = 'Updated translations template' - subprocess.check_call(['bzr', 'commit', '-m', msg, upot]) - subprocess.check_call(['git', 'commit', '-m', msg, pot]) - subprocess.check_call(['git', 'push']) - else: - print ('No updated translations') + msg = 'Updated translations template' + subprocess.check_call(['bzr', 'commit', '-m', msg, pot]) def source_files(self): ans = [] - for root, _, files in os.walk(os.path.dirname(self.PATH)): + for root, _, files in os.walk(self.j(self.SRC, __appname__)): for name in files: if name.endswith('.py'): - ans.append(os.path.abspath(os.path.join(root, name))) + ans.append(self.a(self.j(root, name))) return ans def get_tweaks_docs(self): @@ -128,7 +119,7 @@ class POT(Command): # {{{ os.remove(out.name) src = pot_header + '\n' + src src += '\n\n' + self.get_tweaks_docs() - pot = os.path.join(self.PATH, __appname__+'.pot') + pot = os.path.join(self.LP_PATH, __appname__+'.pot') with open(pot, 'wb') as f: f.write(src) self.info('Translations template:', os.path.abspath(pot)) @@ -143,7 +134,7 @@ class Translations(POT): # {{{ 'locales') def po_files(self): - return glob.glob(os.path.join(self.PATH, '*.po')) + return glob.glob(os.path.join(self.LP_PATH, '*.po')) def mo_file(self, po_file): locale = os.path.splitext(os.path.basename(po_file))[0] @@ -159,8 +150,7 @@ class Translations(POT): # {{{ self.info('\tCompiling translations for', locale) subprocess.check_call(['msgfmt', '-o', dest, f]) iscpo = {'bn':'bn_IN', 'zh_HK':'zh_CN'}.get(locale, locale) - iso639 = self.j(self.d(self.SRC), 'setup', 'iso_639', - '%s.po'%iscpo) + iso639 = self.j(self.LP_ISO_PATH, '%s.po'%iscpo) if os.path.exists(iso639): self.check_iso639(iso639) @@ -227,7 +217,7 @@ class Translations(POT): # {{{ if not self.newer(dest, files): return self.info('Calculating translation statistics...') - raw = self.get_stats(self.j(self.PATH, 'calibre.pot')) + raw = self.get_stats(self.j(self.LP_PATH, 'calibre.pot')) total = int(raw.split(',')[-1].strip().split()[0]) stats = {} for f in files: @@ -242,13 +232,6 @@ class Translations(POT): # {{{ def clean(self): if os.path.exists(self.stats): os.remove(self.stats) - for f in self.po_files(): - l, d = self.mo_file(f) - i = self.j(self.d(d), 'iso639.mo') - j = self.j(self.d(d), 'qt.qm') - for x in (i, j, d): - if os.path.exists(x): - os.remove(x) zf = self.DEST + '.zip' if os.path.exists(zf): os.remove(zf) @@ -294,23 +277,9 @@ class GetTranslations(Translations): # {{{ if self.modified_translations: subprocess.check_call(['bzr', 'commit', '-m', self.CMSG], cwd=self.LP_BASE) - self.copy_translations() else: print('No updated translations available') - def copy_translations(self): - changed = set() - for src in glob.glob(os.path.join(self.LP_PATH, '*.po')): - dest = os.path.join(self.PATH, os.path.basename(src)) - with open(src, 'rb') as fsrc, open(dest, 'wb') as fdst: - shutil.copyfileobj(fsrc, fdst) - if subprocess.check_output(['git', 'status', '-z', dest]): - changed.add(dest) - if changed: - subprocess.check_call(['git', 'commit', '--author', 'Translators', - '-m', self.CMSG] + list(changed)) - subprocess.check_call(['git', 'push']) - def check_for_errors(self): errors = os.path.join(tempfile.gettempdir(), 'calibre-translation-errors') if os.path.exists(errors): @@ -353,7 +322,7 @@ class ISO639(Command): # {{{ 'iso639.pickle') def run(self, opts): - src = self.j(self.d(self.SRC), 'setup', 'iso_639') + src = POT.LP_ISO_PATH if not os.path.exists(src): raise Exception(src + ' does not exist') dest = self.DEST diff --git a/translations/calibre/calibre.pot b/translations/calibre/calibre.pot deleted file mode 100644 index 82e1d20139..0000000000 --- a/translations/calibre/calibre.pot +++ /dev/null @@ -1,21227 +0,0 @@ -# Translation template file.. -# Copyright (C) 2013 Kovid Goyal -# Kovid Goyal , 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: calibre 0.9.32\n" -"POT-Creation-Date: 2013-05-29 09:26+IST\n" -"PO-Revision-Date: 2013-05-29 09:26+IST\n" -"Last-Translator: Automatically generated\n" -"Language-Team: LANGUAGE\n" -"MIME-Version: 1.0\n" -"Report-Msgid-Bugs-To: https://bugs.launchpad.net/calibre\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56 -msgid "Does absolutely nothing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:59 -#: /home/kovid/work/calibre/src/calibre/db/backend.py:840 -#: /home/kovid/work/calibre/src/calibre/db/cache.py:148 -#: /home/kovid/work/calibre/src/calibre/db/cache.py:151 -#: /home/kovid/work/calibre/src/calibre/db/cache.py:162 -#: /home/kovid/work/calibre/src/calibre/db/cache.py:716 -#: /home/kovid/work/calibre/src/calibre/db/cache.py:717 -#: /home/kovid/work/calibre/src/calibre/db/cache.py:858 -#: /home/kovid/work/calibre/src/calibre/db/write.py:152 -#: /home/kovid/work/calibre/src/calibre/db/write.py:156 -#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:387 -#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:388 -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114 -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115 -#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74 -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:669 -#: /home/kovid/work/calibre/src/calibre/devices/mtp/books.py:45 -#: /home/kovid/work/calibre/src/calibre/devices/mtp/books.py:69 -#: /home/kovid/work/calibre/src/calibre/devices/mtp/unix/driver.py:248 -#: /home/kovid/work/calibre/src/calibre/devices/mtp/windows/driver.py:238 -#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:70 -#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:71 -#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:661 -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:468 -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:469 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:480 -#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:57 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/chm_input.py:185 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:189 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/fb2_input.py:99 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/fb2_input.py:101 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/html_input.py:118 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/html_input.py:121 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:29 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdb_input.py:27 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:28 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:29 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/rtf_input.py:289 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/rtf_input.py:291 -#: /home/kovid/work/calibre/src/calibre/ebooks/docx/container.py:196 -#: /home/kovid/work/calibre/src/calibre/ebooks/docx/to_html.py:56 -#: /home/kovid/work/calibre/src/calibre/ebooks/epub/periodical.py:140 -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1897 -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1899 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:312 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:35 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:36 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:37 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:67 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:464 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:469 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:703 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:742 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/ereader.py:36 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/ereader.py:61 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/extz.py:23 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/fb2.py:48 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/fb2.py:109 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/meta.py:36 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/meta.py:64 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/meta.py:66 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/meta.py:120 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/meta.py:122 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/mobi.py:489 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/mobi.py:491 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/mobi.py:493 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1193 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1303 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdb.py:44 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:106 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/plucker.py:25 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pml.py:23 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pml.py:49 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/rtf.py:88 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/rtf.py:91 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/rtf.py:101 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/snb.py:16 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/base.py:32 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/base.py:334 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/covers.py:86 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/covers.py:88 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/douban.py:78 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google.py:79 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/identify.py:260 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/identify.py:366 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/identify.py:368 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/identify.py:469 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/ozon.py:58 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/ozon.py:129 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/worker.py:27 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/txt.py:18 -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader/headers.py:28 -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader/headers.py:98 -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader/headers.py:162 -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader/headers.py:201 -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader/mobi6.py:618 -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:317 -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:464 -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer8/main.py:335 -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer8/main.py:428 -#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:265 -#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:267 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:899 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/iterator/spine.py:63 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:360 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:363 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:367 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:143 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:150 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:80 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:128 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:135 -#: /home/kovid/work/calibre/src/calibre/ebooks/pdb/ereader/writer.py:173 -#: /home/kovid/work/calibre/src/calibre/ebooks/pdb/ereader/writer.py:174 -#: /home/kovid/work/calibre/src/calibre/ebooks/pdb/palmdoc/writer.py:29 -#: /home/kovid/work/calibre/src/calibre/ebooks/pdb/ztxt/writer.py:27 -#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/render/links.py:137 -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:451 -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:459 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:171 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:504 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:507 -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:167 -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:174 -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:721 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:125 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:144 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:146 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1433 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1436 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_empty_book.py:71 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_empty_book.py:79 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/book_info.py:136 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf.py:47 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:835 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:381 -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:193 -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:208 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:491 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1196 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1422 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1425 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1428 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1516 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:88 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:253 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:264 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/diff.py:83 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:426 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:177 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:181 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:202 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/google_books_plugin.py:89 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:209 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:923 -#: /home/kovid/work/calibre/src/calibre/library/cli.py:245 -#: /home/kovid/work/calibre/src/calibre/library/database.py:914 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:573 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:581 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:592 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:2269 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:2422 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:2872 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:3511 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:3513 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:3651 -#: /home/kovid/work/calibre/src/calibre/library/server/content.py:249 -#: /home/kovid/work/calibre/src/calibre/library/server/content.py:250 -#: /home/kovid/work/calibre/src/calibre/library/server/mobile.py:247 -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:160 -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:163 -#: /home/kovid/work/calibre/src/calibre/library/server/xml.py:79 -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:191 -#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/collection.py:45 -#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/collection.py:53 -msgid "Unknown" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:77 -msgid "Base" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:148 -#: /home/kovid/work/calibre/src/calibre/ebooks/html/to_zip.py:81 -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:397 -msgid "Customize" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:156 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:54 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:59 -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:357 -msgid "Cannot configure" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:331 -msgid "File type" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:377 -msgid "Metadata reader" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:407 -msgid "Metadata writer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:437 -msgid "Catalog generator" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:560 -msgid "User Interface Action" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:594 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:20 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:28 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:197 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:288 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:311 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:228 -msgid "Preferences" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:646 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:39 -msgid "Store" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:650 -msgid "An ebook store." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:21 -msgid "Create a PMLZ archive containing the PML file and all images in the directory pmlname_img or images. This plugin is run every time you add a PML file to the library." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:51 -msgid "Create a TXTZ archive when a TXT file is imported containing Markdown or Textile references to images. The referenced images as well as the TXT file are added to the archive." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:131 -msgid "Extract cover from comic files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:168 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:179 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:191 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:201 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:211 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:222 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:233 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:243 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:253 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:263 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:273 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:283 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:293 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:303 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:314 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:326 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:347 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:358 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:368 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:379 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:389 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:400 -#, python-format -msgid "Read metadata from %s files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:337 -msgid "Read metadata from ebooks in RAR archives" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:411 -msgid "Read metadata from ebooks in ZIP archives" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:428 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:438 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:459 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:469 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:491 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:502 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:512 -#, python-format -msgid "Set metadata in %s files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:448 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:480 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:523 -#, python-format -msgid "Set metadata from %s files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:772 -msgid "Add books to calibre or the connected device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:777 -msgid "Fetch annotations from a connected Kindle (experimental)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:782 -msgid "Generate a catalog of the books in your calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:787 -msgid "Convert books to various ebook formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:792 -msgid "Fine tune your ebooks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:797 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/toc_edit.py:63 -msgid "Edit the Table of Contents in your books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:802 -msgid "Delete books from your calibre library or connected device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:807 -msgid "Edit the metadata of books in your calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:812 -msgid "Read books in your calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:817 -msgid "Download news from the internet in ebook form" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:822 -msgid "Show a list of related books quickly" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:827 -msgid "Export books from your calibre library to the hard disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:832 -msgid "Show book details in a separate popup" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:837 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/restart.py:14 -msgid "Restart calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:842 -msgid "Open the folder that contains the book files in your calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:848 -msgid "Send books to the connected device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:853 -msgid "Send books via email or the web also connect to iTunes or folders on your computer as if they are devices" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:859 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/help.py:16 -msgid "Browse the calibre User Manual" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:864 -msgid "Customize calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:869 -msgid "Easily find books similar to the currently selected one" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:874 -msgid "Switch between different calibre libraries and perform maintenance on them" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:880 -msgid "Copy books from the devce to your calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:885 -msgid "Edit the collections in which books are placed on your device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:890 -msgid "Copy a book from one calibre library to another" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:895 -msgid "Make small tweaks to epub or htmlz files in your calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:900 -msgid "Find the next or previous match when searching in your calibre library in highlight mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:906 -msgid "Choose a random book from your calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:913 -msgid "Search for books from different book sellers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:929 -msgid "Get new calibre plugins or update your existing ones" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:948 -msgid "Look and Feel" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:950 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:962 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:973 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:984 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:996 -msgid "Interface" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:954 -msgid "Adjust the look and feel of the calibre interface to suit your tastes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:960 -msgid "Behavior" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:966 -msgid "Change the way calibre behaves" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:971 -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:347 -msgid "Add your own columns" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:977 -msgid "Add/remove your own columns to the calibre book list" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:982 -msgid "Toolbar" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:988 -msgid "Customize the toolbars and context menus, changing which actions are available in each" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:994 -msgid "Searching" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1000 -msgid "Customize the way searching for books works in calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1005 -msgid "Input Options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1007 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1018 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1029 -msgid "Conversion" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1011 -msgid "Set conversion options specific to each input format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1016 -msgid "Common Options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1022 -msgid "Set conversion options common to all formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1027 -msgid "Output Options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1033 -msgid "Set conversion options specific to each output format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1038 -msgid "Adding books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1040 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1052 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1064 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1076 -msgid "Import/Export" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1044 -msgid "Control how calibre reads metadata from files when adding books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1050 -msgid "Saving books to disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1056 -msgid "Control how calibre exports files from its database to disk when using Save to disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1062 -msgid "Sending books to devices" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1068 -msgid "Control how calibre transfers files to your ebook reader" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1074 -msgid "Metadata plugboards" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1080 -msgid "Change metadata fields before saving/sending" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1085 -msgid "Template Functions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1087 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1147 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1159 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1170 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1181 -msgid "Advanced" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1091 -msgid "Create your own template functions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1096 -msgid "Sharing books by email" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1098 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1110 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1123 -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1134 -msgid "Sharing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1102 -msgid "Setup sharing of books via email. Can be used for automatic sending of downloaded news to your devices" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1108 -msgid "Sharing over the net" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1114 -msgid "Setup the calibre Content Server which will give you access to your calibre library from anywhere, on any device, over the internet" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1121 -msgid "Metadata download" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1127 -msgid "Control how calibre downloads ebook metadata from the net" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1132 -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:400 -msgid "Ignored devices" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1138 -msgid "Control which devices calibre will ignore when they are connected to the computer." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1145 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:296 -msgid "Plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1151 -msgid "Add/remove/customize various bits of calibre functionality" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1157 -msgid "Tweaks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1163 -msgid "Fine tune how calibre behaves in various contexts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1168 -msgid "Keyboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1174 -msgid "Customize the keyboard shortcuts used by calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1179 -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:110 -msgid "Miscellaneous" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1185 -msgid "Miscellaneous advanced configuration" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:108 -msgid "Options specific to the output format." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:118 -msgid "Options specific to the input format." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:133 -msgid "Conversion Input" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:165 -msgid "Specify the character encoding of the input document. If set this option will override any encoding declared by the document itself. Particularly useful for documents that do not declare an encoding or that have erroneous encoding declarations." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:280 -msgid "Conversion Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:294 -msgid "If specified, the output plugin will try to create output that is as human readable as possible. May not have any effect for some output plugins." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:310 -#, python-format -msgid "Convert ebooks to the %s format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:47 -msgid "Input profile" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:51 -msgid "This profile tries to provide sane defaults and is useful if you know nothing about the input document." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:59 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:466 -msgid "This profile is intended for the SONY PRS line. The 500/505/600/700 etc." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:71 -msgid "This profile is intended for the SONY PRS 300." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:80 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:506 -msgid "This profile is intended for the SONY PRS-900." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:88 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:551 -msgid "This profile is intended for the Microsoft Reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:99 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:562 -msgid "This profile is intended for the Mobipocket books." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:112 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:575 -msgid "This profile is intended for the Hanlin V3 and its clones." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:124 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:587 -msgid "This profile is intended for the Hanlin V5 and its clones." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:134 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:595 -msgid "This profile is intended for the Cybook G3." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:147 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:609 -msgid "This profile is intended for the Cybook Opus." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:159 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:622 -msgid "This profile is intended for the Amazon Kindle." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:171 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:695 -msgid "This profile is intended for the Irex Illiad." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:183 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:708 -msgid "This profile is intended for the IRex Digital Reader 1000." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:196 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:722 -msgid "This profile is intended for the IRex Digital Reader 800." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:208 -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:736 -msgid "This profile is intended for the B&N Nook." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:230 -msgid "Output profile" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:234 -msgid "This profile tries to provide sane defaults and is useful if you want to produce a document intended to be read at a computer or on a range of devices." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:275 -msgid "Intended for the iPad and similar devices with a resolution of 768x1024" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:437 -msgid "Intended for the iPad 3 and similar devices with a resolution of 1536x2048" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:443 -msgid "Intended for generic tablet devices, does no resizing of images" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:451 -msgid "Intended for the Samsung Galaxy and similar tablet devices with a resolution of 600x1280" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:458 -msgid "Intended for the Nook HD+ and similar tablet devices with a resolution of 1280x1920" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:484 -msgid "This profile is intended for the Kobo Reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:497 -msgid "This profile is intended for the SONY PRS-300." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:515 -msgid "Suitable for use with any e-ink device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:522 -msgid "Suitable for use with any large screen e-ink device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:531 -msgid "This profile is intended for the 5-inch JetBook." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:540 -msgid "This profile is intended for the SONY PRS line. The 500/505/700 etc, in landscape mode. Mainly useful for comics." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:646 -msgid "This profile is intended for the Amazon Kindle DX." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:668 -msgid "This profile is intended for the Amazon Kindle PaperWhite" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:679 -msgid "This profile is intended for the Amazon Kindle Fire." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:748 -msgid "This profile is intended for the B&N Nook Color." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:759 -msgid "This profile is intended for the Sanda Bambook." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:774 -msgid "This profile is intended for the PocketBook Pro 900 series of devices." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:785 -msgid "This profile is intended for the PocketBook Pro 912 series of devices." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:30 -msgid "Installed plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:31 -msgid "Mapping for filetype plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:32 -msgid "Local plugin customization" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:33 -msgid "Disabled plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:34 -msgid "Enabled plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:524 -#, python-format -msgid "Initialization of plugin %s failed with traceback:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:604 -msgid "" -" %prog options\n" -"\n" -" Customize calibre by loading external plugins.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:610 -msgid "Add a plugin by specifying the path to the zip file containing it." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:612 -msgid "For plugin developers: Path to the directory where you are developing the plugin. This command will automatically zip up the plugin and update it in calibre." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:616 -msgid "Remove a custom plugin by name. Has no effect on builtin plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:618 -msgid "Customize plugin. Specify name of plugin and customization string separated by a comma." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:620 -msgid "List all installed plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:622 -msgid "Enable the named plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/customize/ui.py:624 -msgid "Disable the named plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/backend.py:328 -#: /home/kovid/work/calibre/src/calibre/db/backend.py:337 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:325 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:98 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:750 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:102 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:111 -#, python-format -msgid "Path to library too long. Must be less than %d characters." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/backend.py:396 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:187 -msgid "restored preference " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/backend.py:402 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:192 -#: /home/kovid/work/calibre/src/calibre/library/restore.py:234 -msgid "creating custom column " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/cache.py:176 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:637 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:66 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:686 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:1049 -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:887 -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:910 -msgid "Yes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/categories.py:44 -#, python-format -msgid "%(tt)sAverage rating is %(rating)3.1f" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/fields.py:237 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:1206 -msgid "Main" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/fields.py:239 -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:76 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:1208 -msgid "Card A" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/fields.py:241 -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:78 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:1210 -msgid "Card B" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/fields.py:484 -#: /home/kovid/work/calibre/src/calibre/db/fields.py:499 -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2923 -#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:107 -#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:448 -#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:471 -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:773 -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:792 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:420 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:426 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:457 -#: /home/kovid/work/calibre/src/calibre/devices/utils.py:80 -#: /home/kovid/work/calibre/src/calibre/devices/utils.py:84 -#: /home/kovid/work/calibre/src/calibre/devices/utils.py:116 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/fetch_news.py:73 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:470 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:1222 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:1224 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:359 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:372 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:3365 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:187 -msgid "News" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:32 -#: /home/kovid/work/calibre/src/calibre/db/search.py:312 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:135 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:570 -msgid "checked" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:32 -#: /home/kovid/work/calibre/src/calibre/db/search.py:310 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:135 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:568 -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:230 -msgid "yes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:34 -#: /home/kovid/work/calibre/src/calibre/db/search.py:309 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:137 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:567 -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:230 -msgid "no" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:34 -#: /home/kovid/work/calibre/src/calibre/db/search.py:311 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:137 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:569 -msgid "unchecked" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:109 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:314 -msgid "today" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:110 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:315 -msgid "yesterday" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:111 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:316 -msgid "thismonth" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:112 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:317 -msgid "daysago" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:198 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:374 -msgid "Number conversion error: {0}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:204 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:380 -msgid "Date conversion error: {0}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:289 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:456 -msgid "Non-numeric value in query: {0}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:313 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:571 -msgid "empty" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:314 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:572 -msgid "blank" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:323 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:584 -msgid "Invalid boolean query \"{0}\"" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:355 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:501 -msgid "Invalid query format for colon-separated search: {0}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/db/search.py:469 -#: /home/kovid/work/calibre/src/calibre/library/caches.py:650 -msgid "Recursive query group detected: {0}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/debug.py:75 -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:47 -msgid "Cause a running calibre instance, if any, to be shutdown. Note that if there are running jobs, they will be silently aborted, so use with care." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/debug.py:81 -msgid "" -"Run a plugin that provides a command line interface. For example:\n" -"calibre-debug -r \"Add Books\" -- file1 --option1\n" -"Everything after the -- will be passed to the plugin as arguments." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/debug.py:180 -msgid "Debug log" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/debug.py:272 -#, python-format -msgid "No plugin named %s found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:19 -msgid "Communicate with Android phones." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:204 -msgid "Comma separated list of directories to send e-books to on the device's main memory. The first one that exists will be used" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:207 -msgid "Comma separated list of directories to send e-books to on the device's storage cards. The first one that exists will be used" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:328 -msgid "Communicate with S60 phones." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:347 -msgid "Communicate with WebOS tablets." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:61 -msgid "

If you do not want calibre to recognize your Apple iDevice when it is connected to your computer, click Disable Apple Driver.

To transfer books to your iDevice, click Disable Apple Driver, then use the 'Connect to iTunes' method recommended in the Calibre + iDevices FAQ, using the Connect/Share|Connect to iTunes menu item.

Enabling the Apple driver for direct connection to iDevices is an unsupported advanced user mode.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:78 -msgid "Disable Apple driver" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:82 -msgid "Enable Apple driver" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120 -msgid "Use Series as Category in iTunes/iBooks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121 -msgid "Enable to use the series name as the iTunes Genre, iBooks Category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123 -msgid "Cache covers from iTunes/iBooks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125 -msgid "Enable to cache and display covers from iTunes/iBooks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126 -#, python-format -msgid "\"Copy files to iTunes Media folder %s\" is enabled in iTunes Preferences|Advanced" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:128 -msgid "

This setting should match your iTunes Preferences|Advanced setting.

Disabling will store copies of books transferred to iTunes in your calibre configuration directory.

Enabling indicates that iTunes is configured to store copies in your iTunes Media folder.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:131 -msgid "Enable debug logging" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:133 -msgid "Print driver debug messages to console" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:203 -msgid "Apple device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:205 -msgid "Communicate with iTunes/iBooks." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:220 -msgid "Apple iDevice detected, launching iTunes, please wait ..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:222 -msgid "Cannot copy books directly from iDevice. Drag from iTunes Library to desktop, then add to calibre's Library window." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:225 -msgid "*** Unsupported direct connect mode. See http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on using 'Connect to iTunes' ***" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:229 -msgid "

Unable to communicate with iTunes.

Refer to this forum post for more information.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:396 -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:399 -msgid "Updating device metadata listing..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478 -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:519 -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1188 -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1235 -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3408 -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3450 -#, python-format -msgid "%(num)d of %(tot)d" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:527 -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1240 -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3457 -#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110 -msgid "finished" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:719 -msgid "" -"Some books not found in iTunes database.\n" -"Delete using the iBooks app.\n" -"Click 'Show Details' for a list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1150 -msgid "" -"Some cover art could not be converted.\n" -"Click 'Show Details' for a list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2924 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:3322 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:3340 -msgid "Catalog" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3298 -msgid "Communicate with iTunes." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:24 -msgid "Communicate with the Sanda Bambook eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:25 -msgid "Li Fanxi" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:42 -msgid "Device IP Address (restart calibre after changing)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:48 -msgid "Unable to add book to library directly from Bambook. Please save the book to disk and add the file to library from disk." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:67 -msgid "Unable to connect to Bambook, you need to install Bambook library first." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:75 -msgid "" -"Unable to connect to Bambook. \n" -"If you are trying to connect via Wi-Fi, please make sure the IP address of Bambook has been correctly configured." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:112 -msgid "Bambook" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:218 -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:234 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:127 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:130 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:133 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:350 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1359 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1363 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1367 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1749 -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:155 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:147 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:150 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:218 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:225 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:248 -msgid "Getting list of books on device..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:264 -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:268 -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:324 -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:393 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:1144 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:1146 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:277 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:279 -msgid "Transferring books to device..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:330 -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:344 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:493 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:527 -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:432 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:1157 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:1168 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:301 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:332 -msgid "Adding books to device metadata listing..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352 -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354 -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:129 -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:140 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:442 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:474 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:617 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:2609 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:338 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359 -msgid "Removing books from device..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:369 -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:481 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:488 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:1206 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:1212 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:366 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:371 -msgid "Removing books from device metadata listing..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:402 -msgid "Sending metadata to device..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/bambook/libbambookcore.py:129 -msgid "Bambook SDK has not been installed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/binatone/driver.py:17 -msgid "Communicate with the Binatone Readme eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13 -msgid "Communicate with the Blackberry smart phone." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:14 -#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:37 -#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:306 -#: /home/kovid/work/calibre/src/calibre/devices/nuut2/driver.py:18 -msgid "Kovid Goyal" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:36 -msgid "Communicate with the Blackberry playbook." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/boeye/driver.py:14 -msgid "Communicate with BOEYE BEX Serial eBook readers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/boeye/driver.py:35 -msgid "Communicate with BOEYE BDX serial eBook readers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/cybook/driver.py:22 -msgid "Communicate with the Cybook Gen 3 / Opus eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/cybook/driver.py:64 -msgid "Communicate with the Cybook Orizon eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:25 -msgid "Communicate with the EB600 eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:56 -msgid "Communicate with the Tolino Shine reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:222 -msgid "Communicate with the Astak Mentor EB600" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:245 -msgid "Communicate with the PocketBook 301 reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:262 -msgid "Communicate with the PocketBook 602/603/902/903/Pro 912 reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:282 -msgid "Communicate with the PocketBook 622 and 623 readers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:295 -msgid "Communicate with the PocketBook 360+ reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:305 -msgid "Communicate with the PocketBook 701" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:337 -msgid "Communicate with the Infibeam Pi2 reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/edge/driver.py:17 -msgid "Entourage Edge" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/edge/driver.py:18 -msgid "Communicate with the Entourage Edge." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/eslick/driver.py:16 -msgid "Communicate with the ESlick eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/eslick/driver.py:49 -msgid "Communicate with the Sigmatek eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/folder_device/driver.py:17 -#: /home/kovid/work/calibre/src/calibre/devices/folder_device/driver.py:33 -msgid "Use an arbitrary folder as a device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/folder_device/driver.py:29 -#: /home/kovid/work/calibre/src/calibre/devices/interface.py:14 -msgid "Device Interface" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:19 -msgid "Communicate with Hanlin V3 eBook readers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:96 -msgid "Communicate with Hanlin V5 eBook readers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:114 -msgid "Communicate with the BOOX eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:133 -msgid "Comma separated list of directories to send e-books to on the device. The first one that exists will be used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:22 -msgid "Communicate with the Hanvon N520 eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:48 -msgid "Communicate with the Kibano eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:61 -msgid "Communicate with The Book reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:73 -msgid "Communicate with the Libre Air reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:86 -msgid "Communicate with the SpringDesign Alex eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:146 -msgid "Communicate with the Azbooka" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:165 -msgid "Communicate with the Elonex EB 511 eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:185 -msgid "Communicate with the Cybook Odyssey eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16 -msgid "Communicate with the IRex Iliad eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/interface.py:59 -msgid "Cannot get files from this device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16 -msgid "Communicate with the IRex Digital Reader 1000 eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42 -msgid "Communicate with the IRex Digital Reader 800" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/iriver/driver.py:17 -msgid "Communicate with the Iriver Story reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:20 -msgid "Communicate with the JetBook eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:88 -msgid "Communicate with the MiBuk Wolder reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116 -msgid "Communicate with the JetBook Mini reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:143 -msgid "Communicate with the JetBook Color reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/apnx.py:39 -#, python-format -msgid "Not a valid MOBI file. Reports identity of %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/apnx.py:75 -msgid "Could not generate page mapping." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:44 -msgid "Communicate with the Kindle eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:185 -#, python-format -msgid "%(time)s
Last Page Read: %(loc)d (%(pr)d%%)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:191 -#, python-format -msgid "%(time)s
Last Page Read: Location %(loc)d (%(pr)d%%)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:210 -#, python-format -msgid "Location %(dl)d • %(typ)s
%(text)s
" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:219 -#, python-format -msgid "Page %(dl)d • %(typ)s
" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:224 -#, python-format -msgid "Location %(dl)d • %(typ)s
" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:289 -msgid "Communicate with the Kindle 2/3/4/Touch/PaperWhite eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:301 -msgid "Send page number information when sending books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:303 -msgid "The Kindle 3 and newer versions can use page number information in MOBI files. With this option, calibre will calculate and send this information to the Kindle when uploading MOBI files by USB. Note that the page numbers do not correspond to any paper book." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:308 -msgid "Use slower but more accurate page number calculation" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:310 -msgid "There are two ways to generate the page number information. Using the more accurate generator will produce pages that correspond better to a printed book. However, this method is slower and will slow down sending files to the Kindle." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:314 -msgid "Custom column name to retrieve page counts from" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:316 -msgid "If you have a custom column in your library that you use to store the page count of books, you can have calibre use that information, instead of calculating a page count. Specify the name of the custom column here, for example, #pages. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:455 -msgid "Communicate with the Kindle DX eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:467 -msgid "Communicate with the Kindle Fire" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:36 -msgid "Communicate with the Kobo Reader" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:69 -msgid "The Kobo supports several collections including " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:71 -msgid "Create tags for automatic management" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:72 -msgid "Upload covers for books (newer readers)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:73 -msgid "Normally, the KOBO readers get the cover image from the ebook file itself. With this option, calibre will send a separate cover image to the reader, useful if you have modified the cover." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:77 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1236 -msgid "Upload Black and White Covers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:78 -msgid "Show expired books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:79 -msgid "A bug in an earlier version left non kepubs book records in the database. With this option Calibre will show the expired records and allow you to delete them with the new delete logic." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:83 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1243 -msgid "Show Previews" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:84 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1244 -msgid "Kobo previews are included on the Touch and some other versions by default they are no longer displayed as there is no good reason to see them. Enable if you wish to see/delete them." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:87 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1247 -msgid "Show Recommendations" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:88 -msgid "Kobo now shows recommendations on the device. In some case these have files but in other cases they are just pointers to the web site to buy. Enable if you wish to see/delete them." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:91 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1256 -msgid "Attempt to support newer firmware" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:92 -msgid "Kobo routinely updates the firmware and the database version. With this option calibre will attempt to perform full read-write functionality - Here be Dragons!! Enable only if you are comfortable with restoring your kobo to factory defaults and testing software" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:619 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:2611 -msgid "Kobo database version unsupported - See details" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:620 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:2612 -msgid "Your Kobo is running an updated firmware/database version. As calibre does not know about this updated firmware, database editing is disabled, to prevent corruption. You can still send books to your Kobo with calibre, but deleting books and managing collections is disabled. If you are willing to experiment and know how to reset your Kobo to Factory defaults, you can override this check by right clicking the device icon in calibre and selecting \"Configure this device\" and then the \"Attempt to support newer firmware\" option. Doing so may require you to perform a factory reset of your Kobo." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:648 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:404 -msgid "Not Implemented" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:649 -msgid "\".kobo\" files do not exist on the device as books instead, they are rows in the sqlite database. Currently they cannot be exported or viewed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1097 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1103 -#, python-format -msgid "
Book Last Read: %(time)s
Percentage Read: %(pr)d%%
" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1121 -#, python-format -msgid "Chapter %(chapter)d: %(chapter_title)s
%(typ)s
Chapter Progress: %(chapter_progress)s%%
%(annotation)s

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1130 -#, python-format -msgid "Chapter %(chapter)d: %(chapter_title)s
%(typ)s
Chapter Progress: %(chapter_progress)s%%
Highlight: %(text)s

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1139 -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1149 -#, python-format -msgid "Chapter %(chapter)d: %(chapter_title)s
%(typ)s
Chapter Progress: %(chapter_progress)s%%
Highlight: %(text)s
Notes: %(annotation)s

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1227 -msgid "The Kobo Touch from firmware V2.0.0 supports bookshelves." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1229 -msgid "Specify a tags type column for automatic management" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1230 -msgid "Create Bookshelves" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1231 -msgid "Create new bookshelves on the Kobo Touch if they do not exist. This is only for firmware V2.0.0 or later." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1232 -msgid "Delete Empty Bookshelves" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1233 -msgid "Delete any empty bookshelves from the Kobo Touch when syncing is finished. This is only for firmware V2.0.0 or later." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1234 -msgid "Upload covers for books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1235 -msgid "Upload cover images from the calibre library when sending books to the device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1237 -msgid "Keep cover aspect ratio" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1238 -msgid "When uploading covers, do not change the aspect ratio when resizing for the device. This is for firmware versions 2.3.1 and later." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1240 -msgid "Show archived books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1241 -msgid "Archived books are listed on the device but need to be downloaded to read. Use this option to show these books and match them with books in the calibre library." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1248 -msgid "Kobo shows recommendations on the device. In some cases these have files but in other cases they are just pointers to the web site to buy. Enable if you wish to see/delete them." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1251 -msgid "Set Series information" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1252 -msgid "The book lists on the Kobo devices can display series information. This is not read by the device from the sideloaded books. Series information can only be added to the device after the book has been processed by the device. Enable if you wish to set series information." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1257 -msgid "Kobo routinely updates the firmware and the database version. With this option Calibre will attempt to perform full read-write functionality - Here be Dragons!! Enable only if you are comfortable with restoring your kobo to factory defaults and testing software. This driver supports firmware V2.x.x and DBVersion up to " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1263 -msgid "Title to test when debugging" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1264 -msgid "Part of title of a book that can be used when doing some tests for debugging. The test is to see if the string is contained in the title of a book. The better the match, the less extraneous output." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:19 -msgid "Communicate with the Palm Pre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:39 -msgid "Communicate with the Bq Avant" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:60 -msgid "Communicate with the Sweex/Kogan/Q600/Wink" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:81 -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:107 -msgid "Communicate with the Pandigital Novel" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:126 -msgid "Communicate with the VelocityMicro" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:144 -msgid "Communicate with the GM2000" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:164 -msgid "Communicate with the Acer Lumiread" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:198 -msgid "Communicate with the Aluratek Color" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:219 -msgid "Communicate with the Trekstor" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:246 -msgid "Communicate with the EEE Reader" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:267 -msgid "Communicate with the Adam tablet" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:288 -msgid "Communicate with the Nextbook Reader" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:340 -msgid "Communicate with the Moovybook Reader" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:362 -msgid "Communicate with the COBY" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:388 -msgid "Communicate with the Ex124G" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/misc.py:415 -msgid "Communicate with the WayteQ and SPC Dickens Readers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/base.py:29 -msgid "MTP Device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/base.py:31 -msgid "Communicate with MTP devices" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:169 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:968 -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:95 -msgid "Get device information..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:192 -msgid "Listing files, this can take a while" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:207 -msgid "Reading ebook metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:240 -#, python-format -msgid "Reading metadata from %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:259 -msgid "Updating metadata cache on device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:261 -msgid "Finished reading metadata from device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:421 -#, python-format -msgid "Transferred %s to device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:423 -msgid "Transfer to device finished..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:444 -#, python-format -msgid "Added %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:446 -msgid "Adding complete" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:462 -msgid "Deleting books from device..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:468 -#, python-format -msgid "Deleted %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:469 -msgid "All books deleted" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:472 -msgid "Removing books from metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:484 -#, python-format -msgid "Removed %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/driver.py:486 -msgid "All books removed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/unix/driver.py:212 -#: /home/kovid/work/calibre/src/calibre/devices/mtp/windows/driver.py:315 -msgid "Unknown MTP device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/unix/driver.py:231 -#: /home/kovid/work/calibre/src/calibre/devices/mtp/windows/driver.py:219 -#, python-format -msgid "Found object: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/windows/driver.py:61 -msgid "MTP devices are not supported on Windows XP" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/mtp/windows/driver.py:69 -msgid "The Windows Portable Devices service is not available on your computer. You may need to install Windows Media Player 11 or newer and/or restart your computer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/nokia/driver.py:17 -msgid "Communicate with the Nokia 770 internet tablet." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/nokia/driver.py:40 -msgid "Communicate with the Nokia 810/900 internet tablet." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/nokia/driver.py:74 -msgid "Communicate with the Nokia E52" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:21 -msgid "The Nook" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:22 -msgid "Communicate with the Nook eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:85 -msgid "Communicate with the Nook Color, TSR and Tablet eBook readers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/nuut2/driver.py:17 -msgid "Communicate with the Nuut2 eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:21 -msgid "Communicate with Sony eBook readers older than the PRST1." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:59 -msgid "Comments have been removed as the SONY reader chokes on them" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:65 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:271 -msgid "All by title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:66 -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:272 -msgid "All by author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:69 -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:68 -msgid "Comma separated list of metadata fields to turn into collections on the device. Possibilities include: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:72 -#, python-format -msgid ". Two special collections are available: %(abt)s:%(abtv)s and %(aba)s:%(abav)s. Add these values to the list to enable them. The collections will be given the name provided after the \":\" character." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:76 -msgid "Upload separate cover thumbnails for books (newer readers)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:77 -msgid "Normally, the SONY readers get the cover image from the ebook file itself. With this option, calibre will send a separate cover image to the reader, useful if you are sending DRMed books in which you cannot change the cover. WARNING: This option should only be used with newer SONY readers: 350, 650, 950 and newer." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:83 -msgid "Refresh separate covers when using automatic management (newer readers)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:85 -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:78 -msgid "Set this option to have separate book covers uploaded every time you connect your device. Unset this option if you have so many books on the reader that performance is unacceptable." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89 -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:82 -msgid "Preserve cover aspect ratio when building thumbnails" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:91 -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:84 -msgid "Set this option if you want the cover thumbnails to have the same aspect ratio (width to height) as the cover. Unset it if you want the thumbnail to be the maximum size, ignoring aspect ratio." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95 -msgid "Search for books in all folders" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:97 -msgid "Setting this option tells calibre to look for books in all folders on the device and its cards. This permits calibre to find books put on the device by other software and by wireless download." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:191 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/structure.py:81 -msgid "Unnamed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:36 -msgid "Communicate with the PRST1 and newer SONY eBook readers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:71 -msgid "Upload separate cover thumbnails for books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:72 -msgid "Normally, the SONY readers get the cover image from the ebook file itself. With this option, calibre will send a separate cover image to the reader, useful if you are sending DRMed books in which you cannot change the cover." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:76 -msgid "Refresh separate covers when using automatic management" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:88 -msgid "Use SONY Author Format (First Author Only)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:90 -msgid "Set this option if you want the author on the Sony to appear the same way the T1 sets it. This means it will only show the first author for books with multiple authors. Leave this disabled if you use Metadata Plugboards." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:183 -msgid "Wireless Device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:187 -msgid "Communicate with Smart Device apps" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:273 -msgid "All by something" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:276 -msgid "Enable connections at startup" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:277 -msgid "Check this box to allow connections when calibre starts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:279 -msgid "Security password" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:280 -msgid "Enter a password that the device app must use to connect to calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:282 -msgid "Use fixed network port" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:283 -msgid "If checked, use the port number in the \"Port\" box, otherwise the driver will pick a random port" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:285 -msgid "Port number: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:286 -msgid "Enter the port number the driver is to use if the \"fixed port\" box is checked" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:287 -msgid "Print extra debug information" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:288 -msgid "Check this box if requested when reporting problems" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:290 -msgid "Comma separated list of metadata fields to turn into collections on the device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:292 -msgid "Possibilities include: series, tags, authors, etc" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:300 -msgid "Enable the no-activity timeout" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:301 -#, python-format -msgid "If this box is checked, calibre will automatically disconnect if a connected device does nothing for %d minutes. Unchecking this box disables this timeout, so calibre will never automatically disconnect." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:305 -msgid "Use this IP address" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:306 -msgid "Use this option if you want to force the driver to listen on a particular IP address. The driver will listen only on the entered address, and this address will be the one advertized over mDNS (bonjour)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:310 -msgid "Replace books with the same calibre identifier" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:311 -msgid "Use this option to overwrite a book on the device if that book has the same calibre identifier as the book being sent. The file name of the book will not change even if the save template produces a different result. Using this option in most cases prevents having multiple copies of a book on the device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:807 -#, python-format -msgid "Too many connection attempts from %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:1320 -#, python-format -msgid "Invalid port in options: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:1328 -#, python-format -msgid "Failed to connect to port %d. Try a different value." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/smart_device_app/driver.py:1340 -msgid "Failed to allocate a random port" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/sne/driver.py:17 -msgid "Communicate with the Samsung SNE eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/teclast/driver.py:11 -msgid "Communicate with the Teclast K3/K5 reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/teclast/driver.py:38 -msgid "Communicate with the Newsmy reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/teclast/driver.py:49 -msgid "Communicate with the Archos reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/teclast/driver.py:59 -msgid "Communicate with the Pico reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/teclast/driver.py:71 -msgid "Communicate with the iPapyrus reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/teclast/driver.py:82 -msgid "Communicate with the Sovos reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/teclast/driver.py:92 -msgid "Communicate with the Sunstech EB700 reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/teclast/driver.py:103 -msgid "Communicate with the Stash W950 reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/teclast/driver.py:115 -msgid "Communicate with the Wexler reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:287 -#, python-format -msgid "Unable to detect the %s disk drive. Try rebooting." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:468 -#, python-format -msgid "Unable to detect the %s mount point. Try rebooting." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:536 -#, python-format -msgid "Unable to detect the %s disk drive." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:614 -#, python-format -msgid "Unable to detect the %s disk drive. Either the device has already been ejected, or your kernel is exporting a deprecated version of SYSFS." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:623 -#, python-format -msgid "Unable to mount main memory (Error code: %d)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:674 -#, python-format -msgid "The main memory of %s is read only. This usually happens because of file system errors." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:809 -msgid "Unable to mount the device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:12 -msgid "Configure Device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:59 -msgid "settings for device drivers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:61 -msgid "Ordered list of formats the device will accept" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:63 -msgid "Place files in sub directories if the device supports them" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:65 -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:83 -msgid "Read metadata from files on device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:67 -msgid "Use author sort instead of author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:69 -msgid "Template to control how books are saved" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:72 -msgid "Extra customization" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:40 -msgid "Communicate with an eBook reader." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101 -#, python-format -msgid "Failed to access files in the main memory of your device. You should contact the device manufacturer for support. Common fixes are: try a different USB cable/USB port on your computer. If you device has a \"Reset to factory defaults\" type of setting somewhere, use it. Underlying error: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:114 -#, python-format -msgid "Failed to access files on the SD card in your device. This can happen for many reasons. The SD card may be corrupted, it may be too large for your device, it may be write-protected, etc. Try a different SD card, or reformat your SD card using the FAT32 filesystem. Also make sure there are not too many files in the root of your SD card. Underlying error: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:37 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:68 -msgid "USB Vendor ID (in hex)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:38 -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:41 -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:44 -msgid "Get this ID using Preferences -> Misc -> Get information to set up the user-defined device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:40 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:70 -msgid "USB Product ID (in hex)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:43 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:72 -msgid "USB Revision ID (in hex)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:47 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:79 -msgid "Windows main memory vendor string" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:48 -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:52 -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:56 -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:60 -msgid "This field is used only on windows. Get this ID using Preferences -> Misc -> Get information to set up the user-defined device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:51 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:81 -msgid "Windows main memory ID string" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:55 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:84 -msgid "Windows card A vendor string" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:59 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:86 -msgid "Windows card A ID string" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:63 -msgid "Main memory folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:64 -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:67 -msgid "Enter the folder where the books are to be stored. This folder is prepended to any send_to_device template" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:66 -msgid "Card A folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:69 -msgid "Swap main and card A" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/user_defined/driver.py:70 -msgid "Check this box if the device's main memory is being seen as card a and the card is being seen as main memory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/utils.py:18 -#: /home/kovid/work/calibre/src/calibre/devices/utils.py:24 -#, python-format -msgid "The reader has no storage card %s. You may have changed the default send to device action. Right click on the send to device button and reset the default action to be \"Send to main memory\"." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/utils.py:29 -#, python-format -msgid "Selected slot: %s is not supported." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/utils.py:36 -msgid "There is insufficient free space in main memory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/devices/utils.py:38 -#: /home/kovid/work/calibre/src/calibre/devices/utils.py:40 -msgid "There is insufficient free space on the storage card" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:210 -#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/render/from_html.py:274 -#, python-format -msgid "Rendered %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:213 -#, python-format -msgid "Failed %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:267 -#, python-format -msgid "" -"Failed to process comic: \n" -"\n" -"%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:19 -msgid "" -"input_file output_file [options]\n" -"\n" -"Convert an ebook from one format to another.\n" -"\n" -"input_file is the input and output_file is the output. Both must be specified as the first two arguments to the command.\n" -"\n" -"The output ebook format is guessed from the file extension of output_file. output_file can also be of the special format .EXT where EXT is the output file extension. In this case, the name of the output file is derived the name of the input file. Note that the filenames must not start with a hyphen. Finally, if output_file has no extension, then it is treated as a directory and an \"open ebook\" (OEB) consisting of HTML files is written to that directory. These files are the files that would normally have been passed to the output plugin.\n" -"\n" -"After specifying the input and output file you can customize the conversion by specifying various options. The available options depend on the input and output file types. To get help on them specify the input and output file and then use the -h option.\n" -"\n" -"For full documentation of the conversion system see\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:102 -msgid "INPUT OPTIONS" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:102 -msgid "OUTPUT OPTIONS" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:114 -#, python-format -msgid "Options to control the processing of the input %s file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:121 -#, python-format -msgid "Options to control the processing of the output %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:135 -msgid "Options to control the look and feel of the output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:154 -#, python-format -msgid "Modify the document text and structure using common patterns. Disabled by default. Use %(en)s to enable. Individual actions can be disabled with the %(dis)s options." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:162 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:20 -msgid "Modify the document text and structure using user defined patterns." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:172 -msgid "Control auto-detection of document structure." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:182 -msgid "Control the automatic generation of a Table of Contents. By default, if the source file has a Table of Contents, it will be used in preference to the automatically generated one." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:192 -msgid "Options to set metadata in the output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:195 -msgid "Options to help with debugging the conversion" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:224 -msgid "List builtin recipe names. You can create an ebook from a builtin recipe like this: ebook-convert \"Recipe Name.recipe\" output.epub" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:339 -msgid "Output saved to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:27 -#, python-format -msgid "Number of colors for grayscale image conversion. Default: %default. Values of less than 256 may result in blurred text on your device if you are creating your comics in EPUB format." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:31 -msgid "Disable normalize (improve contrast) color range for pictures. Default: False" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:34 -msgid "Maintain picture aspect ratio. Default is to fill the screen." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:36 -msgid "Disable sharpening." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:38 -msgid "Disable trimming of comic pages. For some comics, trimming might remove content as well as borders." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:41 -msgid "Don't split landscape images into two portrait images" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:43 -msgid "Keep aspect ratio and scale image using screen height as image width for viewing in landscape mode." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:46 -msgid "Used for right-to-left publications like manga. Causes landscape pages to be split into portrait pages from right to left." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:50 -msgid "Enable Despeckle. Reduces speckle noise. May greatly increase processing time." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:53 -msgid "Don't sort the files found in the comic alphabetically by name. Instead use the order they were added to the comic." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:57 -msgid "The format that images in the created ebook are converted to. You can experiment to see which format gives you optimal size and look on your device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:61 -msgid "Apply no processing to the image" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:63 -msgid "Do not convert the image to grayscale (black and white)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:65 -msgid "Specify the image size as widthxheight pixels. Normally, an image size is automatically calculated from the output profile, this option overrides it." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:69 -msgid "When converting a CBC do not add links to each page to the TOC. Note this only applies if the TOC has more than one section" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:213 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/comic_input.py:225 -msgid "Page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/djvu_input.py:25 -msgid "Try to use the djvutxt program and fall back to pure python implementation if it fails or is not available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/epub_output.py:54 -msgid "Extract the contents of the generated EPUB file to the specified directory. The contents of the directory are first deleted, so be careful." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/epub_output.py:60 -msgid "Turn off splitting at page breaks. Normally, input files are automatically split at every page break into two files. This gives an output ebook that can be parsed faster and with less resources. However, splitting is slow and if your source file contains a very large number of page breaks, you should turn off splitting on page breaks." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/epub_output.py:71 -#, python-format -msgid "Split all HTML files larger than this size (in KB). This is necessary as most EPUB readers cannot handle large file sizes. The default of %defaultKB is the size required for Adobe Digital Editions." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/epub_output.py:78 -msgid "Normally, if the input file has no cover and you don't specify one, a default cover is generated with the title, authors, etc. This option disables the generation of this cover." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/epub_output.py:84 -msgid "Do not use SVG for the book cover. Use this option if your EPUB is going to be used on a device that does not support SVG, like the iPhone or the JetBook Lite. Without this option, such devices will display the cover as a blank page." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/epub_output.py:93 -msgid "When using an SVG cover, this option will cause the cover to scale to cover the available screen area, but still preserve its aspect ratio (ratio of width to height). That means there may be white borders at the sides or top and bottom of the image, but the image will never be distorted. Without this option the image may be slightly distorted, but there will be no borders." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/epub_output.py:103 -msgid "This option is needed only if you intend to use the EPUB with FBReaderJ. It will flatten the file system inside the EPUB, putting all files into the top level." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/epub_output.py:200 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:208 -msgid "Start" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/fb2_input.py:31 -msgid "Do not insert a Table of Contents at the beginning of the book." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/fb2_output.py:148 -msgid "Specify the sectionization of elements. A value of \"nothing\" turns the book into a single section. A value of \"files\" turns each file into a separate section; use this if your device is having trouble. A value of \"Table of Contents\" turns the entries in the Table of Contents into titles and creates sections; if it fails, adjust the \"Structure Detection\" and/or \"Table of Contents\" settings (turn on \"Force use of auto-generated Table of Contents\")." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/fb2_output.py:157 -#, python-format -msgid "" -"Genre for the book. Choices: %s\n" -"\n" -" See: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/fb2_output.py:158 -msgid "for a complete list with descriptions." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/html_input.py:32 -msgid "Traverse links in HTML files breadth first. Normally, they are traversed depth first." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/html_input.py:39 -#, python-format -msgid "Maximum levels of recursion when following links in HTML files. Must be non-negative. 0 implies that no links in the root HTML file are followed. Default is %default." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/html_input.py:48 -msgid "Normally this input plugin re-arranges all the input files into a standard folder hierarchy. Only use this option if you know what you are doing as it can result in various nasty side effects in the rest of the conversion pipeline." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/html_output.py:24 -msgid "CSS file used for the output instead of the default file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/html_output.py:27 -msgid "Template used for generation of the html index file instead of the default file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/html_output.py:30 -msgid "Template used for the generation of the html contents of the book instead of the default file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/html_output.py:33 -msgid "Extract the contents of the generated ZIP file to the specified directory. WARNING: The contents of the directory will be deleted." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/htmlz_input.py:63 -#, python-format -msgid "Multiple HTML files found in the archive. Only %s will be used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/htmlz_input.py:69 -msgid "No top level HTML file found." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/htmlz_input.py:72 -#, python-format -msgid "Top level HTML file %s is empty" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/htmlz_output.py:27 -msgid "" -"Specify the handling of CSS. Default is class.\n" -"class: Use CSS classes and have elements reference them.\n" -"inline: Write the CSS as an inline style attribute.\n" -"tag: Turn as many CSS styles as possible into HTML tags." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/htmlz_output.py:35 -msgid "" -"How to handle the CSS when using css-type = 'class'.\n" -"Default is external.\n" -"external: Use an external CSS file that is linked in the document.\n" -"inline: Place the CSS in the head section of the document." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/htmlz_output.py:42 -msgid "If set this option causes the file name of the html file inside the htmlz archive to be based on the book title." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:95 -msgid "Enable autorotation of images that are wider than the screen width." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:99 -#, python-format -msgid "Set the space between words in pts. Default is %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:102 -msgid "Add a header to all the pages with title and author." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:105 -msgid "Set the format of the header. %a is replaced by the author and %t by the title. Default is %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:109 -#, python-format -msgid "Add extra spacing below the header. Default is %default pt." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:112 -#, python-format -msgid "Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:117 -msgid "Render tables in the HTML as images (useful if the document has large or complex tables)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:122 -#, python-format -msgid "Multiply the size of text in rendered tables by this factor. Default is %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:126 -msgid "The serif family of fonts to embed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:129 -msgid "The sans-serif family of fonts to embed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:132 -msgid "The monospace family of fonts to embed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/lrf_output.py:157 -msgid "Comic" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:45 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:270 -msgid "When present, use author sort field as author." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:49 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:274 -msgid "Don't add Table of Contents to the book. Useful if the book has its own table of contents." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:52 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:277 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:57 -msgid "Title for any generated in-line table of contents." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:56 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:281 -msgid "Disable compression of the file contents." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:59 -msgid "Tag marking book to be filed with Personal Docs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:63 -msgid "Ignore margins in the input document. If False, then the MOBI output plugin will try to convert margins specified in the input document, otherwise it will ignore them." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:69 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:285 -msgid "When adding the Table of Contents to the book, add it at the start of the book instead of the end. Not recommended." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:73 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:289 -msgid "Extract the contents of the MOBI file to the specified directory. If the directory already exists, it will be deleted." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:78 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:294 -msgid "Enable sharing of book content via Facebook etc. on the Kindle. WARNING: Using this feature means that the book will not auto sync its last read position on multiple devices. Complain to Amazon." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:85 -msgid "By default calibre converts all images to JPEG format in the output MOBI file. This is for maximum compatibility as some older MOBI viewers have problems with other image formats. This option tells calibre not to do this. Useful if your document contains lots of GIF/PNG images that become very large when converted to JPEG." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:93 -msgid "By default calibre generates MOBI files that contain the old MOBI 6 format. This format is compatible with all devices. However, by changing this setting, you can tell calibre to generate MOBI files that contain both MOBI 6 and the new KF8 format, or only the new KF8 format. KF8 has more features than MOBI 6, but only works with newer Kindles." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/mobi_output.py:136 -#: /home/kovid/work/calibre/src/calibre/ebooks/epub/periodical.py:125 -msgid "All articles" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdb_output.py:23 -msgid "Format to use inside the pdb container. Choices are:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdb_output.py:27 -msgid "Specify the character encoding of the output document. The default is cp1252. Note: This option is not honored by all formats." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdb_output.py:32 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pml_output.py:26 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/rb_output.py:20 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_output.py:37 -msgid "Add Table of Contents to beginning of the book." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_input.py:20 -msgid "Do not extract images from the document" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_input.py:22 -msgid "Scale used to determine the length at which a line should be unwrapped. Valid values are a decimal between 0 and 1. The default is 0.45, just below the median line length." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_input.py:26 -msgid "Use the new PDF conversion engine." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:52 -msgid "Normally, the PDF page size is set by the output profile chosen under page options. This option will cause the page size settings under PDF Output to override the size specified by the output profile." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:58 -#, python-format -msgid "The unit of measure for page sizes. Default is inch. Choices are %s Note: This does not override the unit for margins!" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:63 -#, python-format -msgid "The size of the paper. This size will be overridden when a non default output profile is used. Default is letter. Choices are %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:67 -msgid "Custom size of the document. Use the form widthxheight EG. `123x321` to specify the width and height. This overrides any specified paper-size." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:72 -msgid "Preserve the aspect ratio of the cover, instead of stretching it to fill the full first page of the generated pdf." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:77 -msgid "The font family used to render serif fonts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:80 -msgid "The font family used to render sans-serif fonts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:83 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:87 -msgid "The font family used to render monospaced fonts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:90 -msgid "The default font size" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:93 -msgid "The default font size for monospaced text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:95 -msgid "Surround all links with a red box, useful for debugging." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:97 -msgid "Use the old, less capable engine to generate the PDF" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:100 -msgid "Generate an uncompressed PDF, useful for debugging, only works with the new PDF engine." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:103 -msgid "Add page numbers to the bottom of every page in the generated PDF file. If you specify a footer template, it will take precedence over this option." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:107 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:110 -#, python-format -msgid "An HTML template used to generate %s on every page. The strings _PAGENUM_, _TITLE_, _AUTHOR_ and _SECTION_ will be replaced by their current values." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:108 -msgid "footers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pdf_output.py:111 -msgid "headers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pml_output.py:22 -msgid "Specify the character encoding of the output document. The default is cp1252." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/pml_output.py:29 -msgid "Do not reduce the size or bit depth of images. Images have their size and depth reduced by default to accommodate applications that can not convert images on their own such as Dropbook." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/recipe_input.py:22 -msgid "Download periodical content from the internet" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/recipe_input.py:37 -msgid "Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/recipe_input.py:40 -msgid "Username for sites that require a login to access content." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/recipe_input.py:43 -msgid "Password for sites that require a login to access content." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/recipe_input.py:47 -msgid "Do not download latest version of builtin recipes from the calibre server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/rtf_input.py:246 -#, python-format -msgid "" -"This RTF file has a feature calibre does not support. Convert it to HTML first and then try it.\n" -"%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:22 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/tcr_output.py:21 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_output.py:33 -msgid "Specify the character encoding of the output document. The default is utf-8." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:26 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_output.py:40 -msgid "The maximum number of characters per line. This splits on the first space before the specified value. If no space is found the line will be broken at the space after and will exceed the specified value. Also, there is a minimum of 25 characters. Use 0 to disable line splitting." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:33 -msgid "Specify whether or not to insert an empty line between two paragraphs." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:37 -msgid "Specify whether or not to insert two space characters to indent the first line of each paragraph." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:41 -msgid "Specify whether or not to hide the chapter title for each chapter. Useful for image-only output (eg. comics)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:45 -msgid "Resize all the images for full screen view. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:127 -msgid "Start Page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:137 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:139 -msgid "Cover Pages" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:152 -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/snb_output.py:155 -msgid " (Preface)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_input.py:22 -msgid "" -"Paragraph structure.\n" -"choices are ['auto', 'block', 'single', 'print', 'unformatted', 'off']\n" -"* auto: Try to auto detect paragraph type.\n" -"* block: Treat a blank line as a paragraph break.\n" -"* single: Assume every line is a paragraph.\n" -"* print: Assume every line starting with 2+ spaces or a tab starts a paragraph.\n" -"* unformatted: Most lines have hard line breaks, few/no blank lines or indents. Tries to determine structure and reformat the differentiate elements.\n" -"* off: Don't modify the paragraph structure. This is useful when combined with Markdown or Textile formatting to ensure no formatting is lost." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_input.py:35 -msgid "" -"Formatting used within the document.* auto: Automatically decide which formatting processor to use.\n" -"* plain: Do not process the document formatting. Everything is a paragraph and no styling is applied.\n" -"* heuristic: Process using heuristics to determine formatting such as chapter headings and italic text.\n" -"* textile: Processing using textile formatting.\n" -"* markdown: Processing using markdown formatting. To learn more about markdown see" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_input.py:45 -msgid "Normally extra spaces are condensed into a single space. With this option all spaces will be displayed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_input.py:48 -msgid "Normally extra space at the beginning of lines is retained. With this option they will be removed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_input.py:51 -msgid "Do not insert a Table of Contents into the output text." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_output.py:27 -#, python-format -msgid "Type of newline to use. Options are %s. Default is 'system'. Use 'old_mac' for compatibility with Mac OS 9 and earlier. For Mac OS X use 'unix'. 'system' will default to the newline type used by this OS." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_output.py:47 -msgid "Force splitting on the max-line-length value when no space is present. Also allows max-line-length to be below the minimum" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_output.py:52 -msgid "" -"Formatting used within the document.\n" -"* plain: Produce plain text.\n" -"* markdown: Produce Markdown formatted text.\n" -"* textile: Produce Textile formatted text." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_output.py:58 -msgid "Do not remove links within the document. This is only useful when paired with a txt-output-formatting option that is not none because links are always removed with plain text output." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_output.py:63 -msgid "Do not remove image references within the document. This is only useful when paired with a txt-output-formatting option that is not none because links are always removed with plain text output." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plugins/txt_output.py:68 -msgid "Do not remove font color from output. This is only useful when txt-output-formatting is set to textile. Textile is the only formatting that supports setting font color. If this option is not specified font color will not be set and default to the color displayed by the reader (generally this is black)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107 -msgid "Level of verbosity. Specify multiple times for greater verbosity." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:114 -msgid "Save the output from different stages of the conversion pipeline to the specified directory. Useful if you are unsure at which stage of the conversion process a bug is occurring." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:123 -msgid "Specify the input profile. The input profile gives the conversion system information on how to interpret various information in the input document. For example resolution dependent lengths (i.e. lengths in pixels). Choices are:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134 -msgid "Specify the output profile. The output profile tells the conversion system how to optimize the created document for the specified device. In some cases, an output profile is required to produce documents that will work on a device. For example EPUB on the SONY reader. Choices are:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:145 -msgid "The base font size in pts. All font sizes in the produced book will be rescaled based on this size. By choosing a larger size you can make the fonts in the output bigger and vice versa. By default, the base font size is chosen based on the output profile you chose." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:155 -msgid "Mapping from CSS font names to font sizes in pts. An example setting is 12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-large, with the final size being for huge fonts. The font rescaling algorithm uses these sizes to intelligently rescale fonts. The default is to use a mapping based on the output profile you chose." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:167 -msgid "Disable all rescaling of font sizes." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:174 -msgid "The minimum line height, as a percentage of the element's calculated font size. calibre will ensure that every element has a line height of at least this setting, irrespective of what the input document specifies. Set to zero to disable. Default is 120%. Use this setting in preference to the direct line height specification, unless you know what you are doing. For example, you can achieve \"double spaced\" text by setting this to 240." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:189 -msgid "The line height in pts. Controls spacing between consecutive lines of text. Only applies to elements that do not define their own line height. In most cases, the minimum line height option is more useful. By default no line height manipulation is performed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:200 -msgid "Embed the specified font family into the book. This specifies the \"base\" font used for the book. If the input document specifies its own fonts, they may override this base font. You can use the filter style information option to remove fonts from the input document. Note that font embedding only works with some output formats, principally EPUB and AZW3." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:211 -msgid "Subset all embedded fonts. Every embedded font is reduced to contain only the glyphs used in this document. This decreases the size of the font files. Useful if you are embedding a particularly large font with lots of unused glyphs." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:219 -msgid "Some badly designed documents use tables to control the layout of text on the page. When converted these documents often have text that runs off the page and other artifacts. This option will extract the content from the tables and present it in a linear fashion." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:229 -msgid "XPath expression that specifies all tags that should be added to the Table of Contents at level one. If this is specified, it takes precedence over other forms of auto-detection. See the XPath Tutorial in the calibre User Manual for examples." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:239 -msgid "XPath expression that specifies all tags that should be added to the Table of Contents at level two. Each entry is added under the previous level one entry. See the XPath Tutorial in the calibre User Manual for examples." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248 -msgid "XPath expression that specifies all tags that should be added to the Table of Contents at level three. Each entry is added under the previous level two entry. See the XPath Tutorial in the calibre User Manual for examples." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:257 -msgid "Normally, if the source file already has a Table of Contents, it is used in preference to the auto-generated one. With this option, the auto-generated one is always used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:265 -msgid "Don't add auto-detected chapters to the Table of Contents." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:273 -#, python-format -msgid "If fewer than this number of chapters is detected, then links are added to the Table of Contents. Default: %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:279 -#, python-format -msgid "Maximum number of links to insert into the TOC. Set to 0 to disable. Default is: %default. Links are only added to the TOC if less than the threshold number of chapters were detected." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:287 -msgid "Remove entries from the Table of Contents whose titles match the specified regular expression. Matching entries and all their children are removed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295 -msgid "When creating a TOC from links in the input document, allow duplicate entries, i.e. allow more than one entry with the same text, provided that they point to a different location." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:306 -msgid "An XPath expression to detect chapter titles. The default is to consider

or

tags that contain the words \"chapter\",\"book\",\"section\", \"prologue\", \"epilogue\", or \"part\" as chapter titles as well as any tags that have class=\"chapter\". The expression used must evaluate to a list of elements. To disable chapter detection, use the expression \"/\". See the XPath Tutorial in the calibre User Manual for further help on using this feature." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320 -msgid "Specify how to mark detected chapters. A value of \"pagebreak\" will insert page breaks before chapters. A value of \"rule\" will insert a line before chapters. A value of \"none\" will disable chapter marking and a value of \"both\" will use both page breaks and lines to mark chapters." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:330 -msgid "An XPath expression to detect the location in the document at which to start reading. Some ebook reading programs (most prominently the Kindle) use this location as the position at which to open the book. See the XPath tutorial in the calibre User Manual for further help using this feature." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340 -msgid "Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to the style rules from the source file, so it can be used to override those rules." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:348 -msgid "A comma separated list of CSS properties that will be removed from all CSS style rules. This is useful if the presence of some style information prevents it from being overridden on your device. For example: font-family,color,margin-left,margin-right" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:359 -msgid "An XPath expression. Page breaks are inserted before the specified elements. To disable use the expression: /" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:365 -msgid "Some documents specify page margins by specifying a left and right margin on each individual paragraph. calibre will try to detect and remove these margins. Sometimes, this can cause the removal of margins that should not have been removed. In this case you can disable the removal." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:376 -#, python-format -msgid "Set the top margin in pts. Default is %default. Setting this to less than zero will cause no margin to be set. Note: 72 pts equals 1 inch" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382 -#, python-format -msgid "Set the bottom margin in pts. Default is %default. Setting this to less than zero will cause no margin to be set. Note: 72 pts equals 1 inch" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:388 -#, python-format -msgid "Set the left margin in pts. Default is %default. Setting this to less than zero will cause no margin to be set. Note: 72 pts equals 1 inch" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394 -#, python-format -msgid "Set the right margin in pts. Default is %default. Setting this to less than zero will cause no margin to be set. Note: 72 pts equals 1 inch" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401 -msgid "Change text justification. A value of \"left\" converts all justified text in the source to left aligned (i.e. unjustified) text. A value of \"justify\" converts all unjustified text to justified. A value of \"original\" (the default) does not change justification in the source file. Note that only some output formats support justification." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:411 -msgid "Remove spacing between paragraphs. Also sets an indent on paragraphs of 1.5em. Spacing removal will not work if the source file does not use paragraphs (

or

tags)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418 -msgid "When calibre removes blank lines between paragraphs, it automatically sets a paragraph indent, to ensure that paragraphs can be easily distinguished. This option controls the width of that indent (in em). If you set this value negative, then the indent specified in the input document is used, that is, calibre does not change the indentation." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:427 -msgid "Use the cover detected from the source file in preference to the specified cover." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:433 -msgid "Insert a blank line between paragraphs. Will not work if the source file does not use paragraphs (

or

tags)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:440 -msgid "Set the height of the inserted blank lines (in em). The height of the lines between paragraphs will be twice the value set here." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:447 -msgid "Remove the first image from the input ebook. Useful if the input document has a cover image that is not identified as a cover. In this case, if you set a cover in calibre, the output document will end up with two cover images if you do not specify this option." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:456 -msgid "Insert the book metadata at the start of the book. This is useful if your ebook reader does not support displaying/searching metadata directly." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:464 -msgid "Convert plain quotes, dashes and ellipsis to their typographically correct equivalents. For details, see http://daringfireball.net/projects/smartypants" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:472 -msgid "Convert fancy quotes, dashes and ellipsis to their plain equivalents." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:480 -msgid "Read metadata from the specified OPF file. Metadata read from this file will override any metadata in the source file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:487 -#, python-format -msgid "Transliterate unicode characters to an ASCII representation. Use with care because this will replace unicode characters with ASCII. For instance it will replace \"%s\" with \"Mikhail Gorbachiov\". Also, note that in cases where there are multiple representations of a character (characters shared by Chinese and Japanese for instance) the representation based on the current calibre interface language will be used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:502 -msgid "Preserve ligatures present in the input document. A ligature is a special rendering of a pair of characters like ff, fi, fl et cetera. Most readers do not have support for ligatures in their default fonts, so they are unlikely to render correctly. By default, calibre will turn a ligature into the corresponding pair of normal characters. This option will preserve them instead." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:514 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:38 -msgid "Set the title." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:518 -msgid "Set the authors. Multiple authors should be separated by ampersands." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:523 -msgid "The version of the title to be used for sorting. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:527 -msgid "String to be used when sorting by author. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:531 -msgid "Set the cover to the specified file or URL" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:535 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:54 -msgid "Set the ebook description." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:539 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:56 -msgid "Set the ebook publisher." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:543 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:60 -msgid "Set the series this ebook belongs to." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:547 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:62 -msgid "Set the index of the book in this series." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:551 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:64 -msgid "Set the rating. Should be a number between 1 and 5." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:555 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:66 -msgid "Set the ISBN of the book." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:559 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:68 -msgid "Set the tags for the book. Should be a comma separated list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:563 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:70 -msgid "Set the book producer." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:567 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:72 -msgid "Set the language." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:571 -msgid "Set the publication date." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:575 -msgid "Set the book timestamp (no longer used anywhere)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:579 -msgid "Enable heuristic processing. This option must be set for any heuristic processing to take place." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:584 -msgid "Detect unformatted chapter headings and sub headings. Change them to h2 and h3 tags. This setting will not create a TOC, but can be used in conjunction with structure detection to create one." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:591 -msgid "Look for common words and patterns that denote italics and italicize them." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:596 -msgid "Turn indentation created from multiple non-breaking space entities into CSS indents." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:601 -msgid "Scale used to determine the length at which a line should be unwrapped. Valid values are a decimal between 0 and 1. The default is 0.4, just below the median line length. If only a few lines in the document require unwrapping this value should be reduced" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:609 -msgid "Unwrap lines using punctuation and other formatting clues." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:613 -msgid "Remove empty paragraphs from the document when they exist between every other paragraph" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:618 -msgid "Left aligned scene break markers are center aligned. Replace soft scene breaks that use multiple blank lines with horizontal rules." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:624 -msgid "Replace scene breaks with the specified text. By default, the text from the input document is used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:629 -msgid "Analyze hyphenated words throughout the document. The document itself is used as a dictionary to determine whether hyphens should be retained or removed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:635 -msgid "Looks for occurrences of sequential

or

tags. The tags are renumbered to prevent splitting in the middle of chapter headings." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:641 -msgid "Search pattern (regular expression) to be replaced with sr1-replace." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646 -msgid "Replacement to replace the text found with sr1-search." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:650 -msgid "Search pattern (regular expression) to be replaced with sr2-replace." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:655 -msgid "Replacement to replace the text found with sr2-search." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:659 -msgid "Search pattern (regular expression) to be replaced with sr3-replace." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:664 -msgid "Replacement to replace the text found with sr3-search." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:668 -msgid "Path to a file containing search and replace regular expressions. The file must contain alternating lines of regular expression followed by replacement pattern (which can be an empty line). The regular expression must be in the python regex syntax and the file must be UTF-8 encoded." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:776 -msgid "Could not find an ebook inside the archive" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:832 -msgid "Values of series index and rating must be numbers. Ignoring" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:839 -msgid "Failed to parse date/time" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:1002 -msgid "Converting input to HTML..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:1035 -msgid "Running transforms on ebook..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:1157 -#, python-format -msgid "Running %s plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/docx/to_html.py:45 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1316 -msgid "Notes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/html/to_zip.py:18 -msgid "Follow all local links in an HTML file and create a ZIP file containing all linked files. This plugin is run every time you add an HTML file to the library." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/html/to_zip.py:60 -msgid "Character encoding for the input HTML files. Common choices include: cp1252, cp1251, latin1 and utf-8." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/html/to_zip.py:91 -msgid "Add linked files in breadth first order" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/html/to_zip.py:92 -msgid "Normally, when following links in HTML files calibre does it depth first, i.e. if file A links to B and C, but B links to D, the files are added in the order A, B, D, C. With this option, they will instead be added as A, B, C, D" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lit/from_any.py:47 -msgid "Creating LIT file from EPUB..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:320 -msgid "\tBook Designer file detected." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:322 -msgid "\tParsing HTML..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:345 -msgid "\tBaen file detected. Re-parsing..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:361 -msgid "Written preprocessed HTML to " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:378 -#, python-format -msgid "Processing %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:392 -msgid "\tConverting to BBeB..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:538 -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:551 -#, python-format -msgid "Could not parse file: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:543 -#, python-format -msgid "%s is an empty file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:564 -#, python-format -msgid "Failed to parse link %(tag)s %(children)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:609 -#, python-format -msgid "Cannot add link %s to TOC" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:959 -#, python-format -msgid "Unable to process image %(path)s. Error: %(err)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1005 -#, python-format -msgid "Unable to process interlaced PNG %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1775 -#, python-format -msgid "An error occurred while processing a table: %s. Ignoring table markup." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1777 -#, python-format -msgid "" -"Bad table:\n" -"%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1799 -msgid "Table has cell that is too large" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1865 -#, python-format -msgid "Could not read cover image: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1868 -#, python-format -msgid "Cannot read from: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1997 -msgid "Failed to process opf file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrfparser.py:137 -msgid "" -"%prog book.lrf\n" -"Convert an LRF file into an LRS (XML UTF-8 encoded) file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrfparser.py:138 -msgid "Output LRS file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrfparser.py:140 -msgid "Do not save embedded image and font files to disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrfparser.py:159 -msgid "Parsing LRF..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrfparser.py:162 -msgid "Creating XML..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrfparser.py:164 -msgid "LRS written to " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:267 -msgid "Could not read from thumbnail file:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:287 -msgid "" -"%prog [options] file.lrs\n" -"Compile an LRS file into an LRF file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:288 -msgid "Path to output file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:290 -msgid "Verbose processing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:292 -msgid "Convert LRS to LRS, useful for debugging." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:485 -msgid "Invalid LRF file. Could not set metadata." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:610 -msgid "" -"%prog [options] mybook.lrf\n" -"\n" -"\n" -"Show/edit the metadata in an LRF file.\n" -"\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:617 -msgid "Set the book title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:619 -msgid "Set sort key for the title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:621 -msgid "Set the author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:623 -msgid "Set sort key for the author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:625 -msgid "The category this book belongs to. E.g.: History" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:628 -msgid "Path to a graphic that will be set as this files' thumbnail" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:631 -msgid "Path to a txt file containing the comment to be stored in the lrf file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:635 -msgid "Extract thumbnail from LRF file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:636 -msgid "Set the publisher" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:637 -msgid "Set the book classification" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:638 -msgid "Set the book creator" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:639 -msgid "Set the book producer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:641 -msgid "Extract cover from LRF file. Note that the LRF format has no defined cover, so we use some heuristics to guess the cover." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:643 -msgid "Set book ID" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/archive.py:42 -msgid "Extract common e-book formats from archives (zip/rar) files. Also try to autodetect if they are actually cbz/cbr files." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:132 -msgid "TEMPLATE ERROR" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:637 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:66 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:686 -msgid "No" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:741 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/delete_matching_from_device.py:76 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/quickview.py:87 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:258 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:125 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1201 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:149 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:162 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:39 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/models.py:23 -#: /home/kovid/work/calibre/src/calibre/library/cli.py:580 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:375 -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:585 -msgid "Title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:742 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:127 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1202 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/models.py:23 -msgid "Author(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:743 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:132 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:159 -msgid "Publisher" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:744 -msgid "Producer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:745 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:982 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:157 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:245 -msgid "Comments" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:747 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:186 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:93 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:102 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:108 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:142 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:206 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:241 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:273 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:348 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:353 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:355 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:402 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:404 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:581 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:630 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:635 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:637 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1132 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:60 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:133 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:70 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:161 -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:129 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:981 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:1227 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:201 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:801 -msgid "Tags" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:749 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:184 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/quickview.py:91 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:60 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:260 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:134 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:70 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:163 -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:130 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:306 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:2304 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:140 -msgid "Series" -msgid_plural "Series" -msgstr[0] "" -msgstr[1] "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:750 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:136 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:164 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:127 -msgid "Languages" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:752 -msgid "Timestamp" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:754 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:183 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:130 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:149 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:305 -msgid "Published" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:756 -msgid "Rights" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/formatter.py:31 -msgid "Value: unknown field " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:20 -msgid "options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:21 -#, python-format -msgid "" -"\n" -"Read/Write metadata from/to ebook files.\n" -"\n" -"Supported formats for reading metadata: %(read)s\n" -"\n" -"Supported formats for writing metadata: %(write)s\n" -"\n" -"Different file types support different kinds of metadata. If you try to set\n" -"some metadata on a file type that does not support it, the metadata will be\n" -"silently ignored.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:40 -msgid "Set the authors. Multiple authors should be separated by the & character. Author names should be in the order Firstname Lastname." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:44 -msgid "The version of the title to be used for sorting. If unspecified, and the title is specified, it will be auto-generated from the title." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:48 -msgid "String to be used when sorting by author. If unspecified, and the author(s) are specified, it will be auto-generated from the author(s)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:52 -msgid "Set the cover to the specified file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:58 -msgid "Set the book category." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:74 -msgid "Set the published date." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:77 -msgid "Get the cover from the ebook and save it at as the specified file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:80 -msgid "Specify the name of an OPF file. The metadata will be written to the OPF file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:83 -msgid "Read metadata from the specified OPF file and use it to set metadata in the ebook. Metadata specified on the command line will override metadata read from the OPF file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:88 -msgid "Set the BookID in LRF files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:153 -msgid "No file specified" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:168 -msgid "Original metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:185 -msgid "Changed metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:197 -msgid "OPF created in" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:203 -msgid "Cover saved to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:205 -msgid "No cover found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:64 -msgid "" -"\n" -"%prog [options] ISBN\n" -"\n" -"Fetch a cover image/social metadata for the book identified by ISBN from LibraryThing.com\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1501 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/cover.py:183 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:994 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:39 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:255 -msgid "Cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:517 -msgid "Downloads metadata and covers from Amazon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:527 -msgid "US" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:528 -msgid "France" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:529 -msgid "Germany" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:530 -msgid "UK" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:531 -msgid "Italy" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:532 -msgid "Japan" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:533 -msgid "Spain" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:534 -msgid "Brazil" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:538 -msgid "Amazon website to use:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:539 -msgid "Metadata from Amazon will be fetched using this country's Amazon website." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:790 -msgid "Amazon timed out. Try again later." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/base.py:173 -msgid "Metadata source" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/big_book_search.py:31 -msgid "Downloads multiple book covers from Amazon. Useful to find alternate covers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/big_book_search.py:33 -msgid "Configure the Big Book Search plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/big_book_search.py:35 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:22 -msgid "Maximum number of covers to get" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/big_book_search.py:36 -msgid "The maximum number of covers to process from the search result" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/douban.py:154 -msgid "Downloads metadata and covers from Douban.com. Useful only for chinese language books." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/edelweiss.py:167 -msgid "Downloads metadata and covers from Edelweiss - A catalog updated by book publishers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google.py:161 -msgid "Downloads metadata and covers from Google Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:18 -msgid "Downloads covers from a Google Image search. Useful to find larger/alternate covers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:20 -msgid "Configure the Google Image Search plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:23 -msgid "The maximum number of covers to process from the google search result" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:24 -msgid "Cover size" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:25 -msgid "Search for covers larger than the specified size" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:27 -msgid "Any size" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:28 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:146 -msgid "Large" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:29 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:30 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:31 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:32 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:33 -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/google_images.py:34 -#, python-format -msgid "Larger than %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/isbndb.py:23 -msgid "Downloads metadata from isbndb.com" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/isbndb.py:33 -msgid "IsbnDB key:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/isbndb.py:34 -msgid "To use isbndb.com you have to sign up for a free account at isbndb.com and get an access key." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/isbndb.py:38 -msgid "To use metadata from isbndb.com you must sign up for a free account and get an isbndb key and enter it below. Instructions to get the key are here." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/openlibrary.py:15 -msgid "Downloads covers from The Open Library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/overdrive.py:29 -msgid "Downloads metadata and covers from Overdrive's Content Reserve" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/overdrive.py:41 -msgid "Download all metadata (slow)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/overdrive.py:42 -msgid "Enable this option to gather all metadata available from Overdrive." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/overdrive.py:45 -msgid "Additional metadata can be taken from Overdrive's book detail page. This includes a limited set of tags used by libraries, comments, language, and the ebook ISBN. Collecting this data is disabled by default due to the extra time required. Check the download all metadata option below to enable downloading this data." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/ozon.py:18 -msgid "Downloads metadata and covers from OZON.ru" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader/headers.py:61 -msgid "Sample Book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader/mobi6.py:75 -msgid "This is an Amazon Topaz book. It cannot be processed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/tweak.py:46 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/container.py:624 -msgid "This is not a MOBI file. It is a Topaz file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/tweak.py:51 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/container.py:629 -msgid "This is not a MOBI file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/tweak.py:54 -msgid "This file is locked with DRM. It cannot be tweaked." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/tweak.py:59 -msgid "This MOBI file does not contain a KF8 format book. KF8 is the new format from Amazon. calibre can only tweak MOBI files that contain KF8 books. Older MOBI files without KF8 are not tweakable." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/tweak.py:65 -msgid "This MOBI file contains both KF8 and older Mobi6 data. Tweaking it will remove the Mobi6 data, which means the file will not be usable on older Kindles. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:466 -msgid "No details available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer8/toc.py:15 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/toc.py:376 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:357 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:221 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/toc.py:219 -msgid "Table of Contents" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303 -msgid "Title Page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305 -msgid "Index" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306 -msgid "Glossary" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307 -msgid "Acknowledgements" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308 -msgid "Bibliography" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309 -msgid "Colophon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310 -msgid "Copyright" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311 -msgid "Dedication" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1312 -msgid "Epigraph" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1313 -msgid "Foreword" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1314 -msgid "List of Illustrations" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1315 -msgid "List of Tables" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1317 -msgid "Preface" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1318 -msgid "Main Text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/iterator/__init__.py:22 -#, python-format -msgid "%s format books are not supported" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/container.py:637 -msgid "This MOBI file does not contain a KF8 format book. KF8 is the new format from Amazon. calibre can only edit MOBI files that contain KF8 books. Older MOBI files without KF8 are not editable." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/container.py:643 -msgid "This MOBI file contains both KF8 and older Mobi6 data. calibre can only edit MOBI files that contain only KF8 data." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/errors.py:17 -msgid "This file is locked with DRM. It cannot be edited." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:36 -#, python-format -msgid "" -"

Polishing books is all about putting the shine of perfection onto\n" -"your carefully crafted ebooks.

\n" -"\n" -"

Polishing tries to minimize the changes to the internal code of your ebook.\n" -"Unlike conversion, it does not flatten CSS, rename files, change font\n" -"sizes, adjust margins, etc. Every action performs only the minimum set of\n" -"changes needed for the desired effect.

\n" -"\n" -"

You should use this tool as the last step in your ebook creation process.

\n" -"{0}\n" -"

Note that polishing only works on files in the %s formats.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:48 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:446 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/toc_edit.py:105 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:199 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts.py:132 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts.py:223 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:267 -msgid " or " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:50 -msgid "" -"

Subsetting fonts means reducing an embedded font to contain\n" -"only the characters used from that font in the book. This\n" -"greatly reduces the size of the font files (halving the font\n" -"file sizes is common).

\n" -"\n" -"

For example, if the book uses a specific font for headers,\n" -"then subsetting will reduce that font to contain only the\n" -"characters present in the actual headers in the book. Or if the\n" -"book embeds the bold and italic versions of a font, but bold\n" -"and italic text is relatively rare, or absent altogether, then\n" -"the bold and italic fonts can either be reduced to only a few\n" -"characters or completely removed.

\n" -"\n" -"

The only downside to subsetting fonts is that if, at a later\n" -"date you decide to add more text to your books, the newly added\n" -"text might not be covered by the subset font.

\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:69 -msgid "" -"

Insert a \"book jacket\" page at the start of the book that contains\n" -"all the book metadata such as title, tags, authors, series, comments,\n" -"etc. Any previous book jacket will be replaced.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:74 -msgid "

Remove a previous inserted book jacket page.

\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:78 -msgid "" -"

Convert plain text dashes, ellipsis, quotes, multiple hyphens, etc. into their\n" -"typographically correct equivalents.

\n" -"

Note that the algorithm can sometimes generate incorrect results, especially\n" -"when single quotes at the start of contractions are involved.

\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:117 -#, python-format -msgid "## Polishing: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:125 -msgid "Updating metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:130 -msgid "Updated metadata jacket" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:131 -msgid "Metadata updated\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:134 -msgid "Setting cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:139 -msgid "Inserting metadata jacket" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:142 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:146 -msgid "Existing metadata jacket replaced" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:144 -msgid "Metadata jacket inserted" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:150 -msgid "Removing metadata jacket" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:152 -msgid "Metadata jacket removed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:154 -msgid "No metadata jacket found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:158 -msgid "Smartening punctuation" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:163 -msgid "Subsetting embedded fonts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:169 -#, python-format -msgid "Polishing took: %.1f seconds" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:202 -msgid "Path to a cover image. Changes the cover specified in the ebook. If no cover is present, or the cover is not properly identified, inserts a new cover." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:205 -msgid "Path to an OPF file. The metadata in the book is updated from the OPF file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:210 -msgid "Produce more verbose output, useful for debugging." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:220 -msgid "You must provide the input file to polish" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:224 -msgid "Unknown extra arguments" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/main.py:242 -msgid "You must specify at least one action to perform" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/replace.py:73 -#, python-format -msgid "Smartened punctuation in: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/toc.py:133 -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/toc.py:139 -#, python-format -msgid "No file named %s exists" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/toc.py:143 -#, python-format -msgid "No HTML file named %s exists" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/toc.py:153 -#, python-format -msgid "The anchor %(a)s does not exist in file %(f)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/polish/toc.py:200 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:246 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:679 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:694 -msgid "(Untitled)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/cover.py:98 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:187 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:991 -#, python-format -msgid "Book %(sidx)s of %(series)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:55 -msgid "HTML TOC generation options." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:185 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:131 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:71 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:160 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:176 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:799 -msgid "Rating" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/split.py:35 -#, python-format -msgid "Could not find reasonable point at which to split: %(path)s Sub-tree size: %(size)d KB" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/writer.py:32 -msgid "OPF/NCX/etc. generation options." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/writer.py:35 -#, python-format -msgid "OPF version to generate. Default is %default." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/writer.py:37 -msgid "Generate an Adobe \"page-map\" file if pagination information is available." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/pdb/ereader/reader132.py:128 -msgid "Footnotes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/pdb/ereader/reader132.py:139 -msgid "Sidebar" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/outline_writer.py:49 -#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/outline_writer.py:60 -#, python-format -msgid "Page %d" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/pdftohtml.py:71 -msgid "Could not find pdftohtml, check it is in your PATH" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/render/from_html.py:310 -msgid "Untitled" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/ebooks/rb/rbml.py:102 -#: /home/kovid/work/calibre/src/calibre/ebooks/txt/txtml.py:97 -msgid "Table of Contents:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:125 -msgid "Send file to storage card instead of main memory by default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:127 -msgid "Confirm before deleting" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:129 -msgid "Main window geometry" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:131 -msgid "Notify when a new version is available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:133 -msgid "Use Roman numerals for series number" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:135 -msgid "Sort tags list by name, popularity, or rating" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:137 -msgid "Match tags by any or all." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:139 -msgid "Number of covers to show in the cover browsing mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:141 -msgid "Defaults for conversion to LRF" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:143 -msgid "Options for the LRF ebook viewer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:147 -msgid "Formats that are viewed using the internal viewer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:149 -msgid "Columns to be displayed in the book list" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:150 -msgid "Automatically launch content server on application startup" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:151 -msgid "Oldest news kept in database" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:152 -msgid "Show system tray icon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:154 -msgid "Upload downloaded news to device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:156 -msgid "Delete news books from library after uploading to device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:158 -msgid "Show the cover flow in a separate window instead of in the main calibre window" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:160 -msgid "Disable notifications from the system tray icon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:162 -msgid "Default action to perform when send to device button is clicked" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:167 -msgid "Start searching as you type. If this is disabled then search will only take place when the Enter or Return key is pressed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:170 -msgid "When searching, show all books with search results highlighted instead of showing only the matches. You can use the N or F3 keys to go to the next match." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:195 -msgid "Maximum number of simultaneous conversion/news download jobs. This number is twice the actual value for historical reasons." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:198 -msgid "Download social metadata (tags/rating/etc.)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:200 -msgid "Overwrite author and title with new metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:202 -msgid "Automatically download the cover, if available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:204 -msgid "Limit max simultaneous jobs to number of CPUs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:206 -msgid "The layout of the user interface. Wide has the book details panel on the right and narrow has it at the bottom." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:210 -msgid "Show the average rating per item indication in the tag browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:212 -msgid "Disable UI animations" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:217 -msgid "tag browser categories not to display" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:283 -msgid "WARNING:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:293 -msgid "ERROR:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:305 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:258 -msgid "Show this confirmation again" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:344 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133 -msgid "Restart needed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:346 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:742 -msgid "Restart calibre now" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:577 -msgid "Choose Files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:28 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:765 -msgid "Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:29 -msgid "EPUB Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:30 -msgid "LRF Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:31 -msgid "HTML Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:32 -msgid "LIT Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:33 -msgid "MOBI Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:34 -msgid "Topaz books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:35 -msgid "Text books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:36 -msgid "PDF Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:37 -msgid "SNB Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:38 -msgid "Comics" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:39 -msgid "Archives" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:40 -msgid "Wordprocessor files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:47 -msgid "Add books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:48 -msgid "Add books to the calibre library/device from files on your computer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:49 -msgid "A" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:52 -msgid "Add books from a single directory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:58 -msgid "Add books from directories, including sub-directories (One book per directory, assumes every ebook file is the same book in a different format)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:62 -msgid "Add books from directories, including sub directories (Multiple books per directory, assumes every ebook file is a different book)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:67 -msgid "Add Empty book. (Book entry with no formats)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:68 -msgid "Shift+Ctrl+E" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:69 -msgid "Add from ISBN" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:71 -msgid "Add files to selected book records" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:72 -msgid "Shift+A" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:74 -msgid "Control the adding of books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:95 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:120 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/catalog.py:39 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:132 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:238 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:104 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:277 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:346 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:386 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:426 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:83 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/toc_edit.py:114 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:271 -msgid "No books selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:96 -msgid "Cannot add files as no books are selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:100 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding.py:120 -msgid "Are you sure" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:101 -#, python-format -msgid "Are you sure you want to add the same files to all %d books? If the format already exists for a book, it will be replaced." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:107 -msgid "Select book files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:189 -msgid "Adding" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:190 -msgid "Creating book records from ISBNs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:281 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:330 -msgid "Uploading books to device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:301 -msgid "Supported books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:304 -msgid "Select books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:342 -msgid "Merged some books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:343 -#, python-format -msgid "The following %d duplicate books were found and incoming book formats were processed and merged into your Calibre database according to your automerge settings:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:365 -msgid "Failed to read metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:366 -msgid "Failed to read metadata from the following" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:387 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:392 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:411 -msgid "Add to library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:392 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:163 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:89 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:106 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:113 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:327 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:137 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:183 -msgid "No book selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:405 -msgid "The following books are virtual and cannot be added to the calibre library:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:411 -msgid "No book files found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:417 -msgid "Downloading books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:418 -msgid "Downloading books from device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:437 -msgid "Could not download files from the device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:440 -msgid "Could not download some files from the device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:444 -msgid "Could not download files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add_to_library.py:13 -msgid "Add books to library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/add_to_library.py:14 -msgid "Add books to your calibre library from the connected device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:26 -msgid "Merging user annotations into database" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:63 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:784 -msgid "Fetch annotations (experimental)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:107 -msgid "Not supported" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:108 -msgid "Fetching annotations is not supported for this device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:112 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:136 -msgid "Use library only" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:113 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:137 -msgid "User annotations generated from main library only" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:121 -msgid "No books selected to fetch annotations from" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:156 -msgid "Some errors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:157 -msgid "Could not fetch annotations for some books. Click show details to see which ones." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/catalog.py:21 -msgid "Create catalog" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/catalog.py:22 -msgid "Create a catalog of the books in your calibre library in different formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/catalog.py:40 -msgid "No books selected for catalog generation" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/catalog.py:63 -#, python-format -msgid "Generating %s catalog..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/catalog.py:72 -msgid "Catalog generation complete, with warnings." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/catalog.py:87 -msgid "Catalog generated." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/catalog.py:90 -msgid "Export Catalog Directory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/catalog.py:91 -#, python-format -msgid "Select destination for %(title)s.%(fmt)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/catalog.py:101 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1005 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:111 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:283 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:345 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:478 -msgid "Permission denied" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/catalog.py:102 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:346 -#, python-format -msgid "Could not open %s. Is it being used by another program?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:99 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:142 -msgid "No library found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:105 -#, python-format -msgid "No existing calibre library was found at %s. If the library was moved, select its new location below. Otherwise calibre will forget this library." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:111 -msgid "New location of this library:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:120 -msgid "Library moved" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:122 -msgid "Forget library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:132 -msgid "New library location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:143 -#, python-format -msgid "No existing calibre library found at %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:154 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:168 -msgid "Choose Library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:155 -msgid "Choose calibre library to work with" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:158 -msgid "Switch/create library..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:162 -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:206 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:59 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:169 -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:129 -#, python-format -msgid "%d books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:176 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/random.py:17 -msgid "Pick a random book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:183 -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:91 -msgid "Quick switch" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:185 -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:92 -msgid "Rename library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:188 -msgid "Remove library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:207 -msgid "Library Maintenance" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:208 -msgid "Library metadata backup status" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:212 -msgid "Start backing up metadata of all books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:216 -msgid "Check library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:220 -msgid "Restore database" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:310 -msgid "Rename" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:311 -#, python-format -msgid "Choose a new name for the library %s. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:312 -msgid "Note that the actual library folder will be renamed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:319 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:730 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:204 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:312 -msgid "Already exists" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:320 -#, python-format -msgid "The folder %s already exists. Delete it first." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:324 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:386 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:97 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:749 -msgid "Too long" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:329 -msgid "Not found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:330 -#, python-format -msgid "Cannot rename as no library was found at %s. Try switching to this library first, then switch back and retry the renaming." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:340 -msgid "Rename failed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:341 -#, python-format -msgid "Failed to rename the library at %s. The most common cause for this is if one of the files in the library is open in another program." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:355 -msgid "Library removed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:356 -#, python-format -msgid "The library %s has been removed from calibre. The files remain on your computer, if you want to delete them, you will have to do so manually." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:369 -msgid "none" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:370 -msgid "Backup status" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:371 -#, python-format -msgid "Book metadata files remaining to be written: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:377 -msgid "Backup metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:378 -msgid "Metadata will be backed up while calibre is running, at the rate of approximately 1 book every three seconds." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:387 -#, python-format -msgid "Path to library too long. Must be less than %d characters. Move your library to a location with a shorter path using Windows Explorer, then point calibre to the new location and try again." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:422 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:737 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:83 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:88 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:318 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:378 -msgid "Success" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:423 -msgid "Found no errors in your calibre library database. Do you want calibre to check if the files in your library match the information in the database?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:428 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:267 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:985 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1017 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:114 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:128 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:369 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:409 -msgid "Failed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:429 -msgid "Database integrity check failed, click Show details for details." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:433 -msgid "Starting library scan, this may take a while" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:439 -msgid "No problems found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:440 -msgid "The files in your library match the information in the database." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:539 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:544 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:294 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:92 -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:1103 -msgid "Not allowed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:540 -msgid "You cannot change libraries while using the environment variable CALIBRE_OVERRIDE_DATABASE_PATH." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:545 -msgid "You cannot change libraries while jobs are running." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:22 -msgid "C" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:22 -msgid "Convert books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:22 -msgid "Convert books between different ebook formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:55 -msgid "Convert individually" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:58 -msgid "Bulk convert" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:62 -msgid "Create a catalog of the books in your calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:131 -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:683 -msgid "Cannot convert" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:164 -#, python-format -msgid "Starting conversion of %d book(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:230 -msgid "Empty output file, probably the conversion process crashed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:87 -#, python-format -msgid "%(title)s by %(author)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:138 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:60 -msgid "Choose library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:139 -msgid "Library &path:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:147 -msgid "Browse for library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:154 -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:205 -msgid "&Copy" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:156 -msgid "Copy to the specified library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:157 -msgid "&Move" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:160 -msgid "Copy to the specified library and delete from the current library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:180 -msgid "Copy to library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:181 -msgid "Copy selected books to the specified library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:214 -msgid "(delete after copy)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:218 -msgid "Choose library by path..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:230 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:237 -msgid "Cannot copy" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:231 -msgid "Cannot copy to current library." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:242 -msgid "No library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:243 -#, python-format -msgid "No library found at %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:245 -msgid "Copying to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:245 -msgid "Moving to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:261 -#, python-format -msgid "Copied %(num)d books to %(loc)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:263 -#, python-format -msgid "Moved %(num)d books to %(loc)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:267 -msgid "Could not copy books: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:274 -msgid "Auto merged" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:275 -msgid "Some books were automatically merged into existing records in the target library. Click Show details to see which ones. This behavior is controlled by the Auto merge option in Preferences->Adding books." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/copy_to_library.py:295 -msgid "You cannot use other libraries while using the environment variable CALIBRE_OVERRIDE_DATABASE_PATH." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:31 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:161 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/confirm_delete_ui.py:59 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor.py:112 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:677 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:93 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:239 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:374 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:597 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:607 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns.py:104 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:93 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:302 -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:457 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:242 -msgid "Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:32 -#, python-format -msgid "You are trying to delete %d books. Sending so many files to the Recycle Bin can be slow. Should calibre skip the Recycle Bin? If you click Yes the files will be permanently deleted." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:43 -msgid "Deleting..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:66 -msgid "Deleted" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:78 -msgid "Failed to delete" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:79 -msgid "Failed to delete some books, click the Show Details button for details." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:86 -msgid "Delete books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:86 -msgid "Remove books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:89 -msgid "Remove selected books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:122 -msgid "Remove files of a specific format from selected books.." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:125 -msgid "Remove all formats from selected books, except..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:128 -msgid "Remove all formats from selected books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:131 -msgid "Remove covers from selected books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:135 -msgid "Remove matching books from device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:160 -msgid "Cannot delete" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:171 -#, python-format -msgid "The %(fmt)s format will be permanently deleted from %(title)s. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:195 -msgid "Choose formats to be deleted" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:213 -msgid "Choose formats not to be deleted.

Note that this will never remove all formats from a book." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:240 -msgid "All formats for the selected books will be deleted from your library.
The book metadata will be kept. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:260 -msgid "Cannot delete books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:261 -msgid "No device is connected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:271 -msgid "Main memory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:272 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:709 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:718 -msgid "Storage Card A" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:273 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:711 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:720 -msgid "Storage Card B" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:278 -msgid "No books to delete" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:279 -msgid "None of the selected books are on the device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:296 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:400 -msgid "Deleting books from device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:345 -msgid "Some of the selected books are on the attached device. Where do you want the selected files deleted from?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:357 -#, python-format -msgid "The %d selected book(s) will be permanently deleted and the files removed from your calibre library. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:392 -#, python-format -msgid "The %d selected book(s) will be permanently deleted from your device. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:33 -msgid "Start wireless device connection" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:34 -msgid "Stop wireless device connection" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:38 -msgid "Connect to folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:43 -msgid "Connect to iTunes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:49 -msgid "Connect to Bambook" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:63 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:90 -msgid "Start Content Server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:85 -msgid "Start/stop content server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:96 -#, python-format -msgid " [%(ip)s, port %(port)d]" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:100 -msgid "Stop Content Server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:114 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:134 -msgid "Email to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:118 -msgid "Email to and delete from library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:128 -msgid "(delete from library)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:144 -msgid "Setup email based sharing of books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:162 -msgid "D" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:162 -msgid "Send to device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:180 -msgid "Connect/share" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:181 -msgid "Share books using a web server or email. Connect to special devices, etc." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:220 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84 -msgid "Stopping" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:221 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85 -msgid "Stopping server, this could take upto a minute, please wait..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:240 -msgid "Disable autostart" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:241 -msgid "Do you want wireless device connections to be started automatically when calibre starts?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:264 -msgid "Still looking for IP addresses" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:267 -msgid "Many IP addresses. See Start/Stop dialog." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_collections.py:13 -msgid "Manage collections" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_collections.py:14 -msgid "Manage the collections on this device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:27 -msgid "Change the title/author/cover etc. of books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:27 -msgid "E" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:27 -msgid "Edit metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:62 -msgid "Edit metadata individually" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:65 -msgid "Edit metadata in bulk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:68 -msgid "Download metadata and covers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:75 -msgid "Merge into first selected book - delete others" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:78 -msgid "Merge into first selected book - keep others" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:82 -msgid "Merge only formats into first selected book - delete others" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:87 -msgid "Merge book records" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:88 -msgid "M" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:103 -msgid "Cannot download metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:120 -msgid "Failed to download metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:130 -#: /home/kovid/work/calibre/src/calibre/gui2/dnd.py:84 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:532 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:898 -msgid "Download failed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:131 -#, python-format -msgid "Failed to download metadata or covers for any of the %d book(s)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:134 -msgid "Metadata download completed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:136 -#, python-format -msgid "Finished downloading metadata for %d book(s). Proceed with updating the metadata in your library?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:144 -#, python-format -msgid "Could not download metadata and/or covers for %d of the books. Click \"Show details\" to see which books." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:146 -msgid "Show the &failed books in the main book list after updating metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:154 -msgid "Download complete" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:154 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:961 -msgid "Download log" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:159 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:225 -msgid "Review downloaded metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:184 -msgid "Some books changed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:185 -msgid "The metadata for some books in your library has changed since you started the download. If you proceed, some of those changes may be overwritten. Click \"Show details\" to see the list of changed books. Do you want to proceed?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:226 -msgid "Discard downloaded metadata for this book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:227 -msgid "Use the downloaded metadata for all remaining books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:228 -msgid "Discard downloaded metadata for all remaining books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:229 -#, python-format -msgid "Discard the downloaded value for: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:230 -msgid "The downloaded metadata is on the left and the original metadata is on the right. If a downloaded value is blank or unknown, the original value is used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:233 -msgid "&View Book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:276 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:345 -msgid "Cannot edit metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:385 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:388 -msgid "Cannot merge books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:389 -msgid "At least two books must be selected for merging" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:392 -msgid "You are about to merge more than 5 books. Are you sure you want to proceed?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:401 -#, python-format -msgid "Book formats and metadata from the selected books will be added to the first selected book (%s). ISBN will not be merged.

The second and subsequently selected books will not be deleted or changed.

Please confirm you want to proceed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:413 -#, python-format -msgid "Book formats from the selected books will be merged into the first selected book (%s). Metadata in the first selected book will not be changed. Author, Title, ISBN and all other metadata will not be merged.

After merger the second and subsequently selected books, with any metadata they have will be deleted.

All book formats of the first selected book will be kept and any duplicate formats in the second and subsequently selected books will be permanently deleted from your calibre library.

Are you sure you want to proceed?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:429 -#, python-format -msgid "Book formats and metadata from the selected books will be merged into the first selected book (%s). ISBN will not be merged.

After merger the second and subsequently selected books will be deleted.

All book formats of the first selected book will be kept and any duplicate formats in the second and subsequently selected books will be permanently deleted from your calibre library.

Are you sure you want to proceed?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:599 -msgid "Applying changed metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:688 -msgid "Some failures" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:689 -msgid "Failed to apply updated metadata for some books in your library. Click \"Show Details\" to see details." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/fetch_news.py:19 -msgid "Download news in ebook form from various websites all over the world" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/fetch_news.py:19 -msgid "F" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/fetch_news.py:19 -msgid "Fetch news" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/fetch_news.py:54 -msgid "Fetching news from " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/fetch_news.py:83 -msgid " fetched." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/help.py:16 -msgid "F1" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/help.py:16 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:118 -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:679 -msgid "Help" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/next_match.py:12 -msgid "Move to next match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/next_match.py:13 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:226 -msgid "F3" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/next_match.py:13 -msgid "Move to next highlighted match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/next_match.py:13 -#: /home/kovid/work/calibre/src/calibre/gui2/library/delegates.py:415 -msgid "N" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/next_match.py:25 -msgid "Move to previous item" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/next_match.py:26 -msgid "Move to previous highlighted item" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/next_match.py:26 -msgid "Shift+N" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/next_match.py:27 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:235 -msgid "Shift+F3" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/open.py:14 -msgid "Open containing folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/open.py:15 -msgid "O" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/open.py:15 -msgid "Open the folder containing the current book's files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/plugin_updates.py:18 -msgid "Plugin Updater" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/plugin_updates.py:18 -msgid "Update any plugins you have installed in calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:34 -msgid "Polish book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:36 -#, python-format -msgid "Polish %d books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:40 -#, python-format -msgid "

About Polishing books

%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:41 -msgid "" -"

If you have both EPUB and ORIGINAL_EPUB in your book,\n" -" then polishing will run on ORIGINAL_EPUB (the same for other\n" -" ORIGINAL_* formats). So if you\n" -" want Polishing to not run on the ORIGINAL_* format, delete the\n" -" ORIGINAL_* format before running it.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:48 -#, python-format -msgid "

Subsetting fonts

%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:51 -#, python-format -msgid "

Smarten punctuation

%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:53 -msgid "

Updating metadata

This will update all metadata except the cover in the ebook files to match the current metadata in the calibre library.

Note that most ebook formats are not capable of supporting all the metadata in calibre.

There is a separate option to update the cover.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:61 -msgid "

Update the covers in the ebook files to match the current cover in the calibre library.

If the ebook file does not have an identifiable cover, a new cover is inserted.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:66 -#, python-format -msgid "

Book Jacket

%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:67 -#, python-format -msgid "

Remove Book Jacket

%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:73 -msgid "Select actions to perform:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:78 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:249 -msgid "&Subset all embedded fonts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:79 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:240 -msgid "Smarten &punctuation" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:80 -msgid "Update &metadata in the book files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:81 -msgid "Update the &cover in the book files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:82 -msgid "Add metadata as a \"book &jacket\" page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:83 -msgid "&Remove a previously inserted book jacket" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:93 -msgid "About" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:112 -msgid "Show &report" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:114 -msgid "Show a report of all the actions performed after polishing is completed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:120 -msgid "&Save Settings" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:122 -msgid "&Load Settings" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:125 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/duplicates.py:47 -msgid "Select &all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:127 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/duplicates.py:49 -msgid "Select &none" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:143 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:217 -msgid "No actions selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:144 -msgid "You must select at least one action before saving" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:146 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:71 -msgid "Choose name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:147 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:72 -msgid "Choose a name for these settings" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:167 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:90 -msgid "Remove saved settings" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:208 -msgid "Must update metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:209 -msgid "You have selected the option to add metadata as a \"book jacket\". For this option to work, you must also select the option to update metadata in the book files. Do you want to select it?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:218 -msgid "You must select at least one action, or click Cancel." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:232 -msgid "Queueing books for polishing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:276 -#, python-format -msgid "Polish %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:277 -#, python-format -msgid "Polish book %(nums)s of %(tot)s (%(title)s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:281 -#, python-format -msgid "Queueing book %(nums)s of %(tot)s (%(title)s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:307 -#, python-format -msgid "Ignore remaining %d reports" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:314 -msgid "View full &log" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:337 -#, python-format -msgid "Polishing of %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:343 -#, python-format -msgid "The original file has been saved as %s." -msgid_plural "The original files have been saved as %s." -msgstr[0] "" -msgstr[1] "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:345 -msgid " and " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:348 -msgid "If you polish again, the polishing will run on the originals." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:383 -msgid "Polish books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:384 -msgid "Apply the shine of perfection to your books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:384 -msgid "P" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:425 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:443 -msgid "Cannot polish" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:444 -#, python-format -msgid "Polishing is only supported for books in the %s formats. Convert to one of those formats before polishing." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/polish.py:472 -#, python-format -msgid "Start polishing of %d book(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:20 -msgid "Configure calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:20 -msgid "Ctrl+P" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:22 -msgid "Change calibre behavior" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:29 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:208 -msgid "Run welcome wizard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:31 -msgid "Get plugins to enhance calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:35 -msgid "Restart in debug mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:55 -msgid "Cannot configure while there are running jobs." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:60 -msgid "Cannot configure before calibre is restarted." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/restart.py:14 -#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/main.py:59 -msgid "Ctrl+R" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/restart.py:14 -msgid "Restart" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:20 -msgid "Save to disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:21 -msgid "Export ebook files from the calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:21 -msgid "S" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:30 -msgid "Save to disk in a single directory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:32 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:49 -#, python-format -msgid "Save only %s format to disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:36 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:52 -#, python-format -msgid "Save only %s format to disk in a single directory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:39 -msgid "Save single format to disk..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:61 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:82 -msgid "Cannot save to disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:64 -msgid "Choose format to save to disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:85 -msgid "Choose destination directory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:93 -msgid "You are trying to save files into the calibre library. This can cause corruption of your library. Save to disk is meant to export files from your calibre library elsewhere." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:135 -msgid "Error while saving" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:136 -msgid "There was an error while saving." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:143 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:144 -msgid "Could not save some books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/save_to_disk.py:145 -msgid "Click the show details button to see which ones." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/show_book_details.py:16 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:806 -msgid "Show book details" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/show_book_details.py:17 -msgid "I" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/show_book_details.py:17 -msgid "Show the detailed metadata for the current book in a separate window" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/show_book_details.py:26 -msgid "No detailed info available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/show_book_details.py:27 -msgid "No detailed information is available for books on the device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/show_quickview.py:16 -msgid "Q" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/show_quickview.py:16 -msgid "Show quickview" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/show_quickview.py:31 -msgid "No quickview available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/show_quickview.py:32 -msgid "Quickview is not available for books on the device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/similar_books.py:17 -msgid "Show books similar to the current book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/similar_books.py:17 -msgid "Similar books..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/similar_books.py:25 -msgid "Alt+A" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/similar_books.py:25 -msgid "Books by same author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/similar_books.py:26 -msgid "Books in this series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/similar_books.py:27 -msgid "Alt+Shift+S" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/similar_books.py:28 -msgid "Alt+P" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/similar_books.py:28 -msgid "Books by this publisher" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/similar_books.py:29 -msgid "Alt+T" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/similar_books.py:29 -msgid "Books with the same tags" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:20 -msgid "G" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:20 -msgid "Get books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:20 -msgid "Search dozens of online ebook retailers for the cheapest books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:22 -msgid "Search for ebooks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:28 -msgid "this author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:28 -msgid "this title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:29 -msgid "this book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:32 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:494 -#, python-format -msgid "Search for %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:35 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:177 -msgid "Stores" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:38 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/chooser_dialog.py:18 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search.py:314 -msgid "Choose stores" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:89 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:106 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:113 -msgid "Cannot search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:134 -msgid "Calibre helps you find the ebooks you want by searching the websites of various commercial and public domain book sources for you." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:138 -msgid "Using the integrated search you can easily find which store has the book you are looking for, at the best price. You also get DRM status and other useful information." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:142 -msgid "All transactions (paid or otherwise) are handled between you and the book seller. Calibre is not part of this process and any issues related to a purchase should be directed to the website you are buying from. Be sure to double check that any books you get will work with your e-book reader, especially if the book you are buying has DRM." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:152 -msgid "Show this message again" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/store.py:153 -msgid "About Get Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/toc_edit.py:24 -msgid "Choose format to edit" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/toc_edit.py:28 -msgid "Choose which format you want to edit:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/toc_edit.py:40 -msgid "&All formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/toc_edit.py:62 -msgid "Edit ToC" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/toc_edit.py:63 -msgid "K" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/toc_edit.py:102 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/toc_edit.py:113 -msgid "Cannot edit ToC" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/toc_edit.py:103 -#, python-format -msgid "Editing Table of Contents is only supported for books in the %s formats. Convert to one of those formats before polishing." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:31 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:288 -msgid "Tweak Book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:64 -msgid "Choose the format to tweak:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:74 -msgid "" -"

About Tweak Book

\n" -"

Tweak Book allows you to fine tune the appearance of an ebook by\n" -" making small changes to its internals. In order to use Tweak Book,\n" -" you need to know a little bit about HTML and CSS, technologies that\n" -" are used in ebooks. Follow the steps:

\n" -"
\n" -"
    \n" -"
  1. Click \"Explode Book\": This will \"explode\" the book into its\n" -" individual internal components.
  2. \n" -"
  3. Right click on any individual file and select \"Open with...\" to\n" -" edit it in your favorite text editor.
  4. \n" -"
  5. When you are done Tweaking: close the file browser window\n" -" and the editor windows you used to make your tweaks. Then click\n" -" the \"Rebuild Book\" button, to update the book in your calibre\n" -" library.
  6. \n" -"
" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:103 -msgid "&Explode Book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:104 -msgid "&Preview Book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:105 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comments_dialog.py:25 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:284 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:234 -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:667 -msgid "&Cancel" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:106 -msgid "&Rebuild Book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:109 -msgid "Explode the book to edit its components" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:111 -msgid "Preview the result of your tweaks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:113 -msgid "Abort without saving any changes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:115 -msgid "Save your changes and update the book in the calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:155 -msgid "Exploding, please wait..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:177 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:187 -msgid "Failed to unpack" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:178 -#, python-format -msgid "Could not explode the %s file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:188 -#, python-format -msgid "Could not explode the %s file. Click \"Show Details\" for more information." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:222 -msgid "Failed to rebuild file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:223 -#, python-format -msgid "Failed to rebuild %s. For more information, click \"Show details\"." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:231 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:240 -msgid "Rebuilding, please wait..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:289 -msgid "Make small changes to ePub, HTMLZ or AZW3 format books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:290 -msgid "T" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:326 -msgid "Cannot tweak Book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:339 -msgid "Cannot Tweak Book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/tweak_epub.py:340 -msgid "" -"The book must be in ePub, HTMLZ or AZW3 formats to tweak.\n" -"\n" -"First convert the book to one of these formats." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:37 -msgid "Read books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:37 -msgid "V" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:37 -msgid "View" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:48 -msgid "View specific format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:50 -msgid "Read a random book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:55 -msgid "Clear recently viewed list" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:137 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:217 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:224 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:270 -msgid "Cannot view" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:150 -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:164 -msgid "Format unavailable" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:151 -msgid "Selected books have no formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:153 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:138 -msgid "Choose the format to view" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:165 -#, python-format -msgid "Not all the selected books were available in the %s format. You should convert them first." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:172 -msgid "Multiple Books Selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:173 -#, python-format -msgid "You are attempting to open %d books. Opening too many books at once can be slow and have a negative effect on the responsiveness of your computer. Once started the process cannot be stopped until complete. Do you wish to continue?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:182 -msgid "Cannot open folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:218 -msgid "This book no longer exists in your library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/actions/view.py:225 -#, python-format -msgid "%s has no available formats." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:70 -msgid "Searching in" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:253 -msgid "Adding..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:267 -msgid "Searching in all sub-directories..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:278 -msgid "Path error" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:279 -msgid "The specified directory could not be processed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:283 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1154 -msgid "No books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:284 -msgid "No books found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:297 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:805 -msgid "No permission" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:298 -msgid "Cannot add some files as you do not have permission to access them. Click Show Details to see the list of such files." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:366 -msgid "Added" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:379 -msgid "Adding failed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:380 -msgid "The add books process seems to have hung. Try restarting calibre and adding the books in smaller increments, until you find the problem book." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:397 -msgid "Adding duplicates..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:465 -msgid "Saving..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:472 -msgid "Collecting data, please wait..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add.py:541 -msgid "Saved" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/__init__.py:56 -msgid "Searching for sub-folders" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/__init__.py:61 -msgid "Searching for books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/__init__.py:73 -msgid "Looking for duplicates based on file hash" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/__init__.py:108 -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/welcome_ui.py:70 -msgid "Choose root folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/__init__.py:135 -msgid "Invalid root folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/__init__.py:136 -msgid "is not a valid root folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/__init__.py:146 -msgid "Add books to calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/scan_ui.py:26 -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/welcome_ui.py:62 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:46 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/kindle_ui.py:46 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/library_ui.py:54 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/stanza_ui.py:53 -msgid "WizardPage" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/scan_ui.py:27 -msgid "Scanning root folder for books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/scan_ui.py:28 -msgid "This may take a few minutes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/welcome_ui.py:63 -msgid "Choose the location to add books from" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/welcome_ui.py:64 -msgid "Select a folder on your hard disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/welcome_ui.py:65 -msgid "" -"

calibre can scan your computer for existing books automatically. These books will then be copied into the calibre library. This wizard will help you customize the scanning and import process for your existing book collection.

\n" -"

Choose a root folder. Books will be searched for only inside this folder and any sub-folders.

\n" -"

Make sure that the folder you chose for your calibre library is not under the root folder you choose.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/welcome_ui.py:68 -msgid "&Root folder:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/welcome_ui.py:69 -msgid "This folder and its sub-folders will be scanned for books to import into calibre's library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/welcome_ui.py:71 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:376 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:57 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:58 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:215 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:162 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:57 -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:81 -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:82 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library_ui.py:88 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor_ui.py:80 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor_ui.py:82 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:593 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:598 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor_ui.py:98 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor_ui.py:101 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor_ui.py:103 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:170 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:173 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:175 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:180 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:183 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:131 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:133 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:136 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:140 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor_ui.py:78 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor_ui.py:80 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:283 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:285 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:286 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:171 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:173 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:174 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:89 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:91 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:93 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:95 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:97 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:184 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:139 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:141 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:144 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:146 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:80 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:85 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/chooser_widget_ui.py:79 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:174 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:181 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/store_dialog_ui.py:75 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:213 -msgid "..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/welcome_ui.py:72 -msgid "Handle multiple files per book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/welcome_ui.py:73 -msgid "&One book per folder, assumes every ebook file in a folder is the same book in a different format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/add_wizard/welcome_ui.py:74 -msgid "&Multiple books per folder, assumes every ebook file is a different book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/auto_add.py:249 -#, python-format -msgid "Added %(num)d book(s) automatically from %(src)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/bars.py:224 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:304 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:32 -msgid "Donate" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:156 -msgid "Click to open" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:180 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:861 -msgid "Ids" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:218 -#, python-format -msgid "Book %(sidx)s of %(series)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:233 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1205 -msgid "Collections" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:348 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:252 -msgid "Paste Cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:349 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:253 -msgid "Copy Cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:350 -msgid "Remove Cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:393 -msgid "Double-click to open Book Details window" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:394 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/delete_matching_from_device.py:77 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:295 -msgid "Path" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:395 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/book_info.py:117 -#, python-format -msgid "Cover size: %(width)d x %(height)d" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:487 -msgid "&Copy Link" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:502 -#, python-format -msgid "Delete the %s format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:503 -#, python-format -msgid "Save the %s format to disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:504 -#, python-format -msgid "Restore the %s format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex.py:16 -msgid "BibTeX Options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex.py:17 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_csv_xml.py:17 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:28 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/azw3_output.py:18 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input.py:16 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/djvu_input.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output.py:16 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_input.py:13 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/htmlz_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output.py:17 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output.py:18 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdb_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_input.py:13 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output.py:16 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pml_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/rb_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/snb_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input.py:13 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output.py:14 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txtz_output.py:13 -msgid "Options specific to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex.py:17 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_csv_xml.py:17 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:28 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/azw3_output.py:18 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output.py:16 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/htmlz_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output.py:17 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output.py:18 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdb_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output.py:16 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pml_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/rb_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/snb_output.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output.py:14 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txtz_output.py:13 -msgid "output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex_ui.py:77 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_csv_xml_ui.py:42 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:345 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_tab_template_ui.py:32 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/azw3_output_ui.py:52 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:103 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:54 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/djvu_input_ui.py:31 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:56 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_input_ui.py:33 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output_ui.py:44 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:112 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/htmlz_output_ui.py:47 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:207 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:120 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:158 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:79 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:124 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdb_output_ui.py:47 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_input_ui.py:43 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:139 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pmlz_output_ui.py:46 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/rb_output_ui.py:33 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:145 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/snb_output_ui.py:42 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection_ui.py:62 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc_ui.py:85 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input_ui.py:91 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:87 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:54 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:72 -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:79 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:40 -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:128 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:134 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:153 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:86 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/conversion_ui.py:54 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/email_ui.py:65 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:263 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:125 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc_ui.py:74 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard_ui.py:113 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:108 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template_ui.py:56 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/saving_ui.py:70 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:167 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending_ui.py:68 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:145 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions_ui.py:95 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:134 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:114 -#: /home/kovid/work/calibre/src/calibre/gui2/store/basic_config_widget_ui.py:37 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/chooser_widget_ui.py:77 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:98 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:130 -msgid "Form" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex_ui.py:78 -msgid "Bib file encoding:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex_ui.py:79 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_csv_xml_ui.py:43 -msgid "Fields to include in output:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex_ui.py:80 -msgid "Encoding configuration (change if you have errors) :" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex_ui.py:81 -msgid "BibTeX entry type:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex_ui.py:82 -msgid "Create a citation tag?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex_ui.py:83 -msgid "Add files path with formats?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex_ui.py:84 -msgid "Expression to form the BibTeX citation tag:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_bibtex_ui.py:85 -msgid "" -"Some explanation about this template:\n" -" -The fields availables are 'author_sort', 'authors', 'id',\n" -" 'isbn', 'pubdate', 'publisher', 'series_index', 'series',\n" -" 'tags', 'timestamp', 'title', 'uuid', 'title_sort'\n" -" -For list types ie authors and tags, only the first element\n" -" will be selected.\n" -" -For time field, only the date will be used. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_csv_xml.py:16 -msgid "CSV/XML Options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:27 -msgid "E-book options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:92 -msgid "Catalogs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:101 -msgid "Read book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:107 -msgid "Wishlist item" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:145 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1144 -msgid "any date" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:145 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1142 -msgid "any value" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:147 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1140 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1142 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1144 -msgid "unspecified" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:197 -msgid "No genres will be excluded" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:214 -#, python-format -msgid "regex error: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:223 -msgid "All genres will be excluded" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:680 -msgid "Delete saved catalog preset" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:681 -msgid "The selected saved catalog preset will be deleted. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:706 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:711 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:716 -msgid "Save catalog preset" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:707 -msgid "Preset name:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:712 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1065 -msgid "You must provide a name." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:717 -msgid "That saved preset already exists and will be overwritten. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:981 -#, python-format -msgid "Are you sure you want to delete '%s'?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:983 -#, python-format -msgid "Are you sure you want to delete rules #%(first)d-%(last)d?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:984 -msgid "Delete Rule" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1140 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:612 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:4768 -msgid "False" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1140 -msgid "True" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1167 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1258 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:342 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:21 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:90 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:259 -msgid "Name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1168 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1260 -msgid "Field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1169 -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1261 -msgid "Value" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:1259 -msgid "Prefix" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:346 -msgid "Presets" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:347 -msgid "Select catalog preset to load" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:348 -msgid "Save current catalog settings as preset" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:349 -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:661 -msgid "Save" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:350 -msgid "Delete current preset" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:351 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:629 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager_ui.py:64 -msgid "Delete" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:352 -msgid "Enabled sections will be included in the generated catalog." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:353 -msgid "Included sections" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:354 -msgid "List of books, sorted by Author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:355 -msgid "&Authors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:356 -msgid "List of books, sorted by Title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:357 -msgid "&Titles" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:358 -msgid "List of series books, sorted by Series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:359 -msgid "&Series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:360 -msgid "List of books, sorted by Genre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:361 -msgid "&Genres" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:362 -msgid "Field containing Genres" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:363 -msgid "List of books, sorted by date added to calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:364 -msgid "&Recently Added" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:365 -msgid "Individual descriptions of books with cover thumbs, sorted by author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:366 -msgid "&Descriptions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:367 -msgid "The first matching prefix rule applies a prefix to book listings in the generated catalog." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:368 -msgid "Prefixes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:369 -msgid "Books matching any of the exclusion rules will be excluded from the generated catalog. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:370 -msgid "Excluded books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:371 -msgid "" -"A regular expression describing genres to be excluded from the generated catalog. Genres are derived from the tags applied to your books.\n" -"The default pattern \\[.+\\]|\\+ excludes tags of the form [tag], e.g., [Test book], and '+', the default tag for a read book." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:373 -msgid "Excluded genres" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:374 -msgid "Genres to &exclude (regex):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:375 -msgid "Reset to default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:377 -msgid "Results of regex:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:378 -msgid "Tags that will be excluded as genres" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:379 -msgid "Other options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:380 -msgid "Custom column containing additional content to be merged with Comments metadata in Descriptions section." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:381 -msgid "Merge additional content before Comments in Descriptions section." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:382 -msgid "&Before" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:383 -msgid "Merge additional content after Comments in Descriptions section." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:384 -msgid "&After" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:385 -msgid "Separate Comments metadata and additional content with a horizontal rule in Descriptions section." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:386 -msgid "Include &Separator" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:387 -msgid "&Merge with Comments:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:388 -msgid "Catalog cover:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:389 -msgid "Generate new cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:390 -msgid "Use existing cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:391 -msgid "E&xtra Description note:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:392 -msgid "Custom column source for text to include in Descriptions section." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:393 -msgid "&Thumb width:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:394 -msgid "Size hint for cover thumbnails included in Descriptions section." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:395 -msgid " inch" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:396 -msgid "Author cross-references:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi_ui.py:397 -msgid "For books with multiple authors, list each author separately" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_tab_template_ui.py:33 -msgid "Tab template for catalog.ui" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:80 -msgid "Bold" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:81 -msgid "Italic" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:84 -msgid "Underline" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:86 -msgid "Strikethrough" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:88 -msgid "Superscript" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:90 -msgid "Subscript" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:92 -msgid "Ordered list" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:94 -msgid "Unordered list" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:97 -msgid "Align left" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:99 -msgid "Align center" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:101 -msgid "Align right" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:103 -msgid "Align justified" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:104 -msgid "Undo" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:105 -msgid "Redo" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:106 -msgid "Remove formatting" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:107 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:174 -msgid "Copy" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:108 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:176 -msgid "Paste" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:109 -msgid "Cut" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:111 -msgid "Increase Indentation" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:113 -msgid "Decrease Indentation" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:115 -msgid "Select all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:126 -msgid "Foreground color" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:131 -msgid "Background color" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:135 -msgid "Style text block" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:137 -msgid "Style the selected text block" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:142 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior.py:33 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior.py:35 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:165 -msgid "Normal" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:143 -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:144 -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:145 -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:146 -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:147 -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:148 -msgid "Heading" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:149 -msgid "Pre-formatted" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:150 -msgid "Blockquote" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:151 -msgid "Address" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:158 -msgid "Insert link" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:160 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:79 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:84 -msgid "Clear" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:188 -msgid "Choose foreground color" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:194 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:247 -msgid "Choose background color" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:214 -msgid "Create link" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:220 -msgid "Enter &URL:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:221 -msgid "Enter name (optional):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:589 -msgid "Normal view" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/comments_editor.py:590 -msgid "HTML Source" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/azw3_output.py:17 -msgid "AZW3 Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/azw3_output_ui.py:53 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:84 -msgid "Use author &sort for author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/azw3_output_ui.py:54 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:81 -msgid "&Title for Table of Contents:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/azw3_output_ui.py:55 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:90 -msgid "Enable sharing of book content via Facebook, etc. WARNING: Disables last read syncing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/azw3_output_ui.py:56 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:80 -msgid "Do not add Table of Contents to book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/azw3_output_ui.py:57 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:82 -msgid "Put generated Table of Contents at &start of book instead of end" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/azw3_output_ui.py:58 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:86 -msgid "Disable compression of the file contents" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/bulk.py:41 -msgid "For settings that cannot be specified in this dialog, use the values saved in a previous conversion (if they exist) instead of using the defaults specified in the Preferences" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/bulk.py:61 -msgid "None of the selected books have saved conversion settings." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/bulk.py:84 -msgid "Bulk Convert" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input.py:15 -msgid "Comic Input" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input.py:16 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/djvu_input.py:15 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_input.py:13 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_input.py:13 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input.py:13 -msgid "input" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:104 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:99 -msgid "&Number of Colors:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:105 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:101 -msgid "Disable &normalize" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:106 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:102 -msgid "Keep &aspect ratio" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:107 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:103 -msgid "Disable &Sharpening" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:108 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:109 -msgid "Disable &Trimming" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:109 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:108 -msgid "&Wide" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:110 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:104 -msgid "&Landscape" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:111 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:106 -msgid "&Right to left" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:112 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:105 -msgid "Don't so&rt" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:113 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:107 -msgid "De&speckle" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:114 -msgid "&Disable comic processing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:115 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/single_ui.py:120 -msgid "&Output format:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:116 -msgid "Disable conversion of images to &black and white" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:117 -msgid "Override image &size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/comic_input_ui.py:118 -msgid "Don't add links to &pages to the Table of Contents for CBC files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug.py:19 -msgid "Debug" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug.py:21 -msgid "Debug the conversion process." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug.py:39 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:56 -msgid "Choose debug folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug.py:58 -msgid "Invalid debug directory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug.py:59 -msgid "Failed to create debug directory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:55 -msgid "Choose a folder to put the debug output into. If you specify a folder, calibre will place a lot of debug output into it. This will be useful in understanding the conversion process and figuring out the correct values for conversion parameters like Table of Contents and Chapter Detection." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:59 -msgid "The debug process outputs the intermediate HTML generated at various stages of the conversion process. This HTML can sometimes serve as a good starting point for hand editing a conversion." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/djvu_input.py:14 -msgid "DJVU Input" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/djvu_input_ui.py:32 -msgid "Use &djvutxt, if available, for faster processing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output.py:15 -msgid "EPUB Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:57 -msgid "Do not &split on page breaks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:58 -msgid "No default &cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:59 -msgid "No &SVG cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:60 -msgid "Preserve cover &aspect ratio" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:61 -msgid "Split files &larger than:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:62 -msgid " KB" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:63 -msgid "&Flatten EPUB file structure" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_input.py:12 -msgid "FB2 Input" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_input_ui.py:34 -msgid "Do not insert a &Table of Contents at the beginning of the book." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output.py:14 -msgid "FB2 Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output_ui.py:45 -msgid "Sectionize:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output_ui.py:46 -msgid "Genre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:104 -msgid "Font rescaling wizard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:105 -msgid "" -"

This wizard will help you choose an appropriate font size key for your needs. Just enter the base font size of the input document and then enter an input font size. The wizard will display what font size it will be mapped to, by the font rescaling algorithm. You can adjust the algorithm by adjusting the output base font size and font key below. When you find values suitable for you, click OK.

\n" -"

By default, if the output base font size is zero and/or no font size key is specified, calibre will use the values from the current Output Profile.

\n" -"

See the User Manual for a discussion of how font size rescaling works.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:108 -msgid "&Output document" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:109 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:114 -msgid "&Base font size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:110 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:213 -msgid "Font size &key:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:111 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:115 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:117 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:208 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:212 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:123 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:125 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:130 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:131 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:134 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:137 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:140 -msgid " pt" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:112 -msgid "Use &default values" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:113 -msgid "&Input document" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:116 -msgid "&Font size: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:118 -msgid " will map to size: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:119 -msgid "0.0 pt" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics.py:15 -msgid "" -"Heuristic\n" -"Processing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics.py:16 -msgid "Modify the document text and structure using common patterns." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:113 -msgid "Heuristic processing means that calibre will scan your book for common patterns and fix them. As the name implies, this involves guesswork, which means that it could end up worsening the result of a conversion, if calibre guesses wrong. Therefore, it is disabled by default. Often, if a conversion does not turn out as you expect, turning on heuristics can improve matters. Read more about the various heuristic processing options in the User Manual." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:114 -msgid "Enable &heuristic processing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:115 -msgid "Heuristic Processing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:116 -msgid "Unwrap lines" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:117 -msgid "Line &un-wrap factor :" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:118 -msgid "Detect and markup unformatted chapter headings and sub headings" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:119 -msgid "Renumber sequences of

or

tags to prevent splitting" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:120 -msgid "Delete blank lines between paragraphs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:121 -msgid "Ensure scene breaks are consistently formatted" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:122 -msgid "Replace soft scene &breaks:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:123 -msgid "Remove unnecessary hyphens" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:124 -msgid "Italicize common words and patterns" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/heuristics_ui.py:125 -msgid "Replace entity indents with CSS indents" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/htmlz_output.py:14 -msgid "HTMLZ Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/htmlz_output_ui.py:48 -msgid "How to handle CSS" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/htmlz_output_ui.py:49 -msgid "How to handle class based CSS" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/htmlz_output_ui.py:50 -msgid "Use book &title as the filename for the HTML file inside the archive" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel.py:16 -msgid "Look & Feel" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel.py:18 -msgid "Control the look and feel of the output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel.py:46 -msgid "Original" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel.py:47 -msgid "Left align" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel.py:48 -msgid "Justify text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:209 -msgid "Line &height:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:210 -msgid "Minimum &line height:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:211 -msgid " %" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:214 -msgid "Wizard to help you choose an appropriate font size key" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:216 -msgid "Input character &encoding:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:217 -msgid "Remove &spacing between paragraphs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:218 -msgid "&Indent size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:219 -msgid "

When calibre removes inter paragraph spacing, it automatically sets a paragraph indent, to ensure that paragraphs can be easily distinguished. This option controls the width of that indent." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:220 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:566 -msgid "No change" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:221 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:238 -msgid " em" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:222 -msgid "&Extra CSS" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:223 -msgid "Select what style information you want completely removed:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:224 -msgid "Removes the font-family CSS property" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:225 -msgid "&Fonts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:226 -msgid "Removes the margin CSS properties. Note that page margins are not affected by this setting." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:227 -msgid "&Margins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:228 -msgid "Removes the padding CSS properties" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:229 -msgid "&Padding" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:230 -msgid "Convert floating images/text into static images/text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:231 -msgid "F&loats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:232 -msgid "Removes foreground and background colors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:233 -msgid "&Colors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:234 -msgid "&Other CSS Properties:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:235 -msgid "Comma separated list of CSS properties to remove. For example: display, color, font-family" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:236 -msgid "&Filter Style Information" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:237 -msgid "Insert &blank line between paragraphs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:239 -msgid "Text &justification:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:241 -msgid "&Transliterate unicode characters to ASCII" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:242 -msgid "&UnSmarten punctuation" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:243 -msgid "Keep &ligatures" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:244 -msgid "&Linearize tables" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:245 -msgid "Base &font size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:246 -msgid "&Line size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:247 -msgid "&Embed font family:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:248 -msgid "&Disable font size rescaling" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output.py:16 -msgid "LRF Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:121 -msgid "Enable &autorotation of wide images" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:122 -msgid "&Wordspace:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:124 -msgid "Minimum para. &indent:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:126 -msgid "Render &tables as images" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:127 -msgid "Text size multiplier for text in rendered tables:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:128 -msgid "Add &header" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:129 -msgid "Header &separation:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:131 -msgid "Header &format:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:132 -msgid "&Embed fonts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:133 -msgid "&Serif font family:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:134 -msgid "S&ans-serif font family:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:135 -msgid "&Monospaced font family:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:48 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:116 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:222 -msgid "Metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:50 -msgid "Set the metadata. The output file will contain as much of this metadata as possible." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:100 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1033 -msgid "This book has no cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:106 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1035 -#, python-format -msgid "Cover size: %(width)d x %(height)d pixels" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:173 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:934 -msgid "Choose cover for " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:180 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:942 -msgid "Cannot read" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:181 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:943 -msgid "You do not have permission to read the file: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:189 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:196 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:951 -msgid "Error reading file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:190 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:952 -msgid "

There was an error reading from file:
" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:197 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:962 -msgid " is not a valid picture" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:159 -msgid "Book Cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:160 -msgid "Change &cover image:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:161 -msgid "Browse for an image to use as the cover of this book." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:163 -msgid "Use cover from &source file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:164 -msgid "&Title: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:165 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:78 -msgid "Change the title of this book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:166 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:558 -msgid "&Author(s): " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:167 -msgid "Author So&rt:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:168 -msgid "Change the author(s) of this book. Multiple authors should be separated by a comma" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:169 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:568 -msgid "&Publisher: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:170 -msgid "Ta&gs: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:171 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:570 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1128 -msgid "Tags categorize the book. This is particularly useful while searching.

They can be any words or phrases, separated by commas." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:172 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:577 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:198 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:461 -msgid "&Series:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:173 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:174 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:578 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:579 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:460 -msgid "List of known series. You can add new series." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:175 -msgid "Book " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output.py:17 -msgid "MOBI Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:83 -msgid "Ignore &margins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:85 -msgid "Do not convert all images to &JPEG (may result in images not working in older viewers)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:87 -msgid "Kindle options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:88 -msgid "MOBI file &type:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:89 -msgid "Personal Doc tag:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:91 -msgid "WARNING: Various Kindle devices have trouble displaying the new or both MOBI filetypes. If you wish to use the new format on your device, convert to AZW3 instead of MOBI." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup.py:35 -msgid "Page Setup" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:125 -msgid "&Output profile:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:126 -msgid "Profile description" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:127 -msgid "&Input profile:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:128 -msgid "Margins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:129 -msgid "&Left:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:130 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:133 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:136 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:139 -msgid "No margin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:132 -msgid "&Top:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:135 -msgid "&Right:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/page_setup_ui.py:138 -msgid "&Bottom:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdb_output.py:14 -msgid "PDB Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdb_output_ui.py:48 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:225 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:225 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:186 -msgid "&Format:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdb_output_ui.py:49 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pmlz_output_ui.py:47 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/rb_output_ui.py:34 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:95 -msgid "&Inline TOC" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdb_output_ui.py:50 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pmlz_output_ui.py:49 -msgid "Output Encoding:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_input.py:12 -msgid "PDF Input" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_input_ui.py:44 -msgid "Line &Un-Wrapping Factor:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_input_ui.py:45 -msgid "No &Images" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output.py:15 -msgid "PDF Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:140 -msgid "Note: The paper size settings below only take effect if you enable the \"Override\" checkbox below. Otherwise the size from the output profile will be used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:141 -msgid "&Override paper size set in output profile" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:142 -msgid "&Paper Size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:143 -msgid "&Custom size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:144 -msgid "&Unit:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:145 -msgid "Preserve &aspect ratio of cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:146 -msgid "Add page &numbers to the bottom of every page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:147 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:395 -msgid "Se&rif family:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:148 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:396 -msgid "&Sans family:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:149 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:397 -msgid "&Monospace family:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:150 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:402 -msgid "S&tandard font:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:151 -msgid "Default font si&ze:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:152 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:154 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:280 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:399 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:401 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:412 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:419 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:421 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:423 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:427 -msgid " px" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:153 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:400 -msgid "Monospace &font size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:155 -msgid "Page headers and footers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:156 -msgid "You can insert headers and footers into every page of the produced PDF file by using header and footer templates. For examples, see the documentation." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:157 -msgid "&Header template:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:158 -msgid "&Footer template:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pml_output.py:14 -msgid "PMLZ Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/pmlz_output_ui.py:48 -msgid "Do not reduce image size and depth" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/rb_output.py:14 -msgid "RB Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:146 -msgid "No formats available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:147 -msgid "Cannot build regex using the GUI builder without a book." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:156 -msgid "Could not open file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:157 -msgid "Could not open the file, do you have it open in another program?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:175 -msgid "Failed to generate markup for testing. Click \"Show Details\" to learn more." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:181 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:185 -msgid "Failed to generate preview" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:191 -msgid "Open book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:215 -msgid "Click the Open button below to open a ebook to use for testing." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder_ui.py:90 -msgid "Regex Builder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder_ui.py:91 -msgid "Regex:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder_ui.py:92 -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:136 -msgid "Test" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder_ui.py:93 -msgid "Occurrences:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder_ui.py:94 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:185 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/store_dialog_ui.py:78 -msgid "0" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder_ui.py:95 -msgid "Goto:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder_ui.py:96 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/book_info_ui.py:72 -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:611 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:111 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:125 -msgid "&Previous" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder_ui.py:97 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/book_info_ui.py:73 -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:610 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/diff.py:489 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:110 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:124 -msgid "&Next" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder_ui.py:98 -msgid "Preview" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:19 -msgid "" -"Search\n" -"&\n" -"Replace" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:43 -msgid "&Search Regular Expression" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:56 -msgid "Replacement Text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:56 -msgid "Search Regular Expression" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:102 -msgid "Load Calibre Search-Replace definitions file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:104 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:122 -msgid "Calibre Search-Replace definitions file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:113 -msgid "Failed to read" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:114 -#, python-format -msgid "Failed to load patterns from %s, click Show details to learn more." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:120 -msgid "Save Calibre Search-Replace definitions file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:196 -msgid "Unused Search & Replace definition" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:197 -msgid "The search / replace definition being edited has not been added to the list of definitions. Do you wish to continue with the conversion (the definition will not be used)?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:208 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:109 -msgid "Invalid regular expression" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:209 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:110 -#, python-format -msgid "Invalid regular expression: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:293 -msgid "The list of search/replace definitions that will be applied to this conversion." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:146 -msgid "Search/Replace Definition Edit" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:147 -msgid "&Replacement Text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:148 -msgid "Add the current expression to the list of expressions that will be applied" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:149 -msgid "&Add" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:150 -msgid "Edit the currently selected expression" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:151 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/library_ui.py:59 -msgid "&Change" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:152 -msgid "Remove the currently selected expression" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:153 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:904 -msgid "&Remove" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:154 -msgid "Load a list of expressions from a previously saved file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:155 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:467 -msgid "&Load" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:156 -msgid "Save this list of expressions so that you can re-use it easily" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:157 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:188 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:465 -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:661 -msgid "&Save" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:158 -msgid "Move expression up." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:159 -msgid "Move expression down." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace_ui.py:160 -msgid "

Search and replace uses regular expressions. See the regular expressions tutorial to get started with regular expressions. Also clicking the wizard button below will allow you to test your regular expression against the current input document. When you are happy with an expression, click the Add button to add it to the list of expressions." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/single.py:150 -msgid "Restore &Defaults" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/single.py:193 -msgid "Convert" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/single_ui.py:117 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/book_info_ui.py:69 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:96 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box_ui.py:56 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/progress_ui.py:53 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/cache_progress_dialog_ui.py:50 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/store_dialog_ui.py:73 -msgid "Dialog" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/single_ui.py:118 -msgid "&Input format:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/single_ui.py:119 -msgid "Use &saved conversion settings for individual books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/snb_output.py:14 -msgid "SNB Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/snb_output_ui.py:43 -msgid "Hide chapter name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/snb_output_ui.py:44 -msgid "Don't indent the first line for each paragraph" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/snb_output_ui.py:45 -msgid "Insert empty line between paragraphs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/snb_output_ui.py:46 -msgid "Optimize for full-sceen view " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection.py:15 -msgid "" -"Structure\n" -"Detection" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection.py:17 -msgid "Fine tune the detection of chapter headings and other document structure." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection.py:31 -msgid "Detect chapters at (XPath expression):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection.py:32 -msgid "Insert page breaks before (XPath expression):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection.py:35 -msgid "Start reading at (XPath expression):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection.py:44 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc.py:39 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:106 -msgid "Invalid XPath" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection.py:45 -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc.py:40 -#, python-format -msgid "The XPath expression %s is invalid." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection_ui.py:63 -msgid "Remove &fake margins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection_ui.py:64 -msgid "The header and footer removal options have been replaced by the Search & Replace options. Click the Search & Replace category in the bar to the left to use these options. Leave the replace field blank and enter your header/footer removal regexps into the search field." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection_ui.py:65 -msgid "Insert &metadata as page at start of book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection_ui.py:66 -msgid "Chapter &mark:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection_ui.py:67 -msgid "Remove first &image" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc.py:16 -msgid "" -"Table of\n" -"Contents" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc.py:18 -msgid "Control the creation/conversion of the Table of Contents." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc.py:30 -msgid "Level &1 TOC (XPath expression):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc.py:31 -msgid "Level &2 TOC (XPath expression):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc.py:32 -msgid "Level &3 TOC (XPath expression):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc_ui.py:86 -msgid "&Force use of auto-generated Table of Contents" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc_ui.py:87 -msgid "Do not add &detected chapters to the Table of Contents" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc_ui.py:88 -msgid "Number of &links to add to Table of Contents" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc_ui.py:89 -msgid "TOC &Filter:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc_ui.py:90 -msgid "Chapter &threshold" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc_ui.py:91 -msgid "Allow &duplicate links when creating the Table of Contents" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc_ui.py:92 -msgid "Help with using these options to generate a Table of Contents" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc_ui.py:93 -msgid "" -"This option will cause calibre to popup the Table of Contents Editor tool,\n" -" which will allow you to manually edit the Table of Contents, to fix any errors\n" -" caused by automatic generation." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc_ui.py:96 -msgid "&Manually fine-tune the ToC after conversion is completed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input.py:12 -msgid "TXT Input" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input_ui.py:92 -msgid "Structure" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input_ui.py:93 -msgid "Paragraph style:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input_ui.py:94 -msgid "Formatting style:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input_ui.py:95 -msgid "Common" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input_ui.py:96 -msgid "Preserve &spaces" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input_ui.py:97 -msgid "Remove indents at the beginning of lines" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input_ui.py:98 -msgid "Markdown" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input_ui.py:99 -msgid "

Markdown is a simple markup language for text files, that allows for advanced formatting. To learn more visit markdown." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input_ui.py:100 -msgid "Do not insert Table of Contents into output text when using markdown" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output.py:13 -msgid "TXT Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:88 -msgid "General" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:89 -msgid "Output &Encoding:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:90 -msgid "&Line ending style:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:91 -msgid "&Formatting:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:92 -msgid "Plain" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:93 -msgid "&Maximum line length:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:94 -msgid "Force maximum line length" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:96 -msgid "Markdown, Textile" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:97 -msgid "Do not remove links ( tags) before processing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:98 -msgid "Do not remove image references before processing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:99 -msgid "Keep text color, when possible" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/txtz_output.py:12 -msgid "TXTZ Output" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:55 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/book_info_ui.py:70 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:46 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/confirm_delete_ui.py:60 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:62 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/progress_ui.py:54 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/progress_ui.py:55 -msgid "TextLabel" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:56 -msgid "Use a wizard to help construct the Regular expression" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:73 -msgid "Match HTML &tags with tag name:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:74 -msgid "*" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:75 -msgid "a" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:76 -msgid "br" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:77 -msgid "div" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:78 -msgid "h1" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:79 -msgid "h2" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:80 -msgid "h3" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:81 -msgid "h4" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:82 -msgid "h5" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:83 -msgid "h6" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:84 -msgid "hr" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:85 -msgid "span" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:86 -msgid "Having the &attribute:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:87 -msgid "With &value:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:88 -msgid "(A regular expression)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:89 -msgid "

For example, to match all h2 tags that have class=\"chapter\", set tag to h2, attribute to class and value to chapter.

Leaving attribute blank will match any attribute and leaving value blank will match any value. Setting tag to * will match any tag.

To learn more advanced usage of XPath see the XPath Tutorial." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/cover_flow.py:172 -msgid "Browse by covers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/cover_flow.py:244 -msgid "Cover browser could not be loaded" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:66 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:91 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:115 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:152 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:197 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:690 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:731 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:754 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:805 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:348 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:356 -#: /home/kovid/work/calibre/src/calibre/gui2/library/delegates.py:32 -#: /home/kovid/work/calibre/src/calibre/gui2/library/delegates.py:298 -#: /home/kovid/work/calibre/src/calibre/gui2/library/delegates.py:302 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1441 -msgid "Undefined" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:129 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:762 -msgid "star(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:130 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:763 -msgid "Unrated" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:184 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:792 -#, python-format -msgid "Set '%s' to today" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:186 -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:794 -#, python-format -msgid "Clear '%s'" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:251 -msgid "Open Item Editor" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:357 -msgid "Values changed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:358 -msgid "You have changed the values. In order to use this editor, you must either discard or apply these changes. Apply changes?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:384 -msgid " index:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:456 -msgid "The enumeration \"{0}\" contains an invalid value that will be set to the default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:645 -msgid "Apply changes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:838 -msgid "Remove series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:841 -msgid "Automatically number books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:844 -msgid "Force numbers to start with " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:914 -msgid "The enumeration \"{0}\" contains invalid values that will not appear in the list" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:958 -msgid "Remove all tags" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:978 -msgid "tags to add" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/custom_column_widgets.py:985 -msgid "tags to remove" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:52 -#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:148 -msgid "No details available." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:224 -msgid "Device no longer connected." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:444 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_debug.py:27 -msgid "Debug device detection" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:460 -msgid "Get device information" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:484 -msgid "Get list of books on device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:491 -msgid "Prepare files for transfer from device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:502 -msgid "Get annotations from device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:514 -msgid "Send metadata to device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:519 -msgid "Send collections to device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:569 -#, python-format -msgid "Upload %d books to device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:585 -msgid "Delete books from device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:603 -msgid "Download books from device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:613 -msgid "View book on device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:692 -msgid "Set default send to device action" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:698 -msgid "Send to main memory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:700 -msgid "Send to storage card A" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:702 -msgid "Send to storage card B" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:707 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:716 -msgid "Main Memory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:728 -msgid "Send specific format to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:729 -msgid "Send and delete from library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:772 -msgid "Eject device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:853 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc.py:71 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:336 -#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:58 -msgid "Error" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:854 -msgid "Error communicating with device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:866 -#, python-format -msgid "Manage the %s?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:867 -#, python-format -msgid "Detected the %s. Do you want calibre to manage it?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:894 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1483 -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:262 -msgid "No suitable formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:910 -msgid "Select folder to open as device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:928 -msgid "Running jobs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:929 -msgid "Cannot configure the device while there are running device jobs." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:934 -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:360 -#, python-format -msgid "Configure %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:949 -#, python-format -msgid "Restart calibre for the changes to %s to be applied." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:991 -msgid "Error talking to device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:992 -msgid "There was a temporary error talking to the device. Please unplug and reconnect the device or reboot." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1043 -msgid "Device: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1045 -msgid " detected." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1155 -msgid "selected to send" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1162 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1192 -msgid "No device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1163 -msgid "No device connected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1179 -#, python-format -msgid "%(num)i of %(total)i Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1183 -#, python-format -msgid "0 of %i Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1184 -msgid "Choose format to send to device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1193 -msgid "Cannot send: No device is connected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1196 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1200 -msgid "No card" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1197 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1201 -msgid "Cannot send: Device has no storage card" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1262 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1345 -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1477 -msgid "Auto convert the following books before uploading to the device?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1291 -msgid "Sending catalogs to device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1390 -msgid "Sending news to device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1444 -msgid "Sending books to device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1484 -msgid "Could not upload the following books to the device, as no suitable formats were found. Convert the book(s) to a format supported by your device first." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1557 -msgid "No space on device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1558 -msgid "

Cannot upload books to device there is no more free space available " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device.py:1563 -msgid "Incorrect destination" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget.py:34 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/confirm_delete_location_ui.py:78 -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:74 -msgid "Device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget.py:145 -msgid "Unknown formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget.py:146 -msgid "You have enabled the {0} formats for your {1}. The {1} may not support them. If you send these formats to your {1} they may not work. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget.py:158 -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:113 -#: /home/kovid/work/calibre/src/calibre/gui2/library/delegates.py:464 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:288 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template.py:70 -msgid "Invalid template" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget.py:159 -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:114 -#: /home/kovid/work/calibre/src/calibre/gui2/library/delegates.py:465 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:289 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template.py:71 -#, python-format -msgid "The template %s is invalid:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:80 -msgid "Select available formats and their order for this device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:84 -msgid "If checked, books are placed into sub directories based on their metadata on the device. If unchecked, books are all put into the top level directory." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:85 -msgid "Use sub directories" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:86 -msgid "Use author sort for author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:87 -msgid "Save &template:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:57 -msgid "No formats selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:58 -msgid "You must choose at least one format to send to the device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:86 -msgid "" -"Save &template to control the filename and\n" -" location of files sent to the device:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:92 -msgid "&Template editor" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:102 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_line_editor.py:41 -#: /home/kovid/work/calibre/src/calibre/gui2/library/delegates.py:451 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template.py:48 -msgid "Edit template" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:129 -msgid "" -"A list of &folders on the device to\n" -" which to send ebooks. The first one that exists will be used:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:139 -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:226 -msgid "Browse for a folder on the device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:167 -msgid "" -"Select the devices to be ignored. calibre will not\n" -" connect to devices with a checkmark next to their names." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:212 -#, python-format -msgid "Send the %s format to the folder:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:220 -msgid "Folder on the device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:228 -msgid "&Remove rule" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:273 -msgid "Format specific sending" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:278 -msgid "" -"You can create rules that control where ebooks of a specific\n" -" format are sent to on the device. These will take precedence over\n" -" the folders specified above." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:300 -msgid "Add a &new rule" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:338 -#, python-format -msgid "The %s device has no serial number, it cannot be configured" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:343 -msgid "No MTP device connected.

You can only configure the MTP device plugin when a device is connected." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:350 -msgid "If you want to un-ignore a previously ignored MTP device, use the \"Ignored devices\" tab." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:370 -#, python-format -msgid "Choose the formats to send to the %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:373 -#, python-format -msgid "&Ignore the %s in calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:377 -msgid "Change scanned &folders" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:383 -msgid "Show device information" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:421 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:141 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:954 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:347 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:227 -msgid "Copy to clipboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:435 -#, python-format -msgid "The %s will be ignored in calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:495 -#, python-format -msgid "You are trying to send books into the %s folder. This folder is currently ignored by calibre when scanning the device. You have tell calibre you want this folder scanned in order to be able to send books to it. Click the configure button below to send books to it." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:504 -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:137 -msgid "Configure" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_config.py:508 -#, python-format -msgid "Cannot send to %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_folder_browser.py:92 -msgid "Choose folder on device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_folder_browser.py:105 -msgid "Scanned folders:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_folder_browser.py:106 -msgid "You can select which top level folders calibre will scan when searching this device for books." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_folder_browser.py:131 -msgid "Select &All" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_folder_browser.py:133 -msgid "Select &None" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/mtp_folder_browser.py:136 -msgid "Choose folders to scan" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_empty_book.py:19 -msgid "How many empty books?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_empty_book.py:24 -msgid "How many empty books should be added?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_empty_book.py:32 -msgid "Set the author of the new books to:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_empty_book.py:44 -msgid "Reset author to Unknown" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_empty_book.py:48 -msgid "Set the series of the new books to:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_empty_book.py:60 -msgid "Reset series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_from_isbn.py:72 -msgid "Some invalid ISBNs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_from_isbn.py:73 -msgid "Some of the ISBNs you entered were invalid. They will be ignored. Click Show Details to see which ones. Do you want to proceed?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_from_isbn.py:79 -msgid "All invalid ISBNs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_from_isbn.py:80 -msgid "All the ISBNs you entered were invalid. No books can be added." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_from_isbn_ui.py:63 -msgid "Add books by ISBN" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_from_isbn_ui.py:64 -msgid "&Paste from clipboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_from_isbn_ui.py:65 -#, python-format -msgid "" -"

Enter a list of ISBNs in the box to the left, one per line. calibre will automatically create entries for books based on the ISBN and download metadata and covers for them.

\n" -"

Any invalid ISBNs in the list will be ignored.

\n" -"

You can also specify a file that will be added with each ISBN. To do this enter the full path to the file after a >>. For example:

\n" -"

9788842915232 >> %s

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/add_from_isbn_ui.py:69 -msgid "&Tags to set on created book entries:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/book_info.py:50 -#, python-format -msgid "Next [%s]" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/book_info.py:52 -#, python-format -msgid "Previous [%s]" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/book_info_ui.py:71 -msgid "Fit &cover within view" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/catalog.py:32 -msgid "My Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/catalog.py:202 -msgid "No help available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/catalog.py:203 -msgid "No help available for this output format." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/catalog_ui.py:92 -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:353 -msgid "Generate catalog" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/catalog_ui.py:93 -msgid "Generate catalog for {0} books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/catalog_ui.py:94 -msgid "Catalog &format:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/catalog_ui.py:95 -msgid "Catalog &title (existing catalog with the same title will be replaced):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/catalog_ui.py:96 -msgid "&Send catalog to device automatically" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/catalog_ui.py:97 -msgid "Catalog options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:26 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:27 -msgid "Checking database integrity" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:56 -msgid "Dumping database to SQL" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:82 -msgid "Loading database from SQL" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:149 -msgid "Check Library -- Problems Found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:163 -msgid "" -"

Help

\n" -"\n" -"

calibre stores the list of your books and their metadata in a\n" -" database. The actual book files and covers are stored as normal\n" -" files in the calibre library folder. The database contains a list of the files\n" -" and covers belonging to each book entry. This tool checks that the\n" -" actual files in the library folder on your computer match the\n" -" information in the database.

\n" -"\n" -"

The result of each type of check is shown to the left. The various\n" -" checks are:\n" -"

\n" -"
    \n" -"
  • Invalid titles: These are files and folders appearing\n" -" in the library where books titles should, but that do not have the\n" -" correct form to be a book title.
  • \n" -"
  • Extra titles: These are extra files in your calibre\n" -" library that appear to be correctly-formed titles, but have no corresponding\n" -" entries in the database
  • \n" -"
  • Invalid authors: These are files appearing\n" -" in the library where only author folders should be.
  • \n" -"
  • Extra authors: These are folders in the\n" -" calibre library that appear to be authors but that do not have entries\n" -" in the database
  • \n" -"
  • Missing book formats: These are book formats that are in\n" -" the database but have no corresponding format file in the book's folder.\n" -"
  • Extra book formats: These are book format files found in\n" -" the book's folder but not in the database.\n" -"
  • Unknown files in books: These are extra files in the\n" -" folder of each book that do not correspond to a known format or cover\n" -" file.
  • \n" -"
  • Missing cover files: These represent books that are marked\n" -" in the database as having covers but the actual cover files are\n" -" missing.
  • \n" -"
  • Cover files not in database: These are books that have\n" -" cover files but are marked as not having covers in the database.
  • \n" -"
  • Folder raising exception: These represent folders in the\n" -" calibre library that could not be processed/understood by this\n" -" tool.
  • \n" -"
\n" -"\n" -"

There are two kinds of automatic fixes possible: Delete\n" -" marked and Fix marked.

\n" -"

Delete marked is used to remove extra files/folders/covers that\n" -" have no entries in the database. Check the box next to the item you want\n" -" to delete. Use with caution.

\n" -"\n" -"

Fix marked is applicable only to covers and missing formats\n" -" (the three lines marked 'fixable'). In the case of missing cover files,\n" -" checking the fixable box and pushing this button will tell calibre that\n" -" there is no cover for all of the books listed. Use this option if you\n" -" are not going to restore the covers from a backup. In the case of extra\n" -" cover files, checking the fixable box and pushing this button will tell\n" -" calibre that the cover files it found are correct for all the books\n" -" listed. Use this when you are not going to delete the file(s). In the\n" -" case of missing formats, checking the fixable box and pushing this\n" -" button will tell calibre that the formats are really gone. Use this if\n" -" you are not going to restore the formats from a backup.

\n" -"\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:231 -msgid "&Run the check again" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:234 -msgid "Copy &to clipboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:237 -msgid "&Done" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:240 -msgid "Delete &marked" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:241 -msgid "Delete marked files (checked subitems)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:244 -msgid "&Fix marked" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:247 -msgid "Fix marked sections (checked fixable items)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:257 -msgid "Names to ignore:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:262 -msgid "Enter comma-separated standard file name wildcards, such as synctoy*.dat" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:265 -msgid "Extensions to ignore" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:270 -msgid "Enter comma-separated extensions without a leading dot. Used only in book folders" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:319 -msgid "(fixable)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:342 -msgid "Path from library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/check_library.py:371 -msgid "The marked files and folders will be permanently deleted. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_device_ui.py:49 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:45 -msgid "Choose Format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_device_ui.py:50 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/delete_matching_from_device.py:77 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/models.py:23 -msgid "Format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_device_ui.py:51 -msgid "Existing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_device_ui.py:52 -msgid "Convertible" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:46 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:51 -msgid "Choose location for calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:60 -msgid "Same as current" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:61 -#, python-format -msgid "The location %s contains the current calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:71 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:77 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:126 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:757 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:772 -msgid "Bad location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:72 -msgid "You should not create a library inside the Calibre folder as this folder is automatically deleted during upgrades." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:78 -#, python-format -msgid "You can only create libraries inside %s at the top level, not in sub-folders" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:84 -msgid "No existing library found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:85 -#, python-format -msgid "There is no existing calibre library at %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:90 -msgid "Not empty" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:91 -#, python-format -msgid "The folder %s is not empty. Please choose an empty folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:122 -msgid "No location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:122 -msgid "No location selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:127 -#, python-format -msgid "%s is not an existing folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library_ui.py:79 -msgid "Choose your calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library_ui.py:80 -msgid "Your calibre library is currently located at {0}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library_ui.py:81 -msgid "New &Location:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library_ui.py:82 -msgid "Use the previously &existing library at the new location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library_ui.py:83 -msgid "&Create an empty library at the new location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library_ui.py:84 -msgid "" -"Copy the custom columns, saved searches, column widths, plugboards,\n" -"user categories, and other information from the old to the new library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library_ui.py:86 -msgid "&Copy structure from the current library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library_ui.py:87 -msgid "&Move current library to new location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_plugin_toolbars.py:23 -#, python-format -msgid "Add \"%s\" to toolbars or menus" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_plugin_toolbars.py:29 -#, python-format -msgid "Select the toolbars and/or menus to add %s to:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_plugin_toolbars.py:48 -msgid "You can also customise the plugin locations using Preferences -> Customise the toolbar" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf.py:33 -msgid "Set defaults for conversion of comics (CBR/CBZ files)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf.py:48 -#, python-format -msgid "Set options for converting %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:97 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:195 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:79 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:219 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:187 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:181 -msgid "&Title:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:98 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:218 -msgid "&Author(s):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf_ui.py:100 -msgid "&Profile:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comments_dialog.py:24 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:283 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/diff.py:489 -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:658 -msgid "&OK" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comments_dialog_ui.py:43 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:168 -msgid "Edit Comments" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/confirm_delete_location_ui.py:76 -msgid "Where do you want to delete from?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/confirm_delete_location_ui.py:77 -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:72 -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:236 -msgid "Library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/confirm_delete_location_ui.py:79 -msgid "Library and Device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/confirm_delete_ui.py:61 -msgid "&Show this warning again" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/conversion_error_ui.py:47 -msgid "ERROR" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/delete_matching_from_device.py:67 -msgid "All checked books will be permanently deleted from your device. Please verify the list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/delete_matching_from_device.py:76 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:49 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:305 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:258 -msgid "Author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/delete_matching_from_device.py:76 -msgid "Location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/delete_matching_from_device.py:77 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:129 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1203 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:35 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:76 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:365 -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:584 -msgid "Date" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/delete_matching_from_device_ui.py:54 -msgid "Delete from device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor.py:21 -#, python-format -msgid "%(curr)s (was %(initial)s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor.py:86 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:209 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:954 -msgid "Item is blank" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor.py:87 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:210 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:955 -msgid "An item cannot be set to nothing. Delete it instead." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor.py:100 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:227 -msgid "No item selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor.py:101 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:228 -msgid "You must select one item from the list of Available items." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor.py:108 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:235 -msgid "No items selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor.py:109 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:236 -msgid "You must select at least one item from the list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor.py:113 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:240 -msgid "Are you sure you want to delete the following items?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor_ui.py:77 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor_ui.py:73 -msgid "Category Editor" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor_ui.py:78 -msgid "Items in use" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor_ui.py:79 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor_ui.py:77 -msgid "Delete item from database. This will unapply the item from all books and then remove it from the database." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor_ui.py:81 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor_ui.py:79 -msgid "Rename the item in every book where it is used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/device_category_editor_ui.py:83 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor_ui.py:81 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:147 -msgid "Ctrl+S" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/drm_error_ui.py:54 -msgid "This book is DRMed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/drm_error_ui.py:55 -msgid "" -"

This book is locked by DRM. To learn more about DRM and why you cannot read or convert this book in calibre, \n" -" click here.

A large number of recent, DRM free releases are \n" -" available at Open Books." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/duplicates.py:23 -msgid "Duplicates found!" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/duplicates.py:29 -msgid "Books with the same titles as the following already exist in calibre. Select which books you want added anyway." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/duplicates.py:70 -#, python-format -msgid "%(title)s by %(author)s [%(formats)s]" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/duplicates.py:96 -msgid "Already in calibre:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:52 -msgid "Author sort" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:55 -msgid "Link" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:122 -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:160 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:541 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:753 -msgid "No matches found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:160 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:405 -msgid "Change Case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:161 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:301 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:406 -msgid "Upper Case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:162 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:300 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:407 -msgid "Lower Case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:163 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:408 -msgid "Swap Case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:164 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:302 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:409 -msgid "Title Case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:165 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:303 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:410 -msgid "Capitalize" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:181 -msgid "Copy to author sort" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:184 -msgid "Copy to author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:313 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:1004 -msgid "Invalid author name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog.py:314 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:1005 -msgid "Author names cannot contain & characters." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog_ui.py:87 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:134 -msgid "Manage authors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog_ui.py:88 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:638 -msgid "&Search for:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog_ui.py:89 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:357 -msgid "F&ind" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog_ui.py:90 -msgid "Sort by author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog_ui.py:91 -msgid "Sort by author sort" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog_ui.py:92 -msgid "" -"Reset all the author sort values to a value automatically\n" -"generated from the author. Exactly how this value is automatically\n" -"generated can be controlled via Preferences->Advanced->Tweaks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog_ui.py:95 -msgid "Recalculate all author sort values" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog_ui.py:96 -msgid "" -"Copy author sort to author for every author. You typically use this button\n" -"after changing Preferences->Advanced->Tweaks->Author sort name algorithm" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/edit_authors_dialog_ui.py:98 -msgid "Copy all author sort values to author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/job_view_ui.py:45 -msgid "Details of job" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:72 -msgid "Active Jobs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:73 -msgid "Find next match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:74 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:188 -msgid "&Search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:75 -msgid "Find previous match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:76 -msgid "&Stop selected jobs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:77 -msgid "&Hide selected jobs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:78 -msgid "Show job &details" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:79 -msgid "Show &all jobs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:80 -msgid "Stop &all non device jobs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:81 -msgid "&Hide all jobs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:52 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:298 -#: /home/kovid/work/calibre/src/calibre/gui2/proceed.py:52 -msgid "&Copy to clipboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:56 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:301 -#: /home/kovid/work/calibre/src/calibre/gui2/proceed.py:57 -msgid "Show &details" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:57 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:302 -#: /home/kovid/work/calibre/src/calibre/gui2/proceed.py:58 -msgid "Hide &details" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:61 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:306 -#: /home/kovid/work/calibre/src/calibre/gui2/proceed.py:62 -msgid "Show detailed information about this error" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:103 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:335 -#: /home/kovid/work/calibre/src/calibre/gui2/proceed.py:85 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:603 -msgid "Copied" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:196 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:251 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:1019 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:1128 -#: /home/kovid/work/calibre/src/calibre/gui2/proceed.py:49 -msgid "View log" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:322 -#, python-format -msgid "Hide the remaining %d error messages" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:61 -msgid "Title/Author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:62 -msgid "Standard metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:63 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:964 -msgid "Custom metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:64 -msgid "Search/Replace" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:68 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/progress.py:83 -msgid "Working" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:306 -msgid "Character match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:307 -msgid "Regular Expression" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:310 -msgid "Replace field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:311 -msgid "Prepend to field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:312 -msgid "Append to field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:322 -#, python-format -msgid "Editing meta information for %d books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:369 -msgid "Immediately make all changes without closing the dialog. This operation cannot be canceled or undone" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:436 -#, python-format -msgid "Book %d:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:454 -msgid "Enter an identifier type" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:460 -msgid "You can destroy your library using this feature. Changes are permanent. There is no undo function. You are strongly encouraged to back up your library before proceeding.

Search and replace in text fields using character matching or regular expressions. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:468 -msgid "In character mode, the field is searched for the entered search text. The text is replaced by the specified replacement text everywhere it is found in the specified field. After replacement is finished, the text can be changed to upper-case, lower-case, or title-case. If the case-sensitive check box is checked, the search text must match exactly. If it is unchecked, the search text will match both upper- and lower-case letters" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:479 -msgid "In regular expression mode, the search text is an arbitrary python-compatible regular expression. The replacement text can contain backreferences to parenthesized expressions in the pattern. The search is not anchored, and can match and replace multiple times on the same string. The modification functions (lower-case etc) are applied to the matched text, not to the field as a whole. The destination box specifies the field where the result after matching and replacement is to be assigned. You can replace the text in the field, or prepend or append the matched text. See this reference for more information on python's regular expressions, and in particular the 'sub' function." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:558 -msgid "S/R TEMPLATE ERROR" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:710 -msgid "You must specify a destination when source is a composite field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:717 -msgid "You must specify a destination identifier type" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:829 -msgid "Invalid identifier string. It must be a comma-separated list of pairs of strings separated by a colon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:946 -msgid "Search/replace invalid" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:947 -#, python-format -msgid "Search pattern is invalid: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1003 -#, python-format -msgid "" -"Applying changes to %d books.\n" -"Phase {0} {1}%%." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1033 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:628 -msgid "Delete saved search/replace" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1034 -msgid "The selected saved search/replace will be deleted. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1059 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1064 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1069 -msgid "Save search/replace" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1060 -msgid "Search/replace name:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1070 -msgid "That saved search/replace already exists and will be overwritten. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:557 -msgid "Edit Meta information" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:559 -msgid "A&utomatically set author sort" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:560 -msgid "&Swap title and author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:561 -msgid "Author s&ort: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:562 -msgid "Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:563 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1083 -msgid "&Rating:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:564 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:565 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1084 -msgid "Rating of this book. 0-5 stars" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:567 -msgid " stars" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:569 -msgid "Add ta&gs: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:571 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:572 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:193 -msgid "Open Tag Editor" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:573 -msgid "&Remove tags:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:574 -msgid "Comma separated list of tags to remove from the books. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:575 -msgid "Check this box to remove all tags from the books." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:576 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:601 -msgid "Remove &all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:580 -msgid "If checked, the series will be cleared" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:581 -msgid "&Clear series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:582 -msgid "" -"If not checked, the series number for the books will be set to 1.\n" -"If checked, selected books will be automatically numbered, in the order\n" -"you selected them. So if you selected Book A and then Book B,\n" -"Book A will have series number 1 and Book B series number 2." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:586 -msgid "&Automatically number books in this series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:587 -msgid "" -"Series will normally be renumbered from the highest number in the database\n" -"for that series. Checking this box will tell calibre to start numbering\n" -"from the value in the box" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:590 -msgid "&Force numbers to start with:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:591 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1423 -msgid "&Date:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:592 -msgid "d MMM yyyy" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:594 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:599 -msgid "&Apply date" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:595 -msgid "&Published:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:597 -msgid "Clear published date" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:600 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1190 -msgid "&Languages:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:602 -msgid "Remove &format:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:603 -msgid "" -"When doing a same format to same format conversion,\n" -"for e.g., EPUB to EPUB, calibre saves the original EPUB\n" -" as ORIGINAL_EPUB. This option tells calibre to restore\n" -" the EPUB from ORIGINAL_EPUB. Useful if you did a bulk\n" -" conversion of a large number of books and something went wrong." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:608 -msgid "Restore pre conversion &originals, if available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:609 -msgid "" -"Force the title to be in title case. If both this and swap authors are checked,\n" -"title and author are swapped before the title case is set" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:611 -msgid "Change title to title &case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:612 -msgid "Update title sort based on the current title. This will be applied only after other changes to title." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:613 -msgid "Update &title sort" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:614 -msgid "" -"Remove stored conversion settings for the selected books.\n" -"\n" -"Future conversion of these books will use the default settings." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:617 -msgid "Remove &stored conversion settings for the selected books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:618 -msgid "Change &cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:619 -msgid "&Generate default cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:620 -msgid "&Remove cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:621 -msgid "Set from &ebook file(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:622 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:599 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:766 -msgid "&Basic metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:623 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:606 -msgid "&Custom metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:624 -msgid "Load searc&h/replace:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:625 -msgid "Select saved search/replace to load." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:626 -msgid "Save current search/replace" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:627 -msgid "Sa&ve" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:630 -msgid "Search &field:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:631 -msgid "The name of the field that you want to search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:632 -msgid "Search &mode:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:633 -msgid "Choose whether to use basic text matching or advanced regular expression matching" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:634 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:656 -msgid "Identifier type:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:635 -msgid "Choose which identifier type to operate upon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:636 -msgid "Te&mplate:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:637 -msgid "Enter a template to be used as the source for the search/replace" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:639 -msgid "Enter what you are looking for, either plain text or a regular expression, depending on the mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:640 -msgid "Check this box if the search string must match exactly upper and lower case. Uncheck it if case is to be ignored" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:641 -msgid "Cas&e sensitive" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:642 -msgid "&Replace with:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:643 -msgid "The replacement text. The matched search text will be replaced with this string" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:644 -msgid "&Apply function after replace:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:645 -msgid "" -"Specify how the text is to be processed after matching and replacement. In character mode, the entire\n" -"field is processed. In regular expression mode, only the matched text is processed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:647 -msgid "&Destination field:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:648 -msgid "" -"The field that the text will be put into after all replacements.\n" -"If blank, the source field is used if the field is modifiable" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:650 -msgid "M&ode:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:651 -msgid "Specify how the text should be copied into the destination." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:652 -msgid "" -"Specifies whether result items should be split into multiple values or\n" -"left as single values. This option has the most effect when the source field is\n" -"not multiple and the destination field is multiple" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:655 -msgid "Split &result" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:657 -msgid "" -"

Choose which identifier type to operate upon. When the\n" -" source field is something other than 'identifiers' you can enter\n" -" a * if you want to replace the entire set of identifiers with\n" -" the result of the search/replace.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:661 -msgid "For multiple-valued fields, sho&w" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:662 -msgid "values starting a&t" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:663 -msgid "with values separated b&y" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:664 -msgid "Used when displaying test results to separate values in multiple-valued fields" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:665 -msgid "Test text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:666 -msgid "Test result" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:667 -msgid "Your test:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:668 -msgid "&Search and replace" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:61 -msgid "Password needed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:63 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:211 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:154 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:140 -msgid "&Username:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:64 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:212 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:146 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:142 -msgid "&Password:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:65 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:213 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice_ui.py:94 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:155 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:81 -msgid "&Show password" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:124 -msgid "Restart required" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:125 -msgid "You must restart Calibre before using this plugin!" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:166 -#, python-format -msgid "Version History for %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:186 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/chooser_widget_ui.py:82 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:178 -msgid "All" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:186 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:304 -msgid "Installed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:186 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:399 -msgid "Not installed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:186 -msgid "Update available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:304 -msgid "Plugin Name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:304 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:68 -msgid "Status" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:305 -msgid "Available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:305 -msgid "Calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:305 -msgid "Released" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:330 -msgid "PayPal" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:354 -msgid "" -"This plugin is FREE but you can reward the developer for their effort\n" -"by donating to them via PayPal.\n" -"\n" -"Right-click and choose Donate to reward: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:389 -msgid "Platform unavailable" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:391 -msgid "Calibre upgrade required" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:394 -msgid "Plugin deprecated" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:396 -msgid "New version available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:398 -msgid "Latest version installed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:429 -msgid "This plugin has been deprecated and should be uninstalled" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:430 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:434 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:438 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:442 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:445 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:447 -msgid "Right-click to see more options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:432 -#, python-format -msgid "This plugin can only be installed on: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:436 -#, python-format -msgid "You must upgrade to at least Calibre %s before installing this plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:441 -msgid "You can install this plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:444 -msgid "A new version of this plugin is available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:446 -msgid "This plugin is installed and up-to-date" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:476 -msgid "Update Check Failed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:477 -msgid "Unable to reach the MobileRead plugins forum index page." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:484 -msgid "User plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:489 -msgid "User Plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:497 -msgid "Filter list of plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:515 -msgid "Description" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:528 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:540 -msgid "&Install" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:529 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:541 -msgid "Install the selected plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:532 -msgid "&Customize plugin " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:533 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:585 -msgid "Customize the options for this plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:545 -msgid "Version &History" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:546 -msgid "Show history of changes to this plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:550 -msgid "Plugin &Forum Thread" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:559 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:114 -msgid "Enable/&Disable plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:560 -msgid "Enable or disable this plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:564 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:116 -msgid "&Remove plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:565 -msgid "Uninstall the selected plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:574 -msgid "Donate to developer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:575 -msgid "Donate to the developer of this plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:584 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:115 -msgid "&Customize plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:678 -#, python-format -msgid "Are you sure you want to uninstall the %s plugin?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:690 -#, python-format -msgid "Install %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:691 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:303 -msgid "Installing plugins is a security risk. Plugins can contain a virus/malware. Only install it if you got it from a trusted source. Are you sure you want to proceed?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:708 -#, python-format -msgid "Locating zip file for %(name)s: %(link)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:712 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:760 -msgid "Install Plugin Failed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:713 -#, python-format -msgid "Unable to locate a plugin zip file for %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:718 -#, python-format -msgid "Downloading plugin zip attachment: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:723 -#, python-format -msgid "Installing plugin: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:736 -#, python-format -msgid "Plugin installed: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:738 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:319 -msgid "Plugin {0} successfully installed under {1} plugins. You may have to restart calibre for the plugin to take effect." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:761 -msgid "A problem occurred while installing this plugin. This plugin will now be uninstalled. Please post the error message in details below into the forum thread for this plugin and restart Calibre." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:789 -msgid "Version history missing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:790 -#, python-format -msgid "Unable to find the version history for %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:797 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:354 -msgid "Plugin not customizable" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:798 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:355 -#, python-format -msgid "Plugin: %s does not need customization" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:802 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:361 -msgid "Must restart" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:803 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:362 -#, python-format -msgid "You must restart calibre before you can configure the %s plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:811 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:343 -msgid "Plugin cannot be disabled" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/plugin_updater.py:812 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:344 -#, python-format -msgid "The plugin: %s cannot be disabled" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/progress.py:66 -msgid "Aborting..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/quickview.py:89 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:60 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:156 -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:129 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:302 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:1417 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:113 -msgid "Authors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/quickview.py:205 -msgid "**No items found**" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/quickview.py:206 -msgid "Click in a column in the library view to see the information for that book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/quickview.py:221 -msgid "Books with selected item \"{0}\": {1}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/quickview.py:227 -msgid "Double-click on a book to change the selection in the library view. Shift- or control-double-click to edit the metadata of a book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/quickview_ui.py:71 -msgid "Quickview" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/quickview_ui.py:72 -msgid "Items" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/quickview_ui.py:73 -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:201 -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:94 -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:287 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/chooser_widget_ui.py:80 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/store_dialog_ui.py:76 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:651 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:283 -msgid "Search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/quickview_ui.py:74 -msgid "Search in the library view for the selected item" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:25 -msgid "Restoring database from backups, do not interrupt, this will happen in three stages" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:27 -msgid "Restoring database" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:80 -#, python-format -msgid "The old database was saved as: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:84 -#, python-format -msgid "Restoring the database succeeded with some warnings click Show details to see the details. %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:89 -#, python-format -msgid "Restoring database was successful. %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:94 -msgid "Your list of books, with all their metadata is stored in a single file, called a database. In addition, metadata for each individual book is stored in that books' folder, as a backup.

This operation will rebuild the database from the individual book metadata. This is useful if the database has been corrupted and you get a blank list of books.

Do you want to restore the database?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:115 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/restore_library.py:129 -msgid "Restoring database failed, click Show details to see details" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor.py:48 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor.py:75 -msgid "Saved search already exists" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor.py:49 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor.py:76 -#, python-format -msgid "The saved search %s already exists, perhaps with different case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor.py:62 -msgid "The current saved search will be permanently deleted. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor_ui.py:94 -msgid "Saved Search Editor" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor_ui.py:95 -msgid "Saved Search: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor_ui.py:96 -msgid "Select a saved search to edit" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor_ui.py:97 -msgid "Delete this selected saved search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor_ui.py:99 -msgid "Enter a new saved search name." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor_ui.py:100 -msgid "Add the new saved search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor_ui.py:102 -msgid "Rename the current search to what is in the box" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/saved_search_editor_ui.py:104 -msgid "Change the contents of the saved search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:43 -msgid "" -" Download this periodical every week on the specified days after\n" -" the specified time. For example, if you choose: Monday after\n" -" 9:00 AM, then the periodical will be download every Monday as\n" -" soon after 9:00 AM as possible.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:64 -msgid "&Download after:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:94 -msgid "" -" Download this periodical every month, on the specified days.\n" -" The download will happen as soon after the specified time as\n" -" possible on the specified days of each month. For example,\n" -" if you choose the 1st and the 15th after 9:00 AM, the\n" -" periodical will be downloaded on the 1st and 15th of every\n" -" month, as soon after 9:00 AM as possible.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:106 -msgid "&Days of the month:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:108 -msgid "Comma separated list of days of the month. For example: 1, 15" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:112 -msgid "Download &after:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:145 -msgid "" -" Download this periodical every x days. For example, if you\n" -" choose 30 days, the periodical will be downloaded every 30\n" -" days. Note that you can set periods of less than a day, like\n" -" 0.1 days to download a periodical more than once a day.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:154 -msgid "&Download every:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:157 -msgid "every hour" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:160 -msgid "days" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:164 -msgid "Note: You can set intervals of less than a day, by typing the value manually." -msgstr "" - -#. NOTE: Number of news sources -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:200 -#, python-format -msgid "%s news sources" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:220 -msgid "&Download now" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:318 -msgid "Need username and password" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:319 -msgid "You must provide a username and/or password to use this news source." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:361 -msgid "Account" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:362 -msgid "(optional)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:363 -msgid "(required)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:380 -msgid "Created by: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:384 -#, python-format -msgid "Download %s now" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:388 -msgid "Last downloaded: never" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:389 -msgid "never" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:395 -#, python-format -msgid "%(days)d days, %(hours)d hours and %(mins)d minutes ago" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:411 -msgid "Last downloaded:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:432 -msgid "Cannot download news as no internet connection is active" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:435 -msgid "No internet connection" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:446 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:203 -msgid "Schedule news download" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:449 -msgid "Add a custom news source" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:454 -msgid "Download all scheduled news sources" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:204 -msgid "Go" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:205 -msgid "blurb" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:206 -msgid "&Schedule for download:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:207 -msgid "Days of week" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:208 -msgid "Days of month" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:209 -msgid "Every x days" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:210 -msgid "&Account" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:214 -msgid "For the scheduling to work, you must leave calibre running." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:215 -msgid "&Schedule" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:216 -msgid "Add &title as tag" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:217 -msgid "&Extra tags:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:218 -msgid "Maximum number of copies (issues) of this recipe to keep. Set to 0 to keep all (disable)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:219 -msgid "&Keep at most:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:220 -msgid "" -"

When set, this option will cause calibre to keep, at most, the specified number of issues of this periodical. Every time a new issue is downloaded, the oldest one is deleted, if the total is larger than this number.\n" -"

Note that this feature only works if you have the option to add the title as tag checked, above.\n" -"

Also, the setting for deleting periodicals older than a number of days, below, takes priority over this setting." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:223 -msgid "all issues" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:224 -msgid " issues" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:225 -msgid "&Advanced" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:226 -msgid "Delete downloaded news &older than:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:227 -msgid "" -"

Delete downloaded news older than the specified number of days. Set to zero to disable.\n" -"

You can also control the maximum number of issues of a specific periodical that are kept by clicking the Advanced tab for that periodical above." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:229 -msgid "never delete" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:230 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:279 -msgid " days" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:231 -msgid "Download all scheduled news sources at once" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:232 -msgid "Download &all scheduled" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:41 -msgid "contains" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:42 -msgid "The text to search for. It is interpreted as a regular expression." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:43 -msgid "

Negate this match. That is, only return results that do not match this query." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:44 -msgid "Negate" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:182 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:206 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:206 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:168 -msgid "Advanced Search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:183 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:207 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:207 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:169 -msgid "&What kind of match to use:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:184 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:208 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:208 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:170 -msgid "Contains: the word or phrase matches anywhere in the metadata field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:185 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:209 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:209 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:171 -msgid "Equals: the word or phrase must match the entire metadata field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:186 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:210 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:210 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:172 -msgid "Regular expression: the expression must match anywhere in the metadata field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:187 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:211 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:211 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:173 -msgid "Find entries that have..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:188 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:212 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:212 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:174 -msgid "&All these words:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:189 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:213 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:213 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:175 -msgid "This exact &phrase:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:190 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:214 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:214 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:176 -msgid "&One or more of these words:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:191 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:215 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:215 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:177 -msgid "But dont show entries that have..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:192 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:216 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:216 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:178 -msgid "Any of these &unwanted words:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:193 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:217 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:217 -msgid "See the User Manual for more help" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:194 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:218 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:218 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:180 -msgid "A&dvanced Search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:196 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:220 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:220 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:182 -msgid "Enter the title." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:197 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:221 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:172 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:183 -msgid "&Author:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:199 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1127 -msgid "Ta&gs:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:200 -msgid "Enter an author's name. Only one author can be used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:201 -msgid "Enter a series name, without an index. Only one series name can be used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:202 -msgid "Enter tags separated by spaces" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:203 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions_ui.py:101 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:223 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:223 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:184 -msgid "&Clear" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:204 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:224 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:224 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:185 -msgid "Search only in specific fields:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:205 -msgid "Titl&e/Author/Series ..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/select_formats.py:38 -#, python-format -msgid "There are %(count)d book(s) with the %(fmt)s format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/select_formats.py:55 -msgid "Choose formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:45 -msgid "Use a password if calibre is running on a network that is not secure. For example, if you run calibre on a laptop, use that laptop in an airport, and want to connect your smart device to calibre, you should use a password." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:51 -msgid "Check this box if you want calibre to automatically start the smart device interface when calibre starts. You should not do this if you are using a network that is not secure and you are not setting a password." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:57 -msgid "Check this box if you want calibre to use a fixed network port. Normally you will not need to do this. However, if your device consistently fails to connect to calibre, try checking this box and entering a number." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:63 -msgid "Try 9090. If calibre says that it fails to connect to the port, try another number. You can use any number between 8,000 and 32,000." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:69 -msgid "These are the IP addresses for this computer. If you decide to have your device connect to calibre using a fixed IP address, one of these addresses should be the one you use. It is unlikely but possible that the correct IP address is not listed here, in which case you will need to go to your computer's control panel to get a complete list of your computer's network interfaces and IP addresses." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:118 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:124 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:129 -msgid "Invalid port number" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:119 -msgid "You must provide a port number." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:125 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:130 -msgid "The port must be a number between 8000 and 32000." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:145 -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:425 -msgid "Problem starting the wireless device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice.py:146 -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:426 -#, python-format -msgid "The wireless device driver did not start. It said \"%s\"" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice_ui.py:86 -msgid "Smart device control" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice_ui.py:87 -msgid "" -"

Start wireless device connections. Currently used only\n" -" by Calibre Companion.\n" -"

You may see some messages from your computer's firewall or anti-virus manager asking you if it is OK for calibre to connect to the network. Please answer yes. If you do not, wireless connections will not work." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice_ui.py:90 -msgid "Calibre IP addresses:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice_ui.py:91 -msgid "Possibe IP addresses:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice_ui.py:92 -msgid "Optional &password:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice_ui.py:93 -msgid "Optional password for security" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice_ui.py:95 -msgid "Optional &fixed port:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice_ui.py:96 -msgid "Optional port number" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice_ui.py:97 -msgid "&Use a fixed port" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/smartdevice_ui.py:98 -msgid "&Automatically allow connections at calibre startup" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:60 -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:130 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:164 -msgid "Publishers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:143 -msgid " (not on any book)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:146 -msgid "Category lookup name: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:191 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:222 -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:264 -msgid "Invalid name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:192 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:223 -msgid "That name contains leading or trailing periods, multiple periods in a row or spaces before or after periods." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:200 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:230 -msgid "Name already used" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:201 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:231 -msgid "That name is already used, perhaps with different case." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories.py:244 -msgid "The current tag category will be permanently deleted. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:166 -msgid "User Categories Editor" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:167 -msgid "Category name: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:168 -msgid "Select a category to edit" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:169 -msgid "Delete this selected tag category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:171 -msgid "Enter a category name, then use the add button or the rename button" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:172 -msgid "Add a new category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:174 -msgid "Rename the current category to what is in the box" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:176 -msgid "Category filter: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:177 -msgid "Select the content kind of the new category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:178 -msgid "A&vailable items" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:179 -msgid "Apply tags to current tag category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:181 -msgid "A&pplied items" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_categories_ui.py:182 -msgid "Unapply (remove) tag from current tag category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor.py:83 -msgid "Are your sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor.py:84 -msgid "The following tags are used by one or more books. Are you certain you want to delete them?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:128 -msgid "Tag Editor" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:129 -msgid "A&vailable tags" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:130 -msgid "Delete tag from database. This will unapply the tag from all books and then remove it from the database." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:132 -msgid "Apply tag to current book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:134 -msgid "A&pplied tags" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:135 -msgid "Unapply (remove) tag from current book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:137 -msgid "&Add tag:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:138 -msgid "If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:139 -msgid "Add tag to available tags and apply it to current book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:105 -msgid "Tag" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:108 -msgid "Count" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:111 -msgid "Was" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:167 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:182 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor_ui.py:75 -msgid "Find" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:167 -msgid "You must enter some text to search for" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor.py:182 -msgid "No tag found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor_ui.py:74 -msgid "Search for an item in the Tag column" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_list_editor_ui.py:76 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:171 -msgid "Copy the selected color name to the clipboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:259 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:223 -msgid "Author Sort" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:263 -msgid "Tag 1" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:263 -msgid "Tag 2" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:307 -msgid "Template language tutorial" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:311 -msgid "Template function reference" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:319 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:430 -msgid "Select Icon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:373 -msgid "EXCEPTION: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:400 -msgid "No column chosen" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:401 -msgid "You must specify a column to be colored" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:404 -msgid "No template provided" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog.py:405 -msgid "The template box cannot be empty" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:169 -msgid "Set the color of the column:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:170 -msgid "Copy a color name to the clipboard:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:172 -msgid "Kind" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:173 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:32 -msgid "icon with no text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:174 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:31 -msgid "icon with text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:175 -msgid "Apply the icon to column:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:176 -msgid "Copy an icon file name to the clipboard:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:177 -msgid "Copy the selected icon file name to the clipboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:178 -msgid "Add icon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:179 -msgid "Add an icon file to the set of choices" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:180 -msgid "Template value:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:181 -msgid "The value of the template using the current book in the library view" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:182 -msgid "Function &name:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:183 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions_ui.py:100 -msgid "&Documentation:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:184 -msgid "Python &code:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_line_editor.py:30 -msgid "Remove any template from the box" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_line_editor.py:32 -msgid "Open Template Editor" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/test_email_ui.py:56 -msgid "Test email settings" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/test_email_ui.py:57 -#, python-format -msgid "Send test mail from %s to:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/test_email_ui.py:58 -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:134 -msgid "&Test" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:112 -msgid "No recipes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:113 -msgid "No custom recipes created." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:144 -msgid "No recipe selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:149 -#, python-format -msgid "The attached file: %(fname)s is a recipe to download %(title)s." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:152 -msgid "Recipe for " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:169 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:180 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:271 -msgid "Switch to Advanced mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:175 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:183 -msgid "Switch to Basic mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:193 -msgid "Feed must have a title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:194 -msgid "The feed must have a title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:198 -msgid "Feed must have a URL" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:199 -#, python-format -msgid "The feed %s must have a URL" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:205 -msgid "This feed has already been added to the recipe" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:247 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:256 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:343 -msgid "Invalid input" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:248 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:257 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:344 -#, python-format -msgid "

Could not create recipe. Error:
%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:261 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:320 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:347 -msgid "Replace recipe?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:262 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:321 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:348 -#, python-format -msgid "A custom recipe named %s already exists. Do you want to replace it?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:288 -msgid "Choose builtin recipe" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:334 -msgid "Choose a recipe file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:335 -msgid "Recipes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:375 -msgid "You will lose any unsaved changes. To save your changes, click the Add/Update recipe button. Continue?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:263 -msgid "Add custom news source" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:264 -msgid "Available user recipes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:265 -msgid "Add/Update &recipe" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:266 -msgid "&Remove recipe" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:267 -msgid "&Share recipe" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:268 -msgid "S&how recipe files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:269 -msgid "Customize &builtin recipe" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:270 -msgid "&Load recipe from file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:272 -msgid "" -"\n" -"

Create a basic news recipe, by adding RSS feeds to it.
For most feeds, you will have to use the \"Advanced mode\" to further customize the fetch process.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:276 -msgid "Recipe &title:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:277 -msgid "&Oldest article:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:278 -msgid "The oldest article to download" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:280 -msgid "&Max. number of articles per feed:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:281 -msgid "Maximum number of articles to download per feed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:282 -msgid "Feeds in recipe" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:284 -msgid "Remove feed from recipe" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:287 -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:290 -msgid "Add feed to recipe" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:288 -msgid "&Feed title:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:289 -msgid "Feed &URL:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:291 -msgid "&Add feed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:292 -msgid "For help with writing advanced news recipes, please visit User Recipes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:293 -msgid "Recipe source code (python)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dnd.py:51 -#, python-format -msgid "Download %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dnd.py:54 -#, python-format -msgid "Downloading %(fname)s from %(url)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/dnd.py:85 -#, python-format -msgid "Failed to download from %(url)r with error: %(err)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:42 -msgid "No file specified to download." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:70 -msgid "Not a support ebook format." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:91 -#, python-format -msgid "Downloading %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:103 -msgid "Downloading" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:107 -msgid "Failed to download ebook" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:125 -#, python-format -msgid "Email %(name)s to %(to)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:144 -msgid "News:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:146 -#, python-format -msgid "Attached is the %s periodical downloaded by calibre." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:201 -msgid "E-book:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:209 -msgid "Attached, you will find the e-book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:210 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:202 -msgid "by" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:211 -#, python-format -msgid "in the %s format." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:225 -msgid "Sending email to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:256 -msgid "Auto convert the following books before sending via email?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:263 -msgid "Could not email the following books as no suitable formats were found:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:269 -msgid "Failed to email book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:272 -msgid "sent" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/email.py:301 -msgid "Sent news to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:129 -msgid "" -"
\n" -"

Set a regular expression pattern to use when trying to guess ebook metadata from filenames.

\n" -"

A tutorial on using regular expressions is available.

\n" -"

Use the Test functionality below to test your regular expression on a few sample filenames (remember to include the file extension). The group names for the various metadata entries are documented in tooltips.

" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:133 -msgid "Regular &expression" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:135 -msgid "File &name:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:137 -msgid "Title:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:138 -msgid "Regular expression (?P)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:139 -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:142 -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:145 -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:148 -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:151 -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:154 -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:157 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:116 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:120 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:125 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:130 -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:138 -msgid "No match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:140 -msgid "Authors:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:141 -msgid "Regular expression (?P<author>)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:143 -msgid "Series:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:144 -msgid "Regular expression (?P<series>)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:146 -msgid "Series index:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:147 -msgid "Regular expression (?P<series_index>)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:149 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1325 -msgid "ISBN:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:150 -msgid "Regular expression (?P<isbn>)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:152 -msgid "Publisher:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:153 -msgid "Regular expression (?P<publisher>)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:155 -msgid "Published:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:156 -msgid "Regular expression (?P<published>)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:123 -msgid "Choose a font family" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:136 -#, python-format -msgid "Available faces for %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:171 -msgid "Choose font family" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:195 -msgid "Add &fonts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:199 -msgid "Choose a font family from the list below:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:205 -msgid "Find Next" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:208 -msgid "Find Previous" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:258 -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:377 -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:406 -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:409 -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:436 -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:477 -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:505 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:279 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts.py:48 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:78 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:83 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/chooser_widget_ui.py:83 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:180 -msgid "None" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:264 -msgid "Select font files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:264 -msgid "TrueType/OpenType Fonts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:274 -msgid "Corrupt font" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:275 -#, python-format -msgid "Failed to read metadata from the font file: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:294 -msgid "Added fonts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:295 -#, python-format -msgid "Added font families: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:320 -msgid "Choose &font family" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/font_family_chooser.py:329 -msgid "Clear the font family" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:111 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:327 -msgid "Cover Browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:116 -msgid "Shift+Alt+B" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:130 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:321 -msgid "Tag Browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:132 -msgid "Shift+Alt+T" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:182 -msgid "Connected " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:197 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:29 -msgid "version" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:201 -#, python-format -msgid " %(created)s %(name)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:201 -msgid "created by" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:204 -#, python-format -msgid "%(num)d of %(total)d books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:208 -#, python-format -msgid "%(num)s, %(sel)d selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:240 -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:251 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:296 -msgid "Book Details" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:242 -#: /home/kovid/work/calibre/src/calibre/gui2/init.py:253 -msgid "Shift+Alt+D" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:67 -msgid "Job" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:69 -msgid "Progress" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:70 -msgid "Running time" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:82 -#, python-format -msgid "There are %d running jobs:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:86 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:93 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:108 -msgid "Unknown job" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:89 -#, python-format -msgid "There are %d waiting jobs:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:274 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:277 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:280 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:288 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:295 -msgid "Cannot kill job" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:275 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:289 -msgid "Cannot kill jobs that communicate with the device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:278 -msgid "Job has already run" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:281 -msgid "This job cannot be stopped" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:296 -msgid "Some of the jobs cannot be stopped. Click Show details to see the list of unstoppable jobs." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:394 -msgid "Unavailable" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:442 -msgid "Jobs:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:444 -msgid "Shift+Alt+J" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:461 -msgid "Click to see list of jobs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:534 -msgid " - Jobs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:546 -msgid "Search for a job by name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:595 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:617 -msgid "No job" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:596 -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:618 -msgid "No job selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:598 -msgid "Do you really want to stop the selected job?" -msgid_plural "Do you really want to stop all the selected jobs?" -msgstr[0] "" -msgstr[1] "" - -#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:608 -msgid "Do you really want to stop all non-device jobs?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:365 -#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/model.py:86 -#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/model.py:204 -msgid "Custom" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:372 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:81 -msgid "&Alternate shortcut:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:372 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:76 -msgid "&Shortcut:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:389 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior.py:169 -msgid "Done" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:411 -#, python-format -msgid "Default: %(deflt)s [Currently not conflicting: %(curr)s]" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:430 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts.py:59 -msgid "Press a key..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:457 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts.py:80 -msgid "Already assigned" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:459 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts.py:82 -msgid "already assigned to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:499 -msgid "<b>This shortcut no longer exists</b>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:508 -msgid "Shortcuts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:592 -msgid "Double click on any entry to change the keyboard shortcuts associated with it" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:607 -msgid "Search for a shortcut by name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:646 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:251 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:443 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search.py:365 -msgid "No matches" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:647 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:444 -#, python-format -msgid "Could not find any shortcuts matching %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:57 -msgid "Eject this device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:60 -msgid "Configure this device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:73 -msgid "Show books in calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:75 -msgid "Show books in the main memory of the device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:77 -msgid "Show books in storage card A" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:79 -msgid "Show books in storage card B" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:93 -msgid "Delete library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:147 -msgid "available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:176 -msgid "Vi&rtual Library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:193 -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:198 -msgid "Advanced search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:193 -msgid "Shift+Ctrl+F" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:203 -msgid "<p>Search the list of books by title, author, publisher, tags, comments, etc.<br><br>Words separated by spaces are ANDed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:210 -msgid "&Go!" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:216 -msgid "Do Quick Search (you can also press the Enter key)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:222 -msgid "Reset Quick Search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:238 -msgid "Copy current search text (instead of search name)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/delegates.py:62 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1091 -msgid "stars" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/delegates.py:415 -msgid "Y" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:126 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:285 -msgid "On Device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:128 -msgid "Size (MB)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:135 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:275 -msgid "Modified" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:910 -#, python-format -msgid "Click in this column and press Q to Quickview books with the same %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:913 -msgid "The lookup/search name is \"{0}\"{1}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:919 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1560 -msgid "This book's UUID is \"{0}\"" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1006 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:112 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:284 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:479 -msgid "Could not change the on disk location of this book. Is it open in another program?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1010 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1016 -msgid "Failed to set data" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1011 -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1017 -msgid "Could not set data, click Show Details to see why." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1200 -msgid "In Library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1204 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:355 -msgid "Size" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1540 -msgid "Marked for deletion" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1543 -msgid "Double click to <b>edit</b> me<br><br>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1558 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:332 -msgid "The lookup/search name is \"{0}\"" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:275 -#, python-format -msgid "Hide column %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:280 -#, python-format -msgid "Sort on %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:281 -msgid "Ascending" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:284 -msgid "Descending" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:296 -#, python-format -msgid "Change text alignment for %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:298 -msgid "Left" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:298 -msgid "Right" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:299 -msgid "Center" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:309 -#, python-format -msgid "Quickview column %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:326 -msgid "Show column" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:337 -msgid "Shrink column if it is too wide to fit" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:340 -msgid "Restore default layout" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/library/views.py:1104 -msgid "Dropping onto a device is not supported. First add the book to the calibre library." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:52 -msgid "Configure Viewer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:53 -msgid "Use white background" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:54 -msgid "Hyphenate" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:55 -msgid "<b>Changes will only take effect after a restart.</b>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:70 -msgid " - LRF Viewer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:160 -#, python-format -msgid "<b>No matches</b> for the search phrase <i>%s</i> were found." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:128 -msgid "LRF Viewer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:129 -msgid "Parsing LRF file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:130 -msgid "LRF Viewer toolbar" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:541 -msgid "Next Page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:542 -msgid "Previous Page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:133 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:1016 -#: /home/kovid/work/calibre/src/calibre/gui2/store/web_store_dialog_ui.py:62 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:215 -msgid "Back" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:134 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:216 -msgid "Forward" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:135 -msgid "Next match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:136 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:223 -msgid "Open ebook" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:35 -msgid "Use the library located at the specified path." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:37 -msgid "Start minimized to system tray." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:39 -msgid "Log debugging information to console" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:41 -msgid "Do not check for updates" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:43 -msgid "Ignore custom plugins, useful if you installed a plugin that is preventing calibre from starting" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:75 -msgid "Path too long" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:76 -#, python-format -msgid "Path to Calibre Portable (%s) too long. Must be less than 59 characters." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:107 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:780 -msgid "Calibre Library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:134 -msgid "Choose a location for your calibre e-book library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:143 -msgid "Failed to create library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:144 -#, python-format -msgid "Failed to create calibre library at: %r." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:147 -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:220 -msgid "Choose a location for your new calibre e-book library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:183 -msgid "Initializing user interface..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:214 -msgid "Repairing failed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:215 -msgid "The database repair failed. Starting with a new empty library." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:229 -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:254 -msgid "Bad database location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:230 -#, python-format -msgid "Bad database location %r. calibre will now quit." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:242 -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:575 -msgid "Corrupted database" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:243 -#, python-format -msgid "The library database at %s appears to be corrupted. Do you want calibre to try and rebuild it automatically? The rebuild may not be completely successful. If you say No, a new empty calibre library will be created." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:255 -#, python-format -msgid "Bad database location %r. Will start with a new, empty calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:265 -#, python-format -msgid "Starting %s: Loading books..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:348 -msgid "If you are sure it is not running" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:351 -msgid "may be running in the system tray, in the" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:353 -msgid "upper right region of the screen." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:355 -msgid "lower right region of the screen." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:358 -msgid "try rebooting your computer." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:360 -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:377 -msgid "try deleting the file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:363 -msgid "Cannot Start " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:364 -#, python-format -msgid "%s is already running." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:385 -msgid "No running calibre found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:389 -msgid "Shutdown command sent, waiting for shutdown..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main.py:394 -msgid "Failed to shutdown running calibre instance" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main_window.py:94 -msgid "&Preferences" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main_window.py:95 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:230 -msgid "&Quit" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/main_window.py:115 -msgid "Unhandled exception" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:145 -msgid "Specify how this book should be sorted when by title. For example, The Exorcist might be sorted as Exorcist, The." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:147 -msgid "Title &sort:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:156 -msgid " The green color indicates that the current title sort matches the current title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:159 -msgid " The red color warns that the current title sort does not match the current title. No action is required if this is what you want." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:233 -msgid "Authors changed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:234 -msgid "You have changed the authors for this book. You must save these changes before you can use Manage authors. Do you want to save these changes?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:317 -msgid "" -"Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\n" -"If the box is colored green, then text matches the individual author's sort strings. If it is colored red, then the authors and this text do not match." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:322 -msgid "Author s&ort:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:332 -msgid " The green color indicates that the current author sort matches the current author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:335 -msgid " The red color indicates that the current author sort does not match the current author. No action is required if this is what you want." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:514 -msgid "&Number:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:614 -#, python-format -msgid "" -"Last modified: %s\n" -"\n" -"Double click to view" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:624 -#, python-format -msgid "Restore %s from the original" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:670 -msgid "Set the cover for the book from the selected format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:678 -msgid "Set metadata for the book from the selected format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:685 -msgid "Add a format to this book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:692 -msgid "Remove the selected format from this book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:763 -msgid "Choose formats for " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806 -msgid "You do not have permission to read the following files:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:832 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:833 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:857 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:858 -msgid "No format selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:870 -msgid "Could not read metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:871 -#, python-format -msgid "Could not read metadata from %s format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:900 -msgid "&Browse" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:902 -msgid "T&rim" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:910 -msgid "Download co&ver" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:911 -msgid "&Generate cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:961 -msgid "Not a valid picture" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:985 -msgid "Specify title and author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:986 -msgid "You must specify a title and author before generating a cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1005 -msgid "Invalid cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1006 -msgid "Could not change cover as the image is invalid." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1163 -msgid "Tags changed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1164 -msgid "You have changed the tags. In order to use the tags editor, you must either discard or apply these changes. Apply changes?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1191 -msgid "A comma separated list of languages for this book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1216 -msgid "Unknown language" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1217 -#, python-format -msgid "The language %s is not recognized" -msgid_plural "The languages %s are not recognized" -msgstr[0] "" -msgstr[1] "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1229 -msgid "I&ds:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1230 -#, python-format -msgid "" -"Edit the identifiers for this book. For example: \n" -"\n" -"%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1294 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1356 -msgid "This ISBN number is valid" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1297 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1359 -msgid "This ISBN number is invalid" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1322 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1344 -msgid "Invalid ISBN" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1323 -msgid "Enter an ISBN" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1345 -msgid "The ISBN you entered is not valid. Try again." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1369 -msgid "&Publisher:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1445 -msgid "Clear date" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:1489 -msgid "Publishe&d:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:55 -msgid "Schedule download?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:66 -#, python-format -msgid "The download of metadata for the <b>%d selected book(s)</b> will run in the background. Proceed?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:68 -msgid "You can monitor the progress of the download by clicking the rotating spinner in the bottom right corner." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:71 -msgid "When the download completes you will be asked for confirmation before calibre applies the downloaded metadata." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:82 -msgid "Download only &metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:86 -msgid "Download only &covers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:90 -msgid "&Configure download" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:94 -msgid "Download &both" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:131 -#, python-format -msgid "Download metadata for %d books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:136 -msgid "Metadata download started" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:147 -msgid "(Failed metadata)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:149 -msgid "(Failed cover)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download.py:200 -#, python-format -msgid "Processed %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/config.py:61 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:131 -msgid "Downloaded metadata fields" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/diff.py:348 -#, python-format -msgid "Revert %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/diff.py:453 -msgid "Compare metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/diff.py:469 -msgid "&Accept all remaining" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/diff.py:474 -msgid "Re&ject all remaining" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/diff.py:479 -msgid "&Reject" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/diff.py:532 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:301 -#, python-format -msgid " [%(num)d of %(tot)d]" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/pdf_covers.py:35 -msgid "Choose a cover from the list of PDF pages below" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/pdf_covers.py:37 -msgid "Rendering PDF pages, please wait..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/pdf_covers.py:58 -msgid "Choose cover from PDF" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/pdf_covers.py:87 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/pdf_covers.py:94 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/printing.py:68 -msgid "Failed to render" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/pdf_covers.py:88 -msgid "Could not render this PDF file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/pdf_covers.py:95 -msgid "This PDF has no pages" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:31 -msgid "Edit Metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:63 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:1009 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:108 -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:219 -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:410 -msgid "Next" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:67 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:107 -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:229 -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:393 -msgid "Previous" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:115 -msgid "" -"Automatically create the title sort entry based on the current title entry.\n" -"Using this button to create title sort will change title sort from red to green." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:126 -msgid "Automatically create the author sort entry based on the current author entry. Using this button to create author sort will change author sort from red to green. There is a menu of functions available under this button. Click and hold on the button to see it." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:132 -msgid "Set author sort from author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:133 -msgid "Set author from author sort" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:136 -msgid "Copy author to author sort" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:138 -msgid "Copy author sort to author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:149 -msgid "Swap the author and title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:155 -msgid "Manage authors. Use to rename authors and correct individual author's sort values" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:162 -msgid "Clear series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:185 -msgid "Clear rating" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:197 -msgid "Clear all tags" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:206 -msgid "Clear Ids" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:210 -msgid "Paste the contents of the clipboard into the identifiers box prefixed with isbn:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:223 -msgid "&Download metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:235 -msgid "Configure download metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:239 -msgid "Change how calibre downloads metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:359 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:369 -msgid "Could not read cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:360 -#, python-format -msgid "Could not read cover from %s format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:370 -#, python-format -msgid "The cover in the %s format is invalid" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:546 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:551 -#, python-format -msgid "Save changes and edit the metadata of %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:649 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:856 -msgid "Change cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:709 -msgid "Co&mments" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:749 -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:897 -msgid "&Metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:754 -msgid "&Cover and formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:826 -msgid "C&ustom metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:837 -msgid "&Comments" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single.py:903 -msgid "Basic metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:149 -msgid "Has cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:149 -msgid "Has summary" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:205 -msgid "" -"The has cover indication is not fully\n" -"reliable. Sometimes results marked as not\n" -"having a cover will find a cover in the download\n" -"cover stage, and vice versa." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:299 -msgid "See at" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:460 -msgid "calibre is downloading metadata from: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:482 -msgid "Please wait" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:514 -msgid "Query: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:533 -msgid "Failed to download metadata. Click Show Details to see details" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:542 -msgid "Failed to find any books that match your search. Try making the search <b>less specific</b>. For example, use only the author's last name and a single distinctive word from the title.<p>To see the full log, click Show Details." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:650 -msgid "Current cover" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:653 -msgid "Searching..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:822 -msgid "View this cover at full size" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:868 -#, python-format -msgid "Downloading covers for <b>%s</b>, please wait..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:899 -msgid "Failed to download any covers, click \"Show details\" for details." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:905 -#, python-format -msgid "Could not find any covers for <b>%s</b>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:907 -#, python-format -msgid "Found <b>%(num)d</b> possible covers for %(title)s. When the download completes, the covers will be sorted by size." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:997 -msgid "Downloading metadata..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/metadata/single_download.py:1112 -msgid "Downloading cover..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/__init__.py:38 -msgid "Restore settings to default values. You have to click Apply to actually save the default settings." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/__init__.py:340 -msgid "Configure " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding.py:33 -msgid "Ignore duplicate incoming formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding.py:34 -msgid "Overwrite existing duplicate formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding.py:35 -msgid "Create new record for each duplicate format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding.py:52 -msgid "Choose a folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding.py:110 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding.py:116 -msgid "Invalid folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding.py:111 -#, python-format -msgid "You must specify an existing folder as your auto-add folder. %s does not exist." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding.py:117 -#, python-format -msgid "You do not have read/write permissions for the folder: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding.py:121 -#, python-format -msgid "<b>WARNING:</b> Any files you place in %s will be automatically deleted after being added to calibre. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:135 -msgid "" -"Automerge: If books with similar titles and authors found, merge the incoming formats automatically into\n" -"existing book records. The box to the right controls what happens when an existing record already has\n" -"the incoming format. Note that this option also affects the Copy to library action.\n" -"\n" -"Title match ignores leading indefinite articles (\"the\", \"a\", \"an\"), punctuation, case, etc. Author match is exact." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:140 -msgid "&Automerge added books if they already exist in the calibre library:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:141 -msgid "" -"Automerge: If books with similar titles and authors found, merge the incoming formats automatically into\n" -"existing book records. This box controls what happens when an existing record already has\n" -"the incoming format: \n" -"\n" -"Ignore duplicate incoming files - means that existing files in your calibre library will not be replaced\n" -"Overwrite existing duplicate files - means that existing files in your calibre library will be replaced\n" -"Create new record for each duplicate file - means that a new book entry will be created for each duplicate file\n" -"\n" -"Title matching ignores leading indefinite articles (\"the\", \"a\", \"an\"), punctuation, case, etc.\n" -"Author matching is exact." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:151 -msgid "Here you can control how calibre will read metadata from the files you add to it. calibre can either read metadata from the contents of the file, or from the filename." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:152 -msgid "Read &metadata from file contents rather than file name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:153 -msgid "Swap the firstname and lastname of the author. This affects only metadata read from file names." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:154 -msgid "&Swap author firstname and lastname" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:155 -msgid "&Tags to apply when adding a book:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:156 -msgid "A comma-separated list of tags that will be applied to books added to the library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:157 -msgid "&Configure metadata from file name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:158 -msgid "When using the \"&Copy to library\" action to copy books between libraries, preserve the date" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:159 -msgid "Automatically &convert added books to the current output format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:160 -msgid "The Add &Process" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:161 -msgid "<b>Ignore</b> files with the following extensions when automatically adding " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:162 -msgid "Specify a folder. Any files you put into this folder will be automatically added to calibre (restart required)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:163 -msgid "<b>WARNING:</b> Files in the above folder will be deleted after being added to calibre." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:164 -msgid "" -"If set, this option will causes calibre to check if a file\n" -" being auto-added is already in the calibre library.\n" -" If it is, a message will pop up asking you whether\n" -" you want to add it anyway." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:168 -msgid "Check for &duplicates when auto-adding files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:169 -msgid "Folder to auto-add files from" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:170 -msgid "Browse for folder" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:172 -msgid "Automatically &convert added files to the current output format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/adding_ui.py:173 -msgid "&Automatic Adding" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior.py:33 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:166 -msgid "High" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior.py:33 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior.py:35 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:167 -msgid "Low" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior.py:35 -msgid "Very low" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior.py:67 -msgid "Compact Metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior.py:67 -msgid "Default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior.py:68 -msgid "All on 1 tab" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior.py:170 -msgid "Confirmation dialogs have all been reset" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:154 -msgid "Show notification when &new version is available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:155 -msgid "" -"If checked, Yes/No custom columns values can be Yes, No, or Unknown.\n" -"If not checked, the values can be Yes or No." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:157 -msgid "Yes/No columns have three values (Requires restart)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:158 -msgid "Automatically send downloaded &news to ebook reader" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:159 -msgid "&Delete news from library when it is automatically sent to reader" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:160 -msgid "Preferred &output format:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:161 -msgid "Default network &timeout:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:162 -msgid "Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:163 -msgid " seconds" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:164 -msgid "Job &priority:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:168 -msgid "Virtual library to apply when the current library is opened:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:169 -msgid "Use this virtual library on calibre startup if the current library is being used. Also applied when switching to this library. Note that this setting is per library. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:170 -msgid "Edit metadata (single) layout:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:171 -msgid "Choose a different layout for the Edit Metadata dialog. The compact metadata layout favors editing custom metadata over changing covers and formats." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:172 -msgid "Preferred &input format order:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:175 -msgid "Use internal &viewer for:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/behavior_ui.py:176 -msgid "Reset all disabled &confirmation dialogs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:29 -msgid "All Columns" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:38 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:43 -msgid "is true" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:39 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:44 -msgid "is false" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:40 -msgid "is undefined" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:47 -msgid "has id" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:48 -msgid "does not have id" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:51 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:56 -msgid "is equal to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:52 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:57 -msgid "is less than" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:53 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:58 -msgid "is greater than" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:59 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:71 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:79 -msgid "is set" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:60 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:72 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:80 -msgid "is not set" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:61 -msgid "is more days ago than" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:62 -msgid "is fewer days ago than" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:63 -msgid "is more days from now than" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:64 -msgid "is fewer days from now than" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:67 -msgid "has" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:68 -msgid "does not have" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:69 -msgid "has pattern" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:70 -msgid "does not have pattern" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:75 -msgid "is" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:76 -msgid "is not" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:77 -msgid "matches pattern" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:78 -msgid "does not match pattern" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:97 -msgid "If the ___ column ___ values" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:234 -msgid "Enter either an identifier type or an identifier type and value of the form identifier:value" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:237 -msgid "Enter a 3 letter ISO language code, like fra for French or deu for German or eng for English. You can also use the full language name, in which case calibre will try to automatically convert it to the language code." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:242 -msgid "Enter a number" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:248 -msgid "Enter the maximum days old the item can be. Zero is today. Dates in the future always match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:252 -msgid "Enter the minimum days old the item can be. Zero is today. Dates in the future never match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:256 -msgid "Enter the maximum days in the future the item can be. Zero is today. Dates in the past always match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:260 -msgid "Enter the minimum days in the future the item can be. Zero is today. Dates in the past never match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:264 -msgid "Enter a date in the format YYYY-MM-DD" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:266 -msgid "Enter a string." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:268 -msgid "Enter a regular expression" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:270 -#, python-format -msgid "You can match multiple values by separating them with %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:286 -msgid "coloring" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:289 -msgid "icon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:292 -msgid "Create/edit a column {0} rule" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:297 -msgid "Create a column {0} rule by filling in the boxes below" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:305 -msgid "Set the" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:309 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:657 -msgid "color" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:316 -msgid "of the column:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:322 -msgid "to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:348 -msgid "&Add icon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:350 -msgid "Icons should be square or landscape" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:354 -msgid "Only if the following conditions are all satisfied:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:364 -msgid "Add another condition" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:368 -msgid "You can disable a condition by blanking all of its boxes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:425 -msgid "Sample Text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:500 -msgid "No icon selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:501 -msgid "You must choose an icon for this rule" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:515 -msgid "Invalid condition" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:516 -#, python-format -msgid "One of the conditions for this rule is invalid: <b>%s</b>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:521 -msgid "No conditions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:522 -msgid "You must specify at least one non-empty condition for this rule" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:640 -#, python-format -msgid "" -"\n" -" <p>Advanced Rule for column <b>%(col)s</b>:\n" -" <pre>%(rule)s</pre>\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:645 -#, python-format -msgid "" -"\n" -" <p>Advanced Rule: set <b>%(typ)s</b> for column <b>%(col)s</b>:\n" -" <pre>%(rule)s</pre>\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:664 -#, python-format -msgid "" -" <p>Set the <b>%(kind)s</b> of <b>%(col)s</b> to <b>%(color)s</b> if the following\n" -" conditions are met:</p>\n" -" <ul>%(rule)s</ul>\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:698 -#, python-format -msgid "<li>If the <b>%(col)s</b> column <b>%(action)s</b> value: <b>%(val)s</b>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:717 -msgid "Add Rule" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:720 -msgid "Remove Rule" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:737 -msgid "Move the selected rule up" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:742 -msgid "Move the selected rule down" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:750 -msgid "Add Advanced Rule" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:762 -msgid "You can control the color of columns in the book list by creating \"rules\" that tell calibre what color to use. Click the Add Rule button below to get started.<p>You can <b>change an existing rule</b> by double clicking it." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:769 -msgid "You can add icons to columns in the book list by creating \"rules\" that tell calibre what icon to use. Click the Add Rule button below to get started.<p>You can <b>change an existing rule</b> by double clicking it." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:832 -msgid "No rule selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:833 -#, python-format -msgid "No rule selected for %s." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/coloring.py:838 -msgid "removal" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns.py:98 -msgid "You must select a column to delete it" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns.py:103 -msgid "The selected column is not a custom column" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns.py:105 -#, python-format -msgid "Do you really want to delete column %s and all its data?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:87 -msgid "Here you can re-arrange the layout of the columns in the calibre library book list. You can hide columns by unchecking them. You can also create your own, custom columns." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:88 -msgid "Move column up" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:90 -msgid "Remove a user-defined column" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:92 -msgid "Add a user-defined column" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:94 -msgid "Edit settings of a user-defined column" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:96 -msgid "Move column down" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/columns_ui.py:98 -msgid "Add &custom column" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/conversion.py:41 -msgid "Restore settings to default values. Only settings for the currently selected section are restored." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:21 -msgid "Text, column shown in the tag browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:24 -msgid "Comma separated text, like tags, shown in the tag browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:27 -msgid "Long text, like comments, not shown in the tag browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:30 -msgid "Text column for keeping series-like information" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:33 -msgid "Text, but with a fixed set of permitted values" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:37 -msgid "Floating point numbers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:39 -msgid "Integers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:41 -msgid "Ratings, shown with stars" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:44 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:69 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:76 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:176 -msgid "Yes/No" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:46 -msgid "Column built from other columns" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:48 -msgid "Column built from other columns, behaves like tags" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:55 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:56 -msgid "Create a custom column" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:67 -msgid "Quick create:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:68 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:175 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/emailp.py:28 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:21 -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:152 -msgid "Formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:68 -msgid "ISBN" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:71 -msgid "People's names" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:76 -msgid "Number" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:76 -msgid "Text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:91 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:92 -msgid "Edit a custom column" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:96 -msgid "No column selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:97 -msgid "No column has been selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:101 -msgid "Selected column is not a user-defined column" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:148 -msgid "If checked, this column will be displayed as HTML in book details and the content server. This can be used to construct links with the template language. For example, the template <pre><big><b>{title}</b></big>{series:| [|}{series_index:| [|]]}</pre>will create a field displaying the title in bold large characters, along with the series, for example <br>\"<big><b>An Oblique Approach</b></big> [Belisarius [1]]\". The template <pre><a href=\"http://www.beam-ebooks.de/ebook/{identifiers:select(beam)}\">Beam book</a></pre> will generate a link to the book on the Beam ebooks site." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:177 -msgid "My Tags" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:178 -msgid "My Series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:179 -msgid "My Rating" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:180 -msgid "People" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:207 -msgid "Examples: The format <code>{0:0>4d}</code> gives a 4-digit number with leading zeros. The format <code>{0:d} days</code> prints the number then the word \"days\"" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:212 -msgid "Examples: The format <code>{0:.1f}</code> gives a floating point number with 1 digit after the decimal point. The format <code>Price: $ {0:,.2f}</code> prints \"Price $ \" then displays the number with 2 digits after the decimal point and thousands separated by commas." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:221 -msgid "No lookup name was provided" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:225 -msgid "The lookup name must contain only lower case letters, digits and underscores, and start with a letter" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:228 -msgid "Lookup names cannot end with _index, because these names are reserved for the index of a series column." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:238 -msgid "No column heading was provided" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:248 -#, python-format -msgid "The lookup name %s is already used" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:260 -#, python-format -msgid "The heading %s is already used" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:271 -msgid "You must enter a template for composite columns" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:281 -msgid "You must enter at least one value for enumeration columns" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:287 -msgid "The value \"{0}\" is in the list more than once, perhaps with different case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:295 -msgid "The colors box must be empty or contain the same number of items as the value box" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column.py:300 -msgid "The color {0} is unknown" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:220 -msgid "&Lookup name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:221 -msgid "Column &heading" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:222 -msgid "Used for searching the column. Must contain only digits and lower case letters." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:223 -msgid "Column heading in the library view and category name in the tag browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:224 -msgid "&Column type" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:225 -msgid "What kind of information will be kept in the column." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:226 -msgid "" -"Show check marks in the GUI. Values of 'yes', 'checked', and 'true'\n" -"will show a green check. Values of 'no', 'unchecked', and 'false' will show a red X.\n" -"Everything else will show nothing." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:229 -msgid "Show checkmarks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:230 -msgid "Check this box if this column contains names, like the authors column." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:231 -msgid "Contains names" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:232 -msgid "" -"<p>Date format. Use 1-4 'd's for day, 1-4 'M's for month, and 2 or 4 'y's for year.</p>\n" -"<p>For example:\n" -"<ul>\n" -"<li> ddd, d MMM yyyy gives Mon, 5 Jan 2010<li>\n" -"<li>dd MMMM yy gives 05 January 10</li>\n" -"</ul> " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:238 -msgid "Use MMM yyyy for month + year, yyyy for year only" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:239 -msgid "Default: dd MMM yyyy." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:240 -msgid "" -"<p>The format specifier must begin with <code>{0:</code>\n" -"and end with <code>}</code> You can have text before and after the format specifier.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:243 -msgid "<p>Default: Not formatted. For format language details see <a href=\"http://docs.python.org/library/string.html#format-string-syntax\">the python documentation</a>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:244 -msgid "Format for &dates" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:245 -msgid "Format for &numbers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:246 -msgid "&Template" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:247 -msgid "Field template. Uses the same syntax as save templates." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:248 -msgid "Similar to save templates. For example, {title} {isbn}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:249 -msgid "Default: (nothing)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:250 -msgid "&Sort/search column by" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:251 -msgid "How this column should handled in the GUI when sorting and searching" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:252 -msgid "If checked, this column will appear in the tags browser as a category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:253 -msgid "Show in tags browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:254 -msgid "Show as HTML in book details" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:255 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:260 -msgid "Values" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:256 -msgid "" -"A comma-separated list of permitted values. The empty value is always\n" -"included, and is the default. For example, the list 'one,two,three' has\n" -"four values, the first of them being the empty value." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:259 -msgid "The empty string is always the first value" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:261 -msgid "" -"A list of color names to use when displaying an item. The\n" -"list must be empty or contain a color for each value." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/create_custom_column_ui.py:263 -msgid "Colors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_debug.py:24 -msgid "Getting debug information, please wait" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_debug.py:25 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:32 -msgid "Copy to &clipboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_debug.py:43 -msgid "Device already detected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_debug.py:44 -#, python-format -msgid "A device (%s) is already detected by calibre. If you wish to debug the detection of another device, first disconnect this device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_debug.py:57 -msgid "Debugging failed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_debug.py:58 -msgid "Running debug device detection failed. Click Show Details for more information." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:31 -msgid "Getting device information" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:34 -msgid "User-defined device information" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:51 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:57 -msgid "Device Detection" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:52 -msgid "Ensure your device is disconnected, then press OK" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:58 -msgid "Ensure your device is connected, then press OK" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/device_user_defined.py:89 -msgid "Copy these values to the clipboard, paste them into an editor, then enter them into the USER_DEVICE by customizing the device plugin in Preferences->Plugins. Remember to also enter the folders where you want the books to be put. You must restart calibre for your changes to take effect.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/email_ui.py:66 -msgid "calibre can send your books to you (or your reader) by email. Emails will be automatically sent for downloaded news to all email addresses that have Auto-send checked." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/email_ui.py:67 -msgid "Add an email address to which to send books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/email_ui.py:68 -msgid "&Add email" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/email_ui.py:69 -msgid "Make &default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/email_ui.py:70 -msgid "&Remove email" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/emailp.py:28 -msgid "Email" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/emailp.py:28 -msgid "Subject" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/emailp.py:29 -msgid "Alias" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/emailp.py:29 -msgid "Auto send" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/emailp.py:34 -msgid "Formats to email. The first matching format will be sent." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/emailp.py:35 -msgid "Subject of the email to use when sending. When left blank the title will be used for the subject. Also, the same templates used for \"Save to disk\" such as {title} and {author_sort} can be used here." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/emailp.py:39 -msgid "If checked, downloaded news will be automatically mailed <br>to this email address (provided it is in one of the listed formats)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/emailp.py:42 -msgid "Friendly name to use for this email address" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/emailp.py:128 -msgid "new email address" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/ignored_devices.py:26 -msgid "The list of devices that you have asked calibre to ignore. Uncheck a device to have calibre stop ignoring it." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/ignored_devices.py:37 -msgid "The list of device plugins you have disabled. Uncheck an entry to enable the plugin. calibre cannot detect devices that are managed by disabled plugins." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:105 -msgid "Narrow" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:105 -msgid "Wide" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:107 -msgid "Calibre style" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:107 -msgid "System default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:145 -msgid "Off" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:145 -msgid "Small" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:146 -msgid "Medium" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:149 -msgid "Always" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:149 -msgid "If there is enough room" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:150 -msgid "Never" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:153 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:590 -msgid "By first letter" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:153 -msgid "Disabled" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:154 -msgid "Partitioned" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:187 -msgid "Column coloring" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel.py:192 -msgid "Column icons" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:264 -msgid "Enable system &tray icon (needs restart)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:265 -msgid "User Interface &layout (needs restart):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:266 -msgid "Disable all animations. Useful if you have a slow/old computer." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:267 -msgid "Disable &animations" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:268 -msgid "Disable ¬ifications in system tray" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:269 -msgid "Show &splash screen at startup" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:270 -msgid "Interface font:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:271 -msgid "Change &font (needs restart)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:272 -msgid "User interface &style (needs restart):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:273 -msgid "&Toolbar" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:274 -msgid "&Icon size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:275 -msgid "Show &text under icons:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:276 -msgid "Choose &language (requires restart):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:277 -msgid "Show &tooltips in the book list" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:278 -msgid "Extra &spacing to add between rows in the book list:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:281 -msgid "Main Interface" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:282 -msgid "Note that <b>comments</b> will always be displayed at the end, regardless of the position you assign here." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:283 -msgid "Use &Roman numerals for series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:284 -msgid "Select displayed metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:285 -msgid "Move up" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:286 -msgid "Move down" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:287 -msgid "Default author link template:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:288 -msgid "" -"<p>Enter a template to be used to create a link for\n" -"an author in the books information dialog. This template will\n" -"be used when no link has been provided for the author using\n" -"Manage Authors. You can use the values {author} and\n" -"{author_sort}, and any template function." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:293 -msgid "Show &cover in the book details panel" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:294 -msgid "Show the size of the book's cover in pixels" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:295 -msgid "Show cover &size" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:297 -msgid "" -"A comma-separated list of categories in which items containing\n" -"periods are displayed in the tag browser trees. For example, if\n" -"this box contains 'tags' then tags of the form 'Mystery.English'\n" -"and 'Mystery.Thriller' will be displayed with English and Thriller\n" -"both under 'Mystery'. If 'tags' is not in this box,\n" -"then the tags will be displayed each on their own line." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:303 -msgid "Tags browser category &partitioning method:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:304 -msgid "" -"Choose how tag browser subcategories are displayed when\n" -"there are more items than the limit. Select by first\n" -"letter to see an A, B, C list. Choose partitioned to\n" -"have a list of fixed-sized groups. Set to disabled\n" -"if you never want subcategories" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:309 -msgid "&Collapse when more items than:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:310 -msgid "" -"If a Tag Browser category has more than this number of items, it is divided\n" -"up into subcategories. If the partition method is set to disable, this value is ignored." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:312 -msgid "Categories not to partition:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:313 -msgid "" -"A comma-separated list of categories that are not to\n" -"be partitioned even if the number of items is larger than\n" -"the value shown above. This option can be used to\n" -"avoid collapsing hierarchical categories that have only\n" -"a few top-level elements." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:318 -msgid "Show &average ratings in the tags browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:319 -msgid "Categories with &hierarchical items:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:320 -msgid "Use &alternating row colors in the Tag Browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:322 -msgid "Show cover &browser in a separate window (needs restart)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:323 -msgid "&Number of covers to show in browse mode (needs restart):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:324 -msgid "When showing cover browser in separate window, show it &fullscreen" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:325 -#, python-format -msgid "You can press the %s keys to toggle full screen mode." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:326 -msgid "Show &reflections in the cover browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:30 -msgid "created by Kovid Goyal" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:231 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:123 -msgid "&Apply" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:238 -msgid "Restore &defaults" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:239 -msgid "Save changes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:240 -msgid "Cancel and return to overview" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:297 -msgid "Restoring to defaults not supported for" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:342 -msgid "Some of the changes you made require a restart. Please restart calibre as soon as possible." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:345 -msgid "The changes you have made require calibre be restarted immediately. You will not be allowed to set any more preferences, until you restart." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:48 -msgid "Source" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:50 -msgid "Cover priority" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:77 -msgid "This source is configured and ready to go" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:78 -msgid "This source needs configuration" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:94 -msgid "This plugin is useful only for <b>Chinese</b> language books. It can return incorrect results for books in English. Are you sure you want to enable it?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:158 -msgid "Published date" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:265 -#, python-format -msgid "<b>Configure %(name)s</b><br>%(desc)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:323 -msgid "No source selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources.py:324 -msgid "No source selected, cannot configure." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:126 -msgid "Metadata sources" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:127 -msgid "Disable any metadata sources you do not want by unchecking them. You can also set the cover priority. Covers from sources that have a higher (smaller) priority will be preferred when bulk downloading metadata.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:129 -msgid "Sources with a red X next to their names must be configured before they will be used. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:130 -msgid "Configure selected source" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:132 -msgid "If you uncheck any fields, metadata for those fields will not be downloaded" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:133 -msgid "&Select all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:134 -msgid "&Clear all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:135 -msgid "Restore your own subset of checked fields that you define using the 'Set as default' button" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:136 -msgid "&Select default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:137 -msgid "Store the currently checked fields as a default you can restore using the 'Select default' button" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:138 -msgid "&Set as default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:139 -msgid "Convert all downloaded comments to plain &text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:140 -msgid "Swap author names from FN LN to LN, FN" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:141 -msgid "Max. number of &tags to download:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:142 -msgid "Max. &time to wait after first match is found:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:143 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:145 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:445 -msgid " secs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:144 -msgid "Max. time to wait after first &cover is found:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:146 -msgid "" -"<p>Different metadata sources have different sets of tags for the same book. If this option is checked, then calibre will use the smaller tag sets. These tend to be more like genres, while the larger tag sets tend to describe the books content.\n" -"<p>Note that this option will only make a practical difference if one of the metadata sources has a genre like tag set for the book you are searching for. Most often, they all have large tag sets." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:148 -msgid "Prefer &fewer tags" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/metadata_sources_ui.py:149 -msgid "Use published date of \"first edition\" (from worldcat.org)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc.py:36 -msgid "The maximum number of jobs that will run simultaneously in the background. This refers to CPU intensive tasks like conversion. Lower this number if you want calibre to use less CPU." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc.py:46 -msgid "No proxies used" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc.py:50 -msgid "<b>Using proxies:</b>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc.py:72 -msgid "Failed to install command line tools." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc.py:75 -msgid "Command line tools installed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc.py:76 -msgid "Command line tools installed in" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc.py:77 -msgid "If you move calibre.app, you have to re-install the command line tools." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc_ui.py:75 -msgid "Max. simultaneous conversion/news download jobs:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc_ui.py:76 -msgid "Limit the max. simultaneous jobs to the available CPU &cores" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc_ui.py:77 -msgid "Debug &device detection" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc_ui.py:78 -msgid "Get information to setup the &user defined device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc_ui.py:79 -msgid "Open calibre &configuration directory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc_ui.py:80 -msgid "&Install command line tools" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc_ui.py:81 -msgid "&Abort conversion jobs that take more than:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc_ui.py:82 -msgid "Never abort" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/misc_ui.py:83 -msgid " minutes" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:53 -msgid "Device currently connected: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:56 -msgid "Device currently connected: None" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:193 -msgid "That format and device already has a plugboard." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:205 -msgid "Possibly override plugboard?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:206 -msgid "A more general plugboard already exists for that format and device. Are you sure you want to add the new plugboard?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:218 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:240 -msgid "Add possibly overridden plugboard?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:219 -msgid "More specific device plugboards exist for that format. Are you sure you want to add the new plugboard?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:230 -msgid "Really add plugboard?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:231 -msgid "A different plugboard matches that format and device combination. Are you sure you want to add the new plugboard?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:241 -msgid "More specific format and device plugboards already exist. Are you sure you want to add the new plugboard?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:252 -msgid "The {0} device does not support the {1} format." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:261 -msgid "The {0} device supports only the {1} format(s)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:294 -msgid "Invalid destination" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard.py:295 -msgid "The destination field cannot be blank" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard_ui.py:114 -msgid "" -"Here you can change the metadata calibre uses to update a book when saving to disk or sending to device.\n" -"\n" -"Use this dialog to define a 'plugboard' for a format (or all formats) and a device (or all devices). The plugboard specifies what template is connected to what field. The template is used to compute a value, and that value is assigned to the connected field.\n" -"\n" -"Often templates will contain simple references to composite columns, but this is not necessary. You can use any template in a source box that you can use elsewhere in calibre.\n" -"\n" -"One possible use for a plugboard is to alter the title to contain series information. Another would be to change the author sort, something that mobi users might do to force it to use the ';' that the kindle requires. A third would be to specify the language." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard_ui.py:121 -msgid "Format (choose first)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard_ui.py:122 -msgid "Device (choose second)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard_ui.py:123 -msgid "Add new plugboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard_ui.py:124 -msgid "Edit existing plugboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard_ui.py:125 -msgid "Existing plugboards" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard_ui.py:126 -msgid "Source template" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard_ui.py:127 -msgid "Destination field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard_ui.py:128 -msgid "Save plugboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugboard_ui.py:129 -msgid "Delete plugboard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:194 -#, python-format -msgid "%(plugin_type)s %(plugins)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:195 -msgid "plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:205 -msgid "" -"\n" -"Customization: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:207 -msgid "" -"\n" -"\n" -"This plugin has been disabled" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:238 -msgid "Search for plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:252 -msgid "Could not find any matching plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:294 -msgid "files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:295 -msgid "Add plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:327 -msgid "No valid plugin path" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:328 -#, python-format -msgid "%s is not a valid plugin path" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:337 -#, python-format -msgid "Select an actual plugin under <b>%s</b> to customize" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:368 -#, python-format -msgid "Are you sure you want to remove the plugin: %s?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:373 -msgid "Plugin <b>{0}</b> successfully removed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:381 -msgid "Cannot remove builtin plugin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:382 -msgid " cannot be removed. It is a builtin plugin. Try disabling it instead." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:109 -msgid "Here you can customize the behavior of Calibre by controlling what plugins it uses." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:112 -msgid "Show only those plugins that have been installed by you" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:113 -msgid "Show only &user installed plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:117 -msgid "Get &new plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:118 -msgid "Check for &updated plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins_ui.py:119 -msgid "&Load plugin from file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template.py:34 -msgid "Any custom field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template.py:35 -msgid "The lookup name of any custom field (these names begin with \"#\")." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template.py:66 -msgid "Constant template" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template.py:67 -msgid "The template contains no {fields}, so all books will have the same name. Is this OK?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template_ui.py:57 -msgid "Save &template" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template_ui.py:58 -msgid "By adjusting the template below, you can control what folders the files are saved in and what filenames they are given. You can use the / character to indicate sub-folders. Available metadata variables are described below. If a particular book does not have some metadata, the variable will be replaced by the empty string." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template_ui.py:59 -msgid "Available variables:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/save_template_ui.py:60 -msgid "Template Editor" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/saving_ui.py:71 -msgid "Here you can control how calibre will save your books when you click the Save to Disk button:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/saving_ui.py:72 -msgid "Save &cover separately" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/saving_ui.py:73 -msgid "Replace space with &underscores" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/saving_ui.py:74 -msgid "Update &metadata in saved copies" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/saving_ui.py:75 -msgid "Change paths to &lowercase" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/saving_ui.py:76 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending_ui.py:76 -msgid "Format &dates as:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/saving_ui.py:77 -msgid "File &formats to save:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/saving_ui.py:78 -msgid "Convert non-English characters to &English equivalents" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/saving_ui.py:79 -msgid "Save metadata in &OPF file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/saving_ui.py:80 -msgid "&Show files in file browser after saving to disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:37 -msgid "<b>Grouped search terms</b> are search names that permit a query to automatically search across more than one column. For example, if you create a grouped search term <code>allseries</code> with the value <code>series, #myseries, #myseries2</code>, then the query <code>allseries:adhoc</code> will find 'adhoc' in any of the columns <code>series</code>, <code>#myseries</code>, and <code>#myseries2</code>.<p> Enter the name of the grouped search term in the drop-down box, enter the list of columns to search in the value box, then push the Save button. <p>Note: Search terms are forced to lower case; <code>MySearch</code> and <code>mysearch</code> are the same term.<p>You can have your grouped search term show up as user categories in the Tag Browser. Just add the grouped search term names to the Make user categories from box. You can add multiple terms separated by commas. The new user category will be automatically populated with all the items in the categories included in the grouped search term. <p>Automatic user categories permit you to see easily all the category items that are in the columns contained in the grouped search term. Using the above <code>allseries</code> example, the automatically-generated user category will contain all the series mentioned in <code>series</code>, <code>#myseries</code>, and <code>#myseries2</code>. This can be useful to check for duplicates, to find which column contains a particular item, or to have hierarchical categories (categories that contain categories)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:77 -msgid "Match all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:77 -msgid "Match any" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:139 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:149 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:153 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:159 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:172 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:176 -msgid "Grouped Search Terms" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:140 -msgid "The search term cannot be blank" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:150 -msgid "That name is already used for a column or grouped search term" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:154 -msgid "That name is already used for user category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:160 -msgid "The value box cannot be empty" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search.py:173 -msgid "The empty grouped search term cannot be deleted" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:168 -msgid "Search as you &type" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:169 -msgid "Unaccented characters match accented characters" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:170 -msgid "&Highlight search results instead of restricting the book list to the results" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:171 -msgid "What to search by default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:172 -msgid "When you enter a search term without a prefix, by default calibre will search all metadata for matches. For example, entering, \"asimov\" will search not just authors but title/tags/series/comments/etc. Use these options if you would like to change this behavior." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:173 -msgid "&Limit the searched metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:174 -msgid "&Columns that non-prefixed searches are limited to:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:175 -msgid "Note that this option affects all searches, including saved searches and restrictions. Therefore, if you use this option, it is best to ensure that you always use prefixes in your saved searches. For example, use \"series:Foundation\" rather than just \"Foundation\" in a saved search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:177 -msgid "&Names:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:178 -msgid "" -"Contains the names of the currently-defined group search terms.\n" -"Create a new name by entering it into the empty box, then\n" -"pressing Save. Rename a search term by selecting it then\n" -"changing the name and pressing Save. Change the value of\n" -"a search term by changing the value box then pressing Save." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:183 -msgid "Delete the current search term" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:185 -msgid "" -"Save the current search term. You can rename a search term by\n" -"changing the name then pressing Save. You can change the value\n" -"of a search term by changing the value box then pressing Save." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:189 -msgid "Make &user categories from:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:190 -msgid "" -"Enter the names of any grouped search terms you wish\n" -"to be shown as user categories" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:192 -msgid "Clear search histories from all over calibre. Including the book list, e-book viewer, fetch news dialog, etc." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:193 -msgid "Clear search &histories" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:194 -msgid "What to search when searching similar books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:195 -msgid "" -"<p>When you search for similar books by right clicking the\n" -" book and selecting \"Similar books...\",\n" -" calibre constructs a search using the column lookup names specified below.\n" -" By changing the lookup name to a grouped search term you can\n" -" search multiple columns at once.</p>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:200 -msgid "Similar authors: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:201 -msgid "Similar series: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:202 -msgid "Similar tags: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/search_ui.py:203 -msgid "Similar publishers: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending.py:28 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending_ui.py:70 -msgid "Manual management" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending.py:29 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending_ui.py:71 -msgid "Only on send" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending.py:30 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending_ui.py:72 -msgid "Automatic management" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending.py:36 -msgid "Cannot change metadata management while a device is connected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending_ui.py:69 -msgid "Metadata &management:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending_ui.py:73 -msgid "" -"<li><b>Manual management</b>: Calibre updates the metadata and adds collections only when a book is sent. With this option, calibre will never remove a collection.</li>\n" -"<li><b>Only on send</b>: Calibre updates metadata and adds/removes collections for a book only when it is sent to the device. </li>\n" -"<li><b>Automatic management</b>: Calibre automatically keeps metadata on the device in sync with the calibre library, on every connect</li></ul>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/sending_ui.py:77 -msgid "Here you can control how calibre will save your books when you click the Send to Device button. This setting can be overriden for individual devices by customizing the device interface plugins in Preferences->Advanced->Plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73 -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:510 -msgid "Failed to start content server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:112 -msgid "Error log:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:119 -msgid "Access log:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:134 -msgid "You need to restart the server for changes to take effect" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:147 -msgid "" -"<p>If you leave the password blank, anyone will be able to\n" -" access your book collection using the web interface.\n" -"<br>\n" -"<p>Some devices have browsers that do not support authentication. If you are having trouble downloading files from the content server, try removing the password." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:151 -msgid "The maximum size (widthxheight) for displayed covers. Larger covers are resized. " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:152 -msgid "Max. &cover size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:153 -msgid "Server &port:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:156 -msgid "Max. &OPDS items per query:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:157 -msgid "Max. &ungrouped items:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:158 -msgid "Virtual library to apply:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:159 -msgid "Setting a virtual library will restrict the books the content server makes available to those in the library. This setting is per library (i.e. you can have a different value per library)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:160 -msgid "<p>Some devices have browsers that do not support authentication. If you are having trouble downloading files from the content server, trying removing the password." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:161 -msgid "Password incompatible with some devices" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:162 -msgid "&URL Prefix:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:163 -msgid "A prefix that is applied to all URLs in the content server. Useful only if you plan to put the server behind another server like Apache, with a reverse proxy." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:164 -msgid "&Start Server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:165 -msgid "St&op Server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:166 -msgid "&Test Server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:167 -msgid "calibre contains a network server that allows you to access your book collection using a browser from anywhere in the world. Any changes to the settings will only take effect after a server restart." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:168 -msgid "Run server &automatically when calibre starts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:169 -msgid "View &server logs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server_ui.py:170 -msgid "" -"<p>Remember to leave calibre running as the server only runs as long as calibre is running.\n" -"<p>To connect to the calibre server from your device you should use a URL of the form <b>http://myhostname:8080</b>. Here myhostname should be either the fully qualified hostname or the IP address of the computer calibre is running on. If you want to access the server from anywhere in the world, you will have to setup port forwarding for it on your router." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:25 -msgid "" -"\n" -" <p>Here you can add and remove functions used in template processing. A\n" -" template function is written in python. It takes information from the\n" -" book, processes it in some way, then returns a string result. Functions\n" -" defined here are usable in templates in the same way that builtin\n" -" functions are usable. The function must be named <b>evaluate</b>, and\n" -" must have the signature shown below.</p>\n" -" <p><code>evaluate(self, formatter, kwargs, mi, locals, your parameters)\n" -" → returning a unicode string</code></p>\n" -" <p>The parameters of the evaluate function are:\n" -" <ul>\n" -" <li><b>formatter</b>: the instance of the formatter being used to\n" -" evaluate the current template. You can use this to do recursive\n" -" template evaluation.</li>\n" -" <li><b>kwargs</b>: a dictionary of metadata. Field values are in this\n" -" dictionary.\n" -" <li><b>mi</b>: a Metadata instance. Used to get field information.\n" -" This parameter can be None in some cases, such as when evaluating\n" -" non-book templates.</li>\n" -" <li><b>locals</b>: the local variables assigned to by the current\n" -" template program.</li>\n" -" <li><b>your parameters</b>: You must supply one or more formal\n" -" parameters. The number must match the arg count box, unless arg count is\n" -" -1 (variable number or arguments), in which case the last argument must\n" -" be *args. At least one argument is required, and is usually the value of\n" -" the field being operated upon. Note that when writing in basic template\n" -" mode, the user does not provide this first argument. Instead it is\n" -" supplied by the formatter.</li>\n" -" </ul></p>\n" -" <p>\n" -" The following example function checks the value of the field. If the\n" -" field is not empty, the field's value is returned, otherwise the value\n" -" EMPTY is returned.\n" -" <pre>\n" -" name: my_ifempty\n" -" arg count: 1\n" -" doc: my_ifempty(val) -- return val if it is not empty, otherwise the string 'EMPTY'\n" -" program code:\n" -" def evaluate(self, formatter, kwargs, mi, locals, val):\n" -" if val:\n" -" return val\n" -" else:\n" -" return 'EMPTY'</pre>\n" -" This function can be called in any of the three template program modes:\n" -" <ul>\n" -" <li>single-function mode: {tags:my_ifempty()}</li>\n" -" <li>template program mode: {tags:'my_ifempty($)'}</li>\n" -" <li>general program mode: program: my_ifempty(field('tags'))</li>\n" -" </p>\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:136 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:146 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:153 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:157 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:173 -msgid "Template functions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:137 -msgid "You cannot delete a built-in function" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:147 -msgid "Function not defined" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:154 -#, python-format -msgid "Name %s already used" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:158 -msgid "Argument count should be -1 or greater than zero. Setting it to zero means that this function cannot be used in single function mode." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:174 -msgid "Exception while compiling function" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:202 -msgid "function source code not available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions_ui.py:96 -msgid "&Function:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions_ui.py:97 -msgid "Enter the name of the function to create." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions_ui.py:98 -msgid "Arg &count:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions_ui.py:99 -msgid "Set this to -1 if the function takes a variable number of arguments" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions_ui.py:102 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:469 -msgid "&Delete" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions_ui.py:103 -msgid "&Replace" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions_ui.py:104 -msgid "C&reate" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions_ui.py:105 -msgid "&Program Code: (be sure to follow python indenting rules)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:33 -msgid "Donate to support the development of calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:36 -msgid "Location Manager" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:37 -msgid "Switch between library and device views" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:43 -msgid "Separator" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:221 -msgid "The main toolbar" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:222 -msgid "The main toolbar when a device is connected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:223 -msgid "The optional second toolbar" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:224 -msgid "The menubar" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:225 -msgid "The menubar when a device is connected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:226 -msgid "The context menu for the books in the calibre library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:228 -msgid "The context menu for the books on the device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:230 -msgid "The context menu for the cover browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:236 -msgid "Click to choose toolbar or menu to customize" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:284 -msgid "Cannot add" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:285 -#, python-format -msgid "Cannot add the actions %s to this location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:303 -msgid "Cannot remove" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar.py:304 -#, python-format -msgid "Cannot remove the actions %s from this location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:135 -msgid "<p>The toolbar in calibre is different depending on whether a device is connected or not. Choose <b>which toolbar</b> you would like to customize:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:136 -msgid "Choose the toolbar to customize" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:137 -msgid "A&vailable actions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:138 -msgid "Add selected actions to toolbar" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:140 -msgid "Remove selected actions from toolbar" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:142 -msgid "&Current actions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:143 -msgid "Move selected action up" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/toolbar_ui.py:145 -msgid "Move selected action down" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:52 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:350 -msgid "ID" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:126 -msgid "This tweak has it default value" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:128 -msgid "This tweak has been customized" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:301 -msgid "Add/edit tweaks for any custom plugins you have installed. Documentation for these tweaks should be available on the website from where you downloaded the plugins." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:334 -msgid "Search for tweak" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:370 -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:410 -msgid "There was a syntax error in your tweak. Click the show details button for details." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:423 -msgid "Invalid tweaks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks.py:424 -msgid "The tweaks you entered are invalid, try resetting the tweaks to default and changing them one by one until you find the invalid setting." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:115 -msgid "Values for the tweaks are shown below. Edit them to change the behavior of calibre. Your changes will only take effect <b>after a restart</b> of calibre." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:116 -msgid "Edit tweaks for any custom plugins you have installed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:117 -msgid "&Plugin tweaks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:119 -msgid "Edit tweak" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:120 -msgid "Restore this tweak to its default value" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:121 -msgid "Restore &default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/preferences/tweaks_ui.py:122 -msgid "Apply any changes you made to this tweak" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:335 -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:473 -msgid "Create saved search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:336 -msgid "There is no search to save" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:351 -msgid "Delete current search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:352 -msgid "No search is selected" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:354 -msgid "The selected search will be <b>permanently deleted</b>. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:379 -msgid "Search (For Advanced Search click the button to the left)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:395 -msgid "Start search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:405 -msgid "Enable or disable search highlighting." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:460 -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:130 -msgid "Saved Searches" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:462 -msgid "Choose saved search or enter name for new saved search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:468 -msgid "Save current search under the name shown in the box. Press and hold for a pop-up options menu." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:477 -msgid "Delete saved search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:481 -msgid "Manage saved searches" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:27 -#, python-format -msgid "Create a Virtual Library based on %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:35 -#, python-format -msgid "Match any of the selected %s names" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:36 -#, python-format -msgid "Match all of the selected %s names" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:96 -msgid "Edit virtual library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:98 -msgid "Create virtual library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:103 -msgid "Virtual library &name:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:116 -msgid "&Search expression:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:124 -msgid "Create a virtual library based on: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:137 -msgid "" -"\n" -" <h2>Virtual Libraries</h2>\n" -"\n" -" <p>Using <i>virtual libraries</i> you can restrict calibre to only show\n" -" you books that match a search. When a virtual library is in effect, calibre\n" -" behaves as though the library contains only the matched books. The Tag Browser\n" -" display only the tags/authors/series/etc. that belong to the matched books and any searches\n" -" you do will only search within the books in the virtual library. This\n" -" is a good way to partition your large library into smaller and easier to work with subsets.</p>\n" -"\n" -" <p>For example you can use a Virtual Library to only show you books with the Tag <i>\"Unread\"</i>\n" -" or only books by <i>\"My Favorite Author\"</i> or only books in a particular series.</p>\n" -"\n" -" <p>More information and examples are available in the\n" -" <a href=\"http://manual.calibre-ebook.com/virtual_libraries.html\">User Manual</a>.</p>\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:180 -msgid "Saved searches recognized in the expression:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:220 -msgid "Search text changed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:221 -msgid "The virtual library name or the search text has changed. Do you want to discard these changes?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:258 -msgid "No name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:259 -msgid "You must provide a name for the new virtual library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:265 -msgid "A virtual library name cannot begin with \"*\"" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:270 -msgid "Name already in use" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:271 -msgid "That name is already in use. Do you want to replace it with the new search?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:278 -msgid "No search string" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:279 -msgid "You must provide a search to define the new virtual library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:287 -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:417 -msgid "Invalid search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:288 -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:418 -msgid "The search in the search box is not valid" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:293 -msgid "Search found no books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:294 -msgid "The search found no books, so the virtual library will be empty. Do you really want to use that search?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:306 -msgid "<None>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:319 -msgid "Use a \"virtual library\" to show only a subset of the books present in this library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:324 -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:589 -msgid "(all books)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:325 -msgid "Additional restriction" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:326 -msgid "Edit Virtual Library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:327 -msgid "Remove Virtual Library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:349 -msgid "Create Virtual Library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:380 -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:501 -msgid "*current search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:409 -msgid "No search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:410 -msgid "There is no current search to use" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:458 -msgid "Are you sure you want to remove the virtual library {0}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:583 -msgid "({0} of {1})" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/search_restriction_mixin.py:591 -msgid "({0} of all)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts.py:134 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:74 -msgid "&Default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts.py:136 -msgid "Customize shortcuts for" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts.py:223 -msgid "Keys" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts.py:225 -msgid "Double click to change" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:73 -msgid "Frame" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:75 -msgid "&Custom" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:77 -#: /home/kovid/work/calibre/src/calibre/gui2/shortcuts_ui.py:82 -msgid "Click to change" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/basic_config_widget_ui.py:38 -msgid "Added Tags:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/basic_config_widget_ui.py:39 -msgid "Open store in external web browswer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:219 -msgid "&Name:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:221 -msgid "&Description:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:222 -msgid "&Headquarters:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:226 -msgid "Enabled:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:227 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:232 -msgid "DRM:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:228 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:230 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:233 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:227 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:230 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:233 -msgid "true" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:229 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:231 -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:234 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:228 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:231 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:234 -msgid "false" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:232 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:226 -msgid "Affiliate:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/adv_search_builder_ui.py:235 -msgid "Nam&e/Description ..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/chooser_widget_ui.py:78 -msgid "Query:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/chooser_widget_ui.py:81 -msgid "Enable" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/chooser_widget_ui.py:84 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:179 -msgid "Invert" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:21 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:39 -msgid "Affiliate" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:21 -msgid "Enabled" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:21 -msgid "Headquarters" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:21 -msgid "No DRM" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:129 -msgid "This store is currently disabled and cannot be used in other parts of calibre." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:131 -msgid "This store is currently enabled and can be used in other parts of calibre." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:136 -msgid "This store only distributes ebooks without DRM." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:138 -msgid "This store distributes ebooks with DRM. It may have some titles without DRM, but you will need to check on a per title basis." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:140 -#, python-format -msgid "This store is headquartered in %s. This is a good indication of what market the store caters to. However, this does not necessarily mean that the store is limited to that market only." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:143 -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:247 -#, python-format -msgid "Buying from this store supports the calibre developer: %s." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/models.py:145 -#, python-format -msgid "This store distributes ebooks in the following formats: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/chooser/results_view.py:47 -msgid "Configure..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:99 -msgid "Time" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:100 -msgid "Number of seconds to wait for a store to respond" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:101 -msgid "Number of seconds to let a store process results" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:102 -msgid "Display" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:103 -msgid "Maximum number of results to show per store" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:104 -msgid "Open search result in system browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:105 -msgid "Threads" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:106 -msgid "Number of search threads to use" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:107 -msgid "Number of cache update threads to use" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:108 -msgid "Number of cover download threads to use" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/config/search/search_widget_ui.py:109 -msgid "Number of details threads to use" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:222 -msgid "&Price:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:229 -msgid "Download:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:235 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:187 -msgid "Titl&e/Author/Price ..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:39 -msgid "DRM" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:39 -msgid "Download" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:39 -msgid "Price" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:232 -#, python-format -msgid "Detected price as: %s. Check with the store before making a purchase to verify this price is correct. This price often does not include promotions the store may be running." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:235 -msgid "This book as been detected as having DRM restrictions. This book may not work with your reader and you will have limitations placed upon you as to what you can do with this book. Check with the store before making any purchases to ensure you can actually read this book." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:237 -msgid "This book has been detected as being DRM Free. You should be able to use this book on any device provided it is in a format calibre supports for conversion. However, before making a purchase double check the DRM status with the store. The store may not be disclosing the use of DRM." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:239 -msgid "The DRM status of this book could not be determined. There is a very high likelihood that this book is actually DRM restricted." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:244 -#, python-format -msgid "The following formats can be downloaded directly: %s." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/results_view.py:41 -msgid "Download..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/results_view.py:45 -msgid "Goto in store..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search.py:132 -#, python-format -msgid "Buying from this store supports the calibre developer: %s</p>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search.py:181 -msgid "No query" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search.py:182 -msgid "You must enter a title, author or keyword to search for." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search.py:305 -msgid "Customize get books search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search.py:315 -msgid "Configure search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search.py:365 -msgid "Couldn't find any books matching your query." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search.py:379 -msgid "Choose format to download to your library." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:170 -msgid "Get Books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:171 -msgid "Search by title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:173 -msgid "Search by author" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:175 -msgid "&Keyword:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:176 -msgid "Search by any keyword" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:182 -msgid "Open a selected book in the system's web browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:183 -msgid "Open in &external browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:184 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/store_dialog_ui.py:77 -msgid "Books:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/search/search_ui.py:186 -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:670 -msgid "&Close" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/ebooks_com_plugin.py:96 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/sony_au_plugin.py:55 -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/sony_plugin.py:56 -msgid "Not Available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/adv_search_builder_ui.py:179 -msgid "See the <a href=\"http://calibre-ebook.com/user_manual/gui.html#the-search-interface\">User Manual</a> for more help" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/cache_progress_dialog_ui.py:51 -msgid "Updating book cache" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/cache_update_thread.py:42 -msgid "Checking last download date." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/cache_update_thread.py:48 -msgid "Downloading book list from MobileRead." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/cache_update_thread.py:61 -msgid "Processing books." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/cache_update_thread.py:71 -#, python-format -msgid "%(num)s of %(tot)s books processed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/mobileread_plugin.py:79 -msgid "Updating MobileRead book cache..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/store_dialog_ui.py:74 -msgid "&Query:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/stores/mobileread/store_dialog_ui.py:79 -#: /home/kovid/work/calibre/src/calibre/gui2/store/web_store_dialog_ui.py:63 -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:670 -msgid "Close" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/web_control.py:75 -msgid "This ebook is a DRMed EPUB file. You will be prompted to save this file to your computer. Once it is saved, open it with <a href=\"http://www.adobe.com/products/digitaleditions/\">Adobe Digital Editions</a> (ADE).<p>ADE, in turn will download the actual ebook, which will be a .epub file. You can add this book to calibre using \"Add Books\" and selecting the file from the ADE library folder." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/web_control.py:88 -msgid "File is not a supported ebook type. Save to disk?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/web_store_dialog_ui.py:59 -msgid "Home" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/web_store_dialog_ui.py:60 -msgid "Reload" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/store/web_store_dialog_ui.py:61 -msgid "%p%" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:327 -msgid "The grouped search term name is \"{0}\"" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:791 -msgid "Changing the authors for several books can take a while. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:796 -msgid "Changing the metadata for that many books can take a while. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:883 -#: /home/kovid/work/calibre/src/calibre/library/database2.py:481 -msgid "Searches" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:960 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:980 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:989 -msgid "Rename user category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:961 -msgid "You cannot use periods in the name when renaming user categories" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:981 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:990 -#, python-format -msgid "The name %s is already used" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:1009 -msgid "Duplicate search name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/model.py:1010 -#, python-format -msgid "The saved search name %s is already used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:49 -msgid "Manage Authors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:51 -msgid "Manage Series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:53 -msgid "Manage Publishers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:55 -msgid "Manage Tags" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:57 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:572 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:576 -msgid "Manage User Categories" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:59 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:558 -msgid "Manage Saved Searches" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:67 -msgid "Invalid search restriction" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:68 -msgid "The current search restriction is invalid" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:84 -msgid "New Category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:135 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:138 -msgid "Delete user category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:136 -#, python-format -msgid "%s is not a user category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:139 -#, python-format -msgid "%s contains items. Do you really want to delete it?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:160 -msgid "Remove category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:161 -#, python-format -msgid "User category %s does not exist" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:180 -msgid "Add to user category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:181 -#, python-format -msgid "A user category %s does not exist" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:253 -msgid "Delete item" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:255 -#, python-format -msgid "%s will be deleted from all books. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:341 -msgid "Find item in tag browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:345 -msgid "" -"Search for items. This is a \"contains\" search; items containing the\n" -"text anywhere in the name will be found. You can limit the search\n" -"to particular categories using syntax similar to search. For example,\n" -"tags:foo will find foo in any tag, but not in authors etc. Entering\n" -"*foo will filter all categories at once, showing only those items\n" -"containing the text \"foo\"" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:353 -msgid "ALT+f" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:358 -msgid "Find the first/next matching item" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:363 -msgid "Collapse all categories" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:387 -msgid "No More Matches.</b><p> Click Find again to go to first match" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:399 -msgid "Alter Tag Browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:405 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:278 -msgid "Sort by" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:411 -msgid "Sort by name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:411 -msgid "Sort by popularity" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:412 -msgid "Sort by average rating" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:419 -msgid "Set the sort order for entries in the Tag Browser" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:422 -msgid "Search type when selecting multiple items" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:428 -msgid "Match all of the items" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:428 -msgid "Match any of the items" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:435 -msgid "When selecting multiple entries in the Tag Browser match any or all of them" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:439 -msgid "Manage authors, tags, etc" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/ui.py:440 -msgid "All of these category_managers are available by right-clicking on items in the tag browser above" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:300 -#, python-format -msgid "Change Icon for: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:438 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:477 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:507 -#, python-format -msgid "Rename %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:444 -#, python-format -msgid "Delete %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:448 -#, python-format -msgid "Edit sort for %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:451 -#, python-format -msgid "Edit link for %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:458 -#, python-format -msgid "Add %s to user category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:471 -#, python-format -msgid "Children of %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:481 -#, python-format -msgid "Delete search %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:486 -#, python-format -msgid "Remove %(item)s from category %(cat)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:499 -#, python-format -msgid "Search for everything but %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:511 -#, python-format -msgid "Add sub-category to %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:515 -#, python-format -msgid "Delete user category %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:520 -#, python-format -msgid "Hide category %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:524 -msgid "Show category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:534 -#, python-format -msgid "Search for books in category %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:540 -#, python-format -msgid "Search for books not in category %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:550 -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:555 -#, python-format -msgid "Manage %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:563 -msgid "Change category icon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:565 -msgid "Restore default icon" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:583 -msgid "Show all categories" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:587 -msgid "Change sub-categorization scheme" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:588 -msgid "Disable" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:592 -msgid "Partition" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tag_browser/view.py:607 -msgid "First letter is usable only when sorting by name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:112 -msgid "Select a destination for the Table of Contents entry" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:134 -msgid "Search for text..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:136 -msgid "Find &next" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:139 -msgid "Find &previous" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:151 -msgid "Here you can choose a destination for the Table of Contents' entry to point to. First choose a file from the book in the left-most panel. The file will open in the central panel.<p>Then choose a location inside the file. To do so, simply click on the place in the central panel that you want to use as the destination. As you move the mouse around the central panel, a thick green line appears, indicating the precise location that will be selected when you click." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:164 -msgid "&Name of the ToC entry:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:170 -msgid "Currently selected destination:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:197 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:208 -msgid "No match found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:198 -#, python-format -msgid "No match found for: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:204 -#, python-format -msgid "No matches for %(text)s found in the current file [%(current)s]. Do you want to search in the %(which)s file [%(next)s]?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:207 -msgid "next" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:207 -msgid "previous" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:235 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:293 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:298 -msgid "File:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:236 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:283 -msgid "Top of the file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:285 -#, python-format -msgid "Approximately %d%% from the top" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/location.py:290 -#, python-format -msgid "Location: A <%s> tag inside the file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:34 -msgid "Create ToC from XPath" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:38 -msgid "Specify a series of XPath expressions for the different levels of the Table of Contents. You can use the wizard buttons to help you create XPath expressions." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:45 -#, python-format -msgid "Level %s ToC:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:54 -msgid "&Save settings" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:56 -msgid "&Load settings" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:67 -msgid "No XPaths" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:68 -msgid "No XPaths have been entered" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:107 -#, python-format -msgid "The XPath expression %s is not valid." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:147 -msgid "You can edit existing entries in the Table of Contents by clicking them in the panel to the left." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:149 -msgid "Entries with a green tick next to them point to a location that has been verified to exist. Entries with a red dot are broken and may need to be fixed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:157 -msgid "Create a &new entry" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:162 -msgid "Generate ToC from &major headings" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:165 -msgid "Generate a Table of Contents from the major headings in the book. This will work if the book identifies its headings using HTML heading tags. Uses the <h1>, <h2> and <h3> tags." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:169 -msgid "Generate ToC from &all headings" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:172 -msgid "Generate a Table of Contents from all the headings in the book. This will work if the book identifies its headings using HTML heading tags. Uses the <h1-6> tags." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:177 -msgid "Generate ToC from &links" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:180 -msgid "Generate a Table of Contents from all the links in the book. Links that point to destinations that do not exist in the book are ignored. Also multiple links with the same destination or the same text are ignored." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:187 -msgid "Generate ToC from &files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:190 -msgid "Generate a Table of Contents from individual files in the book. Each entry in the ToC will point to the start of the file, the text of the entry will be the \"first line\" of text from the file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:196 -msgid "Generate ToC from &XPath" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:199 -msgid "Generate a Table of Contents from arbitrary XPath expressions." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:203 -msgid "&Flatten the ToC" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:206 -msgid "Flatten the Table of Contents, putting all entries at the top level" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:211 -msgid "<b>WARNING:</b> calibre only supports the creation of linear ToCs in AZW3 files. In a linear ToC every entry must point to a location after the previous entry. If you create a non-linear ToC it will be automatically re-arranged inside the AZW3 file." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:227 -msgid "You can move this entry around the Table of Contents by drag and drop or using the up and down buttons to the left" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:248 -msgid "Change the &location this entry points to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:252 -msgid "&Remove this entry" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:262 -msgid "New entry &inside this entry" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:265 -msgid "New entry &above this entry" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:268 -msgid "New entry &below this entry" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:272 -msgid "&Flatten this entry" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:274 -msgid "All children of this entry are brought to the same level as this entry." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:285 -msgid "&Return to welcome screen" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:287 -msgid "Go back to the top level view" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:337 -msgid "This entry points to an existing destination" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:340 -msgid "The location this entry points to does not exist" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:524 -#, python-format -msgid "Move \"%s\" up" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:526 -#, python-format -msgid "Move \"%s\" down" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:527 -msgid "Remove all selected items" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:529 -#, python-format -msgid "Unindent \"%s\"" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:531 -#, python-format -msgid "Indent \"%s\"" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:532 -msgid "Change the location this entry points to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:533 -msgid "Change all selected items to title case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:552 -msgid "Move current entry up [Ctrl+Up]" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:559 -msgid "Unindent the current entry [Ctrl+Left]" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:566 -msgid "Remove all selected entries" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:573 -msgid "Indent the current entry [Ctrl+Right]" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:580 -msgid "Move current entry down [Ctrl+Down]" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:582 -msgid "&Expand all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:586 -msgid "&Collapse all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:589 -msgid "Double click on an entry to change the text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:670 -msgid "<b>Title</b>: {0} <b>Dest</b>: {1}{2}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:701 -#, python-format -msgid "" -"The location this entry point to does not exist:\n" -"%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:791 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:798 -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:805 -msgid "No items found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:792 -msgid "No items were found that could be added to the Table of Contents." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:799 -msgid "No links were found that could be added to the Table of Contents." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:806 -msgid "No files were found that could be added to the Table of Contents." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:824 -#, python-format -msgid "Edit the ToC in %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:840 -#, python-format -msgid "Loading %s, please wait..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:876 -#, python-format -msgid "Writing %s, please wait..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:884 -msgid "Failed to write book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:885 -#, python-format -msgid "Could not write %s. Click \"Show details\" for more information." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:923 -msgid "Failed to load book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/toc/main.py:924 -#, python-format -msgid "Could not load %s. Click \"Show details\" for more information." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:70 -#, python-format -msgid "Convert book %(num)d of %(total)d (%(title)s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:102 -msgid "Could not convert" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:103 -#, python-format -msgid "Could not convert <b>%s</b> as it has no ebook files. If you think it should have files, but calibre is not finding them, that is most likely because you moved the book's files around outside of calibre. You will need to find those files and re-add them to calibre." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:113 -#, python-format -msgid "No supported formats (Available formats: %s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:116 -msgid "This book has no actual ebook files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:121 -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:247 -msgid "Could not convert some books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:122 -#, python-format -msgid "Could not convert %(num)d of %(tot)d books, because no supported source formats were found." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:156 -msgid "Queueing books for bulk conversion" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:221 -msgid "Queueing " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:222 -#, python-format -msgid "Convert book %(num)d of %(tot)d (%(title)s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:248 -#, python-format -msgid "Could not convert %(num)d of %(tot)d books, because no suitable source format was found." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:293 -msgid "Fetch news from " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:366 -msgid "Convert existing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:367 -#, python-format -msgid "The following books have already been converted to %s format. Do you wish to reconvert them?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:206 -msgid "&Donate to support calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:242 -msgid "&Restore" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:247 -msgid "&Eject connected device" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:251 -msgid "Quit calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:264 -msgid "Clear the current search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:271 -msgid "Focus the book list" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:278 -msgid "Clear the virtual library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:285 -msgid "Clear the additional restriction" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:394 -msgid "Debug mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:395 -#, python-format -msgid "You have started calibre in debug mode. After you quit calibre, the debug log will be available in the file: %s<p>The log will be displayed automatically." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:442 -msgid "Failed to start Content Server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:443 -#, python-format -msgid "" -"Could not start the content server. Error:\n" -"\n" -"%s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:576 -#, python-format -msgid "The library database at %s appears to be corrupted. Do you want calibre to try and rebuild it automatically? The rebuild may not be completely successful." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:671 -msgid "Conversion Error" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:692 -#, python-format -msgid "<p><b>Failed to convert: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:693 -msgid "" -"\n" -" Many older ebook reader devices are incapable of displaying\n" -" EPUB files that have internal components over a certain size.\n" -" Therefore, when converting to EPUB, calibre automatically tries\n" -" to split up the EPUB into smaller sized pieces. For some\n" -" files that are large undifferentiated blocks of text, this\n" -" splitting fails.\n" -" <p>You can <b>work around the problem</b> by either increasing the\n" -" maximum split size under EPUB Output in the conversion dialog,\n" -" or by turning on Heuristic Processing, also in the conversion\n" -" dialog. Note that if you make the maximum split size too large,\n" -" your ebook reader may have trouble with the EPUB.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:707 -msgid "Conversion Failed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:719 -msgid "Recipe Disabled" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:752 -msgid "<b>Failed</b>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:784 -msgid "There are active jobs. Are you sure you want to quit?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:787 -msgid "" -" is communicating with the device!<br>\n" -" Quitting may cause corruption on the device.<br>\n" -" Are you sure you want to quit?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:791 -msgid "Active jobs" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:859 -msgid "will keep running in the system tray. To close it, choose <b>Quit</b> in the context menu of the system tray." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:86 -#, python-format -msgid "New version <b>%(ver)s</b> of %(app)s is available for download. See the <a href=\"http://calibre-ebook.com/whats-new\">new features</a>." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:92 -msgid "Update available!" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:97 -msgid "Show this notification for future updates" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:102 -msgid "&Get update" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:106 -msgid "Update &plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:162 -#, python-format -msgid " (%d plugin updates)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:165 -msgid "Update found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:168 -msgid "updated plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:196 -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:201 -msgid "Plugin Updates" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:199 -#, python-format -msgid "There are %d plugin updates available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/update.py:203 -msgid "Install and configure user plugins" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:44 -msgid "Edit bookmark" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:44 -msgid "New title for bookmark:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:53 -msgid "Export Bookmarks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:55 -msgid "Saved Bookmarks (*.pickle)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:63 -msgid "Import Bookmarks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:63 -msgid "Pickled Bookmarks (*.pickle)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager_ui.py:61 -msgid "Bookmark Manager" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager_ui.py:62 -msgid "Actions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager_ui.py:63 -msgid "Edit" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager_ui.py:65 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:437 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:441 -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:676 -msgid "Reset" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager_ui.py:66 -msgid "Export" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager_ui.py:67 -msgid "Import" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:23 -msgid "Options to customize the ebook viewer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:30 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:1151 -msgid "Remember last used window size" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:32 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:103 -msgid "Set the user CSS stylesheet. This can be used to customize the look of all books." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:34 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:426 -msgid "Set the maximum width that the book's text and pictures will take when in fullscreen mode. This allows you to read the book text without it becoming too wide." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:38 -msgid "Resize images larger than the viewer window to fit inside it" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:39 -msgid "Hyphenate text" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:41 -msgid "Default language for hyphenation rules" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:43 -msgid "Save the current position in the document, when quitting" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:45 -msgid "Have the mouse wheel turn pages" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:47 -msgid "Prevent the up and down arrow keys from scrolling past page breaks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:50 -msgid "The time, in seconds, for the page flip animation. Default is half a second." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:53 -msgid "The amount by which to change the font size when clicking the font larger/smaller buttons. Should be a number between 0 and 1." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:57 -msgid "Show a clock in fullscreen mode." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:59 -msgid "Show reading position in fullscreen mode." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:61 -msgid "Show the scrollbar in fullscreen mode." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:63 -msgid "Start viewer in full screen mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:65 -msgid "Show full screen usage help" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:75 -msgid "Font options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:77 -msgid "The serif font family" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:79 -msgid "The sans-serif font family" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:81 -msgid "The monospaced font family" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:82 -msgid "The standard font size in px" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:83 -msgid "The monospaced font size in px" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:84 -msgid "The standard font type" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:85 -msgid "The minimum font size in px" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:149 -msgid "Theme name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:150 -msgid "Choose a name for this theme" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:161 -#, python-format -msgid "Saved settings as the theme named: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:177 -#, python-format -msgid "Loaded settings from the theme %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:184 -#, python-format -msgid "Deleted the theme named: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:246 -msgid "Choose text color" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:267 -msgid "Still editing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config.py:268 -msgid "You are in the middle of editing a keyboard shortcut first complete that, by clicking outside the shortcut editing box." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:394 -msgid "Configure Ebook viewer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:398 -msgid "&Default font size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:403 -msgid "Serif" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:404 -msgid "Sans-serif" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:405 -msgid "Monospace" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:406 -msgid "Font &magnification step size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:407 -msgid "" -"The amount by which the font size is increased/decreased\n" -" when you click the font size larger/smaller buttons" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:409 -msgid "%" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:410 -msgid "M&inimum font size:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:411 -msgid "The minimum font size in pixels" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:413 -msgid "&Font options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:414 -msgid "<p>These options only apply in \"paged\" mode, where the text is broken up into pages, as in a paper book. To get into this mode, use the button with the yellow scroll icon in the top right corner of the viewer window." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:415 -msgid "The number of &pages of text to show on screen " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:416 -msgid " page(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:417 -msgid "&Override the page margin settings specified in the book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:418 -msgid "&Top margin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:420 -msgid "&Side margin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:422 -msgid "&Bottom margin" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:424 -msgid "Text &layout in paged mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:425 -msgid "Maximum text width in &fullscreen:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:428 -msgid "Show &clock in full screen mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:429 -msgid "Show reading &position in full screen mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:430 -msgid "Show &scrollbar in full screen mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:431 -msgid "&Start viewer in full screen mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:432 -msgid "Show &help message when starting full screen mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:433 -msgid "F&ull screen options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:434 -msgid "Background color:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:435 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:439 -msgid "Sample" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:436 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:440 -msgid "Change" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:438 -msgid "Text color:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:442 -msgid "Colors and backgrounds" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:443 -msgid "Page flip &duration:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:444 -msgid "disabled" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:446 -msgid "Mouse &wheel flips pages" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:447 -msgid "Line &scrolling stops at page breaks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:448 -msgid "&Resize images larger than the viewer window (needs restart)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:449 -msgid "Page Fl&ip options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:450 -msgid "H&yphenate (break line in the middle of large words)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:451 -msgid "Default &language for hyphenation:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:452 -msgid "The default language to use for hyphenation rules. If the book does not specify a language, this will be used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:453 -msgid "Clear search history" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:454 -msgid "Show &controls in the viewer window" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:455 -msgid "Remember last used &window size and layout" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:456 -msgid "Remember the ¤t page when quitting" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:457 -msgid "&Miscellaneous options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:458 -msgid "&General" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:459 -msgid "Double click to change a keyboard shortcut" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:460 -msgid "&Keyboard shortcuts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:461 -msgid "<p>A CSS stylesheet that can be used to control the look and feel of books. For examples, click <a href=\"http://www.mobileread.com/forums/showthread.php?t=51500\">here</a>." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:462 -msgid "User &Stylesheet" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:463 -msgid "You can save and load the viewer settings as <i>themes</i>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:464 -msgid "Save current settings as a theme:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:466 -msgid "Load a previously saved theme:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:468 -msgid "Delete a saved theme:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:470 -msgid "&Theming" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/dictionary.py:53 -msgid "No results found for:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:504 -msgid "&Lookup in dictionary" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:510 -msgid "View &image..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:512 -msgid "View &table..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:515 -msgid "&Search for next occurrence" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:520 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:159 -msgid "Go to..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:532 -msgid "Next Section" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:533 -msgid "Previous Section" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:535 -msgid "Document Start" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:536 -msgid "Document End" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:538 -msgid "Section Start" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:539 -msgid "Section End" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550 -msgid "Default font size" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:617 -#, python-format -msgid "S&earch Google for '%s'" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/image_popup.py:39 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/table_popup.py:28 -msgid "Zoom &in" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/image_popup.py:40 -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/table_popup.py:29 -msgid "Zoom &out" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/image_popup.py:41 -msgid "&Save as" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/image_popup.py:42 -msgid "&Rotate" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/image_popup.py:68 -msgid "Choose a file to save to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/image_popup.py:104 -#, python-format -msgid "View Image: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:12 -msgid "Scroll to the next page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:15 -msgid "Scroll to the previous page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:18 -msgid "Scroll to the next section" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:21 -msgid "Scroll to the previous section" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:24 -msgid "Scroll to the bottom of the section" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:27 -msgid "Scroll to the top of the section" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:30 -msgid "Scroll to the end of the document" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:33 -msgid "Scroll to the start of the document" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:36 -msgid "Scroll down" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:39 -msgid "Scroll up" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:42 -msgid "Scroll left" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/keys.py:45 -msgid "Scroll right" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:44 -msgid "This ebook is corrupted and cannot be opened. If you downloaded it from somewhere, try downloading it again." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:117 -msgid "Book format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:137 -msgid "Position in book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:156 -msgid "Go to a reference. To get reference numbers, use the <i>reference mode</i>, by clicking the reference mode button in the toolbar." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:176 -msgid "Switch to paged mode - where the text is broken up into pages like a paper book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:178 -msgid "Switch to flow mode - where the text is not broken up into pages" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:224 -msgid "Search for text in book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:266 -#, python-format -msgid "Toggle full screen (%s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:306 -msgid "Full screen mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:307 -msgid "Right click to show controls" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:308 -msgid "Tap in the left or right page margin to turn pages" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:309 -msgid "Press Esc to quit" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:323 -msgid "Show/hide controls" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:358 -msgid "Print Preview" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:368 -msgid "Clear list of recently opened books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:490 -#, python-format -msgid "Connecting to dict.org to lookup: <b>%s</b>…" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:659 -msgid "No such location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:660 -msgid "The location pointed to by this item does not exist." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:711 -msgid "Choose ebook" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:712 -msgid "Ebooks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:728 -#, python-format -msgid "Current magnification: %(mag).1f" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:754 -#, python-format -msgid "No matches found for: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:803 -msgid "Loading flow..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:881 -#, python-format -msgid "Laying out %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:951 -#, python-format -msgid "Bookmark #%d" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:955 -msgid "Add bookmark" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:956 -msgid "Enter title for bookmark:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:967 -msgid "Manage Bookmarks" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:1009 -msgid "Loading ebook..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:1022 -msgid "Could not open ebook" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:1023 -msgid "Unknown error" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:1138 -msgid "Options to control the ebook viewer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:1145 -msgid "If specified, viewer window will try to come to the front when started." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:1148 -msgid "If specified, viewer window will try to open full screen when started." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:1153 -msgid "Print javascript alert and console messages to the console" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:1155 -msgid "The position at which to open the specified book. The position is a location as displayed in the top left corner of the viewer." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:1162 -msgid "" -"%prog [options] file\n" -"\n" -"View an ebook.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:211 -msgid "E-book Viewer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:212 -msgid "Close dictionary" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:214 -msgid "toolBar" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:217 -msgid "Next page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:218 -msgid "Previous page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:219 -msgid "Increase font size" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:220 -msgid "Decrease font size" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:224 -msgid "Find next" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:225 -msgid "Find next occurrence" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:229 -msgid "Reference Mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:230 -msgid "Bookmark" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:231 -msgid "Toggle full screen" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:232 -msgid "Print" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:233 -msgid "Find previous" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:234 -msgid "Find previous occurrence" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:236 -msgid "Toggle Paged mode" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:237 -msgid "Load theme" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:238 -msgid "Load a theme" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/printing.py:69 -#, python-format -msgid "Failed to render document %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/table_popup.py:57 -msgid "View Table" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/table_popup.py:72 -msgid "No table found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/viewer/table_popup.py:73 -msgid "No table was found" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:101 -msgid "Test name invalid" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:102 -#, python-format -msgid "The name <b>%r</b> does not appear to end with a file extension. The name must end with a file extension like .epub or .mobi" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:917 -msgid "Drag to resize" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:945 -msgid "Show" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:952 -#, python-format -msgid "Hide %(label)s %(shortcut)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:989 -msgid "Toggle" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:517 -#, python-format -msgid "Choose your e-book device. If your device is not in the list, choose a \"%s\" device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:577 -msgid "Moving library..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:593 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:594 -msgid "Failed to move library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:648 -msgid "Invalid database" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:649 -#, python-format -msgid "<p>An invalid library already exists at %(loc)s, delete it before trying to move the existing library.<br>Error: %(err)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:660 -msgid "Could not move library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:745 -msgid "Select location for books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:758 -#, python-format -msgid "Failed to create a folder at %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:773 -#, python-format -msgid "You must choose an empty folder for the calibre library. %s is not empty." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:856 -msgid "&Next >" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:857 -msgid "< &Back" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:858 -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:667 -msgid "Cancel" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:859 -msgid "&Finish" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:860 -msgid "Commit" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:864 -msgid "welcome wizard" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/device_ui.py:54 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/device_ui.py:55 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:47 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/kindle_ui.py:47 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/library_ui.py:55 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/stanza_ui.py:54 -msgid "Welcome to calibre" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/device_ui.py:56 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:48 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/kindle_ui.py:48 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/library_ui.py:56 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/stanza_ui.py:55 -msgid "The one stop solution to all your e-book needs." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/device_ui.py:57 -msgid "&Manufacturers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/device_ui.py:58 -msgid "&Devices" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:49 -#, python-format -msgid "<h2>Congratulations!</h2> You have successfully setup calibre. Press the %s button to apply your settings." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:50 -msgid "<h2>Demo videos</h2>Videos demonstrating the various features of calibre are available <a href=\"http://calibre-ebook.com/demo\">online</a>." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:51 -msgid "<h2>User Manual</h2>A User Manual is also available <a href=\"http://manual.calibre-ebook.com\">online</a>." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/kindle_ui.py:49 -msgid "<p>calibre can automatically send books by email to your Kindle. To do that you have to setup email delivery below. The easiest way is to setup a free <a href=\"http://gmail.com\">gmail account</a> and click the Use gmail button below. You will also have to register your gmail address in your Amazon account." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/kindle_ui.py:50 -msgid "&Kindle email:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/library_ui.py:57 -msgid "Choose your &language:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/library_ui.py:58 -msgid "<p>Choose a location for your books. When you add books to calibre, they will be copied here. Use an <b>empty folder</b> for a new calibre library:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/library_ui.py:60 -msgid "If you have an existing calibre library, it will be copied to the new location. If a calibre library already exists at the new location, calibre will switch to using it." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:34 -#, python-format -msgid "Using: %(un)s:%(pw)s@%(host)s:%(port)s and %(enc)s encryption" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:39 -msgid "Sending..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:44 -msgid "Mail successfully sent" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:59 -msgid "Setup sending email using" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:61 -msgid "If you don't have an account, you can sign up for a free {name} email account at <a href=\"http://{url}\">http://{url}</a>. {extra}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:68 -#, python-format -msgid "Your %s &email address:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:69 -#, python-format -msgid "Your %s &username:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:70 -#, python-format -msgid "Your %s &password:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:89 -#, python-format -msgid "If you plan to use email to send books to your Kindle, remember to add the your %s email address to the allowed email addresses in your Amazon.com Kindle management page." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:95 -msgid "Setup" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:102 -msgid "Incorrect username" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:103 -#, python-format -msgid "%s needs the full email address as your username" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:154 -msgid "OK to proceed?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:155 -msgid "This will display your email password on the screen. Is it OK to proceed?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:199 -msgid "If you are setting up a new hotmail account, Microsoft requires that you verify your account periodically, before it will let calibre send email. In this case, I strongly suggest you setup a free gmail account instead." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:221 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:232 -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:237 -msgid "Bad configuration" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:222 -msgid "You must set the From email address" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:233 -msgid "You must either set both the username <b>and</b> password for the mail server or no username and no password at all." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:238 -msgid "Please enter a username and password or set encryption to None " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email.py:243 -msgid "No username and password set for mailserver. Most mailservers need a username and password. Are you sure?" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:131 -msgid "Send email &from:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:132 -msgid "<p>This is what will be present in the From: field of emails sent by calibre.<br> Set it to your email address" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:133 -msgid "<p>A mail server is useful if the service you are sending mail to only accepts email from well know mail services." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:134 -msgid "Mail &Server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:135 -msgid "calibre can <b>optionally</b> use a server to send mail" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:136 -msgid "&Hostname:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:137 -msgid "The hostname of your mail server. For e.g. smtp.gmail.com" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:138 -msgid "&Port:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:139 -msgid "The port your mail server listens for connections on. The default is 25" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:141 -msgid "Your username on the mail server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:143 -msgid "Your password on the mail server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:144 -msgid "&Show" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:145 -msgid "&Encryption:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:146 -msgid "Use TLS encryption when connecting to the mail server. This is the most common." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:147 -msgid "&TLS" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:148 -msgid "Use SSL encryption when connecting to the mail server." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:149 -msgid "&SSL" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:150 -msgid "WARNING: Using no encryption is highly insecure" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:151 -msgid "&None" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:152 -msgid "Use Gmail" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:153 -msgid "Use Hotmail" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:154 -msgid "&Test email" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/stanza_ui.py:56 -msgid "<p>If you use the <a href=\"http://www.lexcycle.com/download\">Stanza</a> or <a href=\"http://marvinapp.com/\">Marvin</a> e-book reading app on your Apple iDevice, you can access your calibre book collection wirelessly, directly on the device. To do this you have to turn on the calibre content server." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/stanza_ui.py:57 -msgid "Turn on the &content server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/gui2/wizard/stanza_ui.py:58 -msgid "" -"<p>Remember to leave calibre running as the server only runs as long as calibre is running.\n" -"<p>The reader app should see your calibre collection automatically. If not, try adding the URL http://myhostname:8080 as a new catalog in the reader on your iDevice. Here myhostname should be the fully qualified hostname or the IP address of the computer calibre is running on. See <a href=\"http://manual.calibre-ebook.com/faq.html#how-do-i-use-app-with-my-ipad-iphone-ipod-touch\">the User Manual</a> for more information." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/bibtex.py:37 -#, python-format -msgid "" -"The fields to output when cataloging books in the database. Should be a comma-separated list of fields.\n" -"Available fields: %(fields)s.\n" -"plus user-created custom fields.\n" -"Example: %(opt)s=title,authors,tags\n" -"Default: '%%default'\n" -"Applies to: BIBTEX output format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/bibtex.py:50 -#, python-format -msgid "" -"Output field to sort on.\n" -"Available fields: author_sort, id, rating, size, timestamp, title.\n" -"Default: '%default'\n" -"Applies to: BIBTEX output format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/bibtex.py:59 -#, python-format -msgid "" -"Create a citation for BibTeX entries.\n" -"Boolean value: True, False\n" -"Default: '%default'\n" -"Applies to: BIBTEX output format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/bibtex.py:68 -#, python-format -msgid "" -"Create a file entry if formats is selected for BibTeX entries.\n" -"Boolean value: True, False\n" -"Default: '%default'\n" -"Applies to: BIBTEX output format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/bibtex.py:77 -#, python-format -msgid "" -"The template for citation creation from database fields.\n" -"Should be a template with {} enclosed fields.\n" -"Available fields: %s.\n" -"Default: '%%default'\n" -"Applies to: BIBTEX output format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/bibtex.py:87 -#, python-format -msgid "" -"BibTeX file encoding output.\n" -"Available types: utf8, cp1252, ascii.\n" -"Default: '%default'\n" -"Applies to: BIBTEX output format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/bibtex.py:96 -#, python-format -msgid "" -"BibTeX file encoding flag.\n" -"Available types: strict, replace, ignore, backslashreplace.\n" -"Default: '%default'\n" -"Applies to: BIBTEX output format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/bibtex.py:105 -#, python-format -msgid "" -"Entry type for BibTeX catalog.\n" -"Available types: book, misc, mixed.\n" -"Default: '%default'\n" -"Applies to: BIBTEX output format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/csv_xml.py:33 -#, python-format -msgid "" -"The fields to output when cataloging books in the database. Should be a comma-separated list of fields.\n" -"Available fields: %(fields)s,\n" -"plus user-created custom fields.\n" -"Example: %(opt)s=title,authors,tags\n" -"Default: '%%default'\n" -"Applies to: CSV, XML output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/csv_xml.py:46 -#, python-format -msgid "" -"Output field to sort on.\n" -"Available fields: author_sort, id, rating, size, timestamp, title_sort\n" -"Default: '%default'\n" -"Applies to: CSV, XML output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:42 -#, python-format -msgid "" -"Title of generated catalog used as title in metadata.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:49 -#, python-format -msgid "" -"Create cross-references in Authors section for books with multiple authors.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:56 -#, python-format -msgid "" -"Save the output from different stages of the conversion pipeline to the specified directory. Useful if you are unsure at which stage of the conversion process a bug is occurring.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:66 -#, python-format -msgid "" -"Regex describing tags to exclude as genres.\n" -"Default: '%default' excludes bracketed tags, e.g. '[Project Gutenberg]', and '+', the default tag for read books.\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:73 -msgid "" -"Specifies the rules used to exclude books from the generated catalog.\n" -"The model for an exclusion rule is either\n" -"('<rule name>','Tags','<comma-separated list of tags>') or\n" -"('<rule name>','<custom column>','<pattern>').\n" -"For example:\n" -"(('Archived books','#status','Archived'),)\n" -"will exclude a book with a value of 'Archived' in the custom column 'status'.\n" -"When multiple rules are defined, all rules will be applied.\n" -"Default: \n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:86 -#, python-format -msgid "" -"Include 'Authors' section in catalog.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:93 -#, python-format -msgid "" -"Include 'Descriptions' section in catalog.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:100 -#, python-format -msgid "" -"Include 'Genres' section in catalog.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:107 -#, python-format -msgid "" -"Include 'Titles' section in catalog.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:114 -#, python-format -msgid "" -"Include 'Series' section in catalog.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:121 -#, python-format -msgid "" -"Include 'Recently Added' section in catalog.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:128 -#, python-format -msgid "" -"Source field for Genres section.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:135 -#, python-format -msgid "" -"Custom field containing note text to insert in Description header.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:142 -#, python-format -msgid "" -"#<custom field>:[before|after]:[True|False] specifying:\n" -" <custom field> Custom field containing notes to merge with Comments\n" -" [before|after] Placement of notes with respect to Comments\n" -" [True|False] - A horizontal rule is inserted between notes and Comments\n" -"Default: '%default'\n" -"Applies to AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:152 -#, python-format -msgid "" -"Specifies the output profile. In some cases, an output profile is required to optimize the catalog for the device. For example, 'kindle' or 'kindle_dx' creates a structured Table of Contents with Sections and Articles.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:159 -msgid "" -"Specifies the rules used to include prefixes indicating read books, wishlist items and other user-specified prefixes.\n" -"The model for a prefix rule is ('<rule name>','<source field>','<pattern>','<prefix>').\n" -"When multiple rules are defined, the first matching rule will be used.\n" -"Default:\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:168 -#, python-format -msgid "" -"Use a named preset created with the GUI Catalog builder.\n" -"A preset specifies all settings for building a catalog.\n" -"Default: '%default'\n" -"Applies to AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:176 -#, python-format -msgid "" -"Replace existing cover when generating the catalog.\n" -"Default: '%default'\n" -"Applies to: AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:183 -#, python-format -msgid "" -"Size hint (in inches) for book covers in catalog.\n" -"Range: 1.0 - 2.0\n" -"Default: '%default'\n" -"Applies to AZW3, ePub, MOBI output formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:200 -#, python-format -msgid "Error: Preset \"%s\" not found." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:201 -#, python-format -msgid "Stored presets: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:203 -msgid "Error: No stored presets." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi.py:333 -msgid "" -"\n" -"*** Adding 'By Authors' Section required for MOBI output ***" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:56 -msgid "Symbols" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:287 -msgid "No genres to catalog.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:289 -msgid "Check 'Excluded genres' regex in E-book options.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:291 -msgid "No books available to catalog" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:304 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:2475 -msgid "Titles" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:308 -msgid "Genres" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:310 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:1778 -msgid "Recently Added" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:312 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:1977 -msgid "Recently Read" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:314 -msgid "Descriptions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:541 -msgid "<p>Inconsistent Author Sort values for Author<br/>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:558 -msgid "Warning: Inconsistent Author Sort values for Author '{!s}':\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:743 -msgid "Sorting database" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:845 -msgid "Sorting titles" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:857 -msgid "" -"No books to catalog.\n" -"Check 'Excluded books' rules in E-book options.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:859 -msgid "No books available to include in catalog" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:2058 -msgid "Genres HTML" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:2455 -msgid "Titles HTML" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:2652 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:2654 -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:2656 -msgid "by " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:2793 -msgid "Descriptions HTML" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:2797 -msgid "Description HTML" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:2930 -msgid "NCX header" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3007 -msgid "NCX for Descriptions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3134 -msgid "NCX for Series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3219 -#, python-format -msgid "Series beginning with %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3221 -#, python-format -msgid "Series beginning with '%s'" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3265 -msgid "NCX for Titles" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3352 -#, python-format -msgid "Titles beginning with %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3354 -#, python-format -msgid "Titles beginning with '%s'" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3396 -msgid "NCX for Authors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3475 -#, python-format -msgid "Authors beginning with %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3477 -#, python-format -msgid "Authors beginning with '%s'" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3518 -msgid "NCX for Recently Added" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3711 -msgid "NCX for Recently Read" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3853 -msgid "NCX for Genres" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:3978 -msgid "Generating OPF" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:4355 -msgid "Thumbnails" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:4361 -msgid "Thumbnail" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/catalogs/epub_mobi_builder.py:4901 -msgid "Saving NCX" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/check_library.py:26 -msgid "Invalid titles" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/check_library.py:27 -msgid "Extra titles" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/check_library.py:28 -msgid "Invalid authors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/check_library.py:29 -msgid "Extra authors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/check_library.py:30 -msgid "Missing book formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/check_library.py:31 -msgid "Extra book formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/check_library.py:32 -msgid "Unknown files in books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/check_library.py:33 -msgid "Missing covers files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/check_library.py:34 -msgid "Cover files not in database" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/check_library.py:35 -msgid "Folders raising exception" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:46 -msgid "GLOBAL OPTIONS" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:47 -msgid "Path to the calibre library. Default is to use the path stored in the settings." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:49 -msgid "Do not notify the running calibre GUI (if any) that the database has changed. Use with care, as it can lead to database corruption!" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:149 -msgid "" -"%prog list [options]\n" -"\n" -"List the books available in the calibre database.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:156 -#, python-format -msgid "" -"The fields to display when listing books in the database. Should be a comma separated list of fields.\n" -"Available fields: %s\n" -"Default: %%default. The special field \"all\" can be used to select all fields. Only has effect in the text output format." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:163 -#, python-format -msgid "" -"The field by which to sort the results.\n" -"Available fields: %s\n" -"Default: %%default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:165 -msgid "Sort results in ascending order" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:167 -msgid "Filter the results by the search query. For the format of the search query, please see the search related documentation in the User Manual. Default is to do no filtering." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:170 -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1272 -msgid "The maximum width of a single line in the output. Defaults to detecting screen size." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:171 -msgid "The string used to separate fields. Default is a space." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:172 -msgid "The prefix for all file paths. Default is the absolute path to the library folder." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:196 -msgid "Invalid fields. Available fields:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:203 -msgid "Invalid sort field. Available fields:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:287 -msgid "The following books were not added as they already exist in the database (see --duplicates option):" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:307 -#: /home/kovid/work/calibre/src/calibre/library/cli.py:364 -#, python-format -msgid "Added book ids: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:315 -msgid "" -"%prog add [options] file1 file2 file3 ...\n" -"\n" -"Add the specified files as books to the database. You can also specify directories, see\n" -"the directory related options below.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:323 -msgid "Assume that each directory has only a single logical book and that all files in it are different e-book formats of that book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:325 -msgid "Process directories recursively" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:327 -msgid "Add books to database even if they already exist. Comparison is done based on book titles." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:329 -msgid "Add an empty book (a book with no formats)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:331 -msgid "Set the title of the added book(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:333 -msgid "Set the authors of the added book(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:335 -msgid "Set the ISBN of the added book(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:337 -msgid "Set the tags of the added book(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:339 -msgid "Set the series of the added book(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:341 -msgid "Set the series number of the added book(s)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:343 -msgid "Path to the cover to use for the added book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:380 -msgid "You must specify at least one file to add" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:400 -msgid "" -"%prog remove ids\n" -"\n" -"Remove the books identified by ids from the database. ids should be a comma separated list of id numbers (you can get id numbers by using the list command). For example, 23,34,57-85 (when specifying a range, the last number in the range is not\n" -"included).\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:415 -msgid "You must specify at least one book to remove" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:434 -#, python-format -msgid "A %(fmt)s file already exists for book: %(id)d, not replacing" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:440 -msgid "" -"%prog add_format [options] id ebook_file\n" -"\n" -"Add the ebook in ebook_file to the available formats for the logical book identified by id. You can get id by using the list command. If the format already exists, it is replaced, unless the do not replace option is specified." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:448 -msgid "Do not replace the format if it already exists" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:458 -msgid "You must specify an id and an ebook file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:463 -msgid "ebook file must have an extension" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:473 -msgid "" -"\n" -"%prog remove_format [options] id fmt\n" -"\n" -"Remove the format fmt from the logical book identified by id. You can get id by using the list command. fmt should be a file extension like LRF or TXT or EPUB. If the logical book does not have fmt available, do nothing.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:489 -msgid "You must specify an id and a format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:508 -msgid "" -"\n" -"%prog show_metadata [options] id\n" -"\n" -"Show the metadata stored in the calibre database for the book identified by id.\n" -"id is an id number from the list command.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:515 -msgid "Print metadata in OPF form (XML)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:524 -msgid "You must specify an id" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:536 -msgid "" -"\n" -"%prog set_metadata [options] id /path/to/metadata.opf\n" -"\n" -"Set the metadata stored in the calibre database for the book identified by id\n" -"from the OPF file metadata.opf. id is an id number from the list command. You\n" -"can get a quick feel for the OPF format by using the --as-opf switch to the\n" -"show_metadata command. You can also set the metadata of individual fields with\n" -"the --field option.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:549 -msgid "The field to set. Format is field_name:value, for example: {0} tags:tag1,tag2. Use {1} to get a list of all field names. You can specify this option multiple times to set multiple fields. Note: For languages you must use the ISO639 language codes (e.g. en for English, fr for French and so on). For identifiers, the syntax is {0} {2}. For boolean (yes/no) fields use true and false or yes and no." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:559 -msgid "List the metadata field names that can be used with the --field option" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:580 -msgid "Field name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:596 -msgid "You must specify a record id as the first argument" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:602 -msgid "You must specify either a field or an opf file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:606 -#: /home/kovid/work/calibre/src/calibre/library/cli.py:887 -#, python-format -msgid "No book with id: %s in the database" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:612 -#, python-format -msgid "The OPF file %s does not exist" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:622 -#, python-format -msgid "%s is not a known field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:652 -msgid "" -"%prog export [options] ids\n" -"\n" -"Export the books specified by ids (a comma separated list) to the filesystem.\n" -"The export operation saves all formats of the book, its cover and metadata (in\n" -"an opf file). You can get id numbers from the list command.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:660 -msgid "Export all books in database, ignoring the list of ids." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:662 -msgid "Export books to the specified directory. Default is" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:664 -msgid "Export all books into a single directory" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:671 -msgid "Specifying this switch will turn this behavior off." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:694 -#, python-format -msgid "You must specify some ids or the %s option" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:707 -msgid "" -"%prog add_custom_column [options] label name datatype\n" -"\n" -"Create a custom column. label is the machine friendly name of the column. Should\n" -"not contain spaces or colons. name is the human friendly name of the column.\n" -"datatype is one of: {0}\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:716 -msgid "This column stores tag like data (i.e. multiple comma separated values). Only applies if datatype is text." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:720 -msgid "" -"A dictionary of options to customize how the data in this column will be interpreted. This is a JSON string. For enumeration columns, use --display=\"{\\\"enum_values\\\":[\\\"val1\\\", \\\"val2\\\"]}\"\n" -"There are many options that can go into the display variable.The options by column type are:\n" -"composite: composite_template, composite_sort, make_category,contains_html, use_decorations\n" -"datetime: date_format\n" -"enumeration: enum_values, enum_colors, use_decorations\n" -"int, float: number_format\n" -"text: is_names, use_decorations\n" -"\n" -"The best way to find legal combinations is to create a customcolumn of the appropriate type in the GUI then look at thebackup OPF for a book (ensure that a new OPF has been createdsince the column was added). You will see the JSON for the\"display\" for the new column in the OPF." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:749 -msgid "You must specify label, name and datatype" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:812 -msgid "" -"\n" -" %prog catalog /path/to/destination.(CSV|EPUB|MOBI|XML ...) [options]\n" -"\n" -" Export a catalog in format specified by path/to/destination extension.\n" -" Options control how entries are displayed in the generated catalog ouput.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:825 -msgid "" -"Comma-separated list of database IDs to catalog.\n" -"If declared, --search is ignored.\n" -"Default: all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:829 -msgid "" -"Filter the results by the search query. For the format of the search query, please see the search-related documentation in the User Manual.\n" -"Default: no filtering" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:835 -#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:601 -msgid "Show detailed output information. Useful for debugging" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:849 -msgid "Error: You must specify a catalog output file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:901 -msgid "" -"\n" -" %prog set_custom [options] column id value\n" -"\n" -" Set the value of a custom column for the book identified by id.\n" -" You can get a list of ids using the list command.\n" -" You can get a list of custom column names using the custom_columns\n" -" command.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:911 -msgid "If the column stores multiple values, append the specified values to the existing ones, instead of replacing them." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:922 -msgid "Error: You must specify a field name, id and value" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:942 -msgid "" -"\n" -" %prog custom_columns [options]\n" -"\n" -" List available custom columns. Shows column labels and ids.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:948 -msgid "Show details for each column." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:960 -#, python-format -msgid "You will lose all data in the column: %s. Are you sure (y/n)? " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:962 -msgid "y" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:967 -#, python-format -msgid "No column named %s found. You must use column labels, not titles. Use calibredb custom_columns to get a list of labels." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:974 -msgid "" -"\n" -" %prog remove_custom_column [options] label\n" -"\n" -" Remove the custom column identified by label. You can see available\n" -" columns with the custom_columns command.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:981 -msgid "Do not ask for confirmation" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:991 -msgid "Error: You must specify a column label" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1002 -msgid "" -"\n" -" %prog saved_searches [options] list\n" -" %prog saved_searches add name search\n" -" %prog saved_searches remove name\n" -"\n" -" Manage the saved searches stored in this database.\n" -" If you try to add a query with a name that already exists, it will be\n" -" replaced.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1019 -msgid "Error: You must specify an action (add|remove|list)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1027 -msgid "Name:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1028 -msgid "Search string:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1034 -msgid "Error: You must specify a name and a search string" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1037 -msgid "added" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1042 -msgid "Error: You must specify a name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1045 -msgid "removed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1049 -#, python-format -msgid "Error: Action %s not recognized, must be one of: (add|remove|list)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1056 -msgid "" -"%prog backup_metadata [options]\n" -"\n" -"Backup the metadata stored in the database into individual OPF files in each\n" -"books directory. This normally happens automatically, but you can run this\n" -"command to force re-generation of the OPF files, with the --all option.\n" -"\n" -"Note that there is normally no need to do this, as the OPF files are backed up\n" -"automatically, every time metadata is changed.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1067 -msgid "Normally, this command only operates on books that have out of date OPF files. This option makes it operate on all books." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1106 -msgid "" -"%prog check_library [options]\n" -"\n" -"Perform some checks on the filesystem representing a library. Reports are {0}\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1113 -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1264 -msgid "Output in CSV" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1116 -msgid "" -"Comma-separated list of reports.\n" -"Default: all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1120 -msgid "" -"Comma-separated list of extensions to ignore.\n" -"Default: all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1124 -msgid "" -"Comma-separated list of names to ignore.\n" -"Default: all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1154 -msgid "Unknown report check" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1188 -msgid "" -"%prog restore_database [options]\n" -"\n" -"Restore this database from the metadata stored in OPF files in each\n" -"directory of the calibre library. This is useful if your metadata.db file\n" -"has been corrupted.\n" -"\n" -"WARNING: This command completely regenerates your database. You will lose\n" -"all saved searches, user categories, plugboards, stored per-book conversion\n" -"settings, and custom recipes. Restored metadata will only be as accurate as\n" -"what is found in the OPF files.\n" -" " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1202 -msgid "Really do the recovery. The command will not run unless this option is specified." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1215 -#, python-format -msgid "You must provide the %s option to do a recovery" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1253 -msgid "" -"%prog list_categories [options]\n" -"\n" -"Produce a report of the category information in the database. The\n" -"information is the equivalent of what is shown in the tags pane.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1261 -msgid "Output only the number of items in a category instead of the counts per item within the category" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1266 -msgid "The character to put around the category value in CSV mode. Default is quotes (\")." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1269 -msgid "" -"Comma-separated list of category lookup names.\n" -"Default: all" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1275 -msgid "The string used to separate fields in CSV mode. Default is a comma." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1313 -msgid "CATEGORY ITEMS" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/cli.py:1386 -#, python-format -msgid "" -"%%prog command [options] [arguments]\n" -"\n" -"%%prog is the command line interface to the calibre books database.\n" -"\n" -"command is one of:\n" -" %s\n" -"\n" -"For help on an individual command: %%prog command --help\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/custom_columns.py:663 -msgid "No label was provided" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/custom_columns.py:665 -msgid "The label must contain only lower case letters, digits and underscores, and start with a letter" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/database2.py:1211 -#, python-format -msgid " (%s books)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/database2.py:3677 -#, python-format -msgid "<p>Migrating old database to ebook library in %s<br><center>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/database2.py:3706 -#, python-format -msgid "Copying <b>%s</b>" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/database2.py:3723 -msgid "Compacting database" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:213 -msgid "Identifiers" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:335 -msgid "Series Sort" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:345 -msgid "Title Sort" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/restore.py:122 -msgid "Starting restoring preferences and column metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/restore.py:125 -msgid "Cannot restore preferences. Backup file not found." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/restore.py:136 -msgid "Finished restoring preferences and column metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/restore.py:138 -msgid "Finished restoring preferences" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/restore.py:143 -msgid "Restoring preferences and column metadata failed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/restore.py:162 -msgid "Processed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:34 -msgid "The title" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:35 -msgid "The authors" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:36 -msgid "The author sort string. To use only the first letter of the name use {author_sort[0]}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:38 -msgid "The tags" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:39 -msgid "The series" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:40 -msgid "The series number. To get leading zeros use {series_index:0>3s} or {series_index:>3s} for leading spaces" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:43 -msgid "The rating" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:44 -msgid "The ISBN" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:45 -msgid "The publisher" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:46 -msgid "The date" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:47 -msgid "The published date" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:48 -msgid "The date when the metadata for this book record was last modified" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:50 -msgid "The language(s) of this book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:51 -msgid "The calibre internal id" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:79 -msgid "Options to control saving to disk" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:85 -msgid "Normally, calibre will update the metadata in the saved files from what is in the calibre library. Makes saving to disk slower." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:88 -msgid "Normally, calibre will write the metadata into a separate OPF file along with the actual e-book files." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:91 -msgid "Normally, calibre will save the cover in a separate file along with the actual e-book file(s)." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:94 -msgid "Comma separated list of formats to save for each book. By default all available formats are saved." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:97 -#, python-format -msgid "The template to control the filename and directory structure of the saved files. Default is \"%(templ)s\" which will save books into a per-author subdirectory with filenames containing title and author. Available controls are: {%(controls)s}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:103 -#, python-format -msgid "The template to control the filename and directory structure of files sent to the device. Default is \"%(templ)s\" which will save books into a per-author directory with filenames containing title and author. Available controls are: {%(controls)s}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:110 -msgid "Normally, calibre will convert all non English characters into English equivalents for the file names. WARNING: If you turn this off, you may experience errors when saving, depending on how well the filesystem you are saving to supports unicode." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:116 -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:120 -#, python-format -msgid "The format in which to display dates. %(day)s - day, %(month)s - month, %(mn)s - month number, %(year)s - year. Default is: %(default)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:124 -msgid "Convert paths to lowercase." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:126 -msgid "Replace whitespace with underscores." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:128 -msgid "Save into a single directory, ignoring the template directory structure" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:310 -#, python-format -msgid "" -"Failed to calculate path for save to disk. Template: %(templ)s\n" -"Error: %(err)s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:316 -#, python-format -msgid "Template evaluation resulted in no path components. Template: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:408 -#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:441 -msgid "Requested formats not available" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/__init__.py:21 -msgid "Settings to control the calibre content server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/__init__.py:25 -#, python-format -msgid "The port on which to listen. Default is %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/__init__.py:27 -#, python-format -msgid "The server timeout in seconds. Default is %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/__init__.py:29 -#, python-format -msgid "The max number of worker threads to use. Default is %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/__init__.py:31 -msgid "Set a password to restrict access. By default access is unrestricted." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/__init__.py:33 -#, python-format -msgid "Username for access. By default, it is: %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/__init__.py:37 -#, python-format -msgid "The maximum size for displayed covers. Default is %default." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/__init__.py:39 -msgid "The maximum number of matches to return per OPDS query. This affects Stanza, WordPlayer, etc. integration." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/__init__.py:43 -#, python-format -msgid "Group items in categories such as author/tags by first letter when there are more than this number of items. Default: %default. Set to a large number to disable grouping." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/__init__.py:48 -msgid "Prefix to prepend to all URLs. Useful for reverseproxying to this server from Apache/nginx/etc." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/ajax.py:318 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:352 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:646 -msgid "All books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/ajax.py:319 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:351 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:645 -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:584 -msgid "Newest" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:65 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:516 -msgid "Loading, please wait" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:91 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:112 -msgid "Go to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:107 -msgid "First" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:107 -msgid "Last" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:110 -#, python-format -msgid "Browsing %d books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:127 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:258 -msgid "Average rating" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:128 -#, python-format -msgid "%(prefix)s: %(rating).1f stars" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:162 -#, python-format -msgid "%d stars" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:259 -msgid "Popularity" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:281 -msgid "library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:282 -msgid "home" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:353 -msgid "Random book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:403 -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:472 -msgid "Browse books by" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:408 -msgid "Choose a category to browse by:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:541 -msgid "Browsing by" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:542 -msgid "Up" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:681 -msgid "in" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:684 -msgid "Books in" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:779 -msgid "Other formats" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:786 -#, python-format -msgid "Read %(title)s in the %(fmt)s format" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:791 -msgid "Get" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:805 -msgid "Details" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:807 -msgid "Permalink" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:808 -msgid "A permanent link to this book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:820 -msgid "This book has been deleted" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:888 -msgid "Choose another random book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:889 -msgid "Another random book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:940 -msgid "in search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/browse.py:942 -msgid "Matching books" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/main.py:41 -msgid "" -"[options]\n" -"\n" -"Start the calibre content server. The calibre content server\n" -"exposes your calibre library over the internet. The default interface\n" -"allows you to browse you calibre library by categories. You can also\n" -"access an interface optimized for mobile browsers at /mobile and an\n" -"OPDS based interface for use with reading applications at /opds.\n" -"\n" -"The OPDS interface is advertised via BonJour automatically.\n" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/main.py:53 -msgid "Path to the library folder to serve with the content server" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/main.py:55 -msgid "Write process PID to the specified file" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/main.py:59 -msgid "Specifies a virtual library to be used for this invocation. This option overrides any per-library settings specified in the GUI. For compatibility, if the value is not a virtual library but is a saved search, that saved search is used." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/main.py:64 -msgid "Auto reload server when source code changes. May not work in all environments." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/mobile.py:162 -msgid "Switch to the full interface (non-mobile interface)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/mobile.py:165 -msgid "The full interface gives you many more features, but it may not work well on a small screen" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:129 -#, python-format -msgid "%d book" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:152 -#, python-format -msgid "%d items" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:170 -#, python-format -msgid "RATING: %s<br />" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:173 -#, python-format -msgid "TAGS: %s<br />" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:178 -#, python-format -msgid "SERIES: %(series)s [%(sidx)s]<br />" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:276 -msgid "Books in your library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:282 -msgid "By " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/library/server/opds.py:283 -msgid "Books sorted by " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config.py:38 -msgid "Usage" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config.py:89 -msgid "Created by " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config.py:90 -msgid "Whenever you pass arguments to %prog that have spaces in them, enclose the arguments in quotation marks." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config.py:98 -msgid "Options" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config.py:99 -msgid "show this help message and exit" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config.py:100 -msgid "show program's version number and exit" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:377 -msgid "Path to the database in which books are stored" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:379 -msgid "Pattern to guess metadata from filenames" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:381 -msgid "Access key for isbndb.com" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:383 -msgid "Default timeout for network operations (seconds)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:385 -msgid "Path to directory in which your library of books is stored" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:387 -msgid "The language in which to display the user interface" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:389 -msgid "The default output format for ebook conversions." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:393 -msgid "Ordered list of formats to prefer for input." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:395 -msgid "Read metadata from files" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:397 -msgid "The priority of worker processes. A higher priority means they run faster and consume more resources. Most tasks like conversion/news download/adding books/etc. are affected by this setting." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:402 -msgid "Swap author first and last names when reading metadata" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:404 -msgid "Add new formats to existing book records" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:406 -msgid "Tags to apply to books added to the library" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:410 -msgid "List of named saved searches" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:411 -msgid "User-created tag browser categories" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:413 -msgid "How and when calibre updates metadata on the device." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:415 -msgid "When searching for text without using lookup prefixes, as for example, Red instead of title:Red, limit the columns searched to those named below." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:420 -msgid "Choose columns to be searched when not using prefixes, as for example, when searching for Red instead of title:Red. Enter a list of search/lookup names separated by commas. Only takes effect if you set the option to limit search columns above." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/config_base.py:426 -#, python-format -msgid "Characters typed in the search box will match their accented versions, based on the language you have chosen for the calibre interface. For example, in English, searching for n will match %s and n, but if your language is Spanish it will only match n. Note that this is much slower than a simple search on very large libraries." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/filenames.py:295 -msgid "File is open in another process" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:31 -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:182 -msgid "failed to scan program. Invalid input {0}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:39 -msgid " near " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:45 -msgid "end of program" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:107 -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:197 -msgid "syntax error - program ends before EOF" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:135 -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:242 -msgid "Unknown identifier " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:141 -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:250 -msgid "unknown function {0}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:161 -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:263 -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:283 -msgid "missing closing parenthesis" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:173 -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:304 -msgid "expression is not function or constant" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:338 -msgid "format: type {0} requires an integer value, got {1}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:344 -msgid "format: type {0} requires a decimal (float) value, got {1}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:479 -#, python-format -msgid "%s: unknown function" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:543 -msgid "No such variable " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:79 -msgid "No documentation provided" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:112 -msgid "strcmp(x, y, lt, eq, gt) -- does a case-insensitive comparison of x and y as strings. Returns lt if x < y. Returns eq if x == y. Otherwise returns gt." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:128 -msgid "cmp(x, y, lt, eq, gt) -- compares x and y after converting both to numbers. Returns lt if x < y. Returns eq if x == y. Otherwise returns gt." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:144 -msgid "strcat(a, b, ...) -- can take any number of arguments. Returns a string formed by concatenating all the arguments" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:158 -msgid "strlen(a) -- Returns the length of the string passed as the argument" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:171 -msgid "add(x, y) -- returns x + y. Throws an exception if either x or y are not numbers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:182 -msgid "subtract(x, y) -- returns x - y. Throws an exception if either x or y are not numbers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:193 -msgid "multiply(x, y) -- returns x * y. Throws an exception if either x or y are not numbers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:204 -msgid "divide(x, y) -- returns x / y. Throws an exception if either x or y are not numbers." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:216 -msgid "template(x) -- evaluates x as a template. The evaluation is done in its own context, meaning that variables are not shared between the caller and the template evaluation. Because the { and } characters are special, you must use [[ for the { character and ]] for the } character; they are converted automatically. For example, template('[[title_sort]]') will evaluate the template {title_sort} and return its value. Note also that prefixes and suffixes (the `|prefix|suffix` syntax) cannot be used in the argument to this function when using template program mode." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:234 -msgid "eval(template) -- evaluates the template, passing the local variables (those 'assign'ed to) instead of the book metadata. This permits using the template processor to construct complex results from local variables. Because the { and } characters are special, you must use [[ for the { character and ]] for the } character; they are converted automatically. Note also that prefixes and suffixes (the `|prefix|suffix` syntax) cannot be used in the argument to this function when using template program mode." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:253 -msgid "assign(id, val) -- assigns val to id, then returns val. id must be an identifier, not an expression" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:264 -msgid "print(a, b, ...) -- prints the arguments to standard output. Unless you start calibre from the command line (calibre-debug -g), the output will go to a black hole." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:276 -msgid "field(name) -- returns the metadata field named by name" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:285 -msgid "raw_field(name) -- returns the metadata field named by name without applying any formatting." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:295 -msgid "substr(str, start, end) -- returns the start'th through the end'th characters of str. The first character in str is the zero'th character. If end is negative, then it indicates that many characters counting from the right. If end is zero, then it indicates the last character. For example, substr('12345', 1, 0) returns '2345', and substr('12345', 1, -1) returns '234'." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:309 -msgid "lookup(val, pattern, field, pattern, field, ..., else_field) -- like switch, except the arguments are field (metadata) names, not text. The value of the appropriate field will be fetched and used. Note that because composite columns are fields, you can use this function in one composite field to use the value of some other composite field. This is extremely useful when constructing variable save paths" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:324 -msgid "lookup requires either 2 or an odd number of arguments" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:337 -msgid "test(val, text if not empty, text if empty) -- return `text if not empty` if the field is not empty, otherwise return `text if empty`" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:350 -msgid "contains(val, pattern, text if match, text if not match) -- checks if field contains matches for the regular expression `pattern`. Returns `text if match` if matches are found, otherwise it returns `text if no match`" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:366 -msgid "switch(val, pattern, value, pattern, value, ..., else_value) -- for each `pattern, value` pair, checks if the field matches the regular expression `pattern` and if so, returns that `value`. If no pattern matches, then else_value is returned. You can have as many `pattern, value` pairs as you want" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:374 -msgid "switch requires an odd number of arguments" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:387 -msgid "strcat_max(max, string1, prefix2, string2, ...) -- Returns a string formed by concatenating the arguments. The returned value is initialized to string1. `Prefix, string` pairs are added to the end of the value as long as the resulting string length is less than `max`. String1 is returned even if string1 is longer than max. You can pass as many `prefix, string` pairs as you wish." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:397 -msgid "strcat_max requires 2 or more arguments" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:399 -msgid "strcat_max requires an even number of arguments" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:403 -msgid "first argument to strcat_max must be an integer" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:421 -msgid "in_list(val, separator, pattern, found_val, not_found_val) -- treat val as a list of items separated by separator, comparing the pattern against each value in the list. If the pattern matches a value, return found_val, otherwise return not_found_val." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:439 -msgid "str_in_list(val, separator, string, found_val, not_found_val) -- treat val as a list of items separated by separator, comparing the string against each value in the list. If the string matches a value, return found_val, otherwise return not_found_val. If the string contains separators, then it is also treated as a list and each value is checked." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:460 -msgid "identifier_in_list(val, id, found_val, not_found_val) -- treat val as a list of identifiers separated by commas, comparing the string against each value in the list. An identifier has the format \"identifier:value\". The id parameter should be either \"id\" or \"id:regexp\". The first case matches if there is any identifier with that id. The second case matches if the regexp matches the identifier's value. If there is a match, return found_val, otherwise return not_found_val." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:486 -msgid "re(val, pattern, replacement) -- return the field after applying the regular expression. All instances of `pattern` are replaced with `replacement`. As in all of calibre, these are python-compatible regular expressions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:498 -msgid "swap_around_comma(val) -- given a value of the form \"B, A\", return \"A B\". This is most useful for converting names in LN, FN format to FN LN. If there is no comma, the function returns val unchanged" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:510 -msgid "ifempty(val, text if empty) -- return val if val is not empty, otherwise return `text if empty`" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:523 -msgid "shorten(val, left chars, middle text, right chars) -- Return a shortened version of the field, consisting of `left chars` characters from the beginning of the field, followed by `middle text`, followed by `right chars` characters from the end of the string. `Left chars` and `right chars` must be integers. For example, assume the title of the book is `Ancient English Laws in the Times of Ivanhoe`, and you want it to fit in a space of at most 15 characters. If you use {title:shorten(9,-,5)}, the result will be `Ancient E-nhoe`. If the field's length is less than left chars + right chars + the length of `middle text`, then the field will be used intact. For example, the title `The Dome` would not be changed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:549 -msgid "count(val, separator) -- interprets the value as a list of items separated by `separator`, returning the number of items in the list. Most lists use a comma as the separator, but authors uses an ampersand. Examples: {tags:count(,)}, {authors:count(&)}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:561 -msgid "list_item(val, index, separator) -- interpret the value as a list of items separated by `separator`, returning the `index`th item. The first item is number zero. The last item can be returned using `list_item(-1,separator)`. If the item is not in the list, then the empty value is returned. The separator has the same meaning as in the count function." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:582 -msgid "select(val, key) -- interpret the value as a comma-separated list of items, with the items being \"id:value\". Find the pair with the id equal to key, and return the corresponding value." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:600 -msgid "approximate_formats() -- return a comma-separated list of formats that at one point were associated with the book. There is no guarantee that this list is correct, although it probably is. This function can be called in template program mode using the template \"{:'approximate_formats()'}\". Note that format names are always uppercase, as in EPUB." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:620 -msgid "formats_modtimes(date_format) -- return a comma-separated list of colon_separated items representing modification times for the formats of a book. The date_format parameter specifies how the date is to be formatted. See the date_format function for details. You can use the select function to get the mod time for a specific format. Note that format names are always uppercase, as in EPUB." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:640 -msgid "formats_sizes() -- return a comma-separated list of colon_separated items representing sizes in bytes of the formats of a book. You can use the select function to get the size for a specific format. Note that format names are always uppercase, as in EPUB." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:656 -msgid "formats_paths() -- return a comma-separated list of colon_separated items representing full path to the formats of a book. You can use the select function to get the path for a specific format. Note that format names are always uppercase, as in EPUB." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:671 -msgid "human_readable(v) -- return a string representing the number v in KB, MB, GB, etc." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:685 -msgid "format_number(v, template) -- format the number v using a python formatting template such as \"{0:5.2f}\" or \"{0:,d}\" or \"${0:5,.2f}\". The field_name part of the template must be a 0 (zero) (the \"{0:\" in the above examples). See the template language and python documentation for more examples. Returns the empty string if formatting fails." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:716 -msgid "sublist(val, start_index, end_index, separator) -- interpret the value as a list of items separated by `separator`, returning a new list made from the `start_index` to the `end_index` item. The first item is number zero. If an index is negative, then it counts from the end of the list. As a special case, an end_index of zero is assumed to be the length of the list. Examples using basic template mode and assuming that the tags column (which is comma-separated) contains \"A, B, C\": {tags:sublist(0,1,\\,)} returns \"A\". {tags:sublist(-1,0,\\,)} returns \"C\". {tags:sublist(0,-1,\\,)} returns \"A, B\"." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:751 -msgid "subitems(val, start_index, end_index) -- This function is used to break apart lists of items such as genres. It interprets the value as a comma-separated list of items, where each item is a period-separated list. Returns a new list made by first finding all the period-separated items, then for each such item extracting the `start_index` to the `end_index` components, then combining the results back together. The first component in a period-separated list has an index of zero. If an index is negative, then it counts from the end of the list. As a special case, an end_index of zero is assumed to be the length of the list. Example using basic template mode and assuming a #genre value of \"A.B.C\": {#genre:subitems(0,1)} returns \"A\". {#genre:subitems(0,2)} returns \"A.B\". {#genre:subitems(1,0)} returns \"B.C\". Assuming a #genre value of \"A.B.C, D.E.F\", {#genre:subitems(0,1)} returns \"A, D\". {#genre:subitems(0,2)} returns \"A.B, D.E\"" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:795 -msgid "format_date(val, format_string) -- format the value, which must be a date, using the format_string, returning a string. The formatting codes are: d : the day as number without a leading zero (1 to 31) dd : the day as number with a leading zero (01 to 31) ddd : the abbreviated localized day name (e.g. \"Mon\" to \"Sun\"). dddd : the long localized day name (e.g. \"Monday\" to \"Sunday\"). M : the month as number without a leading zero (1 to 12). MM : the month as number with a leading zero (01 to 12) MMM : the abbreviated localized month name (e.g. \"Jan\" to \"Dec\"). MMMM : the long localized month name (e.g. \"January\" to \"December\"). yy : the year as two digit number (00 to 99). yyyy : the year as four digit number. h : the hours without a leading 0 (0 to 11 or 0 to 23, depending on am/pm) hh : the hours with a leading 0 (00 to 11 or 00 to 23, depending on am/pm) m : the minutes without a leading 0 (0 to 59) mm : the minutes with a leading 0 (00 to 59) s : the seconds without a leading 0 (0 to 59) ss : the seconds with a leading 0 (00 to 59) ap : use a 12-hour clock instead of a 24-hour clock, with \"ap\" replaced by the localized string for am or pm AP : use a 12-hour clock instead of a 24-hour clock, with \"AP\" replaced by the localized string for AM or PM iso : the date with time and timezone. Must be the only format present" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:832 -msgid "uppercase(val) -- return value of the field in upper case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:841 -msgid "lowercase(val) -- return value of the field in lower case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:850 -msgid "titlecase(val) -- return value of the field in title case" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:859 -msgid "capitalize(val) -- return value of the field capitalized" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:868 -msgid "booksize() -- return value of the size field" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:882 -msgid "ondevice() -- return Yes if ondevice is set, otherwise return the empty string" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:894 -msgid "series_sort() -- return the series sort value" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:905 -msgid "has_cover() -- return Yes if the book has a cover, otherwise return the empty string" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:917 -msgid "first_non_empty(value, value, ...) -- returns the first value that is not empty. If all values are empty, then the empty value is returned. You can have as many values as you want." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:934 -msgid "and(value, value, ...) -- returns the string \"1\" if all values are not empty, otherwise returns the empty string. This function works well with test or first_non_empty. You can have as many values as you want." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:951 -msgid "or(value, value, ...) -- returns the string \"1\" if any value is not empty, otherwise returns the empty string. This function works well with test or first_non_empty. You can have as many values as you want." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:968 -msgid "not(value) -- returns the string \"1\" if the value is empty, otherwise returns the empty string. This function works well with test or first_non_empty. You can have as many values as you want." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:980 -msgid "list_union(list1, list2, separator) -- return a list made by merging the items in list1 and list2, removing duplicate items using a case-insensitive compare. If items differ in case, the one in list1 is used. The items in list1 and list2 are separated by separator, as are the items in the returned list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1004 -msgid "list_difference(list1, list2, separator) -- return a list made by removing from list1 any item found in list2, using a case-insensitive compare. The items in list1 and list2 are separated by separator, as are the items in the returned list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1025 -msgid "list_intersection(list1, list2, separator) -- return a list made by removing from list1 any item not found in list2, using a case-insensitive compare. The items in list1 and list2 are separated by separator, as are the items in the returned list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1046 -msgid "list_sort(list, direction, separator) -- return list sorted using a case-insensitive sort. If direction is zero, the list is sorted ascending, otherwise descending. The list items are separated by separator, as are the items in the returned list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1061 -msgid "list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if list1 and list2 contain the same items, otherwise return no_val. The items are determined by splitting each list using the appropriate separator character (sep1 or sep2). The order of items in the lists is not relevant. The compare is case insensitive." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1079 -msgid "list_re(src_list, separator, search_re, opt_replace) -- Construct a list by first separating src_list into items using the separator character. For each item in the list, check if it matches search_re. If it does, then add it to the list to be returned. If opt_replace is not the empty string, then apply the replacement before adding the item to the returned list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1104 -msgid "today() -- return a date string for today. This value is designed for use in format_date or days_between, but can be manipulated like any other string. The date is in ISO format." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1115 -msgid "days_between(date1, date2) -- return the number of days between date1 and date2. The number is positive if date1 is greater than date2, otherwise negative. If either date1 or date2 are not dates, the function returns the empty string." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1137 -msgid "language_strings(lang_codes, localize) -- return the strings for the language codes passed in lang_codes. If localize is zero, return the strings in English. If localize is not zero, return the strings in the language of the current locale. Lang_codes is a comma-separated list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1157 -msgid "language_codes(lang_strings) -- return the language codes for the strings passed in lang_strings. The strings must be in the language of the current locale. Lang_strings is a comma-separated list." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1176 -msgid "current_library_name() -- return the last name on the path to the current calibre library. This function can be called in template program mode using the template \"{:'current_library_name()'}\"." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1188 -msgid "current_library_path() -- return the path to the current calibre library. This function can be called in template program mode using the template \"{:'current_library_path()'}\"." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1200 -msgid "finish_formatting(val, fmt, prefix, suffix) -- apply the format, prefix, and suffix to a value in the same way as done in a template like `{series_index:05.2f| - |- }`. For example, the following program produces the same output as the above template: program: finish_formatting(field(\"series_index\"), \"05.2f\", \" - \", \" - \")" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:43 -msgid "Waiting..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:54 -msgid "Aborted, taking too long" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:56 -msgid "Stopped" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:58 -msgid "Finished" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:80 -msgid "Working..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:139 -msgid "Brazilian Portuguese" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:140 -msgid "English (UK)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:141 -msgid "Simplified Chinese" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:142 -msgid "Chinese (HK)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:143 -msgid "Traditional Chinese" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:144 -msgid "English" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:145 -msgid "English (Argentina)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:146 -msgid "English (Australia)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:147 -msgid "English (Japan)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:148 -msgid "English (Germany)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:149 -msgid "English (Bulgaria)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:150 -msgid "English (Egypt)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:151 -msgid "English (New Zealand)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:152 -msgid "English (Canada)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:153 -msgid "English (Greece)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:154 -msgid "English (India)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:155 -msgid "English (Nepal)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:156 -msgid "English (Thailand)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:157 -msgid "English (Turkey)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:158 -msgid "English (Cyprus)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:159 -msgid "English (Czech Republic)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:160 -msgid "English (Philippines)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:161 -msgid "English (Pakistan)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:162 -msgid "English (Poland)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:163 -msgid "English (Croatia)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:164 -msgid "English (Hong Kong)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:165 -msgid "English (Hungary)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:166 -msgid "English (Indonesia)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:167 -msgid "English (Israel)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:168 -msgid "English (Russia)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:169 -msgid "English (Singapore)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:170 -msgid "English (Yemen)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:171 -msgid "English (Ireland)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:172 -msgid "English (China)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:173 -msgid "English (South Africa)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:174 -msgid "Spanish (Paraguay)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:175 -msgid "Spanish (Uruguay)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:176 -msgid "Spanish (Argentina)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:177 -msgid "Spanish (Costa Rica)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:178 -msgid "Spanish (Mexico)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:179 -msgid "Spanish (Cuba)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:180 -msgid "Spanish (Chile)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:181 -msgid "Spanish (Ecuador)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:182 -msgid "Spanish (Honduras)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:183 -msgid "Spanish (Venezuela)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:184 -msgid "Spanish (Bolivia)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:185 -msgid "Spanish (Nicaragua)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:186 -msgid "Spanish (Colombia)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:187 -msgid "German (AT)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:188 -msgid "French (BE)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:189 -msgid "Dutch (NL)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:190 -msgid "Dutch (BE)" -msgstr "" - -#. NOTE: Ante Meridian (i.e. like 10:00 AM) -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:198 -msgid "AM" -msgstr "" - -#. NOTE: Post Meridian (i.e. like 10:00 PM) -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:200 -msgid "PM" -msgstr "" - -#. NOTE: Ante Meridian (i.e. like 10:00 am) -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:202 -msgid "am" -msgstr "" - -#. NOTE: Post Meridian (i.e. like 10:00 pm) -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:204 -msgid "pm" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:206 -msgid "Select All" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:207 -msgid "&Select All" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:208 -msgid "Copy &Link location" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:209 -msgid "&Undo" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:210 -msgid "&Redo" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:211 -msgid "Cu&t" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:212 -msgid "&Paste" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:213 -msgid "Paste and Match Style" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:214 -msgid "Directions" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:215 -msgid "Left to Right" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:216 -msgid "Right to Left" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:217 -msgid "Fonts" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:218 -msgid "&Step up" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/localization.py:219 -msgid "Step &down" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/console.py:56 -msgid "Choose theme (needs restart)" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/console.py:109 -msgid "ERROR: Unhandled exception" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/console.py:188 -msgid "No interpreter" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/console.py:189 -msgid "No active interpreter found. Try restarting the console" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/console.py:203 -msgid "Interpreter died" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/console.py:204 -msgid "Interpreter dies while executing a command. To see the command, click Show details" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/main.py:20 -msgid "Welcome to" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/main.py:41 -msgid " console " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/main.py:51 -msgid "Code is running" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/main.py:58 -msgid "Restart console" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/search_query_parser.py:184 -msgid "Extra characters at end of search" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/search_query_parser.py:218 -msgid "missing )" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/search_query_parser.py:221 -msgid "Invalid syntax. Expected a lookup name or a word" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/search_query_parser.py:323 -#, python-format -msgid "Failed to parse query, recursion limit reached: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/search_query_parser.py:367 -msgid "Recursive saved search: {0}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/search_query_parser.py:376 -msgid "Unknown error in saved search: {0}" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/sftp.py:53 -msgid "URL must have the scheme sftp" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/sftp.py:57 -msgid "host must be of the form user@hostname" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/sftp.py:68 -msgid "Failed to negotiate SSH session: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/sftp.py:71 -#, python-format -msgid "Failed to authenticate with server: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/utils/smtp.py:259 -msgid "Control email delivery" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:121 -msgid "Unknown section" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:143 -msgid "Unknown feed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:163 -#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:197 -msgid "Untitled article" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:48 -msgid "Unknown News Source" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:771 -#, python-format -msgid "Failed to download %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:867 -#, python-format -msgid "The \"%s\" recipe needs a username and password." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:981 -msgid "Download finished" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:983 -msgid "Failed to download the following articles:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:989 -msgid "Failed to download parts of the following articles:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:991 -msgid " from " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:993 -msgid "\tFailed links:" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1094 -msgid "Could not fetch article." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1096 -msgid "The debug traceback is available earlier in this log" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1098 -msgid "Run with -vv to see the reason" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1143 -msgid "Fetching feeds..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1148 -msgid "Got feeds from index page" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1160 -msgid "Trying to download cover..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1162 -msgid "Generating masthead..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1240 -#, python-format -msgid "Starting download [%d thread(s)]..." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1256 -#, python-format -msgid "Feeds downloaded to %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1265 -#, python-format -msgid "Could not download cover: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1274 -#, python-format -msgid "Downloading cover from %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1320 -msgid "Masthead image downloaded" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1401 -msgid "Articles in this issue: " -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1472 -msgid "Untitled Article" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1544 -#, python-format -msgid "Article downloaded: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1555 -#, python-format -msgid "Article download failed: %s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1572 -msgid "Fetching feed" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1720 -msgid "Failed to log in, check your username and password for the calibre Periodicals service." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:1735 -msgid "You do not have permission to download this issue. Either your subscription has expired or you have exceeded the maximum allowed downloads for today." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/collection.py:45 -msgid "You" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/model.py:75 -#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/model.py:84 -#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/model.py:203 -msgid "Scheduled" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:123 -msgid "Next section" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:126 -msgid "Main menu" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:130 -msgid "Previous section" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:222 -msgid "Section Menu" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:225 -msgid "Main Menu" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:314 -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:402 -msgid "Sections" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/feeds/templates.py:399 -msgid "Articles" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:578 -msgid "" -"%prog URL\n" -"\n" -"Where URL is for example http://google.com" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:581 -#, python-format -msgid "Base directory into which URL is saved. Default is %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:584 -#, python-format -msgid "Timeout in seconds to wait for a response from the server. Default: %default s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:587 -#, python-format -msgid "Maximum number of levels to recurse i.e. depth of links to follow. Default %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:590 -#, python-format -msgid "The maximum number of files to download. This only applies to files from <a href> tags. Default is %default" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:592 -#, python-format -msgid "Minimum interval in seconds between consecutive fetches. Default is %default s" -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:594 -msgid "The character encoding for the websites you are trying to download. The default is to try and guess the encoding." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:596 -msgid "Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:598 -msgid "Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored. By default, no links are ignored. If both filter regexp and match regexp are specified, then filter regexp is applied first." -msgstr "" - -#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:600 -msgid "Do not download CSS stylesheets." -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:658 -msgid "OK" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:664 -msgid "Open" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:673 -msgid "Apply" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:683 -msgid "Don't Save" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:685 -msgid "Close without Saving" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:687 -msgid "Discard" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:690 -msgid "&Yes" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:693 -msgid "Yes to &All" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:696 -msgid "&No" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:699 -msgid "N&o to All" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:702 -msgid "Save All" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:705 -msgid "Abort" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:708 -msgid "Retry" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:711 -msgid "Ignore" -msgstr "" - -#: /usr/src/qt-everywhere-opensource-src-4.8.4/src/gui/widgets/qdialogbuttonbox.cpp:714 -msgid "Restore Defaults" -msgstr "" - - -#: /home/kovid/work/calibre/resources/default_tweaks.py:12 -msgid "Auto increment series index" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:13 -msgid "The algorithm used to assign a book added to an existing series a series number.\nNew series numbers assigned using this tweak are always integer values, except\nif a constant non-integer is specified.\nPossible values are:\nnext - First available integer larger than the largest existing number\nfirst_free - First available integer larger than 0\nnext_free - First available integer larger than the smallest existing number\nlast_free - First available integer smaller than the largest existing number\nReturn largest existing + 1 if no free number is found\nconst - Assign the number 1 always\nno_change - Do not change the series index\na number - Assign that number always. The number is not in quotes. Note that\n0.0 can be used here.\nExamples:\nseries_index_auto_increment = 'next'\nseries_index_auto_increment = 'next_free'\nseries_index_auto_increment = 16.5\n\nSet the use_series_auto_increment_tweak_when_importing tweak to True to\nuse the above values when importing/adding books. If this tweak is set to\nFalse (the default) then the series number will be set to 1 if it is not\nexplicitly set during the import. If set to True, then the\nseries index will be set according to the series_index_auto_increment setting.\nNote that the use_series_auto_increment_tweak_when_importing tweak is used\nonly when a value is not provided during import. If the importing regular\nexpression produces a value for series_index, or if you are reading metadata\nfrom books and the import plugin produces a value, than that value will\nbe used irrespective of the setting of the tweak." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:44 -msgid "Add separator after completing an author name" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:45 -msgid "Should the completion separator be append\nto the end of the completed text to\nautomatically begin a new completion operation\nfor authors.\nCan be either True or False" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:52 -msgid "Author sort name algorithm" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:53 -msgid "The algorithm used to copy author to author_sort\nPossible values are:\ninvert: use \"fn ln\" -> \"ln, fn\"\ncopy : copy author to author_sort without modification\ncomma : use 'copy' if there is a ',' in the name, otherwise use 'invert'\nnocomma : \"fn ln\" -> \"ln fn\" (without the comma)\nWhen this tweak is changed, the author_sort values stored with each author\nmust be recomputed by right-clicking on an author in the left-hand tags pane,\nselecting 'manage authors', and pressing 'Recalculate all author sort values'.\nThe author name suffixes are words that are ignored when they occur at the\nend of an author name. The case of the suffix is ignored and trailing\nperiods are automatically handled. The same is true for prefixes.\nThe author name copy words are a set of words which if they occur in an\nauthor name cause the automatically generated author sort string to be\nidentical to the author name. This means that the sort for a string like Acme\nInc. will be Acme Inc. instead of Inc., Acme" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:77 -msgid "Splitting multiple author names" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:78 -msgid "By default, calibre splits a string containing multiple author names on\nampersands and the words \"and\" and \"with\". You can customize the splitting\nby changing the regular expression below. Strings are split on whatever the\nspecified regular expression matches, in addition to ampersands.\nDefault: r'(?i),?\\s+(and|with)\\s+'" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:85 -msgid "Use author sort in Tag Browser" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:86 -msgid "Set which author field to display in the tags pane (the list of authors,\nseries, publishers etc on the left hand side). The choices are author and\nauthor_sort. This tweak affects only what is displayed under the authors\ncategory in the tags pane and content server. Please note that if you set this\nto author_sort, it is very possible to see duplicate names in the list because\nalthough it is guaranteed that author names are unique, there is no such\nguarantee for author_sort values. Showing duplicates won't break anything, but\nit could lead to some confusion. When using 'author_sort', the tooltip will\nshow the author's name.\nExamples:\ncategories_use_field_for_author_name = 'author'\ncategories_use_field_for_author_name = 'author_sort'" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:100 -msgid "Control partitioning of Tag Browser" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:101 -msgid "When partitioning the tags browser, the format of the subcategory label is\ncontrolled by a template: categories_collapsed_name_template if sorting by\nname, categories_collapsed_rating_template if sorting by average rating, and\ncategories_collapsed_popularity_template if sorting by popularity. There are\ntwo variables available to the template: first and last. The variable 'first'\nis the initial item in the subcategory, and the variable 'last' is the final\nitem in the subcategory. Both variables are 'objects'; they each have multiple\nvalues that are obtained by using a suffix. For example, first.name for an\nauthor category will be the name of the author. The sub-values available are:\nname: the printable name of the item\ncount: the number of books that references this item\navg_rating: the average rating of all the books referencing this item\nsort: the sort value. For authors, this is the author_sort for that author\ncategory: the category (e.g., authors, series) that the item is in.\nNote that the \"r'\" in front of the { is necessary if there are backslashes\n(\\ characters) in the template. It doesn't hurt anything to leave it there\neven if there aren't any backslashes." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:122 -msgid "Control order of categories in the tag browser" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:123 -msgid "Change the following dict to change the order that categories are displayed in\nthe tag browser. Items are named using their lookup name, and will be sorted\nusing the number supplied. The lookup name '*' stands for all names that\notherwise do not appear. Two names with the same value will be sorted\nusing the default order; the one used when the dict is empty.\nExample: tag_browser_category_order = {'series':1, 'tags':2, '*':3}\nresulting in the order series, tags, then everything else in default order." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:133 -msgid "Specify columns to sort the booklist by on startup" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:134 -msgid "Provide a set of columns to be sorted on when calibre starts\nThe argument is None if saved sort history is to be used\notherwise it is a list of column,order pairs. Column is the\nlookup/search name, found using the tooltip for the column\nOrder is 0 for ascending, 1 for descending\nFor example, set it to [('authors',0),('title',0)] to sort by\ntitle within authors." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:143 -msgid "Control how dates are displayed" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:144 -msgid "Format to be used for publication date and the timestamp (date).\nA string controlling how the publication date is displayed in the GUI\nd the day as number without a leading zero (1 to 31)\ndd the day as number with a leading zero (01 to 31)\nddd the abbreviated localized day name (e.g. 'Mon' to 'Sun').\ndddd the long localized day name (e.g. 'Monday' to 'Qt::Sunday').\nM the month as number without a leading zero (1-12)\nMM the month as number with a leading zero (01-12)\nMMM the abbreviated localized month name (e.g. 'Jan' to 'Dec').\nMMMM the long localized month name (e.g. 'January' to 'December').\nyy the year as two digit number (00-99)\nyyyy the year as four digit number\nh the hours without a leading 0 (0 to 11 or 0 to 23, depending on am/pm) '\nhh the hours with a leading 0 (00 to 11 or 00 to 23, depending on am/pm) '\nm the minutes without a leading 0 (0 to 59) '\nmm the minutes with a leading 0 (00 to 59) '\ns the seconds without a leading 0 (0 to 59) '\nss the seconds with a leading 0 (00 to 59) '\nap use a 12-hour clock instead of a 24-hour clock, with \"ap\"\nreplaced by the localized string for am or pm '\nAP use a 12-hour clock instead of a 24-hour clock, with \"AP\"\nreplaced by the localized string for AM or PM '\niso the date with time and timezone. Must be the only format present\nFor example, given the date of 9 Jan 2010, the following formats show\nMMM yyyy ==> Jan 2010 yyyy ==> 2010 dd MMM yyyy ==> 09 Jan 2010\nMM/yyyy ==> 01/2010 d/M/yy ==> 9/1/10 yy ==> 10\npublication default if not set: MMM yyyy\ntimestamp default if not set: dd MMM yyyy\nlast_modified_display_format if not set: dd MMM yyyy" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:177 -msgid "Control sorting of titles and series in the library display" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:178 -msgid "Control title and series sorting in the library view. If set to\n'library_order', the title sort field will be used instead of the title.\nUnless you have manually edited the title sort field, leading articles such as\nThe and A will be ignored. If set to 'strictly_alphabetic', the titles will be\nsorted as-is (sort by title instead of title sort). For example, with\nlibrary_order, The Client will sort under 'C'. With strictly_alphabetic, the\nbook will sort under 'T'.\nThis flag affects Calibre's library display. It has no effect on devices. In\naddition, titles for books added before changing the flag will retain their\norder until the title is edited. Double-clicking on a title and hitting return\nwithout changing anything is sufficient to change the sort." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:191 -msgid "Control formatting of title and series when used in templates" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:192 -msgid "Control how title and series names are formatted when saving to disk/sending\nto device. The behavior depends on the field being processed. If processing\ntitle, then if this tweak is set to 'library_order', the title will be\nreplaced with title_sort. If it is set to 'strictly_alphabetic', then the\ntitle will not be changed. If processing series, then if set to\n'library_order', articles such as 'The' and 'An' will be moved to the end. If\nset to 'strictly_alphabetic', the series will be sent without change.\nFor example, if the tweak is set to library_order, \"The Lord of the Rings\"\nwill become \"Lord of the Rings, The\". If the tweak is set to\nstrictly_alphabetic, it would remain \"The Lord of the Rings\". Note that the\nformatter function raw_field will return the base value for title and\nseries regardless of the setting of this tweak." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:206 -msgid "Set the list of words considered to be \"articles\" for sort strings" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:207 -msgid "Set the list of words that are to be considered 'articles' when computing the\ntitle sort strings. The articles differ by language. By default, calibre uses\na combination of articles from English and whatever language the calibre user\ninterface is set to. In addition, in some contexts where the book language is\navailable, the language of the book is used. You can change the list of\narticles for a given language or add a new language by editing\nper_language_title_sort_articles. To tell calibre to use a language other\nthan the user interface language, set, default_language_for_title_sort. For\nexample, to use German, set it to 'deu'. A value of None means the user\ninterface language is used. The setting title_sort_articles is ignored\n(present only for legacy reasons)." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:258 -msgid "Specify a folder calibre should connect to at startup" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:259 -msgid "Specify a folder that calibre should connect to at startup using\nconnect_to_folder. This must be a full path to the folder. If the folder does\nnot exist when calibre starts, it is ignored. If there are '\\' characters in\nthe path (such as in Windows paths), you must double them.\nExamples:\nauto_connect_to_folder = 'C:\\\\Users\\\\someone\\\\Desktop\\\\testlib'\nauto_connect_to_folder = '/home/dropbox/My Dropbox/someone/library'" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:268 -msgid "Specify renaming rules for SONY collections" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:269 -msgid "Specify renaming rules for sony collections. This tweak is only applicable if\nmetadata management is set to automatic. Collections on Sonys are named\ndepending upon whether the field is standard or custom. A collection derived\nfrom a standard field is named for the value in that field. For example, if\nthe standard 'series' column contains the value 'Darkover', then the\ncollection name is 'Darkover'. A collection derived from a custom field will\nhave the name of the field added to the value. For example, if a custom series\ncolumn named 'My Series' contains the name 'Darkover', then the collection\nwill by default be named 'Darkover (My Series)'. For purposes of this\ndocumentation, 'Darkover' is called the value and 'My Series' is called the\ncategory. If two books have fields that generate the same collection name,\nthen both books will be in that collection.\nThis set of tweaks lets you specify for a standard or custom field how\nthe collections are to be named. You can use it to add a description to a\nstandard field, for example 'Foo (Tag)' instead of the 'Foo'. You can also use\nit to force multiple fields to end up in the same collection. For example, you\ncould force the values in 'series', '#my_series_1', and '#my_series_2' to\nappear in collections named 'some_value (Series)', thereby merging all of the\nfields into one set of collections.\nThere are two related tweaks. The first determines the category name to use\nfor a metadata field. The second is a template, used to determines how the\nvalue and category are combined to create the collection name.\nThe syntax of the first tweak, sony_collection_renaming_rules, is:\n{'field_lookup_name':'category_name_to_use', 'lookup_name':'name', ...}\nThe second tweak, sony_collection_name_template, is a template. It uses the\nsame template language as plugboards and save templates. This tweak controls\nhow the value and category are combined together to make the collection name.\nThe only two fields available are {category} and {value}. The {value} field is\nnever empty. The {category} field can be empty. The default is to put the\nvalue first, then the category enclosed in parentheses, it isn't empty:\n'{value} {category:|(|)}'\nExamples: The first three examples assume that the second tweak\nhas not been changed.\n1: I want three series columns to be merged into one set of collections. The\ncolumn lookup names are 'series', '#series_1' and '#series_2'. I want nothing\nin the parenthesis. The value to use in the tweak value would be:\nsony_collection_renaming_rules={'series':'', '#series_1':'', '#series_2':''}\n2: I want the word '(Series)' to appear on collections made from series, and\nthe word '(Tag)' to appear on collections made from tags. Use:\nsony_collection_renaming_rules={'series':'Series', 'tags':'Tag'}\n3: I want 'series' and '#myseries' to be merged, and for the collection name\nto have '(Series)' appended. The renaming rule is:\nsony_collection_renaming_rules={'series':'Series', '#myseries':'Series'}\n4: Same as example 2, but instead of having the category name in parentheses\nand appended to the value, I want it prepended and separated by a colon, such\nas in Series: Darkover. I must change the template used to format the category name\nThe resulting two tweaks are:\nsony_collection_renaming_rules={'series':'Series', 'tags':'Tag'}\nsony_collection_name_template='{category:||: }{value}'" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:321 -msgid "Specify how SONY collections are sorted" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:322 -msgid "Specify how sony collections are sorted. This tweak is only applicable if\nmetadata management is set to automatic. You can indicate which metadata is to\nbe used to sort on a collection-by-collection basis. The format of the tweak\nis a list of metadata fields from which collections are made, followed by the\nname of the metadata field containing the sort value.\nExample: The following indicates that collections built from pubdate and tags\nare to be sorted by the value in the custom column '#mydate', that collections\nbuilt from 'series' are to be sorted by 'series_index', and that all other\ncollections are to be sorted by title. If a collection metadata field is not\nnamed, then if it is a series- based collection it is sorted by series order,\notherwise it is sorted by title order.\n[(['pubdate', 'tags'],'#mydate'), (['series'],'series_index'), (['*'], 'title')]\nNote that the bracketing and parentheses are required. The syntax is\n[ ( [list of fields], sort field ) , ( [ list of fields ] , sort field ) ]\nDefault: empty (no rules), so no collection attributes are named." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:339 -msgid "Control how tags are applied when copying books to another library" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:340 -msgid "Set this to True to ensure that tags in 'Tags to add when adding\na book' are added when copying books to another library" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:344 -msgid "Set the maximum number of tags to show per book in the content server" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:347 -msgid "Set custom metadata fields that the content server will or will not display." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:348 -msgid "content_server_will_display is a list of custom fields to be displayed.\ncontent_server_wont_display is a list of custom fields not to be displayed.\nwont_display has priority over will_display.\nThe special value '*' means all custom fields. The value [] means no entries.\nDefaults:\ncontent_server_will_display = ['*']\ncontent_server_wont_display = []\nExamples:\nTo display only the custom fields #mytags and #genre:\ncontent_server_will_display = ['#mytags', '#genre']\ncontent_server_wont_display = []\nTo display all fields except #mycomments:\ncontent_server_will_display = ['*']\ncontent_server_wont_display['#mycomments']" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:365 -msgid "Set the maximum number of sort 'levels'" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:366 -msgid "Set the maximum number of sort 'levels' that calibre will use to resort the\nlibrary after certain operations such as searches or device insertion. Each\nsort level adds a performance penalty. If the database is large (thousands of\nbooks) the penalty might be noticeable. If you are not concerned about multi-\nlevel sorts, and if you are seeing a slowdown, reduce the value of this tweak." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:373 -msgid "Choose whether dates are sorted using visible fields" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:374 -msgid "Date values contain both a date and a time. When sorted, all the fields are\nused, regardless of what is displayed. Set this tweak to True to use only\nthe fields that are being displayed." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:379 -msgid "Specify which font to use when generating a default cover or masthead" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:380 -msgid "Absolute path to .ttf font files to use as the fonts for the title, author\nand footer when generating a default cover or masthead image. Useful if the\ndefault font (Liberation Serif) does not contain glyphs for the language of\nthe books in your library." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:387 -msgid "Control behavior of the book list" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:388 -msgid "You can control the behavior of doubleclicks on the books list.\nChoices: open_viewer, do_nothing,\nedit_cell, edit_metadata. Selecting edit_metadata has the side effect of\ndisabling editing a field using a single click.\nDefault: open_viewer.\nExample: doubleclick_on_library_view = 'do_nothing'\nYou can also control whether the book list scrolls horizontal per column or\nper pixel. Default is per column." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:399 -msgid "Language to use when sorting." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:400 -msgid "Setting this tweak will force sorting to use the\ncollating order for the specified language. This might be useful if you run\ncalibre in English but want sorting to work in the language where you live.\nSet the tweak to the desired ISO 639-1 language code, in lower case.\nYou can find the list of supported locales at\nhttp://publib.boulder.ibm.com/infocenter/iseries/v5r3/topic/nls/rbagsicusortsequencetables.htm\nDefault: locale_for_sorting = '' -- use the language calibre displays in\nExample: locale_for_sorting = 'fr' -- sort using French rules.\nExample: locale_for_sorting = 'nb' -- sort using Norwegian rules." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:411 -msgid "Number of columns for custom metadata in the edit metadata dialog" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:412 -msgid "Set whether to use one or two columns for custom metadata when editing\nmetadata one book at a time. If True, then the fields are laid out using two\ncolumns. If False, one column is used." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:417 -msgid "Order of custom column(s) in edit metadata" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:418 -msgid "Controls the order that custom columns are listed in edit metadata single\nand bulk. The columns listed in the tweak are displayed first and in the\norder provided. Any columns not listed are dislayed after the listed ones,\nin alphabetical order. Do note that this tweak does not change the size of\nthe edit widgets. Putting comments widgets in this list may result in some\nodd widget spacing when using two-column mode.\nEnter a comma-separated list of custom field lookup names, as in\nmetadata_edit_custom_column_order = ['#genre', '#mytags', '#etc']" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:428 -msgid "The number of seconds to wait before sending emails" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:429 -msgid "The number of seconds to wait before sending emails when using a\npublic email server like gmail or hotmail. Default is: 5 minutes\nSetting it to lower may cause the server's SPAM controls to kick in,\nmaking email sending fail. Changes will take effect only after a restart of\ncalibre." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:436 -msgid "The maximum width and height for covers saved in the calibre library" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:437 -msgid "All covers in the calibre library will be resized, preserving aspect ratio,\nto fit within this size. This is to prevent slowdowns caused by extremely\nlarge covers" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:442 -msgid "Where to send downloaded news" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:443 -msgid "When automatically sending downloaded news to a connected device, calibre\nwill by default send it to the main memory. By changing this tweak, you can\ncontrol where it is sent. Valid values are \"main\", \"carda\", \"cardb\". Note\nthat if there isn't enough free space available on the location you choose,\nthe files will be sent to the location with the most free space." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:450 -msgid "What interfaces should the content server listen on" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:451 -msgid "By default, the calibre content server listens on '0.0.0.0' which means that it\naccepts IPv4 connections on all interfaces. You can change this to, for\nexample, '127.0.0.1' to only listen for connections from the local machine, or\nto '::' to listen to all incoming IPv6 and IPv4 connections (this may not\nwork on all operating systems)" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:458 -msgid "Unified toolbar on OS X" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:459 -msgid "If you enable this option and restart calibre, the toolbar will be 'unified'\nwith the titlebar as is normal for OS X applications. However, doing this has\nvarious bugs, for instance the minimum width of the toolbar becomes twice\nwhat it should be and it causes other random bugs on some systems, so turn it\non at your own risk!" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:466 -msgid "Save original file when converting/polishing from same format to same format" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:467 -msgid "When calibre does a conversion from the same format to the same format, for\nexample, from EPUB to EPUB, the original file is saved, so that in case the\nconversion is poor, you can tweak the settings and run it again. By setting\nthis to False you can prevent calibre from saving the original file.\nSimilarly, by setting save_original_format_when_polishing to False you can\nprevent calibre from saving the original file when polishing." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:476 -msgid "Number of recently viewed books to show" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:477 -msgid "Right-clicking the View button shows a list of recently viewed books. Control\nhow many should be shown, here." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:481 -msgid "Change the font size of book details in the interface" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:482 -msgid "Change the font size at which book details are rendered in the side panel and\ncomments are rendered in the metadata edit dialog. Set it to a positive or\nnegative number to increase or decrease the font size." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:487 -msgid "Compile General Program Mode templates to Python" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:488 -msgid "Compiled general program mode templates are significantly faster than\ninterpreted templates. Setting this tweak to True causes calibre to compile\n(in most cases) general program mode templates. Setting it to False causes\ncalibre to use the old behavior -- interpreting the templates. Set the tweak\nto False if some compiled templates produce incorrect values.\nDefault: compile_gpm_templates = True\nNo compile: compile_gpm_templates = False" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:497 -msgid "What format to default to when using the Tweak feature" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:498 -msgid "The Tweak feature of calibre allows direct editing of a book format.\nIf multiple formats are available, calibre will offer you a choice\nof formats, defaulting to your preferred output format if it is available.\nSet this tweak to a specific value of 'EPUB' or 'AZW3' to always default\nto that format rather than your output format preference.\nSet to a value of 'remember' to use whichever format you chose last time you\nused the Tweak feature.\nExamples:\ndefault_tweak_format = None (Use output format)\ndefault_tweak_format = 'EPUB'\ndefault_tweak_format = 'remember'" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:511 -msgid "Do not preselect a completion when editing authors/tags/series/etc." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:512 -msgid "This means that you can make changes and press Enter and your changes will\nnot be overwritten by a matching completion. However, if you wish to use the\ncompletions you will now have to press Tab to select one before pressing\nEnter. Which technique you prefer will depend on the state of metadata in\nyour library and your personal editing style." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:519 -msgid "Recognize numbers inside text when sorting" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:520 -msgid "This means that when sorting on text fields like title the text \"Book 2\"\nwill sort before the text \"Book 100\". If you want this behavior, set\nnumeric_collation = True note that doing so will cause problems with text\nthat starts with numbers and is a little slower." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:526 -msgid "Sort the list of libraries alphabetically" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:527 -msgid "The list of libraries in the Copy to Library and Quick Switch menus are\nnormally sorted by most used. However, if there are more than a certain\nnumber of such libraries, the sorting becomes alphabetic. You can set that\nnumber here. The default is ten libraries." -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:533 -msgid "Highlight the count of books when using a Virtual Library" -msgstr "" - -#: /home/kovid/work/calibre/resources/default_tweaks.py:534 -msgid "The count of books next to the Virtual Library button is highlighted in\nyellow when using a Virtual Library. By setting this to False, you can turn\nthat off." -msgstr "" diff --git a/translations/iso_639/README b/translations/iso_639/README deleted file mode 100644 index 1b5571cf0c..0000000000 --- a/translations/iso_639/README +++ /dev/null @@ -1,3 +0,0 @@ -These files are taken from the iso-codes package, licensed under the LGPL 2.1 - -All the files are from the iso_639_3 sub-directory. diff --git a/translations/iso_639/iso_639_3.pot b/translations/iso_639/iso_639_3.pot deleted file mode 100644 index ec33b56d1a..0000000000 --- a/translations/iso_639/iso_639_3.pot +++ /dev/null @@ -1,30845 +0,0 @@ -# Translation template file.. -# Copyright (C) 2011 Kovid Goyal -# Kovid Goyal <kovid@kovidgoyal.net>, 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: calibre 0.8.15\n" -"POT-Creation-Date: 2011-08-26 10:08+MDT\n" -"PO-Revision-Date: 2011-08-26 10:08+MDT\n" -"Last-Translator: Automatically generated\n" -"Language-Team: LANGUAGE\n" -"MIME-Version: 1.0\n" -"Report-Msgid-Bugs-To: https://bugs.launchpad.net/calibre\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - - -#. name for aaa -msgid "Ghotuo" -msgstr "" - -#. name for aab -msgid "Alumu-Tesu" -msgstr "" - -#. name for aac -msgid "Ari" -msgstr "" - -#. name for aad -msgid "Amal" -msgstr "" - -#. name for aae -msgid "Albanian; Arbëreshë" -msgstr "" - -#. name for aaf -msgid "Aranadan" -msgstr "" - -#. name for aag -msgid "Ambrak" -msgstr "" - -#. name for aah -msgid "Arapesh; Abu'" -msgstr "" - -#. name for aai -msgid "Arifama-Miniafia" -msgstr "" - -#. name for aak -msgid "Ankave" -msgstr "" - -#. name for aal -msgid "Afade" -msgstr "" - -#. name for aam -msgid "Aramanik" -msgstr "" - -#. name for aan -msgid "Anambé" -msgstr "" - -#. name for aao -msgid "Arabic; Algerian Saharan" -msgstr "" - -#. name for aap -msgid "Arára; Pará" -msgstr "" - -#. name for aaq -msgid "Abnaki; Eastern" -msgstr "" - -#. name for aar -msgid "Afar" -msgstr "" - -#. name for aas -msgid "Aasáx" -msgstr "" - -#. name for aat -msgid "Albanian; Arvanitika" -msgstr "" - -#. name for aau -msgid "Abau" -msgstr "" - -#. name for aaw -msgid "Solong" -msgstr "" - -#. name for aax -msgid "Mandobo Atas" -msgstr "" - -#. name for aaz -msgid "Amarasi" -msgstr "" - -#. name for aba -msgid "Abé" -msgstr "" - -#. name for abb -msgid "Bankon" -msgstr "" - -#. name for abc -msgid "Ayta; Ambala" -msgstr "" - -#. name for abd -msgid "Manide" -msgstr "" - -#. name for abe -msgid "Abnaki; Western" -msgstr "" - -#. name for abf -msgid "Abai Sungai" -msgstr "" - -#. name for abg -msgid "Abaga" -msgstr "" - -#. name for abh -msgid "Arabic; Tajiki" -msgstr "" - -#. name for abi -msgid "Abidji" -msgstr "" - -#. name for abj -msgid "Aka-Bea" -msgstr "" - -#. name for abk -msgid "Abkhazian" -msgstr "" - -#. name for abl -msgid "Lampung Nyo" -msgstr "" - -#. name for abm -msgid "Abanyom" -msgstr "" - -#. name for abn -msgid "Abua" -msgstr "" - -#. name for abo -msgid "Abon" -msgstr "" - -#. name for abp -msgid "Ayta; Abellen" -msgstr "" - -#. name for abq -msgid "Abaza" -msgstr "" - -#. name for abr -msgid "Abron" -msgstr "" - -#. name for abs -msgid "Malay; Ambonese" -msgstr "" - -#. name for abt -msgid "Ambulas" -msgstr "" - -#. name for abu -msgid "Abure" -msgstr "" - -#. name for abv -msgid "Arabic; Baharna" -msgstr "" - -#. name for abw -msgid "Pal" -msgstr "" - -#. name for abx -msgid "Inabaknon" -msgstr "" - -#. name for aby -msgid "Aneme Wake" -msgstr "" - -#. name for abz -msgid "Abui" -msgstr "" - -#. name for aca -msgid "Achagua" -msgstr "" - -#. name for acb -msgid "Áncá" -msgstr "" - -#. name for acd -msgid "Gikyode" -msgstr "" - -#. name for ace -msgid "Achinese" -msgstr "" - -#. name for acf -msgid "Creole French; Saint Lucian" -msgstr "" - -#. name for ach -msgid "Acoli" -msgstr "" - -#. name for aci -msgid "Aka-Cari" -msgstr "" - -#. name for ack -msgid "Aka-Kora" -msgstr "" - -#. name for acl -msgid "Akar-Bale" -msgstr "" - -#. name for acm -msgid "Arabic; Mesopotamian" -msgstr "" - -#. name for acn -msgid "Achang" -msgstr "" - -#. name for acp -msgid "Acipa; Eastern" -msgstr "" - -#. name for acq -msgid "Arabic; Ta'izzi-Adeni" -msgstr "" - -#. name for acr -msgid "Achi" -msgstr "" - -#. name for acs -msgid "Acroá" -msgstr "" - -#. name for act -msgid "Achterhoeks" -msgstr "" - -#. name for acu -msgid "Achuar-Shiwiar" -msgstr "" - -#. name for acv -msgid "Achumawi" -msgstr "" - -#. name for acw -msgid "Arabic; Hijazi" -msgstr "" - -#. name for acx -msgid "Arabic; Omani" -msgstr "" - -#. name for acy -msgid "Arabic; Cypriot" -msgstr "" - -#. name for acz -msgid "Acheron" -msgstr "" - -#. name for ada -msgid "Adangme" -msgstr "" - -#. name for adb -msgid "Adabe" -msgstr "" - -#. name for add -msgid "Dzodinka" -msgstr "" - -#. name for ade -msgid "Adele" -msgstr "" - -#. name for adf -msgid "Arabic; Dhofari" -msgstr "" - -#. name for adg -msgid "Andegerebinha" -msgstr "" - -#. name for adh -msgid "Adhola" -msgstr "" - -#. name for adi -msgid "Adi" -msgstr "" - -#. name for adj -msgid "Adioukrou" -msgstr "" - -#. name for adl -msgid "Galo" -msgstr "" - -#. name for adn -msgid "Adang" -msgstr "" - -#. name for ado -msgid "Abu" -msgstr "" - -#. name for adp -msgid "Adap" -msgstr "" - -#. name for adq -msgid "Adangbe" -msgstr "" - -#. name for adr -msgid "Adonara" -msgstr "" - -#. name for ads -msgid "Adamorobe Sign Language" -msgstr "" - -#. name for adt -msgid "Adnyamathanha" -msgstr "" - -#. name for adu -msgid "Aduge" -msgstr "" - -#. name for adw -msgid "Amundava" -msgstr "" - -#. name for adx -msgid "Tibetan; Amdo" -msgstr "" - -#. name for ady -msgid "Adyghe" -msgstr "" - -#. name for adz -msgid "Adzera" -msgstr "" - -#. name for aea -msgid "Areba" -msgstr "" - -#. name for aeb -msgid "Arabic; Tunisian" -msgstr "" - -#. name for aec -msgid "Arabic; Saidi" -msgstr "" - -#. name for aed -msgid "Argentine Sign Language" -msgstr "" - -#. name for aee -msgid "Pashayi; Northeast" -msgstr "" - -#. name for aek -msgid "Haeke" -msgstr "" - -#. name for ael -msgid "Ambele" -msgstr "" - -#. name for aem -msgid "Arem" -msgstr "" - -#. name for aen -msgid "Armenian Sign Language" -msgstr "" - -#. name for aeq -msgid "Aer" -msgstr "" - -#. name for aer -msgid "Arrernte; Eastern" -msgstr "" - -#. name for aes -msgid "Alsea" -msgstr "" - -#. name for aeu -msgid "Akeu" -msgstr "" - -#. name for aew -msgid "Ambakich" -msgstr "" - -#. name for aey -msgid "Amele" -msgstr "" - -#. name for aez -msgid "Aeka" -msgstr "" - -#. name for afb -msgid "Arabic; Gulf" -msgstr "" - -#. name for afd -msgid "Andai" -msgstr "" - -#. name for afe -msgid "Putukwam" -msgstr "" - -#. name for afg -msgid "Afghan Sign Language" -msgstr "" - -#. name for afh -msgid "Afrihili" -msgstr "" - -#. name for afi -msgid "Akrukay" -msgstr "" - -#. name for afk -msgid "Nanubae" -msgstr "" - -#. name for afn -msgid "Defaka" -msgstr "" - -#. name for afo -msgid "Eloyi" -msgstr "" - -#. name for afp -msgid "Tapei" -msgstr "" - -#. name for afr -msgid "Afrikaans" -msgstr "" - -#. name for afs -msgid "Creole; Afro-Seminole" -msgstr "" - -#. name for aft -msgid "Afitti" -msgstr "" - -#. name for afu -msgid "Awutu" -msgstr "" - -#. name for afz -msgid "Obokuitai" -msgstr "" - -#. name for aga -msgid "Aguano" -msgstr "" - -#. name for agb -msgid "Legbo" -msgstr "" - -#. name for agc -msgid "Agatu" -msgstr "" - -#. name for agd -msgid "Agarabi" -msgstr "" - -#. name for age -msgid "Angal" -msgstr "" - -#. name for agf -msgid "Arguni" -msgstr "" - -#. name for agg -msgid "Angor" -msgstr "" - -#. name for agh -msgid "Ngelima" -msgstr "" - -#. name for agi -msgid "Agariya" -msgstr "" - -#. name for agj -msgid "Argobba" -msgstr "" - -#. name for agk -msgid "Agta; Isarog" -msgstr "" - -#. name for agl -msgid "Fembe" -msgstr "" - -#. name for agm -msgid "Angaataha" -msgstr "" - -#. name for agn -msgid "Agutaynen" -msgstr "" - -#. name for ago -msgid "Tainae" -msgstr "" - -#. name for agq -msgid "Aghem" -msgstr "" - -#. name for agr -msgid "Aguaruna" -msgstr "" - -#. name for ags -msgid "Esimbi" -msgstr "" - -#. name for agt -msgid "Agta; Central Cagayan" -msgstr "" - -#. name for agu -msgid "Aguacateco" -msgstr "" - -#. name for agv -msgid "Dumagat; Remontado" -msgstr "" - -#. name for agw -msgid "Kahua" -msgstr "" - -#. name for agx -msgid "Aghul" -msgstr "" - -#. name for agy -msgid "Alta; Southern" -msgstr "" - -#. name for agz -msgid "Agta; Mt. Iriga" -msgstr "" - -#. name for aha -msgid "Ahanta" -msgstr "" - -#. name for ahb -msgid "Axamb" -msgstr "" - -#. name for ahg -msgid "Qimant" -msgstr "" - -#. name for ahh -msgid "Aghu" -msgstr "" - -#. name for ahi -msgid "Aizi; Tiagbamrin" -msgstr "" - -#. name for ahk -msgid "Akha" -msgstr "" - -#. name for ahl -msgid "Igo" -msgstr "" - -#. name for ahm -msgid "Aizi; Mobumrin" -msgstr "" - -#. name for ahn -msgid "Àhàn" -msgstr "" - -#. name for aho -msgid "Ahom" -msgstr "" - -#. name for ahp -msgid "Aizi; Aproumu" -msgstr "" - -#. name for ahr -msgid "Ahirani" -msgstr "" - -#. name for ahs -msgid "Ashe" -msgstr "" - -#. name for aht -msgid "Ahtena" -msgstr "" - -#. name for aia -msgid "Arosi" -msgstr "" - -#. name for aib -msgid "Ainu (China)" -msgstr "" - -#. name for aic -msgid "Ainbai" -msgstr "" - -#. name for aid -msgid "Alngith" -msgstr "" - -#. name for aie -msgid "Amara" -msgstr "" - -#. name for aif -msgid "Agi" -msgstr "" - -#. name for aig -msgid "Creole English; Antigua and Barbuda" -msgstr "" - -#. name for aih -msgid "Ai-Cham" -msgstr "" - -#. name for aii -msgid "Neo-Aramaic; Assyrian" -msgstr "" - -#. name for aij -msgid "Lishanid Noshan" -msgstr "" - -#. name for aik -msgid "Ake" -msgstr "" - -#. name for ail -msgid "Aimele" -msgstr "" - -#. name for aim -msgid "Aimol" -msgstr "" - -#. name for ain -msgid "Ainu (Japan)" -msgstr "" - -#. name for aio -msgid "Aiton" -msgstr "" - -#. name for aip -msgid "Burumakok" -msgstr "" - -#. name for aiq -msgid "Aimaq" -msgstr "" - -#. name for air -msgid "Airoran" -msgstr "" - -#. name for ais -msgid "Amis; Nataoran" -msgstr "" - -#. name for ait -msgid "Arikem" -msgstr "" - -#. name for aiw -msgid "Aari" -msgstr "" - -#. name for aix -msgid "Aighon" -msgstr "" - -#. name for aiy -msgid "Ali" -msgstr "" - -#. name for aja -msgid "Aja (Sudan)" -msgstr "" - -#. name for ajg -msgid "Aja (Benin)" -msgstr "" - -#. name for aji -msgid "Ajië" -msgstr "" - -#. name for ajp -msgid "Arabic; South Levantine" -msgstr "" - -#. name for ajt -msgid "Arabic; Judeo-Tunisian" -msgstr "" - -#. name for aju -msgid "Arabic; Judeo-Moroccan" -msgstr "" - -#. name for ajw -msgid "Ajawa" -msgstr "" - -#. name for ajz -msgid "Karbi; Amri" -msgstr "" - -#. name for aka -msgid "Akan" -msgstr "" - -#. name for akb -msgid "Batak Angkola" -msgstr "" - -#. name for akc -msgid "Mpur" -msgstr "" - -#. name for akd -msgid "Ukpet-Ehom" -msgstr "" - -#. name for ake -msgid "Akawaio" -msgstr "" - -#. name for akf -msgid "Akpa" -msgstr "" - -#. name for akg -msgid "Anakalangu" -msgstr "" - -#. name for akh -msgid "Angal Heneng" -msgstr "" - -#. name for aki -msgid "Aiome" -msgstr "" - -#. name for akj -msgid "Aka-Jeru" -msgstr "" - -#. name for akk -msgid "Akkadian" -msgstr "" - -#. name for akl -msgid "Aklanon" -msgstr "" - -#. name for akm -msgid "Aka-Bo" -msgstr "" - -#. name for ako -msgid "Akurio" -msgstr "" - -#. name for akp -msgid "Siwu" -msgstr "" - -#. name for akq -msgid "Ak" -msgstr "" - -#. name for akr -msgid "Araki" -msgstr "" - -#. name for aks -msgid "Akaselem" -msgstr "" - -#. name for akt -msgid "Akolet" -msgstr "" - -#. name for aku -msgid "Akum" -msgstr "" - -#. name for akv -msgid "Akhvakh" -msgstr "" - -#. name for akw -msgid "Akwa" -msgstr "" - -#. name for akx -msgid "Aka-Kede" -msgstr "" - -#. name for aky -msgid "Aka-Kol" -msgstr "" - -#. name for akz -msgid "Alabama" -msgstr "" - -#. name for ala -msgid "Alago" -msgstr "" - -#. name for alc -msgid "Qawasqar" -msgstr "" - -#. name for ald -msgid "Alladian" -msgstr "" - -#. name for ale -msgid "Aleut" -msgstr "" - -#. name for alf -msgid "Alege" -msgstr "" - -#. name for alh -msgid "Alawa" -msgstr "" - -#. name for ali -msgid "Amaimon" -msgstr "" - -#. name for alj -msgid "Alangan" -msgstr "" - -#. name for alk -msgid "Alak" -msgstr "" - -#. name for all -msgid "Allar" -msgstr "" - -#. name for alm -msgid "Amblong" -msgstr "" - -#. name for aln -msgid "Albanian; Gheg" -msgstr "" - -#. name for alo -msgid "Larike-Wakasihu" -msgstr "" - -#. name for alp -msgid "Alune" -msgstr "" - -#. name for alq -msgid "Algonquin" -msgstr "" - -#. name for alr -msgid "Alutor" -msgstr "" - -#. name for als -msgid "Albanian; Tosk" -msgstr "" - -#. name for alt -msgid "Altai; Southern" -msgstr "" - -#. name for alu -msgid "'Are'are" -msgstr "" - -#. name for alw -msgid "Alaba-K’abeena" -msgstr "" - -#. name for alx -msgid "Amol" -msgstr "" - -#. name for aly -msgid "Alyawarr" -msgstr "" - -#. name for alz -msgid "Alur" -msgstr "" - -#. name for ama -msgid "Amanayé" -msgstr "" - -#. name for amb -msgid "Ambo" -msgstr "" - -#. name for amc -msgid "Amahuaca" -msgstr "" - -#. name for ame -msgid "Yanesha'" -msgstr "" - -#. name for amf -msgid "Hamer-Banna" -msgstr "" - -#. name for amg -msgid "Amarag" -msgstr "" - -#. name for amh -msgid "Amharic" -msgstr "" - -#. name for ami -msgid "Amis" -msgstr "" - -#. name for amj -msgid "Amdang" -msgstr "" - -#. name for amk -msgid "Ambai" -msgstr "" - -#. name for aml -msgid "War-Jaintia" -msgstr "" - -#. name for amm -msgid "Ama (Papua New Guinea)" -msgstr "" - -#. name for amn -msgid "Amanab" -msgstr "" - -#. name for amo -msgid "Amo" -msgstr "" - -#. name for amp -msgid "Alamblak" -msgstr "" - -#. name for amq -msgid "Amahai" -msgstr "" - -#. name for amr -msgid "Amarakaeri" -msgstr "" - -#. name for ams -msgid "Amami-Oshima; Southern" -msgstr "" - -#. name for amt -msgid "Amto" -msgstr "" - -#. name for amu -msgid "Amuzgo; Guerrero" -msgstr "" - -#. name for amv -msgid "Ambelau" -msgstr "" - -#. name for amw -msgid "Neo-Aramaic; Western" -msgstr "" - -#. name for amx -msgid "Anmatyerre" -msgstr "" - -#. name for amy -msgid "Ami" -msgstr "" - -#. name for amz -msgid "Atampaya" -msgstr "" - -#. name for ana -msgid "Andaqui" -msgstr "" - -#. name for anb -msgid "Andoa" -msgstr "" - -#. name for anc -msgid "Ngas" -msgstr "" - -#. name for and -msgid "Ansus" -msgstr "" - -#. name for ane -msgid "Xârâcùù" -msgstr "" - -#. name for anf -msgid "Animere" -msgstr "" - -#. name for ang -msgid "English; Old (ca. 450-1100)" -msgstr "" - -#. name for anh -msgid "Nend" -msgstr "" - -#. name for ani -msgid "Andi" -msgstr "" - -#. name for anj -msgid "Anor" -msgstr "" - -#. name for ank -msgid "Goemai" -msgstr "" - -#. name for anl -msgid "Anu" -msgstr "" - -#. name for anm -msgid "Anal" -msgstr "" - -#. name for ann -msgid "Obolo" -msgstr "" - -#. name for ano -msgid "Andoque" -msgstr "" - -#. name for anp -msgid "Angika" -msgstr "" - -#. name for anq -msgid "Jarawa (India)" -msgstr "" - -#. name for anr -msgid "Andh" -msgstr "" - -#. name for ans -msgid "Anserma" -msgstr "" - -#. name for ant -msgid "Antakarinya" -msgstr "" - -#. name for anu -msgid "Anuak" -msgstr "" - -#. name for anv -msgid "Denya" -msgstr "" - -#. name for anw -msgid "Anaang" -msgstr "" - -#. name for anx -msgid "Andra-Hus" -msgstr "" - -#. name for any -msgid "Anyin" -msgstr "" - -#. name for anz -msgid "Anem" -msgstr "" - -#. name for aoa -msgid "Angolar" -msgstr "" - -#. name for aob -msgid "Abom" -msgstr "" - -#. name for aoc -msgid "Pemon" -msgstr "" - -#. name for aod -msgid "Andarum" -msgstr "" - -#. name for aoe -msgid "Angal Enen" -msgstr "" - -#. name for aof -msgid "Bragat" -msgstr "" - -#. name for aog -msgid "Angoram" -msgstr "" - -#. name for aoh -msgid "Arma" -msgstr "" - -#. name for aoi -msgid "Anindilyakwa" -msgstr "" - -#. name for aoj -msgid "Mufian" -msgstr "" - -#. name for aok -msgid "Arhö" -msgstr "" - -#. name for aol -msgid "Alor" -msgstr "" - -#. name for aom -msgid "Ömie" -msgstr "" - -#. name for aon -msgid "Arapesh; Bumbita" -msgstr "" - -#. name for aor -msgid "Aore" -msgstr "" - -#. name for aos -msgid "Taikat" -msgstr "" - -#. name for aot -msgid "A'tong" -msgstr "" - -#. name for aox -msgid "Atorada" -msgstr "" - -#. name for aoz -msgid "Uab Meto" -msgstr "" - -#. name for apb -msgid "Sa'a" -msgstr "" - -#. name for apc -msgid "Arabic; North Levantine" -msgstr "" - -#. name for apd -msgid "Arabic; Sudanese" -msgstr "" - -#. name for ape -msgid "Bukiyip" -msgstr "" - -#. name for apf -msgid "Agta; Pahanan" -msgstr "" - -#. name for apg -msgid "Ampanang" -msgstr "" - -#. name for aph -msgid "Athpariya" -msgstr "" - -#. name for api -msgid "Apiaká" -msgstr "" - -#. name for apj -msgid "Apache; Jicarilla" -msgstr "" - -#. name for apk -msgid "Apache; Kiowa" -msgstr "" - -#. name for apl -msgid "Apache; Lipan" -msgstr "" - -#. name for apm -msgid "Apache; Mescalero-Chiricahua" -msgstr "" - -#. name for apn -msgid "Apinayé" -msgstr "" - -#. name for apo -msgid "Ambul" -msgstr "" - -#. name for app -msgid "Apma" -msgstr "" - -#. name for apq -msgid "A-Pucikwar" -msgstr "" - -#. name for apr -msgid "Arop-Lokep" -msgstr "" - -#. name for aps -msgid "Arop-Sissano" -msgstr "" - -#. name for apt -msgid "Apatani" -msgstr "" - -#. name for apu -msgid "Apurinã" -msgstr "" - -#. name for apv -msgid "Alapmunte" -msgstr "" - -#. name for apw -msgid "Apache; Western" -msgstr "" - -#. name for apx -msgid "Aputai" -msgstr "" - -#. name for apy -msgid "Apalaí" -msgstr "" - -#. name for apz -msgid "Safeyoka" -msgstr "" - -#. name for aqc -msgid "Archi" -msgstr "" - -#. name for aqd -msgid "Dogon; Ampari" -msgstr "" - -#. name for aqg -msgid "Arigidi" -msgstr "" - -#. name for aqm -msgid "Atohwaim" -msgstr "" - -#. name for aqn -msgid "Alta; Northern" -msgstr "" - -#. name for aqp -msgid "Atakapa" -msgstr "" - -#. name for aqr -msgid "Arhâ" -msgstr "" - -#. name for aqz -msgid "Akuntsu" -msgstr "" - -#. name for ara -msgid "Arabic" -msgstr "" - -#. name for arb -msgid "Arabic; Standard" -msgstr "" - -#. name for arc -msgid "Aramaic; Official (700-300 BCE)" -msgstr "" - -#. name for ard -msgid "Arabana" -msgstr "" - -#. name for are -msgid "Arrarnta; Western" -msgstr "" - -#. name for arg -msgid "Aragonese" -msgstr "" - -#. name for arh -msgid "Arhuaco" -msgstr "" - -#. name for ari -msgid "Arikara" -msgstr "" - -#. name for arj -msgid "Arapaso" -msgstr "" - -#. name for ark -msgid "Arikapú" -msgstr "" - -#. name for arl -msgid "Arabela" -msgstr "" - -#. name for arn -msgid "Mapudungun" -msgstr "" - -#. name for aro -msgid "Araona" -msgstr "" - -#. name for arp -msgid "Arapaho" -msgstr "" - -#. name for arq -msgid "Arabic; Algerian" -msgstr "" - -#. name for arr -msgid "Karo (Brazil)" -msgstr "" - -#. name for ars -msgid "Arabic; Najdi" -msgstr "" - -#. name for aru -msgid "Aruá (Amazonas State)" -msgstr "" - -#. name for arv -msgid "Arbore" -msgstr "" - -#. name for arw -msgid "Arawak" -msgstr "" - -#. name for arx -msgid "Aruá (Rodonia State)" -msgstr "" - -#. name for ary -msgid "Arabic; Moroccan" -msgstr "" - -#. name for arz -msgid "Arabic; Egyptian" -msgstr "" - -#. name for asa -msgid "Asu (Tanzania)" -msgstr "" - -#. name for asb -msgid "Assiniboine" -msgstr "" - -#. name for asc -msgid "Asmat; Casuarina Coast" -msgstr "" - -#. name for asd -msgid "Asas" -msgstr "" - -#. name for ase -msgid "American Sign Language" -msgstr "" - -#. name for asf -msgid "Australian Sign Language" -msgstr "" - -#. name for asg -msgid "Cishingini" -msgstr "" - -#. name for ash -msgid "Abishira" -msgstr "" - -#. name for asi -msgid "Buruwai" -msgstr "" - -#. name for asj -msgid "Nsari" -msgstr "" - -#. name for ask -msgid "Ashkun" -msgstr "" - -#. name for asl -msgid "Asilulu" -msgstr "" - -#. name for asm -msgid "Assamese" -msgstr "" - -#. name for asn -msgid "Asuriní; Xingú" -msgstr "" - -#. name for aso -msgid "Dano" -msgstr "" - -#. name for asp -msgid "Algerian Sign Language" -msgstr "" - -#. name for asq -msgid "Austrian Sign Language" -msgstr "" - -#. name for asr -msgid "Asuri" -msgstr "" - -#. name for ass -msgid "Ipulo" -msgstr "" - -#. name for ast -msgid "Asturian" -msgstr "" - -#. name for asu -msgid "Asurini; Tocantins" -msgstr "" - -#. name for asv -msgid "Asoa" -msgstr "" - -#. name for asw -msgid "Australian Aborigines Sign Language" -msgstr "" - -#. name for asx -msgid "Muratayak" -msgstr "" - -#. name for asy -msgid "Asmat; Yaosakor" -msgstr "" - -#. name for asz -msgid "As" -msgstr "" - -#. name for ata -msgid "Pele-Ata" -msgstr "" - -#. name for atb -msgid "Zaiwa" -msgstr "" - -#. name for atc -msgid "Atsahuaca" -msgstr "" - -#. name for atd -msgid "Manobo; Ata" -msgstr "" - -#. name for ate -msgid "Atemble" -msgstr "" - -#. name for atg -msgid "Ivbie North-Okpela-Arhe" -msgstr "" - -#. name for ati -msgid "Attié" -msgstr "" - -#. name for atj -msgid "Atikamekw" -msgstr "" - -#. name for atk -msgid "Ati" -msgstr "" - -#. name for atl -msgid "Agta; Mt. Iraya" -msgstr "" - -#. name for atm -msgid "Ata" -msgstr "" - -#. name for atn -msgid "Ashtiani" -msgstr "" - -#. name for ato -msgid "Atong" -msgstr "" - -#. name for atp -msgid "Atta; Pudtol" -msgstr "" - -#. name for atq -msgid "Aralle-Tabulahan" -msgstr "" - -#. name for atr -msgid "Waimiri-Atroari" -msgstr "" - -#. name for ats -msgid "Gros Ventre" -msgstr "" - -#. name for att -msgid "Atta; Pamplona" -msgstr "" - -#. name for atu -msgid "Reel" -msgstr "" - -#. name for atv -msgid "Altai; Northern" -msgstr "" - -#. name for atw -msgid "Atsugewi" -msgstr "" - -#. name for atx -msgid "Arutani" -msgstr "" - -#. name for aty -msgid "Aneityum" -msgstr "" - -#. name for atz -msgid "Arta" -msgstr "" - -#. name for aua -msgid "Asumboa" -msgstr "" - -#. name for aub -msgid "Alugu" -msgstr "" - -#. name for auc -msgid "Waorani" -msgstr "" - -#. name for aud -msgid "Anuta" -msgstr "" - -#. name for aue -msgid "=/Kx'au//'ein" -msgstr "" - -#. name for aug -msgid "Aguna" -msgstr "" - -#. name for auh -msgid "Aushi" -msgstr "" - -#. name for aui -msgid "Anuki" -msgstr "" - -#. name for auj -msgid "Awjilah" -msgstr "" - -#. name for auk -msgid "Heyo" -msgstr "" - -#. name for aul -msgid "Aulua" -msgstr "" - -#. name for aum -msgid "Asu (Nigeria)" -msgstr "" - -#. name for aun -msgid "One; Molmo" -msgstr "" - -#. name for auo -msgid "Auyokawa" -msgstr "" - -#. name for aup -msgid "Makayam" -msgstr "" - -#. name for auq -msgid "Anus" -msgstr "" - -#. name for aur -msgid "Aruek" -msgstr "" - -#. name for aut -msgid "Austral" -msgstr "" - -#. name for auu -msgid "Auye" -msgstr "" - -#. name for auw -msgid "Awyi" -msgstr "" - -#. name for aux -msgid "Aurá" -msgstr "" - -#. name for auy -msgid "Awiyaana" -msgstr "" - -#. name for auz -msgid "Arabic; Uzbeki" -msgstr "" - -#. name for ava -msgid "Avaric" -msgstr "" - -#. name for avb -msgid "Avau" -msgstr "" - -#. name for avd -msgid "Alviri-Vidari" -msgstr "" - -#. name for ave -msgid "Avestan" -msgstr "" - -#. name for avi -msgid "Avikam" -msgstr "" - -#. name for avk -msgid "Kotava" -msgstr "" - -#. name for avl -msgid "Arabic; Eastern Egyptian Bedawi" -msgstr "" - -#. name for avn -msgid "Avatime" -msgstr "" - -#. name for avo -msgid "Agavotaguerra" -msgstr "" - -#. name for avs -msgid "Aushiri" -msgstr "" - -#. name for avt -msgid "Au" -msgstr "" - -#. name for avu -msgid "Avokaya" -msgstr "" - -#. name for avv -msgid "Avá-Canoeiro" -msgstr "" - -#. name for awa -msgid "Awadhi" -msgstr "" - -#. name for awb -msgid "Awa (Papua New Guinea)" -msgstr "" - -#. name for awc -msgid "Cicipu" -msgstr "" - -#. name for awe -msgid "Awetí" -msgstr "" - -#. name for awh -msgid "Awbono" -msgstr "" - -#. name for awi -msgid "Aekyom" -msgstr "" - -#. name for awk -msgid "Awabakal" -msgstr "" - -#. name for awm -msgid "Arawum" -msgstr "" - -#. name for awn -msgid "Awngi" -msgstr "" - -#. name for awo -msgid "Awak" -msgstr "" - -#. name for awr -msgid "Awera" -msgstr "" - -#. name for aws -msgid "Awyu; South" -msgstr "" - -#. name for awt -msgid "Araweté" -msgstr "" - -#. name for awu -msgid "Awyu; Central" -msgstr "" - -#. name for awv -msgid "Awyu; Jair" -msgstr "" - -#. name for aww -msgid "Awun" -msgstr "" - -#. name for awx -msgid "Awara" -msgstr "" - -#. name for awy -msgid "Awyu; Edera" -msgstr "" - -#. name for axb -msgid "Abipon" -msgstr "" - -#. name for axg -msgid "Arára; Mato Grosso" -msgstr "" - -#. name for axk -msgid "Yaka (Central African Republic)" -msgstr "" - -#. name for axm -msgid "Armenian; Middle" -msgstr "" - -#. name for axx -msgid "Xaragure" -msgstr "" - -#. name for aya -msgid "Awar" -msgstr "" - -#. name for ayb -msgid "Gbe; Ayizo" -msgstr "" - -#. name for ayc -msgid "Aymara; Southern" -msgstr "" - -#. name for ayd -msgid "Ayabadhu" -msgstr "" - -#. name for aye -msgid "Ayere" -msgstr "" - -#. name for ayg -msgid "Ginyanga" -msgstr "" - -#. name for ayh -msgid "Arabic; Hadrami" -msgstr "" - -#. name for ayi -msgid "Leyigha" -msgstr "" - -#. name for ayk -msgid "Akuku" -msgstr "" - -#. name for ayl -msgid "Arabic; Libyan" -msgstr "" - -#. name for aym -msgid "Aymara" -msgstr "" - -#. name for ayn -msgid "Arabic; Sanaani" -msgstr "" - -#. name for ayo -msgid "Ayoreo" -msgstr "" - -#. name for ayp -msgid "Arabic; North Mesopotamian" -msgstr "" - -#. name for ayq -msgid "Ayi (Papua New Guinea)" -msgstr "" - -#. name for ayr -msgid "Aymara; Central" -msgstr "" - -#. name for ays -msgid "Ayta; Sorsogon" -msgstr "" - -#. name for ayt -msgid "Ayta; Magbukun" -msgstr "" - -#. name for ayu -msgid "Ayu" -msgstr "" - -#. name for ayy -msgid "Ayta; Tayabas" -msgstr "" - -#. name for ayz -msgid "Mai Brat" -msgstr "" - -#. name for aza -msgid "Azha" -msgstr "" - -#. name for azb -msgid "Azerbaijani; South" -msgstr "" - -#. name for aze -msgid "Azerbaijani" -msgstr "" - -#. name for azg -msgid "Amuzgo; San Pedro Amuzgos" -msgstr "" - -#. name for azj -msgid "Azerbaijani; North" -msgstr "" - -#. name for azm -msgid "Amuzgo; Ipalapa" -msgstr "" - -#. name for azo -msgid "Awing" -msgstr "" - -#. name for azt -msgid "Atta; Faire" -msgstr "" - -#. name for azz -msgid "Nahuatl; Highland Puebla" -msgstr "" - -#. name for baa -msgid "Babatana" -msgstr "" - -#. name for bab -msgid "Bainouk-Gunyuño" -msgstr "" - -#. name for bac -msgid "Badui" -msgstr "" - -#. name for bae -msgid "Baré" -msgstr "" - -#. name for baf -msgid "Nubaca" -msgstr "" - -#. name for bag -msgid "Tuki" -msgstr "" - -#. name for bah -msgid "Creole English; Bahamas" -msgstr "" - -#. name for baj -msgid "Barakai" -msgstr "" - -#. name for bak -msgid "Bashkir" -msgstr "" - -#. name for bal -msgid "Baluchi" -msgstr "" - -#. name for bam -msgid "Bambara" -msgstr "" - -#. name for ban -msgid "Balinese" -msgstr "" - -#. name for bao -msgid "Waimaha" -msgstr "" - -#. name for bap -msgid "Bantawa" -msgstr "" - -#. name for bar -msgid "Bavarian" -msgstr "" - -#. name for bas -msgid "Basa (Cameroon)" -msgstr "" - -#. name for bau -msgid "Bada (Nigeria)" -msgstr "" - -#. name for bav -msgid "Vengo" -msgstr "" - -#. name for baw -msgid "Bambili-Bambui" -msgstr "" - -#. name for bax -msgid "Bamun" -msgstr "" - -#. name for bay -msgid "Batuley" -msgstr "" - -#. name for baz -msgid "Tunen" -msgstr "" - -#. name for bba -msgid "Baatonum" -msgstr "" - -#. name for bbb -msgid "Barai" -msgstr "" - -#. name for bbc -msgid "Batak Toba" -msgstr "" - -#. name for bbd -msgid "Bau" -msgstr "" - -#. name for bbe -msgid "Bangba" -msgstr "" - -#. name for bbf -msgid "Baibai" -msgstr "" - -#. name for bbg -msgid "Barama" -msgstr "" - -#. name for bbh -msgid "Bugan" -msgstr "" - -#. name for bbi -msgid "Barombi" -msgstr "" - -#. name for bbj -msgid "Ghomálá'" -msgstr "" - -#. name for bbk -msgid "Babanki" -msgstr "" - -#. name for bbl -msgid "Bats" -msgstr "" - -#. name for bbm -msgid "Babango" -msgstr "" - -#. name for bbn -msgid "Uneapa" -msgstr "" - -#. name for bbo -msgid "Bobo Madaré; Northern" -msgstr "" - -#. name for bbp -msgid "Banda; West Central" -msgstr "" - -#. name for bbq -msgid "Bamali" -msgstr "" - -#. name for bbr -msgid "Girawa" -msgstr "" - -#. name for bbs -msgid "Bakpinka" -msgstr "" - -#. name for bbt -msgid "Mburku" -msgstr "" - -#. name for bbu -msgid "Kulung (Nigeria)" -msgstr "" - -#. name for bbv -msgid "Karnai" -msgstr "" - -#. name for bbw -msgid "Baba" -msgstr "" - -#. name for bbx -msgid "Bubia" -msgstr "" - -#. name for bby -msgid "Befang" -msgstr "" - -#. name for bbz -msgid "Creole Arabic; Babalia" -msgstr "" - -#. name for bca -msgid "Bai; Central" -msgstr "" - -#. name for bcb -msgid "Bainouk-Samik" -msgstr "" - -#. name for bcc -msgid "Balochi; Southern" -msgstr "" - -#. name for bcd -msgid "Babar; North" -msgstr "" - -#. name for bce -msgid "Bamenyam" -msgstr "" - -#. name for bcf -msgid "Bamu" -msgstr "" - -#. name for bcg -msgid "Baga Binari" -msgstr "" - -#. name for bch -msgid "Bariai" -msgstr "" - -#. name for bci -msgid "Baoulé" -msgstr "" - -#. name for bcj -msgid "Bardi" -msgstr "" - -#. name for bck -msgid "Bunaba" -msgstr "" - -#. name for bcl -msgid "Bicolano; Central" -msgstr "" - -#. name for bcm -msgid "Bannoni" -msgstr "" - -#. name for bcn -msgid "Bali (Nigeria)" -msgstr "" - -#. name for bco -msgid "Kaluli" -msgstr "" - -#. name for bcp -msgid "Bali (Democratic Republic of Congo)" -msgstr "" - -#. name for bcq -msgid "Bench" -msgstr "" - -#. name for bcr -msgid "Babine" -msgstr "" - -#. name for bcs -msgid "Kohumono" -msgstr "" - -#. name for bct -msgid "Bendi" -msgstr "" - -#. name for bcu -msgid "Awad Bing" -msgstr "" - -#. name for bcv -msgid "Shoo-Minda-Nye" -msgstr "" - -#. name for bcw -msgid "Bana" -msgstr "" - -#. name for bcy -msgid "Bacama" -msgstr "" - -#. name for bcz -msgid "Bainouk-Gunyaamolo" -msgstr "" - -#. name for bda -msgid "Bayot" -msgstr "" - -#. name for bdb -msgid "Basap" -msgstr "" - -#. name for bdc -msgid "Emberá-Baudó" -msgstr "" - -#. name for bdd -msgid "Bunama" -msgstr "" - -#. name for bde -msgid "Bade" -msgstr "" - -#. name for bdf -msgid "Biage" -msgstr "" - -#. name for bdg -msgid "Bonggi" -msgstr "" - -#. name for bdh -msgid "Baka (Sudan)" -msgstr "" - -#. name for bdi -msgid "Burun" -msgstr "" - -#. name for bdj -msgid "Bai" -msgstr "" - -#. name for bdk -msgid "Budukh" -msgstr "" - -#. name for bdl -msgid "Bajau; Indonesian" -msgstr "" - -#. name for bdm -msgid "Buduma" -msgstr "" - -#. name for bdn -msgid "Baldemu" -msgstr "" - -#. name for bdo -msgid "Morom" -msgstr "" - -#. name for bdp -msgid "Bende" -msgstr "" - -#. name for bdq -msgid "Bahnar" -msgstr "" - -#. name for bdr -msgid "Bajau; West Coast" -msgstr "" - -#. name for bds -msgid "Burunge" -msgstr "" - -#. name for bdt -msgid "Bokoto" -msgstr "" - -#. name for bdu -msgid "Oroko" -msgstr "" - -#. name for bdv -msgid "Bodo Parja" -msgstr "" - -#. name for bdw -msgid "Baham" -msgstr "" - -#. name for bdx -msgid "Budong-Budong" -msgstr "" - -#. name for bdy -msgid "Bandjalang" -msgstr "" - -#. name for bdz -msgid "Badeshi" -msgstr "" - -#. name for bea -msgid "Beaver" -msgstr "" - -#. name for beb -msgid "Bebele" -msgstr "" - -#. name for bec -msgid "Iceve-Maci" -msgstr "" - -#. name for bed -msgid "Bedoanas" -msgstr "" - -#. name for bee -msgid "Byangsi" -msgstr "" - -#. name for bef -msgid "Benabena" -msgstr "" - -#. name for beg -msgid "Belait" -msgstr "" - -#. name for beh -msgid "Biali" -msgstr "" - -#. name for bei -msgid "Bekati'" -msgstr "" - -#. name for bej -msgid "Beja" -msgstr "" - -#. name for bek -msgid "Bebeli" -msgstr "" - -#. name for bel -msgid "Belarusian" -msgstr "" - -#. name for bem -msgid "Bemba (Zambia)" -msgstr "" - -#. name for ben -msgid "Bengali" -msgstr "" - -#. name for beo -msgid "Beami" -msgstr "" - -#. name for bep -msgid "Besoa" -msgstr "" - -#. name for beq -msgid "Beembe" -msgstr "" - -#. name for bes -msgid "Besme" -msgstr "" - -#. name for bet -msgid "Béte; Guiberoua" -msgstr "" - -#. name for beu -msgid "Blagar" -msgstr "" - -#. name for bev -msgid "Bété; Daloa" -msgstr "" - -#. name for bew -msgid "Betawi" -msgstr "" - -#. name for bex -msgid "Jur Modo" -msgstr "" - -#. name for bey -msgid "Beli (Papua New Guinea)" -msgstr "" - -#. name for bez -msgid "Bena (Tanzania)" -msgstr "" - -#. name for bfa -msgid "Bari" -msgstr "" - -#. name for bfb -msgid "Bareli; Pauri" -msgstr "" - -#. name for bfc -msgid "Bai; Northern" -msgstr "" - -#. name for bfd -msgid "Bafut" -msgstr "" - -#. name for bfe -msgid "Betaf" -msgstr "" - -#. name for bff -msgid "Bofi" -msgstr "" - -#. name for bfg -msgid "Kayan; Busang" -msgstr "" - -#. name for bfh -msgid "Blafe" -msgstr "" - -#. name for bfi -msgid "British Sign Language" -msgstr "" - -#. name for bfj -msgid "Bafanji" -msgstr "" - -#. name for bfk -msgid "Ban Khor Sign Language" -msgstr "" - -#. name for bfl -msgid "Banda-Ndélé" -msgstr "" - -#. name for bfm -msgid "Mmen" -msgstr "" - -#. name for bfn -msgid "Bunak" -msgstr "" - -#. name for bfo -msgid "Birifor; Malba" -msgstr "" - -#. name for bfp -msgid "Beba" -msgstr "" - -#. name for bfq -msgid "Badaga" -msgstr "" - -#. name for bfr -msgid "Bazigar" -msgstr "" - -#. name for bfs -msgid "Bai; Southern" -msgstr "" - -#. name for bft -msgid "Balti" -msgstr "" - -#. name for bfu -msgid "Gahri" -msgstr "" - -#. name for bfw -msgid "Bondo" -msgstr "" - -#. name for bfx -msgid "Bantayanon" -msgstr "" - -#. name for bfy -msgid "Bagheli" -msgstr "" - -#. name for bfz -msgid "Pahari; Mahasu" -msgstr "" - -#. name for bga -msgid "Gwamhi-Wuri" -msgstr "" - -#. name for bgb -msgid "Bobongko" -msgstr "" - -#. name for bgc -msgid "Haryanvi" -msgstr "" - -#. name for bgd -msgid "Bareli; Rathwi" -msgstr "" - -#. name for bge -msgid "Bauria" -msgstr "" - -#. name for bgf -msgid "Bangandu" -msgstr "" - -#. name for bgg -msgid "Bugun" -msgstr "" - -#. name for bgi -msgid "Giangan" -msgstr "" - -#. name for bgj -msgid "Bangolan" -msgstr "" - -#. name for bgk -msgid "Bit" -msgstr "" - -#. name for bgl -msgid "Bo (Laos)" -msgstr "" - -#. name for bgm -msgid "Baga Mboteni" -msgstr "" - -#. name for bgn -msgid "Balochi; Western" -msgstr "" - -#. name for bgo -msgid "Baga Koga" -msgstr "" - -#. name for bgp -msgid "Balochi; Eastern" -msgstr "" - -#. name for bgq -msgid "Bagri" -msgstr "" - -#. name for bgr -msgid "Chin; Bawm" -msgstr "" - -#. name for bgs -msgid "Tagabawa" -msgstr "" - -#. name for bgt -msgid "Bughotu" -msgstr "" - -#. name for bgu -msgid "Mbongno" -msgstr "" - -#. name for bgv -msgid "Warkay-Bipim" -msgstr "" - -#. name for bgw -msgid "Bhatri" -msgstr "" - -#. name for bgx -msgid "Turkish; Balkan Gagauz" -msgstr "" - -#. name for bgy -msgid "Benggoi" -msgstr "" - -#. name for bgz -msgid "Banggai" -msgstr "" - -#. name for bha -msgid "Bharia" -msgstr "" - -#. name for bhb -msgid "Bhili" -msgstr "" - -#. name for bhc -msgid "Biga" -msgstr "" - -#. name for bhd -msgid "Bhadrawahi" -msgstr "" - -#. name for bhe -msgid "Bhaya" -msgstr "" - -#. name for bhf -msgid "Odiai" -msgstr "" - -#. name for bhg -msgid "Binandere" -msgstr "" - -#. name for bhh -msgid "Bukharic" -msgstr "" - -#. name for bhi -msgid "Bhilali" -msgstr "" - -#. name for bhj -msgid "Bahing" -msgstr "" - -#. name for bhl -msgid "Bimin" -msgstr "" - -#. name for bhm -msgid "Bathari" -msgstr "" - -#. name for bhn -msgid "Neo-Aramaic; Bohtan" -msgstr "" - -#. name for bho -msgid "Bhojpuri" -msgstr "" - -#. name for bhp -msgid "Bima" -msgstr "" - -#. name for bhq -msgid "Tukang Besi South" -msgstr "" - -#. name for bhr -msgid "Malagasy; Bara" -msgstr "" - -#. name for bhs -msgid "Buwal" -msgstr "" - -#. name for bht -msgid "Bhattiyali" -msgstr "" - -#. name for bhu -msgid "Bhunjia" -msgstr "" - -#. name for bhv -msgid "Bahau" -msgstr "" - -#. name for bhw -msgid "Biak" -msgstr "" - -#. name for bhx -msgid "Bhalay" -msgstr "" - -#. name for bhy -msgid "Bhele" -msgstr "" - -#. name for bhz -msgid "Bada (Indonesia)" -msgstr "" - -#. name for bia -msgid "Badimaya" -msgstr "" - -#. name for bib -msgid "Bissa" -msgstr "" - -#. name for bic -msgid "Bikaru" -msgstr "" - -#. name for bid -msgid "Bidiyo" -msgstr "" - -#. name for bie -msgid "Bepour" -msgstr "" - -#. name for bif -msgid "Biafada" -msgstr "" - -#. name for big -msgid "Biangai" -msgstr "" - -#. name for bij -msgid "Vaghat-Ya-Bijim-Legeri" -msgstr "" - -#. name for bik -msgid "Bikol" -msgstr "" - -#. name for bil -msgid "Bile" -msgstr "" - -#. name for bim -msgid "Bimoba" -msgstr "" - -#. name for bin -msgid "Bini" -msgstr "" - -#. name for bio -msgid "Nai" -msgstr "" - -#. name for bip -msgid "Bila" -msgstr "" - -#. name for biq -msgid "Bipi" -msgstr "" - -#. name for bir -msgid "Bisorio" -msgstr "" - -#. name for bis -msgid "Bislama" -msgstr "" - -#. name for bit -msgid "Berinomo" -msgstr "" - -#. name for biu -msgid "Biete" -msgstr "" - -#. name for biv -msgid "Birifor; Southern" -msgstr "" - -#. name for biw -msgid "Kol (Cameroon)" -msgstr "" - -#. name for bix -msgid "Bijori" -msgstr "" - -#. name for biy -msgid "Birhor" -msgstr "" - -#. name for biz -msgid "Baloi" -msgstr "" - -#. name for bja -msgid "Budza" -msgstr "" - -#. name for bjb -msgid "Banggarla" -msgstr "" - -#. name for bjc -msgid "Bariji" -msgstr "" - -#. name for bjd -msgid "Bandjigali" -msgstr "" - -#. name for bje -msgid "Mien; Biao-Jiao" -msgstr "" - -#. name for bjf -msgid "Neo-Aramaic; Barzani Jewish" -msgstr "" - -#. name for bjg -msgid "Bidyogo" -msgstr "" - -#. name for bjh -msgid "Bahinemo" -msgstr "" - -#. name for bji -msgid "Burji" -msgstr "" - -#. name for bjj -msgid "Kanauji" -msgstr "" - -#. name for bjk -msgid "Barok" -msgstr "" - -#. name for bjl -msgid "Bulu (Papua New Guinea)" -msgstr "" - -#. name for bjm -msgid "Bajelani" -msgstr "" - -#. name for bjn -msgid "Banjar" -msgstr "" - -#. name for bjo -msgid "Banda; Mid-Southern" -msgstr "" - -#. name for bjr -msgid "Binumarien" -msgstr "" - -#. name for bjs -msgid "Bajan" -msgstr "" - -#. name for bjt -msgid "Balanta-Ganja" -msgstr "" - -#. name for bju -msgid "Busuu" -msgstr "" - -#. name for bjv -msgid "Bedjond" -msgstr "" - -#. name for bjw -msgid "Bakwé" -msgstr "" - -#. name for bjx -msgid "Itneg; Banao" -msgstr "" - -#. name for bjy -msgid "Bayali" -msgstr "" - -#. name for bjz -msgid "Baruga" -msgstr "" - -#. name for bka -msgid "Kyak" -msgstr "" - -#. name for bkc -msgid "Baka (Cameroon)" -msgstr "" - -#. name for bkd -msgid "Binukid" -msgstr "" - -#. name for bkf -msgid "Beeke" -msgstr "" - -#. name for bkg -msgid "Buraka" -msgstr "" - -#. name for bkh -msgid "Bakoko" -msgstr "" - -#. name for bki -msgid "Baki" -msgstr "" - -#. name for bkj -msgid "Pande" -msgstr "" - -#. name for bkk -msgid "Brokskat" -msgstr "" - -#. name for bkl -msgid "Berik" -msgstr "" - -#. name for bkm -msgid "Kom (Cameroon)" -msgstr "" - -#. name for bkn -msgid "Bukitan" -msgstr "" - -#. name for bko -msgid "Kwa'" -msgstr "" - -#. name for bkp -msgid "Boko (Democratic Republic of Congo)" -msgstr "" - -#. name for bkq -msgid "Bakairí" -msgstr "" - -#. name for bkr -msgid "Bakumpai" -msgstr "" - -#. name for bks -msgid "Sorsoganon; Northern" -msgstr "" - -#. name for bkt -msgid "Boloki" -msgstr "" - -#. name for bku -msgid "Buhid" -msgstr "" - -#. name for bkv -msgid "Bekwarra" -msgstr "" - -#. name for bkw -msgid "Bekwel" -msgstr "" - -#. name for bkx -msgid "Baikeno" -msgstr "" - -#. name for bky -msgid "Bokyi" -msgstr "" - -#. name for bkz -msgid "Bungku" -msgstr "" - -#. name for bla -msgid "Siksika" -msgstr "" - -#. name for blb -msgid "Bilua" -msgstr "" - -#. name for blc -msgid "Bella Coola" -msgstr "" - -#. name for bld -msgid "Bolango" -msgstr "" - -#. name for ble -msgid "Balanta-Kentohe" -msgstr "" - -#. name for blf -msgid "Buol" -msgstr "" - -#. name for blg -msgid "Balau" -msgstr "" - -#. name for blh -msgid "Kuwaa" -msgstr "" - -#. name for bli -msgid "Bolia" -msgstr "" - -#. name for blj -msgid "Bolongan" -msgstr "" - -#. name for blk -msgid "Karen; Pa'o" -msgstr "" - -#. name for bll -msgid "Biloxi" -msgstr "" - -#. name for blm -msgid "Beli (Sudan)" -msgstr "" - -#. name for bln -msgid "Bicolano; Southern Catanduanes" -msgstr "" - -#. name for blo -msgid "Anii" -msgstr "" - -#. name for blp -msgid "Blablanga" -msgstr "" - -#. name for blq -msgid "Baluan-Pam" -msgstr "" - -#. name for blr -msgid "Blang" -msgstr "" - -#. name for bls -msgid "Balaesang" -msgstr "" - -#. name for blt -msgid "Tai Dam" -msgstr "" - -#. name for blv -msgid "Bolo" -msgstr "" - -#. name for blw -msgid "Balangao" -msgstr "" - -#. name for blx -msgid "Ayta; Mag-Indi" -msgstr "" - -#. name for bly -msgid "Notre" -msgstr "" - -#. name for blz -msgid "Balantak" -msgstr "" - -#. name for bma -msgid "Lame" -msgstr "" - -#. name for bmb -msgid "Bembe" -msgstr "" - -#. name for bmc -msgid "Biem" -msgstr "" - -#. name for bmd -msgid "Manduri; Baga" -msgstr "" - -#. name for bme -msgid "Limassa" -msgstr "" - -#. name for bmf -msgid "Bom" -msgstr "" - -#. name for bmg -msgid "Bamwe" -msgstr "" - -#. name for bmh -msgid "Kein" -msgstr "" - -#. name for bmi -msgid "Bagirmi" -msgstr "" - -#. name for bmj -msgid "Bote-Majhi" -msgstr "" - -#. name for bmk -msgid "Ghayavi" -msgstr "" - -#. name for bml -msgid "Bomboli" -msgstr "" - -#. name for bmm -msgid "Malagasy; Northern Betsimisaraka" -msgstr "" - -#. name for bmn -msgid "Bina (Papua New Guinea)" -msgstr "" - -#. name for bmo -msgid "Bambalang" -msgstr "" - -#. name for bmp -msgid "Bulgebi" -msgstr "" - -#. name for bmq -msgid "Bomu" -msgstr "" - -#. name for bmr -msgid "Muinane" -msgstr "" - -#. name for bms -msgid "Kanuri; Bilma" -msgstr "" - -#. name for bmt -msgid "Biao Mon" -msgstr "" - -#. name for bmu -msgid "Somba-Siawari" -msgstr "" - -#. name for bmv -msgid "Bum" -msgstr "" - -#. name for bmw -msgid "Bomwali" -msgstr "" - -#. name for bmx -msgid "Baimak" -msgstr "" - -#. name for bmy -msgid "Bemba (Democratic Republic of Congo)" -msgstr "" - -#. name for bmz -msgid "Baramu" -msgstr "" - -#. name for bna -msgid "Bonerate" -msgstr "" - -#. name for bnb -msgid "Bookan" -msgstr "" - -#. name for bnc -msgid "Bontok" -msgstr "" - -#. name for bnd -msgid "Banda (Indonesia)" -msgstr "" - -#. name for bne -msgid "Bintauna" -msgstr "" - -#. name for bnf -msgid "Masiwang" -msgstr "" - -#. name for bng -msgid "Benga" -msgstr "" - -#. name for bni -msgid "Bangi" -msgstr "" - -#. name for bnj -msgid "Tawbuid; Eastern" -msgstr "" - -#. name for bnk -msgid "Bierebo" -msgstr "" - -#. name for bnl -msgid "Boon" -msgstr "" - -#. name for bnm -msgid "Batanga" -msgstr "" - -#. name for bnn -msgid "Bunun" -msgstr "" - -#. name for bno -msgid "Bantoanon" -msgstr "" - -#. name for bnp -msgid "Bola" -msgstr "" - -#. name for bnq -msgid "Bantik" -msgstr "" - -#. name for bnr -msgid "Butmas-Tur" -msgstr "" - -#. name for bns -msgid "Bundeli" -msgstr "" - -#. name for bnu -msgid "Bentong" -msgstr "" - -#. name for bnv -msgid "Bonerif" -msgstr "" - -#. name for bnw -msgid "Bisis" -msgstr "" - -#. name for bnx -msgid "Bangubangu" -msgstr "" - -#. name for bny -msgid "Bintulu" -msgstr "" - -#. name for bnz -msgid "Beezen" -msgstr "" - -#. name for boa -msgid "Bora" -msgstr "" - -#. name for bob -msgid "Aweer" -msgstr "" - -#. name for bod -msgid "Tibetan" -msgstr "" - -#. name for boe -msgid "Mundabli" -msgstr "" - -#. name for bof -msgid "Bolon" -msgstr "" - -#. name for bog -msgid "Bamako Sign Language" -msgstr "" - -#. name for boh -msgid "Boma" -msgstr "" - -#. name for boi -msgid "Barbareño" -msgstr "" - -#. name for boj -msgid "Anjam" -msgstr "" - -#. name for bok -msgid "Bonjo" -msgstr "" - -#. name for bol -msgid "Bole" -msgstr "" - -#. name for bom -msgid "Berom" -msgstr "" - -#. name for bon -msgid "Bine" -msgstr "" - -#. name for boo -msgid "Bozo; Tiemacèwè" -msgstr "" - -#. name for bop -msgid "Bonkiman" -msgstr "" - -#. name for boq -msgid "Bogaya" -msgstr "" - -#. name for bor -msgid "Borôro" -msgstr "" - -#. name for bos -msgid "Bosnian" -msgstr "" - -#. name for bot -msgid "Bongo" -msgstr "" - -#. name for bou -msgid "Bondei" -msgstr "" - -#. name for bov -msgid "Tuwuli" -msgstr "" - -#. name for bow -msgid "Rema" -msgstr "" - -#. name for box -msgid "Buamu" -msgstr "" - -#. name for boy -msgid "Bodo (Central African Republic)" -msgstr "" - -#. name for boz -msgid "Bozo; Tiéyaxo" -msgstr "" - -#. name for bpa -msgid "Dakaka" -msgstr "" - -#. name for bpb -msgid "Barbacoas" -msgstr "" - -#. name for bpd -msgid "Banda-Banda" -msgstr "" - -#. name for bpg -msgid "Bonggo" -msgstr "" - -#. name for bph -msgid "Botlikh" -msgstr "" - -#. name for bpi -msgid "Bagupi" -msgstr "" - -#. name for bpj -msgid "Binji" -msgstr "" - -#. name for bpk -msgid "Orowe" -msgstr "" - -#. name for bpl -msgid "Broome Pearling Lugger Pidgin" -msgstr "" - -#. name for bpm -msgid "Biyom" -msgstr "" - -#. name for bpn -msgid "Dzao Min" -msgstr "" - -#. name for bpo -msgid "Anasi" -msgstr "" - -#. name for bpp -msgid "Kaure" -msgstr "" - -#. name for bpq -msgid "Malay; Banda" -msgstr "" - -#. name for bpr -msgid "Blaan; Koronadal" -msgstr "" - -#. name for bps -msgid "Blaan; Sarangani" -msgstr "" - -#. name for bpt -msgid "Barrow Point" -msgstr "" - -#. name for bpu -msgid "Bongu" -msgstr "" - -#. name for bpv -msgid "Marind; Bian" -msgstr "" - -#. name for bpw -msgid "Bo (Papua New Guinea)" -msgstr "" - -#. name for bpx -msgid "Bareli; Palya" -msgstr "" - -#. name for bpy -msgid "Bishnupriya" -msgstr "" - -#. name for bpz -msgid "Bilba" -msgstr "" - -#. name for bqa -msgid "Tchumbuli" -msgstr "" - -#. name for bqb -msgid "Bagusa" -msgstr "" - -#. name for bqc -msgid "Boko (Benin)" -msgstr "" - -#. name for bqd -msgid "Bung" -msgstr "" - -#. name for bqf -msgid "Baga Kaloum" -msgstr "" - -#. name for bqg -msgid "Bago-Kusuntu" -msgstr "" - -#. name for bqh -msgid "Baima" -msgstr "" - -#. name for bqi -msgid "Bakhtiari" -msgstr "" - -#. name for bqj -msgid "Bandial" -msgstr "" - -#. name for bqk -msgid "Banda-Mbrès" -msgstr "" - -#. name for bql -msgid "Bilakura" -msgstr "" - -#. name for bqm -msgid "Wumboko" -msgstr "" - -#. name for bqn -msgid "Bulgarian Sign Language" -msgstr "" - -#. name for bqo -msgid "Balo" -msgstr "" - -#. name for bqp -msgid "Busa" -msgstr "" - -#. name for bqq -msgid "Biritai" -msgstr "" - -#. name for bqr -msgid "Burusu" -msgstr "" - -#. name for bqs -msgid "Bosngun" -msgstr "" - -#. name for bqt -msgid "Bamukumbit" -msgstr "" - -#. name for bqu -msgid "Boguru" -msgstr "" - -#. name for bqv -msgid "Begbere-Ejar" -msgstr "" - -#. name for bqw -msgid "Buru (Nigeria)" -msgstr "" - -#. name for bqx -msgid "Baangi" -msgstr "" - -#. name for bqy -msgid "Bengkala Sign Language" -msgstr "" - -#. name for bqz -msgid "Bakaka" -msgstr "" - -#. name for bra -msgid "Braj" -msgstr "" - -#. name for brb -msgid "Lave" -msgstr "" - -#. name for brc -msgid "Creole Dutch; Berbice" -msgstr "" - -#. name for brd -msgid "Baraamu" -msgstr "" - -#. name for bre -msgid "Breton" -msgstr "" - -#. name for brf -msgid "Bera" -msgstr "" - -#. name for brg -msgid "Baure" -msgstr "" - -#. name for brh -msgid "Brahui" -msgstr "" - -#. name for bri -msgid "Mokpwe" -msgstr "" - -#. name for brj -msgid "Bieria" -msgstr "" - -#. name for brk -msgid "Birked" -msgstr "" - -#. name for brl -msgid "Birwa" -msgstr "" - -#. name for brm -msgid "Barambu" -msgstr "" - -#. name for brn -msgid "Boruca" -msgstr "" - -#. name for bro -msgid "Brokkat" -msgstr "" - -#. name for brp -msgid "Barapasi" -msgstr "" - -#. name for brq -msgid "Breri" -msgstr "" - -#. name for brr -msgid "Birao" -msgstr "" - -#. name for brs -msgid "Baras" -msgstr "" - -#. name for brt -msgid "Bitare" -msgstr "" - -#. name for bru -msgid "Bru; Eastern" -msgstr "" - -#. name for brv -msgid "Bru; Western" -msgstr "" - -#. name for brw -msgid "Bellari" -msgstr "" - -#. name for brx -msgid "Bodo (India)" -msgstr "" - -#. name for bry -msgid "Burui" -msgstr "" - -#. name for brz -msgid "Bilbil" -msgstr "" - -#. name for bsa -msgid "Abinomn" -msgstr "" - -#. name for bsb -msgid "Bisaya; Brunei" -msgstr "" - -#. name for bsc -msgid "Bassari" -msgstr "" - -#. name for bse -msgid "Wushi" -msgstr "" - -#. name for bsf -msgid "Bauchi" -msgstr "" - -#. name for bsg -msgid "Bashkardi" -msgstr "" - -#. name for bsh -msgid "Kati" -msgstr "" - -#. name for bsi -msgid "Bassossi" -msgstr "" - -#. name for bsj -msgid "Bangwinji" -msgstr "" - -#. name for bsk -msgid "Burushaski" -msgstr "" - -#. name for bsl -msgid "Basa-Gumna" -msgstr "" - -#. name for bsm -msgid "Busami" -msgstr "" - -#. name for bsn -msgid "Barasana-Eduria" -msgstr "" - -#. name for bso -msgid "Buso" -msgstr "" - -#. name for bsp -msgid "Baga Sitemu" -msgstr "" - -#. name for bsq -msgid "Bassa" -msgstr "" - -#. name for bsr -msgid "Bassa-Kontagora" -msgstr "" - -#. name for bss -msgid "Akoose" -msgstr "" - -#. name for bst -msgid "Basketo" -msgstr "" - -#. name for bsu -msgid "Bahonsuai" -msgstr "" - -#. name for bsv -msgid "Baga Sobané" -msgstr "" - -#. name for bsw -msgid "Baiso" -msgstr "" - -#. name for bsx -msgid "Yangkam" -msgstr "" - -#. name for bsy -msgid "Bisaya; Sabah" -msgstr "" - -#. name for bta -msgid "Bata" -msgstr "" - -#. name for btc -msgid "Bati (Cameroon)" -msgstr "" - -#. name for btd -msgid "Batak Dairi" -msgstr "" - -#. name for bte -msgid "Gamo-Ningi" -msgstr "" - -#. name for btf -msgid "Birgit" -msgstr "" - -#. name for btg -msgid "Bété; Gagnoa" -msgstr "" - -#. name for bth -msgid "Bidayuh; Biatah" -msgstr "" - -#. name for bti -msgid "Burate" -msgstr "" - -#. name for btj -msgid "Malay; Bacanese" -msgstr "" - -#. name for btl -msgid "Bhatola" -msgstr "" - -#. name for btm -msgid "Batak Mandailing" -msgstr "" - -#. name for btn -msgid "Ratagnon" -msgstr "" - -#. name for bto -msgid "Bikol; Rinconada" -msgstr "" - -#. name for btp -msgid "Budibud" -msgstr "" - -#. name for btq -msgid "Batek" -msgstr "" - -#. name for btr -msgid "Baetora" -msgstr "" - -#. name for bts -msgid "Batak Simalungun" -msgstr "" - -#. name for btt -msgid "Bete-Bendi" -msgstr "" - -#. name for btu -msgid "Batu" -msgstr "" - -#. name for btv -msgid "Bateri" -msgstr "" - -#. name for btw -msgid "Butuanon" -msgstr "" - -#. name for btx -msgid "Batak Karo" -msgstr "" - -#. name for bty -msgid "Bobot" -msgstr "" - -#. name for btz -msgid "Batak Alas-Kluet" -msgstr "" - -#. name for bua -msgid "Buriat" -msgstr "" - -#. name for bub -msgid "Bua" -msgstr "" - -#. name for buc -msgid "Bushi" -msgstr "" - -#. name for bud -msgid "Ntcham" -msgstr "" - -#. name for bue -msgid "Beothuk" -msgstr "" - -#. name for buf -msgid "Bushoong" -msgstr "" - -#. name for bug -msgid "Buginese" -msgstr "" - -#. name for buh -msgid "Bunu; Younuo" -msgstr "" - -#. name for bui -msgid "Bongili" -msgstr "" - -#. name for buj -msgid "Basa-Gurmana" -msgstr "" - -#. name for buk -msgid "Bugawac" -msgstr "" - -#. name for bul -msgid "Bulgarian" -msgstr "" - -#. name for bum -msgid "Bulu (Cameroon)" -msgstr "" - -#. name for bun -msgid "Sherbro" -msgstr "" - -#. name for buo -msgid "Terei" -msgstr "" - -#. name for bup -msgid "Busoa" -msgstr "" - -#. name for buq -msgid "Brem" -msgstr "" - -#. name for bus -msgid "Bokobaru" -msgstr "" - -#. name for but -msgid "Bungain" -msgstr "" - -#. name for buu -msgid "Budu" -msgstr "" - -#. name for buv -msgid "Bun" -msgstr "" - -#. name for buw -msgid "Bubi" -msgstr "" - -#. name for bux -msgid "Boghom" -msgstr "" - -#. name for buy -msgid "Bullom So" -msgstr "" - -#. name for buz -msgid "Bukwen" -msgstr "" - -#. name for bva -msgid "Barein" -msgstr "" - -#. name for bvb -msgid "Bube" -msgstr "" - -#. name for bvc -msgid "Baelelea" -msgstr "" - -#. name for bvd -msgid "Baeggu" -msgstr "" - -#. name for bve -msgid "Malay; Berau" -msgstr "" - -#. name for bvf -msgid "Boor" -msgstr "" - -#. name for bvg -msgid "Bonkeng" -msgstr "" - -#. name for bvh -msgid "Bure" -msgstr "" - -#. name for bvi -msgid "Belanda Viri" -msgstr "" - -#. name for bvj -msgid "Baan" -msgstr "" - -#. name for bvk -msgid "Bukat" -msgstr "" - -#. name for bvl -msgid "Bolivian Sign Language" -msgstr "" - -#. name for bvm -msgid "Bamunka" -msgstr "" - -#. name for bvn -msgid "Buna" -msgstr "" - -#. name for bvo -msgid "Bolgo" -msgstr "" - -#. name for bvq -msgid "Birri" -msgstr "" - -#. name for bvr -msgid "Burarra" -msgstr "" - -#. name for bvt -msgid "Bati (Indonesia)" -msgstr "" - -#. name for bvu -msgid "Malay; Bukit" -msgstr "" - -#. name for bvv -msgid "Baniva" -msgstr "" - -#. name for bvw -msgid "Boga" -msgstr "" - -#. name for bvx -msgid "Dibole" -msgstr "" - -#. name for bvy -msgid "Baybayanon" -msgstr "" - -#. name for bvz -msgid "Bauzi" -msgstr "" - -#. name for bwa -msgid "Bwatoo" -msgstr "" - -#. name for bwb -msgid "Namosi-Naitasiri-Serua" -msgstr "" - -#. name for bwc -msgid "Bwile" -msgstr "" - -#. name for bwd -msgid "Bwaidoka" -msgstr "" - -#. name for bwe -msgid "Karen; Bwe" -msgstr "" - -#. name for bwf -msgid "Boselewa" -msgstr "" - -#. name for bwg -msgid "Barwe" -msgstr "" - -#. name for bwh -msgid "Bishuo" -msgstr "" - -#. name for bwi -msgid "Baniwa" -msgstr "" - -#. name for bwj -msgid "Bwamu; Láá Láá" -msgstr "" - -#. name for bwk -msgid "Bauwaki" -msgstr "" - -#. name for bwl -msgid "Bwela" -msgstr "" - -#. name for bwm -msgid "Biwat" -msgstr "" - -#. name for bwn -msgid "Bunu; Wunai" -msgstr "" - -#. name for bwo -msgid "Boro (Ethiopia)" -msgstr "" - -#. name for bwp -msgid "Mandobo Bawah" -msgstr "" - -#. name for bwq -msgid "Bobo Madaré; Southern" -msgstr "" - -#. name for bwr -msgid "Bura-Pabir" -msgstr "" - -#. name for bws -msgid "Bomboma" -msgstr "" - -#. name for bwt -msgid "Bafaw-Balong" -msgstr "" - -#. name for bwu -msgid "Buli (Ghana)" -msgstr "" - -#. name for bww -msgid "Bwa" -msgstr "" - -#. name for bwx -msgid "Bunu; Bu-Nao" -msgstr "" - -#. name for bwy -msgid "Bwamu; Cwi" -msgstr "" - -#. name for bwz -msgid "Bwisi" -msgstr "" - -#. name for bxa -msgid "Bauro" -msgstr "" - -#. name for bxb -msgid "Bor; Belanda" -msgstr "" - -#. name for bxc -msgid "Molengue" -msgstr "" - -#. name for bxd -msgid "Pela" -msgstr "" - -#. name for bxe -msgid "Birale" -msgstr "" - -#. name for bxf -msgid "Bilur" -msgstr "" - -#. name for bxg -msgid "Bangala" -msgstr "" - -#. name for bxh -msgid "Buhutu" -msgstr "" - -#. name for bxi -msgid "Pirlatapa" -msgstr "" - -#. name for bxj -msgid "Bayungu" -msgstr "" - -#. name for bxk -msgid "Bukusu" -msgstr "" - -#. name for bxl -msgid "Jalkunan" -msgstr "" - -#. name for bxm -msgid "Buriat; Mongolia" -msgstr "" - -#. name for bxn -msgid "Burduna" -msgstr "" - -#. name for bxo -msgid "Barikanchi" -msgstr "" - -#. name for bxp -msgid "Bebil" -msgstr "" - -#. name for bxq -msgid "Beele" -msgstr "" - -#. name for bxr -msgid "Buriat; Russia" -msgstr "" - -#. name for bxs -msgid "Busam" -msgstr "" - -#. name for bxu -msgid "Buriat; China" -msgstr "" - -#. name for bxv -msgid "Berakou" -msgstr "" - -#. name for bxw -msgid "Bankagooma" -msgstr "" - -#. name for bxx -msgid "Borna (Democratic Republic of Congo)" -msgstr "" - -#. name for bxz -msgid "Binahari" -msgstr "" - -#. name for bya -msgid "Batak" -msgstr "" - -#. name for byb -msgid "Bikya" -msgstr "" - -#. name for byc -msgid "Ubaghara" -msgstr "" - -#. name for byd -msgid "Benyadu'" -msgstr "" - -#. name for bye -msgid "Pouye" -msgstr "" - -#. name for byf -msgid "Bete" -msgstr "" - -#. name for byg -msgid "Baygo" -msgstr "" - -#. name for byh -msgid "Bhujel" -msgstr "" - -#. name for byi -msgid "Buyu" -msgstr "" - -#. name for byj -msgid "Bina (Nigeria)" -msgstr "" - -#. name for byk -msgid "Biao" -msgstr "" - -#. name for byl -msgid "Bayono" -msgstr "" - -#. name for bym -msgid "Bidyara" -msgstr "" - -#. name for byn -msgid "Bilin" -msgstr "" - -#. name for byo -msgid "Biyo" -msgstr "" - -#. name for byp -msgid "Bumaji" -msgstr "" - -#. name for byq -msgid "Basay" -msgstr "" - -#. name for byr -msgid "Baruya" -msgstr "" - -#. name for bys -msgid "Burak" -msgstr "" - -#. name for byt -msgid "Berti" -msgstr "" - -#. name for byv -msgid "Medumba" -msgstr "" - -#. name for byw -msgid "Belhariya" -msgstr "" - -#. name for byx -msgid "Qaqet" -msgstr "" - -#. name for byy -msgid "Buya" -msgstr "" - -#. name for byz -msgid "Banaro" -msgstr "" - -#. name for bza -msgid "Bandi" -msgstr "" - -#. name for bzb -msgid "Andio" -msgstr "" - -#. name for bzc -msgid "Malagasy; Southern Betsimisaraka" -msgstr "" - -#. name for bzd -msgid "Bribri" -msgstr "" - -#. name for bze -msgid "Bozo; Jenaama" -msgstr "" - -#. name for bzf -msgid "Boikin" -msgstr "" - -#. name for bzg -msgid "Babuza" -msgstr "" - -#. name for bzh -msgid "Buang; Mapos" -msgstr "" - -#. name for bzi -msgid "Bisu" -msgstr "" - -#. name for bzj -msgid "Kriol English; Belize" -msgstr "" - -#. name for bzk -msgid "Creole English; Nicaragua" -msgstr "" - -#. name for bzl -msgid "Boano (Sulawesi)" -msgstr "" - -#. name for bzm -msgid "Bolondo" -msgstr "" - -#. name for bzn -msgid "Boano (Maluku)" -msgstr "" - -#. name for bzo -msgid "Bozaba" -msgstr "" - -#. name for bzp -msgid "Kemberano" -msgstr "" - -#. name for bzq -msgid "Buli (Indonesia)" -msgstr "" - -#. name for bzr -msgid "Biri" -msgstr "" - -#. name for bzs -msgid "Brazilian Sign Language" -msgstr "" - -#. name for bzt -msgid "Brithenig" -msgstr "" - -#. name for bzu -msgid "Burmeso" -msgstr "" - -#. name for bzv -msgid "Bebe" -msgstr "" - -#. name for bzw -msgid "Basa (Nigeria)" -msgstr "" - -#. name for bzx -msgid "Bozo; Kɛlɛngaxo" -msgstr "" - -#. name for bzy -msgid "Obanliku" -msgstr "" - -#. name for bzz -msgid "Evant" -msgstr "" - -#. name for caa -msgid "Chortí" -msgstr "" - -#. name for cab -msgid "Garifuna" -msgstr "" - -#. name for cac -msgid "Chuj" -msgstr "" - -#. name for cad -msgid "Caddo" -msgstr "" - -#. name for cae -msgid "Lehar" -msgstr "" - -#. name for caf -msgid "Carrier; Southern" -msgstr "" - -#. name for cag -msgid "Nivaclé" -msgstr "" - -#. name for cah -msgid "Cahuarano" -msgstr "" - -#. name for caj -msgid "Chané" -msgstr "" - -#. name for cak -msgid "Kaqchikel" -msgstr "" - -#. name for cal -msgid "Carolinian" -msgstr "" - -#. name for cam -msgid "Cemuhî" -msgstr "" - -#. name for can -msgid "Chambri" -msgstr "" - -#. name for cao -msgid "Chácobo" -msgstr "" - -#. name for cap -msgid "Chipaya" -msgstr "" - -#. name for caq -msgid "Nicobarese; Car" -msgstr "" - -#. name for car -msgid "Carib; Galibi" -msgstr "" - -#. name for cas -msgid "Tsimané" -msgstr "" - -#. name for cat -msgid "Catalan" -msgstr "" - -#. name for cav -msgid "Cavineña" -msgstr "" - -#. name for caw -msgid "Callawalla" -msgstr "" - -#. name for cax -msgid "Chiquitano" -msgstr "" - -#. name for cay -msgid "Cayuga" -msgstr "" - -#. name for caz -msgid "Canichana" -msgstr "" - -#. name for cbb -msgid "Cabiyarí" -msgstr "" - -#. name for cbc -msgid "Carapana" -msgstr "" - -#. name for cbd -msgid "Carijona" -msgstr "" - -#. name for cbe -msgid "Chipiajes" -msgstr "" - -#. name for cbg -msgid "Chimila" -msgstr "" - -#. name for cbh -msgid "Cagua" -msgstr "" - -#. name for cbi -msgid "Chachi" -msgstr "" - -#. name for cbj -msgid "Ede Cabe" -msgstr "" - -#. name for cbk -msgid "Chavacano" -msgstr "" - -#. name for cbl -msgid "Chin; Bualkhaw" -msgstr "" - -#. name for cbn -msgid "Nyahkur" -msgstr "" - -#. name for cbo -msgid "Izora" -msgstr "" - -#. name for cbr -msgid "Cashibo-Cacataibo" -msgstr "" - -#. name for cbs -msgid "Cashinahua" -msgstr "" - -#. name for cbt -msgid "Chayahuita" -msgstr "" - -#. name for cbu -msgid "Candoshi-Shapra" -msgstr "" - -#. name for cbv -msgid "Cacua" -msgstr "" - -#. name for cbw -msgid "Kinabalian" -msgstr "" - -#. name for cby -msgid "Carabayo" -msgstr "" - -#. name for cca -msgid "Cauca" -msgstr "" - -#. name for ccc -msgid "Chamicuro" -msgstr "" - -#. name for ccd -msgid "Creole; Cafundo" -msgstr "" - -#. name for cce -msgid "Chopi" -msgstr "" - -#. name for ccg -msgid "Daka; Samba" -msgstr "" - -#. name for cch -msgid "Atsam" -msgstr "" - -#. name for ccj -msgid "Kasanga" -msgstr "" - -#. name for ccl -msgid "Cutchi-Swahili" -msgstr "" - -#. name for ccm -msgid "Creole Malay; Malaccan" -msgstr "" - -#. name for cco -msgid "Chinantec; Comaltepec" -msgstr "" - -#. name for ccp -msgid "Chakma" -msgstr "" - -#. name for ccq -msgid "Chaungtha" -msgstr "" - -#. name for ccr -msgid "Cacaopera" -msgstr "" - -#. name for cda -msgid "Choni" -msgstr "" - -#. name for cde -msgid "Chenchu" -msgstr "" - -#. name for cdf -msgid "Chiru" -msgstr "" - -#. name for cdg -msgid "Chamari" -msgstr "" - -#. name for cdh -msgid "Chambeali" -msgstr "" - -#. name for cdi -msgid "Chodri" -msgstr "" - -#. name for cdj -msgid "Churahi" -msgstr "" - -#. name for cdm -msgid "Chepang" -msgstr "" - -#. name for cdn -msgid "Chaudangsi" -msgstr "" - -#. name for cdo -msgid "Chinese; Min Dong" -msgstr "" - -#. name for cdr -msgid "Cinda-Regi-Tiyal" -msgstr "" - -#. name for cds -msgid "Chadian Sign Language" -msgstr "" - -#. name for cdy -msgid "Chadong" -msgstr "" - -#. name for cdz -msgid "Koda" -msgstr "" - -#. name for cea -msgid "Chehalis; Lower" -msgstr "" - -#. name for ceb -msgid "Cebuano" -msgstr "" - -#. name for ceg -msgid "Chamacoco" -msgstr "" - -#. name for cen -msgid "Cen" -msgstr "" - -#. name for ces -msgid "Czech" -msgstr "" - -#. name for cet -msgid "Centúúm" -msgstr "" - -#. name for cfa -msgid "Dijim-Bwilim" -msgstr "" - -#. name for cfd -msgid "Cara" -msgstr "" - -#. name for cfg -msgid "Como Karim" -msgstr "" - -#. name for cfm -msgid "Chin; Falam" -msgstr "" - -#. name for cga -msgid "Changriwa" -msgstr "" - -#. name for cgc -msgid "Kagayanen" -msgstr "" - -#. name for cgg -msgid "Chiga" -msgstr "" - -#. name for cgk -msgid "Chocangacakha" -msgstr "" - -#. name for cha -msgid "Chamorro" -msgstr "" - -#. name for chb -msgid "Chibcha" -msgstr "" - -#. name for chc -msgid "Catawba" -msgstr "" - -#. name for chd -msgid "Chontal; Highland Oaxaca" -msgstr "" - -#. name for che -msgid "Chechen" -msgstr "" - -#. name for chf -msgid "Chontal; Tabasco" -msgstr "" - -#. name for chg -msgid "Chagatai" -msgstr "" - -#. name for chh -msgid "Chinook" -msgstr "" - -#. name for chj -msgid "Chinantec; Ojitlán" -msgstr "" - -#. name for chk -msgid "Chuukese" -msgstr "" - -#. name for chl -msgid "Cahuilla" -msgstr "" - -#. name for chm -msgid "Mari (Russia)" -msgstr "" - -#. name for chn -msgid "Chinook jargon" -msgstr "" - -#. name for cho -msgid "Choctaw" -msgstr "" - -#. name for chp -msgid "Chipewyan" -msgstr "" - -#. name for chq -msgid "Chinantec; Quiotepec" -msgstr "" - -#. name for chr -msgid "Cherokee" -msgstr "" - -#. name for cht -msgid "Cholón" -msgstr "" - -#. name for chu -msgid "Slavonic; Old" -msgstr "" - -#. name for chv -msgid "Chuvash" -msgstr "" - -#. name for chw -msgid "Chuwabu" -msgstr "" - -#. name for chx -msgid "Chantyal" -msgstr "" - -#. name for chy -msgid "Cheyenne" -msgstr "" - -#. name for chz -msgid "Chinantec; Ozumacín" -msgstr "" - -#. name for cia -msgid "Cia-Cia" -msgstr "" - -#. name for cib -msgid "Gbe; Ci" -msgstr "" - -#. name for cic -msgid "Chickasaw" -msgstr "" - -#. name for cid -msgid "Chimariko" -msgstr "" - -#. name for cie -msgid "Cineni" -msgstr "" - -#. name for cih -msgid "Chinali" -msgstr "" - -#. name for cik -msgid "Kinnauri; Chitkuli" -msgstr "" - -#. name for cim -msgid "Cimbrian" -msgstr "" - -#. name for cin -msgid "Cinta Larga" -msgstr "" - -#. name for cip -msgid "Chiapanec" -msgstr "" - -#. name for cir -msgid "Tiri" -msgstr "" - -#. name for ciw -msgid "Chippewa" -msgstr "" - -#. name for ciy -msgid "Chaima" -msgstr "" - -#. name for cja -msgid "Cham; Western" -msgstr "" - -#. name for cje -msgid "Chru" -msgstr "" - -#. name for cjh -msgid "Chehalis; Upper" -msgstr "" - -#. name for cji -msgid "Chamalal" -msgstr "" - -#. name for cjk -msgid "Chokwe" -msgstr "" - -#. name for cjm -msgid "Cham; Eastern" -msgstr "" - -#. name for cjn -msgid "Chenapian" -msgstr "" - -#. name for cjo -msgid "Ashéninka Pajonal" -msgstr "" - -#. name for cjp -msgid "Cabécar" -msgstr "" - -#. name for cjs -msgid "Shor" -msgstr "" - -#. name for cjv -msgid "Chuave" -msgstr "" - -#. name for cjy -msgid "Chinese; Jinyu" -msgstr "" - -#. name for cka -msgid "Chin; Khumi Awa" -msgstr "" - -#. name for ckb -msgid "Kurdish; Central" -msgstr "" - -#. name for ckh -msgid "Chak" -msgstr "" - -#. name for ckl -msgid "Cibak" -msgstr "" - -#. name for cko -msgid "Anufo" -msgstr "" - -#. name for ckq -msgid "Kajakse" -msgstr "" - -#. name for ckr -msgid "Kairak" -msgstr "" - -#. name for cks -msgid "Tayo" -msgstr "" - -#. name for ckt -msgid "Chukot" -msgstr "" - -#. name for cku -msgid "Koasati" -msgstr "" - -#. name for ckv -msgid "Kavalan" -msgstr "" - -#. name for ckx -msgid "Caka" -msgstr "" - -#. name for cky -msgid "Cakfem-Mushere" -msgstr "" - -#. name for ckz -msgid "Cakchiquel-Quiché Mixed Language" -msgstr "" - -#. name for cla -msgid "Ron" -msgstr "" - -#. name for clc -msgid "Chilcotin" -msgstr "" - -#. name for cld -msgid "Neo-Aramaic; Chaldean" -msgstr "" - -#. name for cle -msgid "Chinantec; Lealao" -msgstr "" - -#. name for clh -msgid "Chilisso" -msgstr "" - -#. name for cli -msgid "Chakali" -msgstr "" - -#. name for clk -msgid "Idu-Mishmi" -msgstr "" - -#. name for cll -msgid "Chala" -msgstr "" - -#. name for clm -msgid "Clallam" -msgstr "" - -#. name for clo -msgid "Chontal; Lowland Oaxaca" -msgstr "" - -#. name for clu -msgid "Caluyanun" -msgstr "" - -#. name for clw -msgid "Chulym" -msgstr "" - -#. name for cly -msgid "Chatino; Eastern Highland" -msgstr "" - -#. name for cma -msgid "Maa" -msgstr "" - -#. name for cme -msgid "Cerma" -msgstr "" - -#. name for cmg -msgid "Mongolian; Classical" -msgstr "" - -#. name for cmi -msgid "Emberá-Chamí" -msgstr "" - -#. name for cml -msgid "Campalagian" -msgstr "" - -#. name for cmm -msgid "Michigamea" -msgstr "" - -#. name for cmn -msgid "Chinese; Mandarin" -msgstr "" - -#. name for cmo -msgid "Mnong; Central" -msgstr "" - -#. name for cmr -msgid "Chin; Mro" -msgstr "" - -#. name for cms -msgid "Messapic" -msgstr "" - -#. name for cmt -msgid "Camtho" -msgstr "" - -#. name for cna -msgid "Changthang" -msgstr "" - -#. name for cnb -msgid "Chin; Chinbon" -msgstr "" - -#. name for cnc -msgid "Côông" -msgstr "" - -#. name for cng -msgid "Qiang; Northern" -msgstr "" - -#. name for cnh -msgid "Chin; Haka" -msgstr "" - -#. name for cni -msgid "Asháninka" -msgstr "" - -#. name for cnk -msgid "Chin; Khumi" -msgstr "" - -#. name for cnl -msgid "Chinantec; Lalana" -msgstr "" - -#. name for cno -msgid "Con" -msgstr "" - -#. name for cns -msgid "Asmat; Central" -msgstr "" - -#. name for cnt -msgid "Chinantec; Tepetotutla" -msgstr "" - -#. name for cnu -msgid "Chenoua" -msgstr "" - -#. name for cnw -msgid "Chin; Ngawn" -msgstr "" - -#. name for cnx -msgid "Cornish; Middle" -msgstr "" - -#. name for coa -msgid "Malay; Cocos Islands" -msgstr "" - -#. name for cob -msgid "Chicomuceltec" -msgstr "" - -#. name for coc -msgid "Cocopa" -msgstr "" - -#. name for cod -msgid "Cocama-Cocamilla" -msgstr "" - -#. name for coe -msgid "Koreguaje" -msgstr "" - -#. name for cof -msgid "Colorado" -msgstr "" - -#. name for cog -msgid "Chong" -msgstr "" - -#. name for coh -msgid "Chonyi-Dzihana-Kauma" -msgstr "" - -#. name for coj -msgid "Cochimi" -msgstr "" - -#. name for cok -msgid "Cora; Santa Teresa" -msgstr "" - -#. name for col -msgid "Columbia-Wenatchi" -msgstr "" - -#. name for com -msgid "Comanche" -msgstr "" - -#. name for con -msgid "Cofán" -msgstr "" - -#. name for coo -msgid "Comox" -msgstr "" - -#. name for cop -msgid "Coptic" -msgstr "" - -#. name for coq -msgid "Coquille" -msgstr "" - -#. name for cor -msgid "Cornish" -msgstr "" - -#. name for cos -msgid "Corsican" -msgstr "" - -#. name for cot -msgid "Caquinte" -msgstr "" - -#. name for cou -msgid "Wamey" -msgstr "" - -#. name for cov -msgid "Cao Miao" -msgstr "" - -#. name for cow -msgid "Cowlitz" -msgstr "" - -#. name for cox -msgid "Nanti" -msgstr "" - -#. name for coy -msgid "Coyaima" -msgstr "" - -#. name for coz -msgid "Chochotec" -msgstr "" - -#. name for cpa -msgid "Chinantec; Palantla" -msgstr "" - -#. name for cpb -msgid "Ashéninka; Ucayali-Yurúa" -msgstr "" - -#. name for cpc -msgid "Ajyíninka Apurucayali" -msgstr "" - -#. name for cpg -msgid "Greek; Cappadocian" -msgstr "" - -#. name for cpi -msgid "Pidgin English; Chinese" -msgstr "" - -#. name for cpn -msgid "Cherepon" -msgstr "" - -#. name for cps -msgid "Capiznon" -msgstr "" - -#. name for cpu -msgid "Ashéninka; Pichis" -msgstr "" - -#. name for cpx -msgid "Chinese; Pu-Xian" -msgstr "" - -#. name for cpy -msgid "Ashéninka; South Ucayali" -msgstr "" - -#. name for cqd -msgid "Miao; Chuanqiandian Cluster" -msgstr "" - -#. name for cqu -msgid "Quechua; Chilean" -msgstr "" - -#. name for cra -msgid "Chara" -msgstr "" - -#. name for crb -msgid "Carib; Island" -msgstr "" - -#. name for crc -msgid "Lonwolwol" -msgstr "" - -#. name for crd -msgid "Coeur d'Alene" -msgstr "" - -#. name for cre -msgid "Cree" -msgstr "" - -#. name for crf -msgid "Caramanta" -msgstr "" - -#. name for crg -msgid "Michif" -msgstr "" - -#. name for crh -msgid "Turkish; Crimean" -msgstr "" - -#. name for cri -msgid "Sãotomense" -msgstr "" - -#. name for crj -msgid "Cree; Southern East" -msgstr "" - -#. name for crk -msgid "Cree; Plains" -msgstr "" - -#. name for crl -msgid "Cree; Northern East" -msgstr "" - -#. name for crm -msgid "Cree; Moose" -msgstr "" - -#. name for crn -msgid "Cora; El Nayar" -msgstr "" - -#. name for cro -msgid "Crow" -msgstr "" - -#. name for crq -msgid "Chorote; Iyo'wujwa" -msgstr "" - -#. name for crr -msgid "Algonquian; Carolina" -msgstr "" - -#. name for crs -msgid "Creole French; Seselwa" -msgstr "" - -#. name for crt -msgid "Chorote; Iyojwa'ja" -msgstr "" - -#. name for crv -msgid "Chaura" -msgstr "" - -#. name for crw -msgid "Chrau" -msgstr "" - -#. name for crx -msgid "Carrier" -msgstr "" - -#. name for cry -msgid "Cori" -msgstr "" - -#. name for crz -msgid "Cruzeño" -msgstr "" - -#. name for csa -msgid "Chinantec; Chiltepec" -msgstr "" - -#. name for csb -msgid "Kashubian" -msgstr "" - -#. name for csc -msgid "Catalan Sign Language" -msgstr "" - -#. name for csd -msgid "Chiangmai Sign Language" -msgstr "" - -#. name for cse -msgid "Czech Sign Language" -msgstr "" - -#. name for csf -msgid "Cuba Sign Language" -msgstr "" - -#. name for csg -msgid "Chilean Sign Language" -msgstr "" - -#. name for csh -msgid "Chin; Asho" -msgstr "" - -#. name for csi -msgid "Miwok; Coast" -msgstr "" - -#. name for csk -msgid "Jola-Kasa" -msgstr "" - -#. name for csl -msgid "Chinese Sign Language" -msgstr "" - -#. name for csm -msgid "Miwok; Central Sierra" -msgstr "" - -#. name for csn -msgid "Colombian Sign Language" -msgstr "" - -#. name for cso -msgid "Chinantec; Sochiapan" -msgstr "" - -#. name for csq -msgid "Croatia Sign Language" -msgstr "" - -#. name for csr -msgid "Costa Rican Sign Language" -msgstr "" - -#. name for css -msgid "Ohlone; Southern" -msgstr "" - -#. name for cst -msgid "Ohlone; Northern" -msgstr "" - -#. name for csw -msgid "Cree; Swampy" -msgstr "" - -#. name for csy -msgid "Chin; Siyin" -msgstr "" - -#. name for csz -msgid "Coos" -msgstr "" - -#. name for cta -msgid "Chatino; Tataltepec" -msgstr "" - -#. name for ctc -msgid "Chetco" -msgstr "" - -#. name for ctd -msgid "Chin; Tedim" -msgstr "" - -#. name for cte -msgid "Chinantec; Tepinapa" -msgstr "" - -#. name for ctg -msgid "Chittagonian" -msgstr "" - -#. name for ctl -msgid "Chinantec; Tlacoatzintepec" -msgstr "" - -#. name for ctm -msgid "Chitimacha" -msgstr "" - -#. name for ctn -msgid "Chhintange" -msgstr "" - -#. name for cto -msgid "Emberá-Catío" -msgstr "" - -#. name for ctp -msgid "Chatino; Western Highland" -msgstr "" - -#. name for cts -msgid "Bicolano; Northern Catanduanes" -msgstr "" - -#. name for ctt -msgid "Chetti; Wayanad" -msgstr "" - -#. name for ctu -msgid "Chol" -msgstr "" - -#. name for ctz -msgid "Chatino; Zacatepec" -msgstr "" - -#. name for cua -msgid "Cua" -msgstr "" - -#. name for cub -msgid "Cubeo" -msgstr "" - -#. name for cuc -msgid "Chinantec; Usila" -msgstr "" - -#. name for cug -msgid "Cung" -msgstr "" - -#. name for cuh -msgid "Chuka" -msgstr "" - -#. name for cui -msgid "Cuiba" -msgstr "" - -#. name for cuj -msgid "Mashco Piro" -msgstr "" - -#. name for cuk -msgid "Kuna; San Blas" -msgstr "" - -#. name for cul -msgid "Culina" -msgstr "" - -#. name for cum -msgid "Cumeral" -msgstr "" - -#. name for cuo -msgid "Cumanagoto" -msgstr "" - -#. name for cup -msgid "Cupeño" -msgstr "" - -#. name for cuq -msgid "Cun" -msgstr "" - -#. name for cur -msgid "Chhulung" -msgstr "" - -#. name for cut -msgid "Cuicatec; Teutila" -msgstr "" - -#. name for cuu -msgid "Tai Ya" -msgstr "" - -#. name for cuv -msgid "Cuvok" -msgstr "" - -#. name for cuw -msgid "Chukwa" -msgstr "" - -#. name for cux -msgid "Cuicatec; Tepeuxila" -msgstr "" - -#. name for cvg -msgid "Chug" -msgstr "" - -#. name for cvn -msgid "Chinantec; Valle Nacional" -msgstr "" - -#. name for cwa -msgid "Kabwa" -msgstr "" - -#. name for cwb -msgid "Maindo" -msgstr "" - -#. name for cwd -msgid "Cree; Woods" -msgstr "" - -#. name for cwe -msgid "Kwere" -msgstr "" - -#. name for cwg -msgid "Chewong" -msgstr "" - -#. name for cwt -msgid "Kuwaataay" -msgstr "" - -#. name for cya -msgid "Chatino; Nopala" -msgstr "" - -#. name for cyb -msgid "Cayubaba" -msgstr "" - -#. name for cym -msgid "Welsh" -msgstr "" - -#. name for cyo -msgid "Cuyonon" -msgstr "" - -#. name for czh -msgid "Chinese; Huizhou" -msgstr "" - -#. name for czk -msgid "Knaanic" -msgstr "" - -#. name for czn -msgid "Chatino; Zenzontepec" -msgstr "" - -#. name for czo -msgid "Chinese; Min Zhong" -msgstr "" - -#. name for czt -msgid "Chin; Zotung" -msgstr "" - -#. name for daa -msgid "Dangaléat" -msgstr "" - -#. name for dac -msgid "Dambi" -msgstr "" - -#. name for dad -msgid "Marik" -msgstr "" - -#. name for dae -msgid "Duupa" -msgstr "" - -#. name for daf -msgid "Dan" -msgstr "" - -#. name for dag -msgid "Dagbani" -msgstr "" - -#. name for dah -msgid "Gwahatike" -msgstr "" - -#. name for dai -msgid "Day" -msgstr "" - -#. name for daj -msgid "Daju; Dar Fur" -msgstr "" - -#. name for dak -msgid "Dakota" -msgstr "" - -#. name for dal -msgid "Dahalo" -msgstr "" - -#. name for dam -msgid "Damakawa" -msgstr "" - -#. name for dan -msgid "Danish" -msgstr "" - -#. name for dao -msgid "Chin; Daai" -msgstr "" - -#. name for dap -msgid "Nisi (India)" -msgstr "" - -#. name for daq -msgid "Maria; Dandami" -msgstr "" - -#. name for dar -msgid "Dargwa" -msgstr "" - -#. name for das -msgid "Daho-Doo" -msgstr "" - -#. name for dau -msgid "Daju; Dar Sila" -msgstr "" - -#. name for dav -msgid "Taita" -msgstr "" - -#. name for daw -msgid "Davawenyo" -msgstr "" - -#. name for dax -msgid "Dayi" -msgstr "" - -#. name for daz -msgid "Dao" -msgstr "" - -#. name for dba -msgid "Bangi Me" -msgstr "" - -#. name for dbb -msgid "Deno" -msgstr "" - -#. name for dbd -msgid "Dadiya" -msgstr "" - -#. name for dbe -msgid "Dabe" -msgstr "" - -#. name for dbf -msgid "Edopi" -msgstr "" - -#. name for dbg -msgid "Dogon; Dogul Dom" -msgstr "" - -#. name for dbi -msgid "Doka" -msgstr "" - -#. name for dbj -msgid "Ida'an" -msgstr "" - -#. name for dbl -msgid "Dyirbal" -msgstr "" - -#. name for dbm -msgid "Duguri" -msgstr "" - -#. name for dbn -msgid "Duriankere" -msgstr "" - -#. name for dbo -msgid "Dulbu" -msgstr "" - -#. name for dbp -msgid "Duwai" -msgstr "" - -#. name for dbq -msgid "Daba" -msgstr "" - -#. name for dbr -msgid "Dabarre" -msgstr "" - -#. name for dbu -msgid "Dogon; Bondum Dom" -msgstr "" - -#. name for dbv -msgid "Dungu" -msgstr "" - -#. name for dby -msgid "Dibiyaso" -msgstr "" - -#. name for dcc -msgid "Deccan" -msgstr "" - -#. name for dcr -msgid "Negerhollands" -msgstr "" - -#. name for ddd -msgid "Dongotono" -msgstr "" - -#. name for dde -msgid "Doondo" -msgstr "" - -#. name for ddg -msgid "Fataluku" -msgstr "" - -#. name for ddi -msgid "Goodenough; West" -msgstr "" - -#. name for ddj -msgid "Jaru" -msgstr "" - -#. name for ddn -msgid "Dendi (Benin)" -msgstr "" - -#. name for ddo -msgid "Dido" -msgstr "" - -#. name for dds -msgid "Dogon; Donno So" -msgstr "" - -#. name for ddw -msgid "Dawera-Daweloor" -msgstr "" - -#. name for dec -msgid "Dagik" -msgstr "" - -#. name for ded -msgid "Dedua" -msgstr "" - -#. name for dee -msgid "Dewoin" -msgstr "" - -#. name for def -msgid "Dezfuli" -msgstr "" - -#. name for deg -msgid "Degema" -msgstr "" - -#. name for deh -msgid "Dehwari" -msgstr "" - -#. name for dei -msgid "Demisa" -msgstr "" - -#. name for dek -msgid "Dek" -msgstr "" - -#. name for del -msgid "Delaware" -msgstr "" - -#. name for dem -msgid "Dem" -msgstr "" - -#. name for den -msgid "Slave (Athapascan)" -msgstr "" - -#. name for dep -msgid "Delaware; Pidgin" -msgstr "" - -#. name for deq -msgid "Dendi (Central African Republic)" -msgstr "" - -#. name for der -msgid "Deori" -msgstr "" - -#. name for des -msgid "Desano" -msgstr "" - -#. name for deu -msgid "German" -msgstr "" - -#. name for dev -msgid "Domung" -msgstr "" - -#. name for dez -msgid "Dengese" -msgstr "" - -#. name for dga -msgid "Dagaare; Southern" -msgstr "" - -#. name for dgb -msgid "Dogon; Bunoge" -msgstr "" - -#. name for dgc -msgid "Agta; Casiguran Dumagat" -msgstr "" - -#. name for dgd -msgid "Dagaari Dioula" -msgstr "" - -#. name for dge -msgid "Degenan" -msgstr "" - -#. name for dgg -msgid "Doga" -msgstr "" - -#. name for dgh -msgid "Dghwede" -msgstr "" - -#. name for dgi -msgid "Dagara; Northern" -msgstr "" - -#. name for dgk -msgid "Dagba" -msgstr "" - -#. name for dgn -msgid "Dagoman" -msgstr "" - -#. name for dgo -msgid "Dogri (individual language)" -msgstr "" - -#. name for dgr -msgid "Dogrib" -msgstr "" - -#. name for dgs -msgid "Dogoso" -msgstr "" - -#. name for dgu -msgid "Degaru" -msgstr "" - -#. name for dgx -msgid "Doghoro" -msgstr "" - -#. name for dgz -msgid "Daga" -msgstr "" - -#. name for dhd -msgid "Dhundari" -msgstr "" - -#. name for dhg -msgid "Dhangu" -msgstr "" - -#. name for dhi -msgid "Dhimal" -msgstr "" - -#. name for dhl -msgid "Dhalandji" -msgstr "" - -#. name for dhm -msgid "Zemba" -msgstr "" - -#. name for dhn -msgid "Dhanki" -msgstr "" - -#. name for dho -msgid "Dhodia" -msgstr "" - -#. name for dhr -msgid "Dhargari" -msgstr "" - -#. name for dhs -msgid "Dhaiso" -msgstr "" - -#. name for dhu -msgid "Dhurga" -msgstr "" - -#. name for dhv -msgid "Dehu" -msgstr "" - -#. name for dhw -msgid "Dhanwar (Nepal)" -msgstr "" - -#. name for dia -msgid "Dia" -msgstr "" - -#. name for dib -msgid "Dinka; South Central" -msgstr "" - -#. name for dic -msgid "Dida; Lakota" -msgstr "" - -#. name for did -msgid "Didinga" -msgstr "" - -#. name for dif -msgid "Dieri" -msgstr "" - -#. name for dig -msgid "Digo" -msgstr "" - -#. name for dih -msgid "Kumiai" -msgstr "" - -#. name for dii -msgid "Dimbong" -msgstr "" - -#. name for dij -msgid "Dai" -msgstr "" - -#. name for dik -msgid "Dinka; Southwestern" -msgstr "" - -#. name for dil -msgid "Dilling" -msgstr "" - -#. name for dim -msgid "Dime" -msgstr "" - -#. name for din -msgid "Dinka" -msgstr "" - -#. name for dio -msgid "Dibo" -msgstr "" - -#. name for dip -msgid "Dinka; Northeastern" -msgstr "" - -#. name for diq -msgid "Dimli (individual language)" -msgstr "" - -#. name for dir -msgid "Dirim" -msgstr "" - -#. name for dis -msgid "Dimasa" -msgstr "" - -#. name for dit -msgid "Dirari" -msgstr "" - -#. name for diu -msgid "Diriku" -msgstr "" - -#. name for div -msgid "Dhivehi" -msgstr "" - -#. name for diw -msgid "Dinka; Northwestern" -msgstr "" - -#. name for dix -msgid "Dixon Reef" -msgstr "" - -#. name for diy -msgid "Diuwe" -msgstr "" - -#. name for diz -msgid "Ding" -msgstr "" - -#. name for djb -msgid "Djinba" -msgstr "" - -#. name for djc -msgid "Daju; Dar Daju" -msgstr "" - -#. name for djd -msgid "Djamindjung" -msgstr "" - -#. name for dje -msgid "Zarma" -msgstr "" - -#. name for djf -msgid "Djangun" -msgstr "" - -#. name for dji -msgid "Djinang" -msgstr "" - -#. name for djj -msgid "Djeebbana" -msgstr "" - -#. name for djk -msgid "Eastern Maroon Creole" -msgstr "" - -#. name for djl -msgid "Djiwarli" -msgstr "" - -#. name for djm -msgid "Dogon; Jamsay" -msgstr "" - -#. name for djn -msgid "Djauan" -msgstr "" - -#. name for djo -msgid "Jangkang" -msgstr "" - -#. name for djr -msgid "Djambarrpuyngu" -msgstr "" - -#. name for dju -msgid "Kapriman" -msgstr "" - -#. name for djw -msgid "Djawi" -msgstr "" - -#. name for dka -msgid "Dakpakha" -msgstr "" - -#. name for dkk -msgid "Dakka" -msgstr "" - -#. name for dkr -msgid "Kuijau" -msgstr "" - -#. name for dks -msgid "Dinka; Southeastern" -msgstr "" - -#. name for dkx -msgid "Mazagway" -msgstr "" - -#. name for dlg -msgid "Dolgan" -msgstr "" - -#. name for dlm -msgid "Dalmatian" -msgstr "" - -#. name for dln -msgid "Darlong" -msgstr "" - -#. name for dma -msgid "Duma" -msgstr "" - -#. name for dmb -msgid "Dogon; Mombo" -msgstr "" - -#. name for dmc -msgid "Dimir" -msgstr "" - -#. name for dme -msgid "Dugwor" -msgstr "" - -#. name for dmg -msgid "Kinabatangan; Upper" -msgstr "" - -#. name for dmk -msgid "Domaaki" -msgstr "" - -#. name for dml -msgid "Dameli" -msgstr "" - -#. name for dmm -msgid "Dama" -msgstr "" - -#. name for dmo -msgid "Kemezung" -msgstr "" - -#. name for dmr -msgid "Damar; East" -msgstr "" - -#. name for dms -msgid "Dampelas" -msgstr "" - -#. name for dmu -msgid "Dubu" -msgstr "" - -#. name for dmv -msgid "Dumpas" -msgstr "" - -#. name for dmx -msgid "Dema" -msgstr "" - -#. name for dmy -msgid "Demta" -msgstr "" - -#. name for dna -msgid "Dani; Upper Grand Valley" -msgstr "" - -#. name for dnd -msgid "Daonda" -msgstr "" - -#. name for dne -msgid "Ndendeule" -msgstr "" - -#. name for dng -msgid "Dungan" -msgstr "" - -#. name for dni -msgid "Dani; Lower Grand Valley" -msgstr "" - -#. name for dnk -msgid "Dengka" -msgstr "" - -#. name for dnn -msgid "Dzùùngoo" -msgstr "" - -#. name for dnr -msgid "Danaru" -msgstr "" - -#. name for dnt -msgid "Dani; Mid Grand Valley" -msgstr "" - -#. name for dnu -msgid "Danau" -msgstr "" - -#. name for dnw -msgid "Dani; Western" -msgstr "" - -#. name for dny -msgid "Dení" -msgstr "" - -#. name for doa -msgid "Dom" -msgstr "" - -#. name for dob -msgid "Dobu" -msgstr "" - -#. name for doc -msgid "Dong; Northern" -msgstr "" - -#. name for doe -msgid "Doe" -msgstr "" - -#. name for dof -msgid "Domu" -msgstr "" - -#. name for doh -msgid "Dong" -msgstr "" - -#. name for doi -msgid "Dogri (macrolanguage)" -msgstr "" - -#. name for dok -msgid "Dondo" -msgstr "" - -#. name for dol -msgid "Doso" -msgstr "" - -#. name for don -msgid "Toura (Papua New Guinea)" -msgstr "" - -#. name for doo -msgid "Dongo" -msgstr "" - -#. name for dop -msgid "Lukpa" -msgstr "" - -#. name for doq -msgid "Dominican Sign Language" -msgstr "" - -#. name for dor -msgid "Dori'o" -msgstr "" - -#. name for dos -msgid "Dogosé" -msgstr "" - -#. name for dot -msgid "Dass" -msgstr "" - -#. name for dov -msgid "Dombe" -msgstr "" - -#. name for dow -msgid "Doyayo" -msgstr "" - -#. name for dox -msgid "Bussa" -msgstr "" - -#. name for doy -msgid "Dompo" -msgstr "" - -#. name for doz -msgid "Dorze" -msgstr "" - -#. name for dpp -msgid "Papar" -msgstr "" - -#. name for drb -msgid "Dair" -msgstr "" - -#. name for drc -msgid "Minderico" -msgstr "" - -#. name for drd -msgid "Darmiya" -msgstr "" - -#. name for dre -msgid "Dolpo" -msgstr "" - -#. name for drg -msgid "Rungus" -msgstr "" - -#. name for dri -msgid "C'lela" -msgstr "" - -#. name for drl -msgid "Darling" -msgstr "" - -#. name for drn -msgid "Damar; West" -msgstr "" - -#. name for dro -msgid "Melanau; Daro-Matu" -msgstr "" - -#. name for drq -msgid "Dura" -msgstr "" - -#. name for drr -msgid "Dororo" -msgstr "" - -#. name for drs -msgid "Gedeo" -msgstr "" - -#. name for drt -msgid "Drents" -msgstr "" - -#. name for dru -msgid "Rukai" -msgstr "" - -#. name for dry -msgid "Darai" -msgstr "" - -#. name for dsb -msgid "Sorbian; Lower" -msgstr "" - -#. name for dse -msgid "Dutch Sign Language" -msgstr "" - -#. name for dsh -msgid "Daasanach" -msgstr "" - -#. name for dsi -msgid "Disa" -msgstr "" - -#. name for dsl -msgid "Danish Sign Language" -msgstr "" - -#. name for dsn -msgid "Dusner" -msgstr "" - -#. name for dso -msgid "Desiya" -msgstr "" - -#. name for dsq -msgid "Tadaksahak" -msgstr "" - -#. name for dta -msgid "Daur" -msgstr "" - -#. name for dtb -msgid "Kadazan; Labuk-Kinabatangan" -msgstr "" - -#. name for dtd -msgid "Ditidaht" -msgstr "" - -#. name for dti -msgid "Dogon; Ana Tinga" -msgstr "" - -#. name for dtk -msgid "Dogon; Tene Kan" -msgstr "" - -#. name for dtm -msgid "Dogon; Tomo Kan" -msgstr "" - -#. name for dtp -msgid "Dusun; Central" -msgstr "" - -#. name for dtr -msgid "Lotud" -msgstr "" - -#. name for dts -msgid "Dogon; Toro So" -msgstr "" - -#. name for dtt -msgid "Dogon; Toro Tegu" -msgstr "" - -#. name for dtu -msgid "Dogon; Tebul Ure" -msgstr "" - -#. name for dua -msgid "Duala" -msgstr "" - -#. name for dub -msgid "Dubli" -msgstr "" - -#. name for duc -msgid "Duna" -msgstr "" - -#. name for dud -msgid "Hun-Saare" -msgstr "" - -#. name for due -msgid "Agta; Umiray Dumaget" -msgstr "" - -#. name for duf -msgid "Dumbea" -msgstr "" - -#. name for dug -msgid "Duruma" -msgstr "" - -#. name for duh -msgid "Dungra Bhil" -msgstr "" - -#. name for dui -msgid "Dumun" -msgstr "" - -#. name for duj -msgid "Dhuwal" -msgstr "" - -#. name for duk -msgid "Uyajitaya" -msgstr "" - -#. name for dul -msgid "Agta; Alabat Island" -msgstr "" - -#. name for dum -msgid "Dutch; Middle (ca. 1050-1350)" -msgstr "" - -#. name for dun -msgid "Dusun Deyah" -msgstr "" - -#. name for duo -msgid "Agta; Dupaninan" -msgstr "" - -#. name for dup -msgid "Duano" -msgstr "" - -#. name for duq -msgid "Dusun Malang" -msgstr "" - -#. name for dur -msgid "Dii" -msgstr "" - -#. name for dus -msgid "Dumi" -msgstr "" - -#. name for duu -msgid "Drung" -msgstr "" - -#. name for duv -msgid "Duvle" -msgstr "" - -#. name for duw -msgid "Dusun Witu" -msgstr "" - -#. name for dux -msgid "Duungooma" -msgstr "" - -#. name for duy -msgid "Agta; Dicamay" -msgstr "" - -#. name for duz -msgid "Duli" -msgstr "" - -#. name for dva -msgid "Duau" -msgstr "" - -#. name for dwa -msgid "Diri" -msgstr "" - -#. name for dwl -msgid "Dogon; Walo Kumbe" -msgstr "" - -#. name for dwr -msgid "Dawro" -msgstr "" - -#. name for dws -msgid "Dutton World Speedwords" -msgstr "" - -#. name for dww -msgid "Dawawa" -msgstr "" - -#. name for dya -msgid "Dyan" -msgstr "" - -#. name for dyb -msgid "Dyaberdyaber" -msgstr "" - -#. name for dyd -msgid "Dyugun" -msgstr "" - -#. name for dyg -msgid "Agta; Villa Viciosa" -msgstr "" - -#. name for dyi -msgid "Senoufo; Djimini" -msgstr "" - -#. name for dym -msgid "Dogon; Yanda Dom" -msgstr "" - -#. name for dyn -msgid "Dyangadi" -msgstr "" - -#. name for dyo -msgid "Jola-Fonyi" -msgstr "" - -#. name for dyu -msgid "Dyula" -msgstr "" - -#. name for dyy -msgid "Dyaabugay" -msgstr "" - -#. name for dza -msgid "Tunzu" -msgstr "" - -#. name for dzd -msgid "Daza" -msgstr "" - -#. name for dzg -msgid "Dazaga" -msgstr "" - -#. name for dzl -msgid "Dzalakha" -msgstr "" - -#. name for dzn -msgid "Dzando" -msgstr "" - -#. name for dzo -msgid "Dzongkha" -msgstr "" - -#. name for ebg -msgid "Ebughu" -msgstr "" - -#. name for ebk -msgid "Bontok; Eastern" -msgstr "" - -#. name for ebo -msgid "Teke-Ebo" -msgstr "" - -#. name for ebr -msgid "Ebrié" -msgstr "" - -#. name for ebu -msgid "Embu" -msgstr "" - -#. name for ecr -msgid "Eteocretan" -msgstr "" - -#. name for ecs -msgid "Ecuadorian Sign Language" -msgstr "" - -#. name for ecy -msgid "Eteocypriot" -msgstr "" - -#. name for eee -msgid "E" -msgstr "" - -#. name for efa -msgid "Efai" -msgstr "" - -#. name for efe -msgid "Efe" -msgstr "" - -#. name for efi -msgid "Efik" -msgstr "" - -#. name for ega -msgid "Ega" -msgstr "" - -#. name for egl -msgid "Emilian" -msgstr "" - -#. name for ego -msgid "Eggon" -msgstr "" - -#. name for egy -msgid "Egyptian (Ancient)" -msgstr "" - -#. name for ehu -msgid "Ehueun" -msgstr "" - -#. name for eip -msgid "Eipomek" -msgstr "" - -#. name for eit -msgid "Eitiep" -msgstr "" - -#. name for eiv -msgid "Askopan" -msgstr "" - -#. name for eja -msgid "Ejamat" -msgstr "" - -#. name for eka -msgid "Ekajuk" -msgstr "" - -#. name for eke -msgid "Ekit" -msgstr "" - -#. name for ekg -msgid "Ekari" -msgstr "" - -#. name for eki -msgid "Eki" -msgstr "" - -#. name for ekk -msgid "Estonian; Standard" -msgstr "" - -#. name for ekl -msgid "Kol" -msgstr "" - -#. name for ekm -msgid "Elip" -msgstr "" - -#. name for eko -msgid "Koti" -msgstr "" - -#. name for ekp -msgid "Ekpeye" -msgstr "" - -#. name for ekr -msgid "Yace" -msgstr "" - -#. name for eky -msgid "Kayah; Eastern" -msgstr "" - -#. name for ele -msgid "Elepi" -msgstr "" - -#. name for elh -msgid "El Hugeirat" -msgstr "" - -#. name for eli -msgid "Nding" -msgstr "" - -#. name for elk -msgid "Elkei" -msgstr "" - -#. name for ell -msgid "Greek; Modern (1453-)" -msgstr "" - -#. name for elm -msgid "Eleme" -msgstr "" - -#. name for elo -msgid "El Molo" -msgstr "" - -#. name for elp -msgid "Elpaputih" -msgstr "" - -#. name for elu -msgid "Elu" -msgstr "" - -#. name for elx -msgid "Elamite" -msgstr "" - -#. name for ema -msgid "Emai-Iuleha-Ora" -msgstr "" - -#. name for emb -msgid "Embaloh" -msgstr "" - -#. name for eme -msgid "Emerillon" -msgstr "" - -#. name for emg -msgid "Meohang; Eastern" -msgstr "" - -#. name for emi -msgid "Mussau-Emira" -msgstr "" - -#. name for emk -msgid "Maninkakan; Eastern" -msgstr "" - -#. name for emm -msgid "Mamulique" -msgstr "" - -#. name for emn -msgid "Eman" -msgstr "" - -#. name for emo -msgid "Emok" -msgstr "" - -#. name for emp -msgid "Emberá; Northern" -msgstr "" - -#. name for ems -msgid "Yupik; Pacific Gulf" -msgstr "" - -#. name for emu -msgid "Muria; Eastern" -msgstr "" - -#. name for emw -msgid "Emplawas" -msgstr "" - -#. name for emx -msgid "Erromintxela" -msgstr "" - -#. name for emy -msgid "Mayan; Epigraphic" -msgstr "" - -#. name for ena -msgid "Apali" -msgstr "" - -#. name for enb -msgid "Markweeta" -msgstr "" - -#. name for enc -msgid "En" -msgstr "" - -#. name for end -msgid "Ende" -msgstr "" - -#. name for enf -msgid "Enets; Forest" -msgstr "" - -#. name for eng -msgid "English" -msgstr "" - -#. name for enh -msgid "Enets; Tundra" -msgstr "" - -#. name for enm -msgid "English; Middle (1100-1500)" -msgstr "" - -#. name for enn -msgid "Engenni" -msgstr "" - -#. name for eno -msgid "Enggano" -msgstr "" - -#. name for enq -msgid "Enga" -msgstr "" - -#. name for enr -msgid "Emumu" -msgstr "" - -#. name for enu -msgid "Enu" -msgstr "" - -#. name for env -msgid "Enwan (Edu State)" -msgstr "" - -#. name for enw -msgid "Enwan (Akwa Ibom State)" -msgstr "" - -#. name for eot -msgid "Beti (Côte d'Ivoire)" -msgstr "" - -#. name for epi -msgid "Epie" -msgstr "" - -#. name for epo -msgid "Esperanto" -msgstr "" - -#. name for era -msgid "Eravallan" -msgstr "" - -#. name for erg -msgid "Sie" -msgstr "" - -#. name for erh -msgid "Eruwa" -msgstr "" - -#. name for eri -msgid "Ogea" -msgstr "" - -#. name for erk -msgid "Efate; South" -msgstr "" - -#. name for ero -msgid "Horpa" -msgstr "" - -#. name for err -msgid "Erre" -msgstr "" - -#. name for ers -msgid "Ersu" -msgstr "" - -#. name for ert -msgid "Eritai" -msgstr "" - -#. name for erw -msgid "Erokwanas" -msgstr "" - -#. name for ese -msgid "Ese Ejja" -msgstr "" - -#. name for esh -msgid "Eshtehardi" -msgstr "" - -#. name for esi -msgid "Inupiatun; North Alaskan" -msgstr "" - -#. name for esk -msgid "Inupiatun; Northwest Alaska" -msgstr "" - -#. name for esl -msgid "Egypt Sign Language" -msgstr "" - -#. name for esm -msgid "Esuma" -msgstr "" - -#. name for esn -msgid "Salvadoran Sign Language" -msgstr "" - -#. name for eso -msgid "Estonian Sign Language" -msgstr "" - -#. name for esq -msgid "Esselen" -msgstr "" - -#. name for ess -msgid "Yupik; Central Siberian" -msgstr "" - -#. name for est -msgid "Estonian" -msgstr "" - -#. name for esu -msgid "Yupik; Central" -msgstr "" - -#. name for etb -msgid "Etebi" -msgstr "" - -#. name for etc -msgid "Etchemin" -msgstr "" - -#. name for eth -msgid "Ethiopian Sign Language" -msgstr "" - -#. name for etn -msgid "Eton (Vanuatu)" -msgstr "" - -#. name for eto -msgid "Eton (Cameroon)" -msgstr "" - -#. name for etr -msgid "Edolo" -msgstr "" - -#. name for ets -msgid "Yekhee" -msgstr "" - -#. name for ett -msgid "Etruscan" -msgstr "" - -#. name for etu -msgid "Ejagham" -msgstr "" - -#. name for etx -msgid "Eten" -msgstr "" - -#. name for etz -msgid "Semimi" -msgstr "" - -#. name for eus -msgid "Basque" -msgstr "" - -#. name for eve -msgid "Even" -msgstr "" - -#. name for evh -msgid "Uvbie" -msgstr "" - -#. name for evn -msgid "Evenki" -msgstr "" - -#. name for ewe -msgid "Ewe" -msgstr "" - -#. name for ewo -msgid "Ewondo" -msgstr "" - -#. name for ext -msgid "Extremaduran" -msgstr "" - -#. name for eya -msgid "Eyak" -msgstr "" - -#. name for eyo -msgid "Keiyo" -msgstr "" - -#. name for eze -msgid "Uzekwe" -msgstr "" - -#. name for faa -msgid "Fasu" -msgstr "" - -#. name for fab -msgid "Fa D'ambu" -msgstr "" - -#. name for fad -msgid "Wagi" -msgstr "" - -#. name for faf -msgid "Fagani" -msgstr "" - -#. name for fag -msgid "Finongan" -msgstr "" - -#. name for fah -msgid "Fali; Baissa" -msgstr "" - -#. name for fai -msgid "Faiwol" -msgstr "" - -#. name for faj -msgid "Faita" -msgstr "" - -#. name for fak -msgid "Fang (Cameroon)" -msgstr "" - -#. name for fal -msgid "Fali; South" -msgstr "" - -#. name for fam -msgid "Fam" -msgstr "" - -#. name for fan -msgid "Fang (Equatorial Guinea)" -msgstr "" - -#. name for fao -msgid "Faroese" -msgstr "" - -#. name for fap -msgid "Palor" -msgstr "" - -#. name for far -msgid "Fataleka" -msgstr "" - -#. name for fas -msgid "Persian" -msgstr "" - -#. name for fat -msgid "Fanti" -msgstr "" - -#. name for fau -msgid "Fayu" -msgstr "" - -#. name for fax -msgid "Fala" -msgstr "" - -#. name for fay -msgid "Fars; Southwestern" -msgstr "" - -#. name for faz -msgid "Fars; Northwestern" -msgstr "" - -#. name for fbl -msgid "Bikol; West Albay" -msgstr "" - -#. name for fcs -msgid "Quebec Sign Language" -msgstr "" - -#. name for fer -msgid "Feroge" -msgstr "" - -#. name for ffi -msgid "Foia Foia" -msgstr "" - -#. name for ffm -msgid "Fulfulde; Maasina" -msgstr "" - -#. name for fgr -msgid "Fongoro" -msgstr "" - -#. name for fia -msgid "Nobiin" -msgstr "" - -#. name for fie -msgid "Fyer" -msgstr "" - -#. name for fij -msgid "Fijian" -msgstr "" - -#. name for fil -msgid "Filipino" -msgstr "" - -#. name for fin -msgid "Finnish" -msgstr "" - -#. name for fip -msgid "Fipa" -msgstr "" - -#. name for fir -msgid "Firan" -msgstr "" - -#. name for fit -msgid "Finnish; Tornedalen" -msgstr "" - -#. name for fiw -msgid "Fiwaga" -msgstr "" - -#. name for fkv -msgid "Finnish; Kven" -msgstr "" - -#. name for fla -msgid "Kalispel-Pend d'Oreille" -msgstr "" - -#. name for flh -msgid "Foau" -msgstr "" - -#. name for fli -msgid "Fali" -msgstr "" - -#. name for fll -msgid "Fali; North" -msgstr "" - -#. name for fln -msgid "Flinders Island" -msgstr "" - -#. name for flr -msgid "Fuliiru" -msgstr "" - -#. name for fly -msgid "Tsotsitaal" -msgstr "" - -#. name for fmp -msgid "Fe'fe'" -msgstr "" - -#. name for fmu -msgid "Muria; Far Western" -msgstr "" - -#. name for fng -msgid "Fanagalo" -msgstr "" - -#. name for fni -msgid "Fania" -msgstr "" - -#. name for fod -msgid "Foodo" -msgstr "" - -#. name for foi -msgid "Foi" -msgstr "" - -#. name for fom -msgid "Foma" -msgstr "" - -#. name for fon -msgid "Fon" -msgstr "" - -#. name for for -msgid "Fore" -msgstr "" - -#. name for fos -msgid "Siraya" -msgstr "" - -#. name for fpe -msgid "Creole English; Fernando Po" -msgstr "" - -#. name for fqs -msgid "Fas" -msgstr "" - -#. name for fra -msgid "French" -msgstr "" - -#. name for frc -msgid "French; Cajun" -msgstr "" - -#. name for frd -msgid "Fordata" -msgstr "" - -#. name for frk -msgid "Frankish" -msgstr "" - -#. name for frm -msgid "French; Middle (ca. 1400-1600)" -msgstr "" - -#. name for fro -msgid "French; Old (842-ca. 1400)" -msgstr "" - -#. name for frp -msgid "Arpitan" -msgstr "" - -#. name for frq -msgid "Forak" -msgstr "" - -#. name for frr -msgid "Frisian; Northern" -msgstr "" - -#. name for frs -msgid "Frisian; Eastern" -msgstr "" - -#. name for frt -msgid "Fortsenal" -msgstr "" - -#. name for fry -msgid "Frisian; Western" -msgstr "" - -#. name for fse -msgid "Finnish Sign Language" -msgstr "" - -#. name for fsl -msgid "French Sign Language" -msgstr "" - -#. name for fss -msgid "Finland-Swedish Sign Language" -msgstr "" - -#. name for fub -msgid "Fulfulde; Adamawa" -msgstr "" - -#. name for fuc -msgid "Pulaar" -msgstr "" - -#. name for fud -msgid "Futuna; East" -msgstr "" - -#. name for fue -msgid "Fulfulde; Borgu" -msgstr "" - -#. name for fuf -msgid "Pular" -msgstr "" - -#. name for fuh -msgid "Fulfulde; Western Niger" -msgstr "" - -#. name for fui -msgid "Fulfulde; Bagirmi" -msgstr "" - -#. name for fuj -msgid "Ko" -msgstr "" - -#. name for ful -msgid "Fulah" -msgstr "" - -#. name for fum -msgid "Fum" -msgstr "" - -#. name for fun -msgid "Fulniô" -msgstr "" - -#. name for fuq -msgid "Fulfulde; Central-Eastern Niger" -msgstr "" - -#. name for fur -msgid "Friulian" -msgstr "" - -#. name for fut -msgid "Futuna-Aniwa" -msgstr "" - -#. name for fuu -msgid "Furu" -msgstr "" - -#. name for fuv -msgid "Fulfulde; Nigerian" -msgstr "" - -#. name for fuy -msgid "Fuyug" -msgstr "" - -#. name for fvr -msgid "Fur" -msgstr "" - -#. name for fwa -msgid "Fwâi" -msgstr "" - -#. name for fwe -msgid "Fwe" -msgstr "" - -#. name for gaa -msgid "Ga" -msgstr "" - -#. name for gab -msgid "Gabri" -msgstr "" - -#. name for gac -msgid "Great Andamanese; Mixed" -msgstr "" - -#. name for gad -msgid "Gaddang" -msgstr "" - -#. name for gae -msgid "Guarequena" -msgstr "" - -#. name for gaf -msgid "Gende" -msgstr "" - -#. name for gag -msgid "Gagauz" -msgstr "" - -#. name for gah -msgid "Alekano" -msgstr "" - -#. name for gai -msgid "Borei" -msgstr "" - -#. name for gaj -msgid "Gadsup" -msgstr "" - -#. name for gak -msgid "Gamkonora" -msgstr "" - -#. name for gal -msgid "Galoli" -msgstr "" - -#. name for gam -msgid "Kandawo" -msgstr "" - -#. name for gan -msgid "Chinese; Gan" -msgstr "" - -#. name for gao -msgid "Gants" -msgstr "" - -#. name for gap -msgid "Gal" -msgstr "" - -#. name for gaq -msgid "Gata'" -msgstr "" - -#. name for gar -msgid "Galeya" -msgstr "" - -#. name for gas -msgid "Garasia; Adiwasi" -msgstr "" - -#. name for gat -msgid "Kenati" -msgstr "" - -#. name for gau -msgid "Gadaba; Mudhili" -msgstr "" - -#. name for gaw -msgid "Nobonob" -msgstr "" - -#. name for gax -msgid "Oromo; Borana-Arsi-Guji" -msgstr "" - -#. name for gay -msgid "Gayo" -msgstr "" - -#. name for gaz -msgid "Oromo; West Central" -msgstr "" - -#. name for gba -msgid "Gbaya (Central African Republic)" -msgstr "" - -#. name for gbb -msgid "Kaytetye" -msgstr "" - -#. name for gbc -msgid "Garawa" -msgstr "" - -#. name for gbd -msgid "Karadjeri" -msgstr "" - -#. name for gbe -msgid "Niksek" -msgstr "" - -#. name for gbf -msgid "Gaikundi" -msgstr "" - -#. name for gbg -msgid "Gbanziri" -msgstr "" - -#. name for gbh -msgid "Gbe; Defi" -msgstr "" - -#. name for gbi -msgid "Galela" -msgstr "" - -#. name for gbj -msgid "Gadaba; Bodo" -msgstr "" - -#. name for gbk -msgid "Gaddi" -msgstr "" - -#. name for gbl -msgid "Gamit" -msgstr "" - -#. name for gbm -msgid "Garhwali" -msgstr "" - -#. name for gbn -msgid "Mo'da" -msgstr "" - -#. name for gbo -msgid "Grebo; Northern" -msgstr "" - -#. name for gbp -msgid "Gbaya-Bossangoa" -msgstr "" - -#. name for gbq -msgid "Gbaya-Bozoum" -msgstr "" - -#. name for gbr -msgid "Gbagyi" -msgstr "" - -#. name for gbs -msgid "Gbe; Gbesi" -msgstr "" - -#. name for gbu -msgid "Gagadu" -msgstr "" - -#. name for gbv -msgid "Gbanu" -msgstr "" - -#. name for gbx -msgid "Gbe; Eastern Xwla" -msgstr "" - -#. name for gby -msgid "Gbari" -msgstr "" - -#. name for gbz -msgid "Dari; Zoroastrian" -msgstr "" - -#. name for gcc -msgid "Mali" -msgstr "" - -#. name for gcd -msgid "Ganggalida" -msgstr "" - -#. name for gce -msgid "Galice" -msgstr "" - -#. name for gcf -msgid "Creole French; Guadeloupean" -msgstr "" - -#. name for gcl -msgid "Creole English; Grenadian" -msgstr "" - -#. name for gcn -msgid "Gaina" -msgstr "" - -#. name for gcr -msgid "Creole French; Guianese" -msgstr "" - -#. name for gct -msgid "German; Colonia Tovar" -msgstr "" - -#. name for gda -msgid "Lohar; Gade" -msgstr "" - -#. name for gdb -msgid "Gadaba; Pottangi Ollar" -msgstr "" - -#. name for gdc -msgid "Gugu Badhun" -msgstr "" - -#. name for gdd -msgid "Gedaged" -msgstr "" - -#. name for gde -msgid "Gude" -msgstr "" - -#. name for gdf -msgid "Guduf-Gava" -msgstr "" - -#. name for gdg -msgid "Ga'dang" -msgstr "" - -#. name for gdh -msgid "Gadjerawang" -msgstr "" - -#. name for gdi -msgid "Gundi" -msgstr "" - -#. name for gdj -msgid "Gurdjar" -msgstr "" - -#. name for gdk -msgid "Gadang" -msgstr "" - -#. name for gdl -msgid "Dirasha" -msgstr "" - -#. name for gdm -msgid "Laal" -msgstr "" - -#. name for gdn -msgid "Umanakaina" -msgstr "" - -#. name for gdo -msgid "Ghodoberi" -msgstr "" - -#. name for gdq -msgid "Mehri" -msgstr "" - -#. name for gdr -msgid "Wipi" -msgstr "" - -#. name for gdu -msgid "Gudu" -msgstr "" - -#. name for gdx -msgid "Godwari" -msgstr "" - -#. name for gea -msgid "Geruma" -msgstr "" - -#. name for geb -msgid "Kire" -msgstr "" - -#. name for gec -msgid "Grebo; Gboloo" -msgstr "" - -#. name for ged -msgid "Gade" -msgstr "" - -#. name for geg -msgid "Gengle" -msgstr "" - -#. name for geh -msgid "German; Hutterite" -msgstr "" - -#. name for gei -msgid "Gebe" -msgstr "" - -#. name for gej -msgid "Gen" -msgstr "" - -#. name for gek -msgid "Yiwom" -msgstr "" - -#. name for gel -msgid "ut-Ma'in" -msgstr "" - -#. name for geq -msgid "Geme" -msgstr "" - -#. name for ges -msgid "Geser-Gorom" -msgstr "" - -#. name for gew -msgid "Gera" -msgstr "" - -#. name for gex -msgid "Garre" -msgstr "" - -#. name for gey -msgid "Enya" -msgstr "" - -#. name for gez -msgid "Geez" -msgstr "" - -#. name for gfk -msgid "Patpatar" -msgstr "" - -#. name for gft -msgid "Gafat" -msgstr "" - -#. name for gga -msgid "Gao" -msgstr "" - -#. name for ggb -msgid "Gbii" -msgstr "" - -#. name for ggd -msgid "Gugadj" -msgstr "" - -#. name for gge -msgid "Guragone" -msgstr "" - -#. name for ggg -msgid "Gurgula" -msgstr "" - -#. name for ggk -msgid "Kungarakany" -msgstr "" - -#. name for ggl -msgid "Ganglau" -msgstr "" - -#. name for ggn -msgid "Gurung; Eastern" -msgstr "" - -#. name for ggo -msgid "Gondi; Southern" -msgstr "" - -#. name for ggr -msgid "Aghu Tharnggalu" -msgstr "" - -#. name for ggt -msgid "Gitua" -msgstr "" - -#. name for ggu -msgid "Gagu" -msgstr "" - -#. name for ggw -msgid "Gogodala" -msgstr "" - -#. name for gha -msgid "Ghadamès" -msgstr "" - -#. name for ghc -msgid "Gaelic; Hiberno-Scottish" -msgstr "" - -#. name for ghe -msgid "Ghale; Southern" -msgstr "" - -#. name for ghh -msgid "Ghale; Northern" -msgstr "" - -#. name for ghk -msgid "Karen; Geko" -msgstr "" - -#. name for ghl -msgid "Ghulfan" -msgstr "" - -#. name for ghn -msgid "Ghanongga" -msgstr "" - -#. name for gho -msgid "Ghomara" -msgstr "" - -#. name for ghr -msgid "Ghera" -msgstr "" - -#. name for ghs -msgid "Guhu-Samane" -msgstr "" - -#. name for ght -msgid "Ghale; Kutang" -msgstr "" - -#. name for gia -msgid "Kitja" -msgstr "" - -#. name for gib -msgid "Gibanawa" -msgstr "" - -#. name for gic -msgid "Gail" -msgstr "" - -#. name for gid -msgid "Gidar" -msgstr "" - -#. name for gig -msgid "Goaria" -msgstr "" - -#. name for gil -msgid "Gilbertese" -msgstr "" - -#. name for gim -msgid "Gimi (Eastern Highlands)" -msgstr "" - -#. name for gin -msgid "Hinukh" -msgstr "" - -#. name for gio -msgid "Gelao" -msgstr "" - -#. name for gip -msgid "Gimi (West New Britain)" -msgstr "" - -#. name for giq -msgid "Gelao; Green" -msgstr "" - -#. name for gir -msgid "Gelao; Red" -msgstr "" - -#. name for gis -msgid "Giziga; North" -msgstr "" - -#. name for git -msgid "Gitxsan" -msgstr "" - -#. name for giw -msgid "Gelao; White" -msgstr "" - -#. name for gix -msgid "Gilima" -msgstr "" - -#. name for giy -msgid "Giyug" -msgstr "" - -#. name for giz -msgid "Giziga; South" -msgstr "" - -#. name for gji -msgid "Geji" -msgstr "" - -#. name for gjk -msgid "Koli; Kachi" -msgstr "" - -#. name for gjn -msgid "Gonja" -msgstr "" - -#. name for gju -msgid "Gujari" -msgstr "" - -#. name for gka -msgid "Guya" -msgstr "" - -#. name for gke -msgid "Ndai" -msgstr "" - -#. name for gkn -msgid "Gokana" -msgstr "" - -#. name for gkp -msgid "Kpelle; Guinea" -msgstr "" - -#. name for gla -msgid "Gaelic; Scottish" -msgstr "" - -#. name for glc -msgid "Bon Gula" -msgstr "" - -#. name for gld -msgid "Nanai" -msgstr "" - -#. name for gle -msgid "Irish" -msgstr "" - -#. name for glg -msgid "Galician" -msgstr "" - -#. name for glh -msgid "Pashayi; Northwest" -msgstr "" - -#. name for gli -msgid "Guliguli" -msgstr "" - -#. name for glj -msgid "Gula Iro" -msgstr "" - -#. name for glk -msgid "Gilaki" -msgstr "" - -#. name for glo -msgid "Galambu" -msgstr "" - -#. name for glr -msgid "Glaro-Twabo" -msgstr "" - -#. name for glu -msgid "Gula (Chad)" -msgstr "" - -#. name for glv -msgid "Manx" -msgstr "" - -#. name for glw -msgid "Glavda" -msgstr "" - -#. name for gly -msgid "Gule" -msgstr "" - -#. name for gma -msgid "Gambera" -msgstr "" - -#. name for gmb -msgid "Gula'alaa" -msgstr "" - -#. name for gmd -msgid "Mághdì" -msgstr "" - -#. name for gmh -msgid "German; Middle High (ca. 1050-1500)" -msgstr "" - -#. name for gml -msgid "German; Middle Low" -msgstr "" - -#. name for gmm -msgid "Gbaya-Mbodomo" -msgstr "" - -#. name for gmn -msgid "Gimnime" -msgstr "" - -#. name for gmu -msgid "Gumalu" -msgstr "" - -#. name for gmv -msgid "Gamo" -msgstr "" - -#. name for gmx -msgid "Magoma" -msgstr "" - -#. name for gmy -msgid "Greek; Mycenaean" -msgstr "" - -#. name for gna -msgid "Kaansa" -msgstr "" - -#. name for gnb -msgid "Gangte" -msgstr "" - -#. name for gnc -msgid "Guanche" -msgstr "" - -#. name for gnd -msgid "Zulgo-Gemzek" -msgstr "" - -#. name for gne -msgid "Ganang" -msgstr "" - -#. name for gng -msgid "Ngangam" -msgstr "" - -#. name for gnh -msgid "Lere" -msgstr "" - -#. name for gni -msgid "Gooniyandi" -msgstr "" - -#. name for gnk -msgid "//Gana" -msgstr "" - -#. name for gnl -msgid "Gangulu" -msgstr "" - -#. name for gnm -msgid "Ginuman" -msgstr "" - -#. name for gnn -msgid "Gumatj" -msgstr "" - -#. name for gno -msgid "Gondi; Northern" -msgstr "" - -#. name for gnq -msgid "Gana" -msgstr "" - -#. name for gnr -msgid "Gureng Gureng" -msgstr "" - -#. name for gnt -msgid "Guntai" -msgstr "" - -#. name for gnu -msgid "Gnau" -msgstr "" - -#. name for gnw -msgid "Guaraní; Western Bolivian" -msgstr "" - -#. name for gnz -msgid "Ganzi" -msgstr "" - -#. name for goa -msgid "Guro" -msgstr "" - -#. name for gob -msgid "Playero" -msgstr "" - -#. name for goc -msgid "Gorakor" -msgstr "" - -#. name for god -msgid "Godié" -msgstr "" - -#. name for goe -msgid "Gongduk" -msgstr "" - -#. name for gof -msgid "Gofa" -msgstr "" - -#. name for gog -msgid "Gogo" -msgstr "" - -#. name for goh -msgid "German; Old High (ca. 750-1050)" -msgstr "" - -#. name for goi -msgid "Gobasi" -msgstr "" - -#. name for goj -msgid "Gowlan" -msgstr "" - -#. name for gok -msgid "Gowli" -msgstr "" - -#. name for gol -msgid "Gola" -msgstr "" - -#. name for gom -msgid "Konkani; Goan" -msgstr "" - -#. name for gon -msgid "Gondi" -msgstr "" - -#. name for goo -msgid "Gone Dau" -msgstr "" - -#. name for gop -msgid "Yeretuar" -msgstr "" - -#. name for goq -msgid "Gorap" -msgstr "" - -#. name for gor -msgid "Gorontalo" -msgstr "" - -#. name for gos -msgid "Gronings" -msgstr "" - -#. name for got -msgid "Gothic" -msgstr "" - -#. name for gou -msgid "Gavar" -msgstr "" - -#. name for gow -msgid "Gorowa" -msgstr "" - -#. name for gox -msgid "Gobu" -msgstr "" - -#. name for goy -msgid "Goundo" -msgstr "" - -#. name for goz -msgid "Gozarkhani" -msgstr "" - -#. name for gpa -msgid "Gupa-Abawa" -msgstr "" - -#. name for gpn -msgid "Taiap" -msgstr "" - -#. name for gqa -msgid "Ga'anda" -msgstr "" - -#. name for gqi -msgid "Guiqiong" -msgstr "" - -#. name for gqn -msgid "Guana (Brazil)" -msgstr "" - -#. name for gqr -msgid "Gor" -msgstr "" - -#. name for gra -msgid "Garasia; Rajput" -msgstr "" - -#. name for grb -msgid "Grebo" -msgstr "" - -#. name for grc -msgid "Greek; Ancient (to 1453)" -msgstr "" - -#. name for grd -msgid "Guruntum-Mbaaru" -msgstr "" - -#. name for grg -msgid "Madi" -msgstr "" - -#. name for grh -msgid "Gbiri-Niragu" -msgstr "" - -#. name for gri -msgid "Ghari" -msgstr "" - -#. name for grj -msgid "Grebo; Southern" -msgstr "" - -#. name for grm -msgid "Kota Marudu Talantang" -msgstr "" - -#. name for grn -msgid "Guarani" -msgstr "" - -#. name for gro -msgid "Groma" -msgstr "" - -#. name for grq -msgid "Gorovu" -msgstr "" - -#. name for grr -msgid "Taznatit" -msgstr "" - -#. name for grs -msgid "Gresi" -msgstr "" - -#. name for grt -msgid "Garo" -msgstr "" - -#. name for gru -msgid "Kistane" -msgstr "" - -#. name for grv -msgid "Grebo; Central" -msgstr "" - -#. name for grw -msgid "Gweda" -msgstr "" - -#. name for grx -msgid "Guriaso" -msgstr "" - -#. name for gry -msgid "Grebo; Barclayville" -msgstr "" - -#. name for grz -msgid "Guramalum" -msgstr "" - -#. name for gse -msgid "Ghanaian Sign Language" -msgstr "" - -#. name for gsg -msgid "German Sign Language" -msgstr "" - -#. name for gsl -msgid "Gusilay" -msgstr "" - -#. name for gsm -msgid "Guatemalan Sign Language" -msgstr "" - -#. name for gsn -msgid "Gusan" -msgstr "" - -#. name for gso -msgid "Gbaya; Southwest" -msgstr "" - -#. name for gsp -msgid "Wasembo" -msgstr "" - -#. name for gss -msgid "Greek Sign Language" -msgstr "" - -#. name for gsw -msgid "German; Swiss" -msgstr "" - -#. name for gta -msgid "Guató" -msgstr "" - -#. name for gti -msgid "Gbati-ri" -msgstr "" - -#. name for gua -msgid "Shiki" -msgstr "" - -#. name for gub -msgid "Guajajára" -msgstr "" - -#. name for guc -msgid "Wayuu" -msgstr "" - -#. name for gud -msgid "Dida; Yocoboué" -msgstr "" - -#. name for gue -msgid "Gurinji" -msgstr "" - -#. name for guf -msgid "Gupapuyngu" -msgstr "" - -#. name for gug -msgid "Guaraní; Paraguayan" -msgstr "" - -#. name for guh -msgid "Guahibo" -msgstr "" - -#. name for gui -msgid "Guaraní; Eastern Bolivian" -msgstr "" - -#. name for guj -msgid "Gujarati" -msgstr "" - -#. name for guk -msgid "Gumuz" -msgstr "" - -#. name for gul -msgid "Creole English; Sea Island" -msgstr "" - -#. name for gum -msgid "Guambiano" -msgstr "" - -#. name for gun -msgid "Guaraní; Mbyá" -msgstr "" - -#. name for guo -msgid "Guayabero" -msgstr "" - -#. name for gup -msgid "Gunwinggu" -msgstr "" - -#. name for guq -msgid "Aché" -msgstr "" - -#. name for gur -msgid "Farefare" -msgstr "" - -#. name for gus -msgid "Guinean Sign Language" -msgstr "" - -#. name for gut -msgid "Maléku Jaíka" -msgstr "" - -#. name for guu -msgid "Yanomamö" -msgstr "" - -#. name for guv -msgid "Gey" -msgstr "" - -#. name for guw -msgid "Gun" -msgstr "" - -#. name for gux -msgid "Gourmanchéma" -msgstr "" - -#. name for guz -msgid "Gusii" -msgstr "" - -#. name for gva -msgid "Guana (Paraguay)" -msgstr "" - -#. name for gvc -msgid "Guanano" -msgstr "" - -#. name for gve -msgid "Duwet" -msgstr "" - -#. name for gvf -msgid "Golin" -msgstr "" - -#. name for gvj -msgid "Guajá" -msgstr "" - -#. name for gvl -msgid "Gulay" -msgstr "" - -#. name for gvm -msgid "Gurmana" -msgstr "" - -#. name for gvn -msgid "Kuku-Yalanji" -msgstr "" - -#. name for gvo -msgid "Gavião Do Jiparaná" -msgstr "" - -#. name for gvp -msgid "Gavião; Pará" -msgstr "" - -#. name for gvr -msgid "Gurung; Western" -msgstr "" - -#. name for gvs -msgid "Gumawana" -msgstr "" - -#. name for gvy -msgid "Guyani" -msgstr "" - -#. name for gwa -msgid "Mbato" -msgstr "" - -#. name for gwb -msgid "Gwa" -msgstr "" - -#. name for gwc -msgid "Kalami" -msgstr "" - -#. name for gwd -msgid "Gawwada" -msgstr "" - -#. name for gwe -msgid "Gweno" -msgstr "" - -#. name for gwf -msgid "Gowro" -msgstr "" - -#. name for gwg -msgid "Moo" -msgstr "" - -#. name for gwi -msgid "Gwichʼin" -msgstr "" - -#. name for gwj -msgid "/Gwi" -msgstr "" - -#. name for gwn -msgid "Gwandara" -msgstr "" - -#. name for gwr -msgid "Gwere" -msgstr "" - -#. name for gwt -msgid "Gawar-Bati" -msgstr "" - -#. name for gwu -msgid "Guwamu" -msgstr "" - -#. name for gww -msgid "Kwini" -msgstr "" - -#. name for gwx -msgid "Gua" -msgstr "" - -#. name for gxx -msgid "Wè Southern" -msgstr "" - -#. name for gya -msgid "Gbaya; Northwest" -msgstr "" - -#. name for gyb -msgid "Garus" -msgstr "" - -#. name for gyd -msgid "Kayardild" -msgstr "" - -#. name for gye -msgid "Gyem" -msgstr "" - -#. name for gyf -msgid "Gungabula" -msgstr "" - -#. name for gyg -msgid "Gbayi" -msgstr "" - -#. name for gyi -msgid "Gyele" -msgstr "" - -#. name for gyl -msgid "Gayil" -msgstr "" - -#. name for gym -msgid "Ngäbere" -msgstr "" - -#. name for gyn -msgid "Creole English; Guyanese" -msgstr "" - -#. name for gyr -msgid "Guarayu" -msgstr "" - -#. name for gyy -msgid "Gunya" -msgstr "" - -#. name for gza -msgid "Ganza" -msgstr "" - -#. name for gzi -msgid "Gazi" -msgstr "" - -#. name for gzn -msgid "Gane" -msgstr "" - -#. name for haa -msgid "Han" -msgstr "" - -#. name for hab -msgid "Hanoi Sign Language" -msgstr "" - -#. name for hac -msgid "Gurani" -msgstr "" - -#. name for had -msgid "Hatam" -msgstr "" - -#. name for hae -msgid "Oromo; Eastern" -msgstr "" - -#. name for haf -msgid "Haiphong Sign Language" -msgstr "" - -#. name for hag -msgid "Hanga" -msgstr "" - -#. name for hah -msgid "Hahon" -msgstr "" - -#. name for hai -msgid "Haida" -msgstr "" - -#. name for haj -msgid "Hajong" -msgstr "" - -#. name for hak -msgid "Chinese; Hakka" -msgstr "" - -#. name for hal -msgid "Halang" -msgstr "" - -#. name for ham -msgid "Hewa" -msgstr "" - -#. name for han -msgid "Hangaza" -msgstr "" - -#. name for hao -msgid "Hakö" -msgstr "" - -#. name for hap -msgid "Hupla" -msgstr "" - -#. name for haq -msgid "Ha" -msgstr "" - -#. name for har -msgid "Harari" -msgstr "" - -#. name for has -msgid "Haisla" -msgstr "" - -#. name for hat -msgid "Creole; Haitian" -msgstr "" - -#. name for hau -msgid "Hausa" -msgstr "" - -#. name for hav -msgid "Havu" -msgstr "" - -#. name for haw -msgid "Hawaiian" -msgstr "" - -#. name for hax -msgid "Haida; Southern" -msgstr "" - -#. name for hay -msgid "Haya" -msgstr "" - -#. name for haz -msgid "Hazaragi" -msgstr "" - -#. name for hba -msgid "Hamba" -msgstr "" - -#. name for hbb -msgid "Huba" -msgstr "" - -#. name for hbn -msgid "Heiban" -msgstr "" - -#. name for hbo -msgid "Hebrew; Ancient" -msgstr "" - -#. name for hbs -msgid "Serbo-Croatian" -msgstr "" - -#. name for hbu -msgid "Habu" -msgstr "" - -#. name for hca -msgid "Creole Hindi; Andaman" -msgstr "" - -#. name for hch -msgid "Huichol" -msgstr "" - -#. name for hdn -msgid "Haida; Northern" -msgstr "" - -#. name for hds -msgid "Honduras Sign Language" -msgstr "" - -#. name for hdy -msgid "Hadiyya" -msgstr "" - -#. name for hea -msgid "Miao; Northern Qiandong" -msgstr "" - -#. name for heb -msgid "Hebrew" -msgstr "" - -#. name for hed -msgid "Herdé" -msgstr "" - -#. name for heg -msgid "Helong" -msgstr "" - -#. name for heh -msgid "Hehe" -msgstr "" - -#. name for hei -msgid "Heiltsuk" -msgstr "" - -#. name for hem -msgid "Hemba" -msgstr "" - -#. name for her -msgid "Herero" -msgstr "" - -#. name for hgm -msgid "Hai//om" -msgstr "" - -#. name for hgw -msgid "Haigwai" -msgstr "" - -#. name for hhi -msgid "Hoia Hoia" -msgstr "" - -#. name for hhr -msgid "Kerak" -msgstr "" - -#. name for hhy -msgid "Hoyahoya" -msgstr "" - -#. name for hia -msgid "Lamang" -msgstr "" - -#. name for hib -msgid "Hibito" -msgstr "" - -#. name for hid -msgid "Hidatsa" -msgstr "" - -#. name for hif -msgid "Hindi; Fiji" -msgstr "" - -#. name for hig -msgid "Kamwe" -msgstr "" - -#. name for hih -msgid "Pamosu" -msgstr "" - -#. name for hii -msgid "Hinduri" -msgstr "" - -#. name for hij -msgid "Hijuk" -msgstr "" - -#. name for hik -msgid "Seit-Kaitetu" -msgstr "" - -#. name for hil -msgid "Hiligaynon" -msgstr "" - -#. name for hin -msgid "Hindi" -msgstr "" - -#. name for hio -msgid "Tsoa" -msgstr "" - -#. name for hir -msgid "Himarimã" -msgstr "" - -#. name for hit -msgid "Hittite" -msgstr "" - -#. name for hiw -msgid "Hiw" -msgstr "" - -#. name for hix -msgid "Hixkaryána" -msgstr "" - -#. name for hji -msgid "Haji" -msgstr "" - -#. name for hka -msgid "Kahe" -msgstr "" - -#. name for hke -msgid "Hunde" -msgstr "" - -#. name for hkk -msgid "Hunjara-Kaina Ke" -msgstr "" - -#. name for hks -msgid "Hong Kong Sign Language" -msgstr "" - -#. name for hla -msgid "Halia" -msgstr "" - -#. name for hlb -msgid "Halbi" -msgstr "" - -#. name for hld -msgid "Halang Doan" -msgstr "" - -#. name for hle -msgid "Hlersu" -msgstr "" - -#. name for hlt -msgid "Nga La" -msgstr "" - -#. name for hlu -msgid "Luwian; Hieroglyphic" -msgstr "" - -#. name for hma -msgid "Miao; Southern Mashan" -msgstr "" - -#. name for hmb -msgid "Songhay; Humburi Senni" -msgstr "" - -#. name for hmc -msgid "Miao; Central Huishui" -msgstr "" - -#. name for hmd -msgid "Miao; Large Flowery" -msgstr "" - -#. name for hme -msgid "Miao; Eastern Huishui" -msgstr "" - -#. name for hmf -msgid "Hmong Don" -msgstr "" - -#. name for hmg -msgid "Hmong; Southwestern Guiyang" -msgstr "" - -#. name for hmh -msgid "Miao; Southwestern Huishui" -msgstr "" - -#. name for hmi -msgid "Miao; Northern Huishui" -msgstr "" - -#. name for hmj -msgid "Ge" -msgstr "" - -#. name for hmk -msgid "Maek" -msgstr "" - -#. name for hml -msgid "Miao; Luopohe" -msgstr "" - -#. name for hmm -msgid "Miao; Central Mashan" -msgstr "" - -#. name for hmn -msgid "Hmong" -msgstr "" - -#. name for hmo -msgid "Hiri Motu" -msgstr "" - -#. name for hmp -msgid "Miao; Northern Mashan" -msgstr "" - -#. name for hmq -msgid "Miao; Eastern Qiandong" -msgstr "" - -#. name for hmr -msgid "Hmar" -msgstr "" - -#. name for hms -msgid "Miao; Southern Qiandong" -msgstr "" - -#. name for hmt -msgid "Hamtai" -msgstr "" - -#. name for hmu -msgid "Hamap" -msgstr "" - -#. name for hmv -msgid "Hmong Dô" -msgstr "" - -#. name for hmw -msgid "Miao; Western Mashan" -msgstr "" - -#. name for hmy -msgid "Miao; Southern Guiyang" -msgstr "" - -#. name for hmz -msgid "Miao; Sinicized" -msgstr "" - -#. name for hna -msgid "Mina (Cameroon)" -msgstr "" - -#. name for hnd -msgid "Hindko; Southern" -msgstr "" - -#. name for hne -msgid "Chhattisgarhi" -msgstr "" - -#. name for hnh -msgid "//Ani" -msgstr "" - -#. name for hni -msgid "Hani" -msgstr "" - -#. name for hnj -msgid "Hmong Njua" -msgstr "" - -#. name for hnn -msgid "Hanunoo" -msgstr "" - -#. name for hno -msgid "Hindko; Northern" -msgstr "" - -#. name for hns -msgid "Hindustani; Caribbean" -msgstr "" - -#. name for hnu -msgid "Hung" -msgstr "" - -#. name for hoa -msgid "Hoava" -msgstr "" - -#. name for hob -msgid "Mari (Madang Province)" -msgstr "" - -#. name for hoc -msgid "Ho" -msgstr "" - -#. name for hod -msgid "Holma" -msgstr "" - -#. name for hoe -msgid "Horom" -msgstr "" - -#. name for hoh -msgid "Hobyót" -msgstr "" - -#. name for hoi -msgid "Holikachuk" -msgstr "" - -#. name for hoj -msgid "Hadothi" -msgstr "" - -#. name for hol -msgid "Holu" -msgstr "" - -#. name for hom -msgid "Homa" -msgstr "" - -#. name for hoo -msgid "Holoholo" -msgstr "" - -#. name for hop -msgid "Hopi" -msgstr "" - -#. name for hor -msgid "Horo" -msgstr "" - -#. name for hos -msgid "Ho Chi Minh City Sign Language" -msgstr "" - -#. name for hot -msgid "Hote" -msgstr "" - -#. name for hov -msgid "Hovongan" -msgstr "" - -#. name for how -msgid "Honi" -msgstr "" - -#. name for hoy -msgid "Holiya" -msgstr "" - -#. name for hoz -msgid "Hozo" -msgstr "" - -#. name for hpo -msgid "Hpon" -msgstr "" - -#. name for hps -msgid "Hawai'i Pidgin Sign Language" -msgstr "" - -#. name for hra -msgid "Hrangkhol" -msgstr "" - -#. name for hre -msgid "Hre" -msgstr "" - -#. name for hrk -msgid "Haruku" -msgstr "" - -#. name for hrm -msgid "Miao; Horned" -msgstr "" - -#. name for hro -msgid "Haroi" -msgstr "" - -#. name for hrr -msgid "Horuru" -msgstr "" - -#. name for hrt -msgid "Hértevin" -msgstr "" - -#. name for hru -msgid "Hruso" -msgstr "" - -#. name for hrv -msgid "Croatian" -msgstr "" - -#. name for hrx -msgid "Hunsrik" -msgstr "" - -#. name for hrz -msgid "Harzani" -msgstr "" - -#. name for hsb -msgid "Sorbian; Upper" -msgstr "" - -#. name for hsh -msgid "Hungarian Sign Language" -msgstr "" - -#. name for hsl -msgid "Hausa Sign Language" -msgstr "" - -#. name for hsn -msgid "Chinese; Xiang" -msgstr "" - -#. name for hss -msgid "Harsusi" -msgstr "" - -#. name for hti -msgid "Hoti" -msgstr "" - -#. name for hto -msgid "Huitoto; Minica" -msgstr "" - -#. name for hts -msgid "Hadza" -msgstr "" - -#. name for htu -msgid "Hitu" -msgstr "" - -#. name for htx -msgid "Hittite; Middle" -msgstr "" - -#. name for hub -msgid "Huambisa" -msgstr "" - -#. name for huc -msgid "=/Hua" -msgstr "" - -#. name for hud -msgid "Huaulu" -msgstr "" - -#. name for hue -msgid "Huave; San Francisco Del Mar" -msgstr "" - -#. name for huf -msgid "Humene" -msgstr "" - -#. name for hug -msgid "Huachipaeri" -msgstr "" - -#. name for huh -msgid "Huilliche" -msgstr "" - -#. name for hui -msgid "Huli" -msgstr "" - -#. name for huj -msgid "Miao; Northern Guiyang" -msgstr "" - -#. name for huk -msgid "Hulung" -msgstr "" - -#. name for hul -msgid "Hula" -msgstr "" - -#. name for hum -msgid "Hungana" -msgstr "" - -#. name for hun -msgid "Hungarian" -msgstr "" - -#. name for huo -msgid "Hu" -msgstr "" - -#. name for hup -msgid "Hupa" -msgstr "" - -#. name for huq -msgid "Tsat" -msgstr "" - -#. name for hur -msgid "Halkomelem" -msgstr "" - -#. name for hus -msgid "Huastec" -msgstr "" - -#. name for hut -msgid "Humla" -msgstr "" - -#. name for huu -msgid "Huitoto; Murui" -msgstr "" - -#. name for huv -msgid "Huave; San Mateo Del Mar" -msgstr "" - -#. name for huw -msgid "Hukumina" -msgstr "" - -#. name for hux -msgid "Huitoto; Nüpode" -msgstr "" - -#. name for huy -msgid "Hulaulá" -msgstr "" - -#. name for huz -msgid "Hunzib" -msgstr "" - -#. name for hvc -msgid "Haitian Vodoun Culture Language" -msgstr "" - -#. name for hve -msgid "Huave; San Dionisio Del Mar" -msgstr "" - -#. name for hvk -msgid "Haveke" -msgstr "" - -#. name for hvn -msgid "Sabu" -msgstr "" - -#. name for hvv -msgid "Huave; Santa María Del Mar" -msgstr "" - -#. name for hwa -msgid "Wané" -msgstr "" - -#. name for hwc -msgid "Creole English; Hawai'i" -msgstr "" - -#. name for hwo -msgid "Hwana" -msgstr "" - -#. name for hya -msgid "Hya" -msgstr "" - -#. name for hye -msgid "Armenian" -msgstr "" - -#. name for iai -msgid "Iaai" -msgstr "" - -#. name for ian -msgid "Iatmul" -msgstr "" - -#. name for iap -msgid "Iapama" -msgstr "" - -#. name for iar -msgid "Purari" -msgstr "" - -#. name for iba -msgid "Iban" -msgstr "" - -#. name for ibb -msgid "Ibibio" -msgstr "" - -#. name for ibd -msgid "Iwaidja" -msgstr "" - -#. name for ibe -msgid "Akpes" -msgstr "" - -#. name for ibg -msgid "Ibanag" -msgstr "" - -#. name for ibi -msgid "Ibilo" -msgstr "" - -#. name for ibl -msgid "Ibaloi" -msgstr "" - -#. name for ibm -msgid "Agoi" -msgstr "" - -#. name for ibn -msgid "Ibino" -msgstr "" - -#. name for ibo -msgid "Igbo" -msgstr "" - -#. name for ibr -msgid "Ibuoro" -msgstr "" - -#. name for ibu -msgid "Ibu" -msgstr "" - -#. name for iby -msgid "Ibani" -msgstr "" - -#. name for ica -msgid "Ede Ica" -msgstr "" - -#. name for ich -msgid "Etkywan" -msgstr "" - -#. name for icl -msgid "Icelandic Sign Language" -msgstr "" - -#. name for icr -msgid "Creole English; Islander" -msgstr "" - -#. name for ida -msgid "Idakho-Isukha-Tiriki" -msgstr "" - -#. name for idb -msgid "Indo-Portuguese" -msgstr "" - -#. name for idc -msgid "Idon" -msgstr "" - -#. name for idd -msgid "Ede Idaca" -msgstr "" - -#. name for ide -msgid "Idere" -msgstr "" - -#. name for idi -msgid "Idi" -msgstr "" - -#. name for ido -msgid "Ido" -msgstr "" - -#. name for idr -msgid "Indri" -msgstr "" - -#. name for ids -msgid "Idesa" -msgstr "" - -#. name for idt -msgid "Idaté" -msgstr "" - -#. name for idu -msgid "Idoma" -msgstr "" - -#. name for ifa -msgid "Ifugao; Amganad" -msgstr "" - -#. name for ifb -msgid "Ifugao; Batad" -msgstr "" - -#. name for ife -msgid "Ifè" -msgstr "" - -#. name for iff -msgid "Ifo" -msgstr "" - -#. name for ifk -msgid "Ifugao; Tuwali" -msgstr "" - -#. name for ifm -msgid "Teke-Fuumu" -msgstr "" - -#. name for ifu -msgid "Ifugao; Mayoyao" -msgstr "" - -#. name for ify -msgid "Kallahan; Keley-I" -msgstr "" - -#. name for igb -msgid "Ebira" -msgstr "" - -#. name for ige -msgid "Igede" -msgstr "" - -#. name for igg -msgid "Igana" -msgstr "" - -#. name for igl -msgid "Igala" -msgstr "" - -#. name for igm -msgid "Kanggape" -msgstr "" - -#. name for ign -msgid "Ignaciano" -msgstr "" - -#. name for igo -msgid "Isebe" -msgstr "" - -#. name for igs -msgid "Interglossa" -msgstr "" - -#. name for igw -msgid "Igwe" -msgstr "" - -#. name for ihb -msgid "Iha Based Pidgin" -msgstr "" - -#. name for ihi -msgid "Ihievbe" -msgstr "" - -#. name for ihp -msgid "Iha" -msgstr "" - -#. name for iii -msgid "Yi; Sichuan" -msgstr "" - -#. name for ijc -msgid "Izon" -msgstr "" - -#. name for ije -msgid "Biseni" -msgstr "" - -#. name for ijj -msgid "Ede Ije" -msgstr "" - -#. name for ijn -msgid "Kalabari" -msgstr "" - -#. name for ijs -msgid "Ijo; Southeast" -msgstr "" - -#. name for ike -msgid "Inuktitut; Eastern Canadian" -msgstr "" - -#. name for iki -msgid "Iko" -msgstr "" - -#. name for ikk -msgid "Ika" -msgstr "" - -#. name for ikl -msgid "Ikulu" -msgstr "" - -#. name for iko -msgid "Olulumo-Ikom" -msgstr "" - -#. name for ikp -msgid "Ikpeshi" -msgstr "" - -#. name for ikt -msgid "Inuktitut; Western Canadian" -msgstr "" - -#. name for iku -msgid "Inuktitut" -msgstr "" - -#. name for ikv -msgid "Iku-Gora-Ankwa" -msgstr "" - -#. name for ikw -msgid "Ikwere" -msgstr "" - -#. name for ikx -msgid "Ik" -msgstr "" - -#. name for ikz -msgid "Ikizu" -msgstr "" - -#. name for ila -msgid "Ile Ape" -msgstr "" - -#. name for ilb -msgid "Ila" -msgstr "" - -#. name for ile -msgid "Interlingue" -msgstr "" - -#. name for ilg -msgid "Garig-Ilgar" -msgstr "" - -#. name for ili -msgid "Ili Turki" -msgstr "" - -#. name for ilk -msgid "Ilongot" -msgstr "" - -#. name for ill -msgid "Iranun" -msgstr "" - -#. name for ilo -msgid "Iloko" -msgstr "" - -#. name for ils -msgid "International Sign" -msgstr "" - -#. name for ilu -msgid "Ili'uun" -msgstr "" - -#. name for ilv -msgid "Ilue" -msgstr "" - -#. name for ilw -msgid "Talur" -msgstr "" - -#. name for ima -msgid "Malasar; Mala" -msgstr "" - -#. name for ime -msgid "Imeraguen" -msgstr "" - -#. name for imi -msgid "Anamgura" -msgstr "" - -#. name for iml -msgid "Miluk" -msgstr "" - -#. name for imn -msgid "Imonda" -msgstr "" - -#. name for imo -msgid "Imbongu" -msgstr "" - -#. name for imr -msgid "Imroing" -msgstr "" - -#. name for ims -msgid "Marsian" -msgstr "" - -#. name for imy -msgid "Milyan" -msgstr "" - -#. name for ina -msgid "Interlingua (International Auxiliary Language Association)" -msgstr "" - -#. name for inb -msgid "Inga" -msgstr "" - -#. name for ind -msgid "Indonesian" -msgstr "" - -#. name for ing -msgid "Degexit'an" -msgstr "" - -#. name for inh -msgid "Ingush" -msgstr "" - -#. name for inj -msgid "Inga; Jungle" -msgstr "" - -#. name for inl -msgid "Indonesian Sign Language" -msgstr "" - -#. name for inm -msgid "Minaean" -msgstr "" - -#. name for inn -msgid "Isinai" -msgstr "" - -#. name for ino -msgid "Inoke-Yate" -msgstr "" - -#. name for inp -msgid "Iñapari" -msgstr "" - -#. name for ins -msgid "Indian Sign Language" -msgstr "" - -#. name for int -msgid "Intha" -msgstr "" - -#. name for inz -msgid "Ineseño" -msgstr "" - -#. name for ior -msgid "Inor" -msgstr "" - -#. name for iou -msgid "Tuma-Irumu" -msgstr "" - -#. name for iow -msgid "Iowa-Oto" -msgstr "" - -#. name for ipi -msgid "Ipili" -msgstr "" - -#. name for ipk -msgid "Inupiaq" -msgstr "" - -#. name for ipo -msgid "Ipiko" -msgstr "" - -#. name for iqu -msgid "Iquito" -msgstr "" - -#. name for ire -msgid "Iresim" -msgstr "" - -#. name for irh -msgid "Irarutu" -msgstr "" - -#. name for iri -msgid "Irigwe" -msgstr "" - -#. name for irk -msgid "Iraqw" -msgstr "" - -#. name for irn -msgid "Irántxe" -msgstr "" - -#. name for irr -msgid "Ir" -msgstr "" - -#. name for iru -msgid "Irula" -msgstr "" - -#. name for irx -msgid "Kamberau" -msgstr "" - -#. name for iry -msgid "Iraya" -msgstr "" - -#. name for isa -msgid "Isabi" -msgstr "" - -#. name for isc -msgid "Isconahua" -msgstr "" - -#. name for isd -msgid "Isnag" -msgstr "" - -#. name for ise -msgid "Italian Sign Language" -msgstr "" - -#. name for isg -msgid "Irish Sign Language" -msgstr "" - -#. name for ish -msgid "Esan" -msgstr "" - -#. name for isi -msgid "Nkem-Nkum" -msgstr "" - -#. name for isk -msgid "Ishkashimi" -msgstr "" - -#. name for isl -msgid "Icelandic" -msgstr "" - -#. name for ism -msgid "Masimasi" -msgstr "" - -#. name for isn -msgid "Isanzu" -msgstr "" - -#. name for iso -msgid "Isoko" -msgstr "" - -#. name for isr -msgid "Israeli Sign Language" -msgstr "" - -#. name for ist -msgid "Istriot" -msgstr "" - -#. name for isu -msgid "Isu (Menchum Division)" -msgstr "" - -#. name for ita -msgid "Italian" -msgstr "" - -#. name for itb -msgid "Itneg; Binongan" -msgstr "" - -#. name for ite -msgid "Itene" -msgstr "" - -#. name for iti -msgid "Itneg; Inlaod" -msgstr "" - -#. name for itk -msgid "Judeo-Italian" -msgstr "" - -#. name for itl -msgid "Itelmen" -msgstr "" - -#. name for itm -msgid "Itu Mbon Uzo" -msgstr "" - -#. name for ito -msgid "Itonama" -msgstr "" - -#. name for itr -msgid "Iteri" -msgstr "" - -#. name for its -msgid "Isekiri" -msgstr "" - -#. name for itt -msgid "Itneg; Maeng" -msgstr "" - -#. name for itv -msgid "Itawit" -msgstr "" - -#. name for itw -msgid "Ito" -msgstr "" - -#. name for itx -msgid "Itik" -msgstr "" - -#. name for ity -msgid "Itneg; Moyadan" -msgstr "" - -#. name for itz -msgid "Itzá" -msgstr "" - -#. name for ium -msgid "Mien; Iu" -msgstr "" - -#. name for ivb -msgid "Ibatan" -msgstr "" - -#. name for ivv -msgid "Ivatan" -msgstr "" - -#. name for iwk -msgid "I-Wak" -msgstr "" - -#. name for iwm -msgid "Iwam" -msgstr "" - -#. name for iwo -msgid "Iwur" -msgstr "" - -#. name for iws -msgid "Iwam; Sepik" -msgstr "" - -#. name for ixc -msgid "Ixcatec" -msgstr "" - -#. name for ixl -msgid "Ixil" -msgstr "" - -#. name for iya -msgid "Iyayu" -msgstr "" - -#. name for iyo -msgid "Mesaka" -msgstr "" - -#. name for iyx -msgid "Yaka (Congo)" -msgstr "" - -#. name for izh -msgid "Ingrian" -msgstr "" - -#. name for izi -msgid "Izi-Ezaa-Ikwo-Mgbo" -msgstr "" - -#. name for izr -msgid "Izere" -msgstr "" - -#. name for jaa -msgid "Jamamadí" -msgstr "" - -#. name for jab -msgid "Hyam" -msgstr "" - -#. name for jac -msgid "Popti'" -msgstr "" - -#. name for jad -msgid "Jahanka" -msgstr "" - -#. name for jae -msgid "Yabem" -msgstr "" - -#. name for jaf -msgid "Jara" -msgstr "" - -#. name for jah -msgid "Jah Hut" -msgstr "" - -#. name for jaj -msgid "Zazao" -msgstr "" - -#. name for jak -msgid "Jakun" -msgstr "" - -#. name for jal -msgid "Yalahatan" -msgstr "" - -#. name for jam -msgid "Creole English; Jamaican" -msgstr "" - -#. name for jao -msgid "Yanyuwa" -msgstr "" - -#. name for jaq -msgid "Yaqay" -msgstr "" - -#. name for jar -msgid "Jarawa (Nigeria)" -msgstr "" - -#. name for jas -msgid "Javanese; New Caledonian" -msgstr "" - -#. name for jat -msgid "Jakati" -msgstr "" - -#. name for jau -msgid "Yaur" -msgstr "" - -#. name for jav -msgid "Javanese" -msgstr "" - -#. name for jax -msgid "Malay; Jambi" -msgstr "" - -#. name for jay -msgid "Yan-nhangu" -msgstr "" - -#. name for jaz -msgid "Jawe" -msgstr "" - -#. name for jbe -msgid "Judeo-Berber" -msgstr "" - -#. name for jbj -msgid "Arandai" -msgstr "" - -#. name for jbn -msgid "Nafusi" -msgstr "" - -#. name for jbo -msgid "Lojban" -msgstr "" - -#. name for jbr -msgid "Jofotek-Bromnya" -msgstr "" - -#. name for jbt -msgid "Jabutí" -msgstr "" - -#. name for jbu -msgid "Jukun Takum" -msgstr "" - -#. name for jcs -msgid "Jamaican Country Sign Language" -msgstr "" - -#. name for jct -msgid "Krymchak" -msgstr "" - -#. name for jda -msgid "Jad" -msgstr "" - -#. name for jdg -msgid "Jadgali" -msgstr "" - -#. name for jdt -msgid "Judeo-Tat" -msgstr "" - -#. name for jeb -msgid "Jebero" -msgstr "" - -#. name for jee -msgid "Jerung" -msgstr "" - -#. name for jeg -msgid "Jeng" -msgstr "" - -#. name for jeh -msgid "Jeh" -msgstr "" - -#. name for jei -msgid "Yei" -msgstr "" - -#. name for jek -msgid "Jeri Kuo" -msgstr "" - -#. name for jel -msgid "Yelmek" -msgstr "" - -#. name for jen -msgid "Dza" -msgstr "" - -#. name for jer -msgid "Jere" -msgstr "" - -#. name for jet -msgid "Manem" -msgstr "" - -#. name for jeu -msgid "Jonkor Bourmataguil" -msgstr "" - -#. name for jgb -msgid "Ngbee" -msgstr "" - -#. name for jge -msgid "Judeo-Georgian" -msgstr "" - -#. name for jgo -msgid "Ngomba" -msgstr "" - -#. name for jhi -msgid "Jehai" -msgstr "" - -#. name for jhs -msgid "Jhankot Sign Language" -msgstr "" - -#. name for jia -msgid "Jina" -msgstr "" - -#. name for jib -msgid "Jibu" -msgstr "" - -#. name for jic -msgid "Tol" -msgstr "" - -#. name for jid -msgid "Bu" -msgstr "" - -#. name for jie -msgid "Jilbe" -msgstr "" - -#. name for jig -msgid "Djingili" -msgstr "" - -#. name for jih -msgid "Shangzhai" -msgstr "" - -#. name for jii -msgid "Jiiddu" -msgstr "" - -#. name for jil -msgid "Jilim" -msgstr "" - -#. name for jim -msgid "Jimi (Cameroon)" -msgstr "" - -#. name for jio -msgid "Jiamao" -msgstr "" - -#. name for jiq -msgid "Guanyinqiao" -msgstr "" - -#. name for jit -msgid "Jita" -msgstr "" - -#. name for jiu -msgid "Jinuo; Youle" -msgstr "" - -#. name for jiv -msgid "Shuar" -msgstr "" - -#. name for jiy -msgid "Jinuo; Buyuan" -msgstr "" - -#. name for jko -msgid "Kubo" -msgstr "" - -#. name for jku -msgid "Labir" -msgstr "" - -#. name for jle -msgid "Ngile" -msgstr "" - -#. name for jls -msgid "Jamaican Sign Language" -msgstr "" - -#. name for jma -msgid "Dima" -msgstr "" - -#. name for jmb -msgid "Zumbun" -msgstr "" - -#. name for jmc -msgid "Machame" -msgstr "" - -#. name for jmd -msgid "Yamdena" -msgstr "" - -#. name for jmi -msgid "Jimi (Nigeria)" -msgstr "" - -#. name for jml -msgid "Jumli" -msgstr "" - -#. name for jmn -msgid "Naga; Makuri" -msgstr "" - -#. name for jmr -msgid "Kamara" -msgstr "" - -#. name for jms -msgid "Mashi (Nigeria)" -msgstr "" - -#. name for jmx -msgid "Mixtec; Western Juxtlahuaca" -msgstr "" - -#. name for jna -msgid "Jangshung" -msgstr "" - -#. name for jnd -msgid "Jandavra" -msgstr "" - -#. name for jng -msgid "Yangman" -msgstr "" - -#. name for jni -msgid "Janji" -msgstr "" - -#. name for jnj -msgid "Yemsa" -msgstr "" - -#. name for jnl -msgid "Rawat" -msgstr "" - -#. name for jns -msgid "Jaunsari" -msgstr "" - -#. name for job -msgid "Joba" -msgstr "" - -#. name for jod -msgid "Wojenaka" -msgstr "" - -#. name for jor -msgid "Jorá" -msgstr "" - -#. name for jos -msgid "Jordanian Sign Language" -msgstr "" - -#. name for jow -msgid "Jowulu" -msgstr "" - -#. name for jpa -msgid "Aramaic; Jewish Palestinian" -msgstr "" - -#. name for jpn -msgid "Japanese" -msgstr "" - -#. name for jpr -msgid "Judeo-Persian" -msgstr "" - -#. name for jqr -msgid "Jaqaru" -msgstr "" - -#. name for jra -msgid "Jarai" -msgstr "" - -#. name for jrb -msgid "Judeo-Arabic" -msgstr "" - -#. name for jrr -msgid "Jiru" -msgstr "" - -#. name for jrt -msgid "Jorto" -msgstr "" - -#. name for jru -msgid "Japrería" -msgstr "" - -#. name for jsl -msgid "Japanese Sign Language" -msgstr "" - -#. name for jua -msgid "Júma" -msgstr "" - -#. name for jub -msgid "Wannu" -msgstr "" - -#. name for juc -msgid "Jurchen" -msgstr "" - -#. name for jud -msgid "Worodougou" -msgstr "" - -#. name for juh -msgid "Hõne" -msgstr "" - -#. name for juk -msgid "Wapan" -msgstr "" - -#. name for jul -msgid "Jirel" -msgstr "" - -#. name for jum -msgid "Jumjum" -msgstr "" - -#. name for jun -msgid "Juang" -msgstr "" - -#. name for juo -msgid "Jiba" -msgstr "" - -#. name for jup -msgid "Hupdë" -msgstr "" - -#. name for jur -msgid "Jurúna" -msgstr "" - -#. name for jus -msgid "Jumla Sign Language" -msgstr "" - -#. name for jut -msgid "Jutish" -msgstr "" - -#. name for juu -msgid "Ju" -msgstr "" - -#. name for juw -msgid "Wãpha" -msgstr "" - -#. name for juy -msgid "Juray" -msgstr "" - -#. name for jvd -msgid "Javindo" -msgstr "" - -#. name for jvn -msgid "Javanese; Caribbean" -msgstr "" - -#. name for jwi -msgid "Jwira-Pepesa" -msgstr "" - -#. name for jya -msgid "Jiarong" -msgstr "" - -#. name for jye -msgid "Arabic; Judeo-Yemeni" -msgstr "" - -#. name for jyy -msgid "Jaya" -msgstr "" - -#. name for kaa -msgid "Kara-Kalpak" -msgstr "" - -#. name for kab -msgid "Kabyle" -msgstr "" - -#. name for kac -msgid "Kachin" -msgstr "" - -#. name for kad -msgid "Kadara" -msgstr "" - -#. name for kae -msgid "Ketangalan" -msgstr "" - -#. name for kaf -msgid "Katso" -msgstr "" - -#. name for kag -msgid "Kajaman" -msgstr "" - -#. name for kah -msgid "Kara (Central African Republic)" -msgstr "" - -#. name for kai -msgid "Karekare" -msgstr "" - -#. name for kaj -msgid "Jju" -msgstr "" - -#. name for kak -msgid "Kallahan; Kayapa" -msgstr "" - -#. name for kal -msgid "Kalaallisut" -msgstr "" - -#. name for kam -msgid "Kamba (Kenya)" -msgstr "" - -#. name for kan -msgid "Kannada" -msgstr "" - -#. name for kao -msgid "Xaasongaxango" -msgstr "" - -#. name for kap -msgid "Bezhta" -msgstr "" - -#. name for kaq -msgid "Capanahua" -msgstr "" - -#. name for kas -msgid "Kashmiri" -msgstr "" - -#. name for kat -msgid "Georgian" -msgstr "" - -#. name for kau -msgid "Kanuri" -msgstr "" - -#. name for kav -msgid "Katukína" -msgstr "" - -#. name for kaw -msgid "Kawi" -msgstr "" - -#. name for kax -msgid "Kao" -msgstr "" - -#. name for kay -msgid "Kamayurá" -msgstr "" - -#. name for kaz -msgid "Kazakh" -msgstr "" - -#. name for kba -msgid "Kalarko" -msgstr "" - -#. name for kbb -msgid "Kaxuiâna" -msgstr "" - -#. name for kbc -msgid "Kadiwéu" -msgstr "" - -#. name for kbd -msgid "Kabardian" -msgstr "" - -#. name for kbe -msgid "Kanju" -msgstr "" - -#. name for kbf -msgid "Kakauhua" -msgstr "" - -#. name for kbg -msgid "Khamba" -msgstr "" - -#. name for kbh -msgid "Camsá" -msgstr "" - -#. name for kbi -msgid "Kaptiau" -msgstr "" - -#. name for kbj -msgid "Kari" -msgstr "" - -#. name for kbk -msgid "Koiari; Grass" -msgstr "" - -#. name for kbl -msgid "Kanembu" -msgstr "" - -#. name for kbm -msgid "Iwal" -msgstr "" - -#. name for kbn -msgid "Kare (Central African Republic)" -msgstr "" - -#. name for kbo -msgid "Keliko" -msgstr "" - -#. name for kbp -msgid "Kabiyè" -msgstr "" - -#. name for kbq -msgid "Kamano" -msgstr "" - -#. name for kbr -msgid "Kafa" -msgstr "" - -#. name for kbs -msgid "Kande" -msgstr "" - -#. name for kbt -msgid "Abadi" -msgstr "" - -#. name for kbu -msgid "Kabutra" -msgstr "" - -#. name for kbv -msgid "Dera (Indonesia)" -msgstr "" - -#. name for kbw -msgid "Kaiep" -msgstr "" - -#. name for kbx -msgid "Ap Ma" -msgstr "" - -#. name for kby -msgid "Kanuri; Manga" -msgstr "" - -#. name for kbz -msgid "Duhwa" -msgstr "" - -#. name for kca -msgid "Khanty" -msgstr "" - -#. name for kcb -msgid "Kawacha" -msgstr "" - -#. name for kcc -msgid "Lubila" -msgstr "" - -#. name for kcd -msgid "Kanum; Ngkâlmpw" -msgstr "" - -#. name for kce -msgid "Kaivi" -msgstr "" - -#. name for kcf -msgid "Ukaan" -msgstr "" - -#. name for kcg -msgid "Tyap" -msgstr "" - -#. name for kch -msgid "Vono" -msgstr "" - -#. name for kci -msgid "Kamantan" -msgstr "" - -#. name for kcj -msgid "Kobiana" -msgstr "" - -#. name for kck -msgid "Kalanga" -msgstr "" - -#. name for kcl -msgid "Kela (Papua New Guinea)" -msgstr "" - -#. name for kcm -msgid "Gula (Central African Republic)" -msgstr "" - -#. name for kcn -msgid "Nubi" -msgstr "" - -#. name for kco -msgid "Kinalakna" -msgstr "" - -#. name for kcp -msgid "Kanga" -msgstr "" - -#. name for kcq -msgid "Kamo" -msgstr "" - -#. name for kcr -msgid "Katla" -msgstr "" - -#. name for kcs -msgid "Koenoem" -msgstr "" - -#. name for kct -msgid "Kaian" -msgstr "" - -#. name for kcu -msgid "Kami (Tanzania)" -msgstr "" - -#. name for kcv -msgid "Kete" -msgstr "" - -#. name for kcw -msgid "Kabwari" -msgstr "" - -#. name for kcx -msgid "Kachama-Ganjule" -msgstr "" - -#. name for kcy -msgid "Korandje" -msgstr "" - -#. name for kcz -msgid "Konongo" -msgstr "" - -#. name for kda -msgid "Worimi" -msgstr "" - -#. name for kdc -msgid "Kutu" -msgstr "" - -#. name for kdd -msgid "Yankunytjatjara" -msgstr "" - -#. name for kde -msgid "Makonde" -msgstr "" - -#. name for kdf -msgid "Mamusi" -msgstr "" - -#. name for kdg -msgid "Seba" -msgstr "" - -#. name for kdh -msgid "Tem" -msgstr "" - -#. name for kdi -msgid "Kumam" -msgstr "" - -#. name for kdj -msgid "Karamojong" -msgstr "" - -#. name for kdk -msgid "Numee" -msgstr "" - -#. name for kdl -msgid "Tsikimba" -msgstr "" - -#. name for kdm -msgid "Kagoma" -msgstr "" - -#. name for kdn -msgid "Kunda" -msgstr "" - -#. name for kdp -msgid "Kaningdon-Nindem" -msgstr "" - -#. name for kdq -msgid "Koch" -msgstr "" - -#. name for kdr -msgid "Karaim" -msgstr "" - -#. name for kdt -msgid "Kuy" -msgstr "" - -#. name for kdu -msgid "Kadaru" -msgstr "" - -#. name for kdv -msgid "Kado" -msgstr "" - -#. name for kdw -msgid "Koneraw" -msgstr "" - -#. name for kdx -msgid "Kam" -msgstr "" - -#. name for kdy -msgid "Keder" -msgstr "" - -#. name for kdz -msgid "Kwaja" -msgstr "" - -#. name for kea -msgid "Kabuverdianu" -msgstr "" - -#. name for keb -msgid "Kélé" -msgstr "" - -#. name for kec -msgid "Keiga" -msgstr "" - -#. name for ked -msgid "Kerewe" -msgstr "" - -#. name for kee -msgid "Keres; Eastern" -msgstr "" - -#. name for kef -msgid "Kpessi" -msgstr "" - -#. name for keg -msgid "Tese" -msgstr "" - -#. name for keh -msgid "Keak" -msgstr "" - -#. name for kei -msgid "Kei" -msgstr "" - -#. name for kej -msgid "Kadar" -msgstr "" - -#. name for kek -msgid "Kekchí" -msgstr "" - -#. name for kel -msgid "Kela (Democratic Republic of Congo)" -msgstr "" - -#. name for kem -msgid "Kemak" -msgstr "" - -#. name for ken -msgid "Kenyang" -msgstr "" - -#. name for keo -msgid "Kakwa" -msgstr "" - -#. name for kep -msgid "Kaikadi" -msgstr "" - -#. name for keq -msgid "Kamar" -msgstr "" - -#. name for ker -msgid "Kera" -msgstr "" - -#. name for kes -msgid "Kugbo" -msgstr "" - -#. name for ket -msgid "Ket" -msgstr "" - -#. name for keu -msgid "Akebu" -msgstr "" - -#. name for kev -msgid "Kanikkaran" -msgstr "" - -#. name for kew -msgid "Kewa; West" -msgstr "" - -#. name for kex -msgid "Kukna" -msgstr "" - -#. name for key -msgid "Kupia" -msgstr "" - -#. name for kez -msgid "Kukele" -msgstr "" - -#. name for kfa -msgid "Kodava" -msgstr "" - -#. name for kfb -msgid "Kolami; Northwestern" -msgstr "" - -#. name for kfc -msgid "Konda-Dora" -msgstr "" - -#. name for kfd -msgid "Koraga; Korra" -msgstr "" - -#. name for kfe -msgid "Kota (India)" -msgstr "" - -#. name for kff -msgid "Koya" -msgstr "" - -#. name for kfg -msgid "Kudiya" -msgstr "" - -#. name for kfh -msgid "Kurichiya" -msgstr "" - -#. name for kfi -msgid "Kurumba; Kannada" -msgstr "" - -#. name for kfj -msgid "Kemiehua" -msgstr "" - -#. name for kfk -msgid "Kinnauri" -msgstr "" - -#. name for kfl -msgid "Kung" -msgstr "" - -#. name for kfm -msgid "Khunsari" -msgstr "" - -#. name for kfn -msgid "Kuk" -msgstr "" - -#. name for kfo -msgid "Koro (Côte d'Ivoire)" -msgstr "" - -#. name for kfp -msgid "Korwa" -msgstr "" - -#. name for kfq -msgid "Korku" -msgstr "" - -#. name for kfr -msgid "Kachchi" -msgstr "" - -#. name for kfs -msgid "Bilaspuri" -msgstr "" - -#. name for kft -msgid "Kanjari" -msgstr "" - -#. name for kfu -msgid "Katkari" -msgstr "" - -#. name for kfv -msgid "Kurmukar" -msgstr "" - -#. name for kfw -msgid "Naga; Kharam" -msgstr "" - -#. name for kfx -msgid "Pahari; Kullu" -msgstr "" - -#. name for kfy -msgid "Kumaoni" -msgstr "" - -#. name for kfz -msgid "Koromfé" -msgstr "" - -#. name for kga -msgid "Koyaga" -msgstr "" - -#. name for kgb -msgid "Kawe" -msgstr "" - -#. name for kgc -msgid "Kasseng" -msgstr "" - -#. name for kgd -msgid "Kataang" -msgstr "" - -#. name for kge -msgid "Komering" -msgstr "" - -#. name for kgf -msgid "Kube" -msgstr "" - -#. name for kgg -msgid "Kusunda" -msgstr "" - -#. name for kgh -msgid "Kalinga; Upper Tanudan" -msgstr "" - -#. name for kgi -msgid "Selangor Sign Language" -msgstr "" - -#. name for kgj -msgid "Kham; Gamale" -msgstr "" - -#. name for kgk -msgid "Kaiwá" -msgstr "" - -#. name for kgl -msgid "Kunggari" -msgstr "" - -#. name for kgm -msgid "Karipúna" -msgstr "" - -#. name for kgn -msgid "Karingani" -msgstr "" - -#. name for kgo -msgid "Krongo" -msgstr "" - -#. name for kgp -msgid "Kaingang" -msgstr "" - -#. name for kgq -msgid "Kamoro" -msgstr "" - -#. name for kgr -msgid "Abun" -msgstr "" - -#. name for kgs -msgid "Kumbainggar" -msgstr "" - -#. name for kgt -msgid "Somyev" -msgstr "" - -#. name for kgu -msgid "Kobol" -msgstr "" - -#. name for kgv -msgid "Karas" -msgstr "" - -#. name for kgw -msgid "Karon Dori" -msgstr "" - -#. name for kgx -msgid "Kamaru" -msgstr "" - -#. name for kgy -msgid "Kyerung" -msgstr "" - -#. name for kha -msgid "Khasi" -msgstr "" - -#. name for khb -msgid "Lü" -msgstr "" - -#. name for khc -msgid "Tukang Besi North" -msgstr "" - -#. name for khd -msgid "Kanum; Bädi" -msgstr "" - -#. name for khe -msgid "Korowai" -msgstr "" - -#. name for khf -msgid "Khuen" -msgstr "" - -#. name for khg -msgid "Tibetan; Khams" -msgstr "" - -#. name for khh -msgid "Kehu" -msgstr "" - -#. name for khj -msgid "Kuturmi" -msgstr "" - -#. name for khk -msgid "Mongolian; Halh" -msgstr "" - -#. name for khl -msgid "Lusi" -msgstr "" - -#. name for khm -msgid "Khmer; Central" -msgstr "" - -#. name for khn -msgid "Khandesi" -msgstr "" - -#. name for kho -msgid "Khotanese" -msgstr "" - -#. name for khp -msgid "Kapori" -msgstr "" - -#. name for khq -msgid "Songhay; Koyra Chiini" -msgstr "" - -#. name for khr -msgid "Kharia" -msgstr "" - -#. name for khs -msgid "Kasua" -msgstr "" - -#. name for kht -msgid "Khamti" -msgstr "" - -#. name for khu -msgid "Nkhumbi" -msgstr "" - -#. name for khv -msgid "Khvarshi" -msgstr "" - -#. name for khw -msgid "Khowar" -msgstr "" - -#. name for khx -msgid "Kanu" -msgstr "" - -#. name for khy -msgid "Kele (Democratic Republic of Congo)" -msgstr "" - -#. name for khz -msgid "Keapara" -msgstr "" - -#. name for kia -msgid "Kim" -msgstr "" - -#. name for kib -msgid "Koalib" -msgstr "" - -#. name for kic -msgid "Kickapoo" -msgstr "" - -#. name for kid -msgid "Koshin" -msgstr "" - -#. name for kie -msgid "Kibet" -msgstr "" - -#. name for kif -msgid "Kham; Eastern Parbate" -msgstr "" - -#. name for kig -msgid "Kimaama" -msgstr "" - -#. name for kih -msgid "Kilmeri" -msgstr "" - -#. name for kii -msgid "Kitsai" -msgstr "" - -#. name for kij -msgid "Kilivila" -msgstr "" - -#. name for kik -msgid "Kikuyu" -msgstr "" - -#. name for kil -msgid "Kariya" -msgstr "" - -#. name for kim -msgid "Karagas" -msgstr "" - -#. name for kin -msgid "Kinyarwanda" -msgstr "" - -#. name for kio -msgid "Kiowa" -msgstr "" - -#. name for kip -msgid "Kham; Sheshi" -msgstr "" - -#. name for kiq -msgid "Kosadle" -msgstr "" - -#. name for kir -msgid "Kirghiz" -msgstr "" - -#. name for kis -msgid "Kis" -msgstr "" - -#. name for kit -msgid "Agob" -msgstr "" - -#. name for kiu -msgid "Kirmanjki (individual language)" -msgstr "" - -#. name for kiv -msgid "Kimbu" -msgstr "" - -#. name for kiw -msgid "Kiwai; Northeast" -msgstr "" - -#. name for kix -msgid "Naga; Khiamniungan" -msgstr "" - -#. name for kiy -msgid "Kirikiri" -msgstr "" - -#. name for kiz -msgid "Kisi" -msgstr "" - -#. name for kja -msgid "Mlap" -msgstr "" - -#. name for kjb -msgid "Q'anjob'al" -msgstr "" - -#. name for kjc -msgid "Konjo; Coastal" -msgstr "" - -#. name for kjd -msgid "Kiwai; Southern" -msgstr "" - -#. name for kje -msgid "Kisar" -msgstr "" - -#. name for kjf -msgid "Khalaj" -msgstr "" - -#. name for kjg -msgid "Khmu" -msgstr "" - -#. name for kjh -msgid "Khakas" -msgstr "" - -#. name for kji -msgid "Zabana" -msgstr "" - -#. name for kjj -msgid "Khinalugh" -msgstr "" - -#. name for kjk -msgid "Konjo; Highland" -msgstr "" - -#. name for kjl -msgid "Kham; Western Parbate" -msgstr "" - -#. name for kjm -msgid "Kháng" -msgstr "" - -#. name for kjn -msgid "Kunjen" -msgstr "" - -#. name for kjo -msgid "Kinnauri; Harijan" -msgstr "" - -#. name for kjp -msgid "Karen; Pwo Eastern" -msgstr "" - -#. name for kjq -msgid "Keres; Western" -msgstr "" - -#. name for kjr -msgid "Kurudu" -msgstr "" - -#. name for kjs -msgid "Kewa; East" -msgstr "" - -#. name for kjt -msgid "Karen; Phrae Pwo" -msgstr "" - -#. name for kju -msgid "Kashaya" -msgstr "" - -#. name for kjx -msgid "Ramopa" -msgstr "" - -#. name for kjy -msgid "Erave" -msgstr "" - -#. name for kjz -msgid "Bumthangkha" -msgstr "" - -#. name for kka -msgid "Kakanda" -msgstr "" - -#. name for kkb -msgid "Kwerisa" -msgstr "" - -#. name for kkc -msgid "Odoodee" -msgstr "" - -#. name for kkd -msgid "Kinuku" -msgstr "" - -#. name for kke -msgid "Kakabe" -msgstr "" - -#. name for kkf -msgid "Monpa; Kalaktang" -msgstr "" - -#. name for kkg -msgid "Kalinga; Mabaka Valley" -msgstr "" - -#. name for kkh -msgid "Khün" -msgstr "" - -#. name for kki -msgid "Kagulu" -msgstr "" - -#. name for kkj -msgid "Kako" -msgstr "" - -#. name for kkk -msgid "Kokota" -msgstr "" - -#. name for kkl -msgid "Yale; Kosarek" -msgstr "" - -#. name for kkm -msgid "Kiong" -msgstr "" - -#. name for kkn -msgid "Kon Keu" -msgstr "" - -#. name for kko -msgid "Karko" -msgstr "" - -#. name for kkp -msgid "Gugubera" -msgstr "" - -#. name for kkq -msgid "Kaiku" -msgstr "" - -#. name for kkr -msgid "Kir-Balar" -msgstr "" - -#. name for kks -msgid "Giiwo" -msgstr "" - -#. name for kkt -msgid "Koi" -msgstr "" - -#. name for kku -msgid "Tumi" -msgstr "" - -#. name for kkv -msgid "Kangean" -msgstr "" - -#. name for kkw -msgid "Teke-Kukuya" -msgstr "" - -#. name for kkx -msgid "Kohin" -msgstr "" - -#. name for kky -msgid "Guguyimidjir" -msgstr "" - -#. name for kkz -msgid "Kaska" -msgstr "" - -#. name for kla -msgid "Klamath-Modoc" -msgstr "" - -#. name for klb -msgid "Kiliwa" -msgstr "" - -#. name for klc -msgid "Kolbila" -msgstr "" - -#. name for kld -msgid "Gamilaraay" -msgstr "" - -#. name for kle -msgid "Kulung (Nepal)" -msgstr "" - -#. name for klf -msgid "Kendeje" -msgstr "" - -#. name for klg -msgid "Tagakaulo" -msgstr "" - -#. name for klh -msgid "Weliki" -msgstr "" - -#. name for kli -msgid "Kalumpang" -msgstr "" - -#. name for klj -msgid "Khalaj; Turkic" -msgstr "" - -#. name for klk -msgid "Kono (Nigeria)" -msgstr "" - -#. name for kll -msgid "Kalagan; Kagan" -msgstr "" - -#. name for klm -msgid "Migum" -msgstr "" - -#. name for kln -msgid "Kalenjin" -msgstr "" - -#. name for klo -msgid "Kapya" -msgstr "" - -#. name for klp -msgid "Kamasa" -msgstr "" - -#. name for klq -msgid "Rumu" -msgstr "" - -#. name for klr -msgid "Khaling" -msgstr "" - -#. name for kls -msgid "Kalasha" -msgstr "" - -#. name for klt -msgid "Nukna" -msgstr "" - -#. name for klu -msgid "Klao" -msgstr "" - -#. name for klv -msgid "Maskelynes" -msgstr "" - -#. name for klw -msgid "Lindu" -msgstr "" - -#. name for klx -msgid "Koluwawa" -msgstr "" - -#. name for kly -msgid "Kalao" -msgstr "" - -#. name for klz -msgid "Kabola" -msgstr "" - -#. name for kma -msgid "Konni" -msgstr "" - -#. name for kmb -msgid "Kimbundu" -msgstr "" - -#. name for kmc -msgid "Dong; Southern" -msgstr "" - -#. name for kmd -msgid "Kalinga; Majukayang" -msgstr "" - -#. name for kme -msgid "Bakole" -msgstr "" - -#. name for kmf -msgid "Kare (Papua New Guinea)" -msgstr "" - -#. name for kmg -msgid "Kâte" -msgstr "" - -#. name for kmh -msgid "Kalam" -msgstr "" - -#. name for kmi -msgid "Kami (Nigeria)" -msgstr "" - -#. name for kmj -msgid "Kumarbhag Paharia" -msgstr "" - -#. name for kmk -msgid "Kalinga; Limos" -msgstr "" - -#. name for kml -msgid "Kalinga; Lower Tanudan" -msgstr "" - -#. name for kmm -msgid "Kom (India)" -msgstr "" - -#. name for kmn -msgid "Awtuw" -msgstr "" - -#. name for kmo -msgid "Kwoma" -msgstr "" - -#. name for kmp -msgid "Gimme" -msgstr "" - -#. name for kmq -msgid "Kwama" -msgstr "" - -#. name for kmr -msgid "Kurdish; Northern" -msgstr "" - -#. name for kms -msgid "Kamasau" -msgstr "" - -#. name for kmt -msgid "Kemtuik" -msgstr "" - -#. name for kmu -msgid "Kanite" -msgstr "" - -#. name for kmv -msgid "Creole French; Karipúna" -msgstr "" - -#. name for kmw -msgid "Komo (Democratic Republic of Congo)" -msgstr "" - -#. name for kmx -msgid "Waboda" -msgstr "" - -#. name for kmy -msgid "Koma" -msgstr "" - -#. name for kmz -msgid "Khorasani Turkish" -msgstr "" - -#. name for kna -msgid "Dera (Nigeria)" -msgstr "" - -#. name for knb -msgid "Kalinga; Lubuagan" -msgstr "" - -#. name for knc -msgid "Kanuri; Central" -msgstr "" - -#. name for knd -msgid "Konda" -msgstr "" - -#. name for kne -msgid "Kankanaey" -msgstr "" - -#. name for knf -msgid "Mankanya" -msgstr "" - -#. name for kng -msgid "Koongo" -msgstr "" - -#. name for kni -msgid "Kanufi" -msgstr "" - -#. name for knj -msgid "Kanjobal; Western" -msgstr "" - -#. name for knk -msgid "Kuranko" -msgstr "" - -#. name for knl -msgid "Keninjal" -msgstr "" - -#. name for knm -msgid "Kanamarí" -msgstr "" - -#. name for knn -msgid "Konkani (individual language)" -msgstr "" - -#. name for kno -msgid "Kono (Sierra Leone)" -msgstr "" - -#. name for knp -msgid "Kwanja" -msgstr "" - -#. name for knq -msgid "Kintaq" -msgstr "" - -#. name for knr -msgid "Kaningra" -msgstr "" - -#. name for kns -msgid "Kensiu" -msgstr "" - -#. name for knt -msgid "Katukína; Panoan" -msgstr "" - -#. name for knu -msgid "Kono (Guinea)" -msgstr "" - -#. name for knv -msgid "Tabo" -msgstr "" - -#. name for knw -msgid "Kung-Ekoka" -msgstr "" - -#. name for knx -msgid "Kendayan" -msgstr "" - -#. name for kny -msgid "Kanyok" -msgstr "" - -#. name for knz -msgid "Kalamsé" -msgstr "" - -#. name for koa -msgid "Konomala" -msgstr "" - -#. name for koc -msgid "Kpati" -msgstr "" - -#. name for kod -msgid "Kodi" -msgstr "" - -#. name for koe -msgid "Kacipo-Balesi" -msgstr "" - -#. name for kof -msgid "Kubi" -msgstr "" - -#. name for kog -msgid "Cogui" -msgstr "" - -#. name for koh -msgid "Koyo" -msgstr "" - -#. name for koi -msgid "Komi-Permyak" -msgstr "" - -#. name for koj -msgid "Sara Dunjo" -msgstr "" - -#. name for kok -msgid "Konkani (macrolanguage)" -msgstr "" - -#. name for kol -msgid "Kol (Papua New Guinea)" -msgstr "" - -#. name for kom -msgid "Komi" -msgstr "" - -#. name for kon -msgid "Kongo" -msgstr "" - -#. name for koo -msgid "Konzo" -msgstr "" - -#. name for kop -msgid "Waube" -msgstr "" - -#. name for koq -msgid "Kota (Gabon)" -msgstr "" - -#. name for kor -msgid "Korean" -msgstr "" - -#. name for kos -msgid "Kosraean" -msgstr "" - -#. name for kot -msgid "Lagwan" -msgstr "" - -#. name for kou -msgid "Koke" -msgstr "" - -#. name for kov -msgid "Kudu-Camo" -msgstr "" - -#. name for kow -msgid "Kugama" -msgstr "" - -#. name for kox -msgid "Coxima" -msgstr "" - -#. name for koy -msgid "Koyukon" -msgstr "" - -#. name for koz -msgid "Korak" -msgstr "" - -#. name for kpa -msgid "Kutto" -msgstr "" - -#. name for kpb -msgid "Kurumba; Mullu" -msgstr "" - -#. name for kpc -msgid "Curripaco" -msgstr "" - -#. name for kpd -msgid "Koba" -msgstr "" - -#. name for kpe -msgid "Kpelle" -msgstr "" - -#. name for kpf -msgid "Komba" -msgstr "" - -#. name for kpg -msgid "Kapingamarangi" -msgstr "" - -#. name for kph -msgid "Kplang" -msgstr "" - -#. name for kpi -msgid "Kofei" -msgstr "" - -#. name for kpj -msgid "Karajá" -msgstr "" - -#. name for kpk -msgid "Kpan" -msgstr "" - -#. name for kpl -msgid "Kpala" -msgstr "" - -#. name for kpm -msgid "Koho" -msgstr "" - -#. name for kpn -msgid "Kepkiriwát" -msgstr "" - -#. name for kpo -msgid "Ikposo" -msgstr "" - -#. name for kpp -msgid "Karen; Paku" -msgstr "" - -#. name for kpq -msgid "Korupun-Sela" -msgstr "" - -#. name for kpr -msgid "Korafe-Yegha" -msgstr "" - -#. name for kps -msgid "Tehit" -msgstr "" - -#. name for kpt -msgid "Karata" -msgstr "" - -#. name for kpu -msgid "Kafoa" -msgstr "" - -#. name for kpv -msgid "Komi-Zyrian" -msgstr "" - -#. name for kpw -msgid "Kobon" -msgstr "" - -#. name for kpx -msgid "Koiali; Mountain" -msgstr "" - -#. name for kpy -msgid "Koryak" -msgstr "" - -#. name for kpz -msgid "Kupsabiny" -msgstr "" - -#. name for kqa -msgid "Mum" -msgstr "" - -#. name for kqb -msgid "Kovai" -msgstr "" - -#. name for kqc -msgid "Doromu-Koki" -msgstr "" - -#. name for kqd -msgid "Koy Sanjaq Surat" -msgstr "" - -#. name for kqe -msgid "Kalagan" -msgstr "" - -#. name for kqf -msgid "Kakabai" -msgstr "" - -#. name for kqg -msgid "Khe" -msgstr "" - -#. name for kqh -msgid "Kisankasa" -msgstr "" - -#. name for kqi -msgid "Koitabu" -msgstr "" - -#. name for kqj -msgid "Koromira" -msgstr "" - -#. name for kqk -msgid "Gbe; Kotafon" -msgstr "" - -#. name for kql -msgid "Kyenele" -msgstr "" - -#. name for kqm -msgid "Khisa" -msgstr "" - -#. name for kqn -msgid "Kaonde" -msgstr "" - -#. name for kqo -msgid "Krahn; Eastern" -msgstr "" - -#. name for kqp -msgid "Kimré" -msgstr "" - -#. name for kqq -msgid "Krenak" -msgstr "" - -#. name for kqr -msgid "Kimaragang" -msgstr "" - -#. name for kqs -msgid "Kissi; Northern" -msgstr "" - -#. name for kqt -msgid "Kadazan; Klias River" -msgstr "" - -#. name for kqu -msgid "Seroa" -msgstr "" - -#. name for kqv -msgid "Okolod" -msgstr "" - -#. name for kqw -msgid "Kandas" -msgstr "" - -#. name for kqx -msgid "Mser" -msgstr "" - -#. name for kqy -msgid "Koorete" -msgstr "" - -#. name for kqz -msgid "Korana" -msgstr "" - -#. name for kra -msgid "Kumhali" -msgstr "" - -#. name for krb -msgid "Karkin" -msgstr "" - -#. name for krc -msgid "Karachay-Balkar" -msgstr "" - -#. name for krd -msgid "Kairui-Midiki" -msgstr "" - -#. name for kre -msgid "Panará" -msgstr "" - -#. name for krf -msgid "Koro (Vanuatu)" -msgstr "" - -#. name for krh -msgid "Kurama" -msgstr "" - -#. name for kri -msgid "Krio" -msgstr "" - -#. name for krj -msgid "Kinaray-A" -msgstr "" - -#. name for krk -msgid "Kerek" -msgstr "" - -#. name for krl -msgid "Karelian" -msgstr "" - -#. name for krm -msgid "Krim" -msgstr "" - -#. name for krn -msgid "Sapo" -msgstr "" - -#. name for krp -msgid "Korop" -msgstr "" - -#. name for krr -msgid "Kru'ng 2" -msgstr "" - -#. name for krs -msgid "Gbaya (Sudan)" -msgstr "" - -#. name for krt -msgid "Kanuri; Tumari" -msgstr "" - -#. name for kru -msgid "Kurukh" -msgstr "" - -#. name for krv -msgid "Kavet" -msgstr "" - -#. name for krw -msgid "Krahn; Western" -msgstr "" - -#. name for krx -msgid "Karon" -msgstr "" - -#. name for kry -msgid "Kryts" -msgstr "" - -#. name for krz -msgid "Kanum; Sota" -msgstr "" - -#. name for ksa -msgid "Shuwa-Zamani" -msgstr "" - -#. name for ksb -msgid "Shambala" -msgstr "" - -#. name for ksc -msgid "Kalinga; Southern" -msgstr "" - -#. name for ksd -msgid "Kuanua" -msgstr "" - -#. name for kse -msgid "Kuni" -msgstr "" - -#. name for ksf -msgid "Bafia" -msgstr "" - -#. name for ksg -msgid "Kusaghe" -msgstr "" - -#. name for ksh -msgid "Kölsch" -msgstr "" - -#. name for ksi -msgid "Krisa" -msgstr "" - -#. name for ksj -msgid "Uare" -msgstr "" - -#. name for ksk -msgid "Kansa" -msgstr "" - -#. name for ksl -msgid "Kumalu" -msgstr "" - -#. name for ksm -msgid "Kumba" -msgstr "" - -#. name for ksn -msgid "Kasiguranin" -msgstr "" - -#. name for kso -msgid "Kofa" -msgstr "" - -#. name for ksp -msgid "Kaba" -msgstr "" - -#. name for ksq -msgid "Kwaami" -msgstr "" - -#. name for ksr -msgid "Borong" -msgstr "" - -#. name for kss -msgid "Kisi; Southern" -msgstr "" - -#. name for kst -msgid "Winyé" -msgstr "" - -#. name for ksu -msgid "Khamyang" -msgstr "" - -#. name for ksv -msgid "Kusu" -msgstr "" - -#. name for ksw -msgid "Karen; S'gaw" -msgstr "" - -#. name for ksx -msgid "Kedang" -msgstr "" - -#. name for ksy -msgid "Kharia Thar" -msgstr "" - -#. name for ksz -msgid "Kodaku" -msgstr "" - -#. name for kta -msgid "Katua" -msgstr "" - -#. name for ktb -msgid "Kambaata" -msgstr "" - -#. name for ktc -msgid "Kholok" -msgstr "" - -#. name for ktd -msgid "Kokata" -msgstr "" - -#. name for kte -msgid "Nubri" -msgstr "" - -#. name for ktf -msgid "Kwami" -msgstr "" - -#. name for ktg -msgid "Kalkutung" -msgstr "" - -#. name for kth -msgid "Karanga" -msgstr "" - -#. name for kti -msgid "Muyu; North" -msgstr "" - -#. name for ktj -msgid "Krumen; Plapo" -msgstr "" - -#. name for ktk -msgid "Kaniet" -msgstr "" - -#. name for ktl -msgid "Koroshi" -msgstr "" - -#. name for ktm -msgid "Kurti" -msgstr "" - -#. name for ktn -msgid "Karitiâna" -msgstr "" - -#. name for kto -msgid "Kuot" -msgstr "" - -#. name for ktp -msgid "Kaduo" -msgstr "" - -#. name for ktq -msgid "Katabaga" -msgstr "" - -#. name for ktr -msgid "Kota Marudu Tinagas" -msgstr "" - -#. name for kts -msgid "Muyu; South" -msgstr "" - -#. name for ktt -msgid "Ketum" -msgstr "" - -#. name for ktu -msgid "Kituba (Democratic Republic of Congo)" -msgstr "" - -#. name for ktv -msgid "Katu; Eastern" -msgstr "" - -#. name for ktw -msgid "Kato" -msgstr "" - -#. name for ktx -msgid "Kaxararí" -msgstr "" - -#. name for kty -msgid "Kango (Bas-Uélé District)" -msgstr "" - -#. name for ktz -msgid "Ju/'hoan" -msgstr "" - -#. name for kua -msgid "Kuanyama" -msgstr "" - -#. name for kub -msgid "Kutep" -msgstr "" - -#. name for kuc -msgid "Kwinsu" -msgstr "" - -#. name for kud -msgid "'Auhelawa" -msgstr "" - -#. name for kue -msgid "Kuman" -msgstr "" - -#. name for kuf -msgid "Katu; Western" -msgstr "" - -#. name for kug -msgid "Kupa" -msgstr "" - -#. name for kuh -msgid "Kushi" -msgstr "" - -#. name for kui -msgid "Kuikúro-Kalapálo" -msgstr "" - -#. name for kuj -msgid "Kuria" -msgstr "" - -#. name for kuk -msgid "Kepo'" -msgstr "" - -#. name for kul -msgid "Kulere" -msgstr "" - -#. name for kum -msgid "Kumyk" -msgstr "" - -#. name for kun -msgid "Kunama" -msgstr "" - -#. name for kuo -msgid "Kumukio" -msgstr "" - -#. name for kup -msgid "Kunimaipa" -msgstr "" - -#. name for kuq -msgid "Karipuna" -msgstr "" - -#. name for kur -msgid "Kurdish" -msgstr "" - -#. name for kus -msgid "Kusaal" -msgstr "" - -#. name for kut -msgid "Kutenai" -msgstr "" - -#. name for kuu -msgid "Kuskokwim; Upper" -msgstr "" - -#. name for kuv -msgid "Kur" -msgstr "" - -#. name for kuw -msgid "Kpagua" -msgstr "" - -#. name for kux -msgid "Kukatja" -msgstr "" - -#. name for kuy -msgid "Kuuku-Ya'u" -msgstr "" - -#. name for kuz -msgid "Kunza" -msgstr "" - -#. name for kva -msgid "Bagvalal" -msgstr "" - -#. name for kvb -msgid "Kubu" -msgstr "" - -#. name for kvc -msgid "Kove" -msgstr "" - -#. name for kvd -msgid "Kui (Indonesia)" -msgstr "" - -#. name for kve -msgid "Kalabakan" -msgstr "" - -#. name for kvf -msgid "Kabalai" -msgstr "" - -#. name for kvg -msgid "Kuni-Boazi" -msgstr "" - -#. name for kvh -msgid "Komodo" -msgstr "" - -#. name for kvi -msgid "Kwang" -msgstr "" - -#. name for kvj -msgid "Psikye" -msgstr "" - -#. name for kvk -msgid "Korean Sign Language" -msgstr "" - -#. name for kvl -msgid "Karen; Brek" -msgstr "" - -#. name for kvm -msgid "Kendem" -msgstr "" - -#. name for kvn -msgid "Kuna; Border" -msgstr "" - -#. name for kvo -msgid "Dobel" -msgstr "" - -#. name for kvp -msgid "Kompane" -msgstr "" - -#. name for kvq -msgid "Karen; Geba" -msgstr "" - -#. name for kvr -msgid "Kerinci" -msgstr "" - -#. name for kvs -msgid "Kunggara" -msgstr "" - -#. name for kvt -msgid "Karen; Lahta" -msgstr "" - -#. name for kvu -msgid "Karen; Yinbaw" -msgstr "" - -#. name for kvv -msgid "Kola" -msgstr "" - -#. name for kvw -msgid "Wersing" -msgstr "" - -#. name for kvx -msgid "Koli; Parkari" -msgstr "" - -#. name for kvy -msgid "Karen; Yintale" -msgstr "" - -#. name for kvz -msgid "Tsakwambo" -msgstr "" - -#. name for kwa -msgid "Dâw" -msgstr "" - -#. name for kwb -msgid "Kwa" -msgstr "" - -#. name for kwc -msgid "Likwala" -msgstr "" - -#. name for kwd -msgid "Kwaio" -msgstr "" - -#. name for kwe -msgid "Kwerba" -msgstr "" - -#. name for kwf -msgid "Kwara'ae" -msgstr "" - -#. name for kwg -msgid "Sara Kaba Deme" -msgstr "" - -#. name for kwh -msgid "Kowiai" -msgstr "" - -#. name for kwi -msgid "Awa-Cuaiquer" -msgstr "" - -#. name for kwj -msgid "Kwanga" -msgstr "" - -#. name for kwk -msgid "Kwakiutl" -msgstr "" - -#. name for kwl -msgid "Kofyar" -msgstr "" - -#. name for kwm -msgid "Kwambi" -msgstr "" - -#. name for kwn -msgid "Kwangali" -msgstr "" - -#. name for kwo -msgid "Kwomtari" -msgstr "" - -#. name for kwp -msgid "Kodia" -msgstr "" - -#. name for kwq -msgid "Kwak" -msgstr "" - -#. name for kwr -msgid "Kwer" -msgstr "" - -#. name for kws -msgid "Kwese" -msgstr "" - -#. name for kwt -msgid "Kwesten" -msgstr "" - -#. name for kwu -msgid "Kwakum" -msgstr "" - -#. name for kwv -msgid "Sara Kaba Náà" -msgstr "" - -#. name for kww -msgid "Kwinti" -msgstr "" - -#. name for kwx -msgid "Khirwar" -msgstr "" - -#. name for kwy -msgid "Kongo; San Salvador" -msgstr "" - -#. name for kwz -msgid "Kwadi" -msgstr "" - -#. name for kxa -msgid "Kairiru" -msgstr "" - -#. name for kxb -msgid "Krobu" -msgstr "" - -#. name for kxc -msgid "Konso" -msgstr "" - -#. name for kxd -msgid "Brunei" -msgstr "" - -#. name for kxe -msgid "Kakihum" -msgstr "" - -#. name for kxf -msgid "Karen; Manumanaw" -msgstr "" - -#. name for kxh -msgid "Karo (Ethiopia)" -msgstr "" - -#. name for kxi -msgid "Murut; Keningau" -msgstr "" - -#. name for kxj -msgid "Kulfa" -msgstr "" - -#. name for kxk -msgid "Karen; Zayein" -msgstr "" - -#. name for kxl -msgid "Kurux; Nepali" -msgstr "" - -#. name for kxm -msgid "Khmer; Northern" -msgstr "" - -#. name for kxn -msgid "Melanau; Kanowit-Tanjong" -msgstr "" - -#. name for kxo -msgid "Kanoé" -msgstr "" - -#. name for kxp -msgid "Koli; Wadiyara" -msgstr "" - -#. name for kxq -msgid "Kanum; Smärky" -msgstr "" - -#. name for kxr -msgid "Koro (Papua New Guinea)" -msgstr "" - -#. name for kxs -msgid "Kangjia" -msgstr "" - -#. name for kxt -msgid "Koiwat" -msgstr "" - -#. name for kxu -msgid "Kui (India)" -msgstr "" - -#. name for kxv -msgid "Kuvi" -msgstr "" - -#. name for kxw -msgid "Konai" -msgstr "" - -#. name for kxx -msgid "Likuba" -msgstr "" - -#. name for kxy -msgid "Kayong" -msgstr "" - -#. name for kxz -msgid "Kerewo" -msgstr "" - -#. name for kya -msgid "Kwaya" -msgstr "" - -#. name for kyb -msgid "Kalinga; Butbut" -msgstr "" - -#. name for kyc -msgid "Kyaka" -msgstr "" - -#. name for kyd -msgid "Karey" -msgstr "" - -#. name for kye -msgid "Krache" -msgstr "" - -#. name for kyf -msgid "Kouya" -msgstr "" - -#. name for kyg -msgid "Keyagana" -msgstr "" - -#. name for kyh -msgid "Karok" -msgstr "" - -#. name for kyi -msgid "Kiput" -msgstr "" - -#. name for kyj -msgid "Karao" -msgstr "" - -#. name for kyk -msgid "Kamayo" -msgstr "" - -#. name for kyl -msgid "Kalapuya" -msgstr "" - -#. name for kym -msgid "Kpatili" -msgstr "" - -#. name for kyn -msgid "Binukidnon; Northern" -msgstr "" - -#. name for kyo -msgid "Kelon" -msgstr "" - -#. name for kyp -msgid "Kang" -msgstr "" - -#. name for kyq -msgid "Kenga" -msgstr "" - -#. name for kyr -msgid "Kuruáya" -msgstr "" - -#. name for kys -msgid "Kayan; Baram" -msgstr "" - -#. name for kyt -msgid "Kayagar" -msgstr "" - -#. name for kyu -msgid "Kayah; Western" -msgstr "" - -#. name for kyv -msgid "Kayort" -msgstr "" - -#. name for kyw -msgid "Kudmali" -msgstr "" - -#. name for kyx -msgid "Rapoisi" -msgstr "" - -#. name for kyy -msgid "Kambaira" -msgstr "" - -#. name for kyz -msgid "Kayabí" -msgstr "" - -#. name for kza -msgid "Karaboro; Western" -msgstr "" - -#. name for kzb -msgid "Kaibobo" -msgstr "" - -#. name for kzc -msgid "Kulango; Bondoukou" -msgstr "" - -#. name for kzd -msgid "Kadai" -msgstr "" - -#. name for kze -msgid "Kosena" -msgstr "" - -#. name for kzf -msgid "Kaili; Da'a" -msgstr "" - -#. name for kzg -msgid "Kikai" -msgstr "" - -#. name for kzh -msgid "Kenuzi-Dongola" -msgstr "" - -#. name for kzi -msgid "Kelabit" -msgstr "" - -#. name for kzj -msgid "Kadazan; Coastal" -msgstr "" - -#. name for kzk -msgid "Kazukuru" -msgstr "" - -#. name for kzl -msgid "Kayeli" -msgstr "" - -#. name for kzm -msgid "Kais" -msgstr "" - -#. name for kzn -msgid "Kokola" -msgstr "" - -#. name for kzo -msgid "Kaningi" -msgstr "" - -#. name for kzp -msgid "Kaidipang" -msgstr "" - -#. name for kzq -msgid "Kaike" -msgstr "" - -#. name for kzr -msgid "Karang" -msgstr "" - -#. name for kzs -msgid "Dusun; Sugut" -msgstr "" - -#. name for kzt -msgid "Dusun; Tambunan" -msgstr "" - -#. name for kzu -msgid "Kayupulau" -msgstr "" - -#. name for kzv -msgid "Komyandaret" -msgstr "" - -#. name for kzw -msgid "Karirí-Xocó" -msgstr "" - -#. name for kzx -msgid "Kamarian" -msgstr "" - -#. name for kzy -msgid "Kango (Tshopo District)" -msgstr "" - -#. name for kzz -msgid "Kalabra" -msgstr "" - -#. name for laa -msgid "Subanen; Southern" -msgstr "" - -#. name for lab -msgid "Linear A" -msgstr "" - -#. name for lac -msgid "Lacandon" -msgstr "" - -#. name for lad -msgid "Ladino" -msgstr "" - -#. name for lae -msgid "Pattani" -msgstr "" - -#. name for laf -msgid "Lafofa" -msgstr "" - -#. name for lag -msgid "Langi" -msgstr "" - -#. name for lah -msgid "Lahnda" -msgstr "" - -#. name for lai -msgid "Lambya" -msgstr "" - -#. name for laj -msgid "Lango (Uganda)" -msgstr "" - -#. name for lak -msgid "Laka (Nigeria)" -msgstr "" - -#. name for lal -msgid "Lalia" -msgstr "" - -#. name for lam -msgid "Lamba" -msgstr "" - -#. name for lan -msgid "Laru" -msgstr "" - -#. name for lao -msgid "Lao" -msgstr "" - -#. name for lap -msgid "Laka (Chad)" -msgstr "" - -#. name for laq -msgid "Qabiao" -msgstr "" - -#. name for lar -msgid "Larteh" -msgstr "" - -#. name for las -msgid "Lama (Togo)" -msgstr "" - -#. name for lat -msgid "Latin" -msgstr "" - -#. name for lau -msgid "Laba" -msgstr "" - -#. name for lav -msgid "Latvian" -msgstr "" - -#. name for law -msgid "Lauje" -msgstr "" - -#. name for lax -msgid "Tiwa" -msgstr "" - -#. name for lay -msgid "Lama (Myanmar)" -msgstr "" - -#. name for laz -msgid "Aribwatsa" -msgstr "" - -#. name for lba -msgid "Lui" -msgstr "" - -#. name for lbb -msgid "Label" -msgstr "" - -#. name for lbc -msgid "Lakkia" -msgstr "" - -#. name for lbe -msgid "Lak" -msgstr "" - -#. name for lbf -msgid "Tinani" -msgstr "" - -#. name for lbg -msgid "Laopang" -msgstr "" - -#. name for lbi -msgid "La'bi" -msgstr "" - -#. name for lbj -msgid "Ladakhi" -msgstr "" - -#. name for lbk -msgid "Bontok; Central" -msgstr "" - -#. name for lbl -msgid "Bikol; Libon" -msgstr "" - -#. name for lbm -msgid "Lodhi" -msgstr "" - -#. name for lbn -msgid "Lamet" -msgstr "" - -#. name for lbo -msgid "Laven" -msgstr "" - -#. name for lbq -msgid "Wampar" -msgstr "" - -#. name for lbr -msgid "Lorung; Northern" -msgstr "" - -#. name for lbs -msgid "Libyan Sign Language" -msgstr "" - -#. name for lbt -msgid "Lachi" -msgstr "" - -#. name for lbu -msgid "Labu" -msgstr "" - -#. name for lbv -msgid "Lavatbura-Lamusong" -msgstr "" - -#. name for lbw -msgid "Tolaki" -msgstr "" - -#. name for lbx -msgid "Lawangan" -msgstr "" - -#. name for lby -msgid "Lamu-Lamu" -msgstr "" - -#. name for lbz -msgid "Lardil" -msgstr "" - -#. name for lcc -msgid "Legenyem" -msgstr "" - -#. name for lcd -msgid "Lola" -msgstr "" - -#. name for lce -msgid "Loncong" -msgstr "" - -#. name for lcf -msgid "Lubu" -msgstr "" - -#. name for lch -msgid "Luchazi" -msgstr "" - -#. name for lcl -msgid "Lisela" -msgstr "" - -#. name for lcm -msgid "Tungag" -msgstr "" - -#. name for lcp -msgid "Lawa; Western" -msgstr "" - -#. name for lcq -msgid "Luhu" -msgstr "" - -#. name for lcs -msgid "Lisabata-Nuniali" -msgstr "" - -#. name for ldb -msgid "Idun" -msgstr "" - -#. name for ldd -msgid "Luri" -msgstr "" - -#. name for ldg -msgid "Lenyima" -msgstr "" - -#. name for ldh -msgid "Lamja-Dengsa-Tola" -msgstr "" - -#. name for ldi -msgid "Laari" -msgstr "" - -#. name for ldj -msgid "Lemoro" -msgstr "" - -#. name for ldk -msgid "Leelau" -msgstr "" - -#. name for ldl -msgid "Kaan" -msgstr "" - -#. name for ldm -msgid "Landoma" -msgstr "" - -#. name for ldn -msgid "Láadan" -msgstr "" - -#. name for ldo -msgid "Loo" -msgstr "" - -#. name for ldp -msgid "Tso" -msgstr "" - -#. name for ldq -msgid "Lufu" -msgstr "" - -#. name for lea -msgid "Lega-Shabunda" -msgstr "" - -#. name for leb -msgid "Lala-Bisa" -msgstr "" - -#. name for lec -msgid "Leco" -msgstr "" - -#. name for led -msgid "Lendu" -msgstr "" - -#. name for lee -msgid "Lyélé" -msgstr "" - -#. name for lef -msgid "Lelemi" -msgstr "" - -#. name for leg -msgid "Lengua" -msgstr "" - -#. name for leh -msgid "Lenje" -msgstr "" - -#. name for lei -msgid "Lemio" -msgstr "" - -#. name for lej -msgid "Lengola" -msgstr "" - -#. name for lek -msgid "Leipon" -msgstr "" - -#. name for lel -msgid "Lele (Democratic Republic of Congo)" -msgstr "" - -#. name for lem -msgid "Nomaande" -msgstr "" - -#. name for len -msgid "Lenca" -msgstr "" - -#. name for leo -msgid "Leti (Cameroon)" -msgstr "" - -#. name for lep -msgid "Lepcha" -msgstr "" - -#. name for leq -msgid "Lembena" -msgstr "" - -#. name for ler -msgid "Lenkau" -msgstr "" - -#. name for les -msgid "Lese" -msgstr "" - -#. name for let -msgid "Lesing-Gelimi" -msgstr "" - -#. name for leu -msgid "Kara (Papua New Guinea)" -msgstr "" - -#. name for lev -msgid "Lamma" -msgstr "" - -#. name for lew -msgid "Kaili; Ledo" -msgstr "" - -#. name for lex -msgid "Luang" -msgstr "" - -#. name for ley -msgid "Lemolang" -msgstr "" - -#. name for lez -msgid "Lezghian" -msgstr "" - -#. name for lfa -msgid "Lefa" -msgstr "" - -#. name for lfn -msgid "Lingua Franca Nova" -msgstr "" - -#. name for lga -msgid "Lungga" -msgstr "" - -#. name for lgb -msgid "Laghu" -msgstr "" - -#. name for lgg -msgid "Lugbara" -msgstr "" - -#. name for lgh -msgid "Laghuu" -msgstr "" - -#. name for lgi -msgid "Lengilu" -msgstr "" - -#. name for lgk -msgid "Lingarak" -msgstr "" - -#. name for lgl -msgid "Wala" -msgstr "" - -#. name for lgm -msgid "Lega-Mwenga" -msgstr "" - -#. name for lgn -msgid "Opuuo" -msgstr "" - -#. name for lgq -msgid "Logba" -msgstr "" - -#. name for lgr -msgid "Lengo" -msgstr "" - -#. name for lgt -msgid "Pahi" -msgstr "" - -#. name for lgu -msgid "Longgu" -msgstr "" - -#. name for lgz -msgid "Ligenza" -msgstr "" - -#. name for lha -msgid "Laha (Viet Nam)" -msgstr "" - -#. name for lhh -msgid "Laha (Indonesia)" -msgstr "" - -#. name for lhi -msgid "Lahu Shi" -msgstr "" - -#. name for lhl -msgid "Lohar; Lahul" -msgstr "" - -#. name for lhm -msgid "Lhomi" -msgstr "" - -#. name for lhn -msgid "Lahanan" -msgstr "" - -#. name for lhp -msgid "Lhokpu" -msgstr "" - -#. name for lhs -msgid "Mlahsö" -msgstr "" - -#. name for lht -msgid "Lo-Toga" -msgstr "" - -#. name for lhu -msgid "Lahu" -msgstr "" - -#. name for lia -msgid "Limba; West-Central" -msgstr "" - -#. name for lib -msgid "Likum" -msgstr "" - -#. name for lic -msgid "Hlai" -msgstr "" - -#. name for lid -msgid "Nyindrou" -msgstr "" - -#. name for lie -msgid "Likila" -msgstr "" - -#. name for lif -msgid "Limbu" -msgstr "" - -#. name for lig -msgid "Ligbi" -msgstr "" - -#. name for lih -msgid "Lihir" -msgstr "" - -#. name for lii -msgid "Lingkhim" -msgstr "" - -#. name for lij -msgid "Ligurian" -msgstr "" - -#. name for lik -msgid "Lika" -msgstr "" - -#. name for lil -msgid "Lillooet" -msgstr "" - -#. name for lim -msgid "Limburgan" -msgstr "" - -#. name for lin -msgid "Lingala" -msgstr "" - -#. name for lio -msgid "Liki" -msgstr "" - -#. name for lip -msgid "Sekpele" -msgstr "" - -#. name for liq -msgid "Libido" -msgstr "" - -#. name for lir -msgid "English; Liberian" -msgstr "" - -#. name for lis -msgid "Lisu" -msgstr "" - -#. name for lit -msgid "Lithuanian" -msgstr "" - -#. name for liu -msgid "Logorik" -msgstr "" - -#. name for liv -msgid "Liv" -msgstr "" - -#. name for liw -msgid "Col" -msgstr "" - -#. name for lix -msgid "Liabuku" -msgstr "" - -#. name for liy -msgid "Banda-Bambari" -msgstr "" - -#. name for liz -msgid "Libinza" -msgstr "" - -#. name for lje -msgid "Rampi" -msgstr "" - -#. name for lji -msgid "Laiyolo" -msgstr "" - -#. name for ljl -msgid "Li'o" -msgstr "" - -#. name for ljp -msgid "Lampung Api" -msgstr "" - -#. name for lka -msgid "Lakalei" -msgstr "" - -#. name for lkb -msgid "Kabras" -msgstr "" - -#. name for lkc -msgid "Kucong" -msgstr "" - -#. name for lkd -msgid "Lakondê" -msgstr "" - -#. name for lke -msgid "Kenyi" -msgstr "" - -#. name for lkh -msgid "Lakha" -msgstr "" - -#. name for lki -msgid "Laki" -msgstr "" - -#. name for lkj -msgid "Remun" -msgstr "" - -#. name for lkl -msgid "Laeko-Libuat" -msgstr "" - -#. name for lkn -msgid "Lakon" -msgstr "" - -#. name for lko -msgid "Khayo" -msgstr "" - -#. name for lkr -msgid "Päri" -msgstr "" - -#. name for lks -msgid "Kisa" -msgstr "" - -#. name for lkt -msgid "Lakota" -msgstr "" - -#. name for lky -msgid "Lokoya" -msgstr "" - -#. name for lla -msgid "Lala-Roba" -msgstr "" - -#. name for llb -msgid "Lolo" -msgstr "" - -#. name for llc -msgid "Lele (Guinea)" -msgstr "" - -#. name for lld -msgid "Ladin" -msgstr "" - -#. name for lle -msgid "Lele (Papua New Guinea)" -msgstr "" - -#. name for llf -msgid "Hermit" -msgstr "" - -#. name for llg -msgid "Lole" -msgstr "" - -#. name for llh -msgid "Lamu" -msgstr "" - -#. name for lli -msgid "Teke-Laali" -msgstr "" - -#. name for llk -msgid "Lelak" -msgstr "" - -#. name for lll -msgid "Lilau" -msgstr "" - -#. name for llm -msgid "Lasalimu" -msgstr "" - -#. name for lln -msgid "Lele (Chad)" -msgstr "" - -#. name for llo -msgid "Khlor" -msgstr "" - -#. name for llp -msgid "Efate; North" -msgstr "" - -#. name for llq -msgid "Lolak" -msgstr "" - -#. name for lls -msgid "Lithuanian Sign Language" -msgstr "" - -#. name for llu -msgid "Lau" -msgstr "" - -#. name for llx -msgid "Lauan" -msgstr "" - -#. name for lma -msgid "Limba; East" -msgstr "" - -#. name for lmb -msgid "Merei" -msgstr "" - -#. name for lmc -msgid "Limilngan" -msgstr "" - -#. name for lmd -msgid "Lumun" -msgstr "" - -#. name for lme -msgid "Pévé" -msgstr "" - -#. name for lmf -msgid "Lembata; South" -msgstr "" - -#. name for lmg -msgid "Lamogai" -msgstr "" - -#. name for lmh -msgid "Lambichhong" -msgstr "" - -#. name for lmi -msgid "Lombi" -msgstr "" - -#. name for lmj -msgid "Lembata; West" -msgstr "" - -#. name for lmk -msgid "Lamkang" -msgstr "" - -#. name for lml -msgid "Hano" -msgstr "" - -#. name for lmm -msgid "Lamam" -msgstr "" - -#. name for lmn -msgid "Lambadi" -msgstr "" - -#. name for lmo -msgid "Lombard" -msgstr "" - -#. name for lmp -msgid "Limbum" -msgstr "" - -#. name for lmq -msgid "Lamatuka" -msgstr "" - -#. name for lmr -msgid "Lamalera" -msgstr "" - -#. name for lmu -msgid "Lamenu" -msgstr "" - -#. name for lmv -msgid "Lomaiviti" -msgstr "" - -#. name for lmw -msgid "Miwok; Lake" -msgstr "" - -#. name for lmx -msgid "Laimbue" -msgstr "" - -#. name for lmy -msgid "Lamboya" -msgstr "" - -#. name for lmz -msgid "Lumbee" -msgstr "" - -#. name for lna -msgid "Langbashe" -msgstr "" - -#. name for lnb -msgid "Mbalanhu" -msgstr "" - -#. name for lnd -msgid "Lundayeh" -msgstr "" - -#. name for lng -msgid "Langobardic" -msgstr "" - -#. name for lnh -msgid "Lanoh" -msgstr "" - -#. name for lni -msgid "Daantanai'" -msgstr "" - -#. name for lnj -msgid "Leningitij" -msgstr "" - -#. name for lnl -msgid "Banda; South Central" -msgstr "" - -#. name for lnm -msgid "Langam" -msgstr "" - -#. name for lnn -msgid "Lorediakarkar" -msgstr "" - -#. name for lno -msgid "Lango (Sudan)" -msgstr "" - -#. name for lns -msgid "Lamnso'" -msgstr "" - -#. name for lnu -msgid "Longuda" -msgstr "" - -#. name for lnz -msgid "Lonzo" -msgstr "" - -#. name for loa -msgid "Loloda" -msgstr "" - -#. name for lob -msgid "Lobi" -msgstr "" - -#. name for loc -msgid "Inonhan" -msgstr "" - -#. name for loe -msgid "Coastal" -msgstr "" - -#. name for lof -msgid "Logol" -msgstr "" - -#. name for log -msgid "Logo" -msgstr "" - -#. name for loh -msgid "Narim" -msgstr "" - -#. name for loi -msgid "Loma (Côte d'Ivoire)" -msgstr "" - -#. name for loj -msgid "Lou" -msgstr "" - -#. name for lok -msgid "Loko" -msgstr "" - -#. name for lol -msgid "Mongo" -msgstr "" - -#. name for lom -msgid "Loma (Liberia)" -msgstr "" - -#. name for lon -msgid "Lomwe; Malawi" -msgstr "" - -#. name for loo -msgid "Lombo" -msgstr "" - -#. name for lop -msgid "Lopa" -msgstr "" - -#. name for loq -msgid "Lobala" -msgstr "" - -#. name for lor -msgid "Téén" -msgstr "" - -#. name for los -msgid "Loniu" -msgstr "" - -#. name for lot -msgid "Otuho" -msgstr "" - -#. name for lou -msgid "Creole French; Louisiana" -msgstr "" - -#. name for lov -msgid "Lopi" -msgstr "" - -#. name for low -msgid "Lobu; Tampias" -msgstr "" - -#. name for lox -msgid "Loun" -msgstr "" - -#. name for loy -msgid "Lowa" -msgstr "" - -#. name for loz -msgid "Lozi" -msgstr "" - -#. name for lpa -msgid "Lelepa" -msgstr "" - -#. name for lpe -msgid "Lepki" -msgstr "" - -#. name for lpn -msgid "Naga; Long Phuri" -msgstr "" - -#. name for lpo -msgid "Lipo" -msgstr "" - -#. name for lpx -msgid "Lopit" -msgstr "" - -#. name for lra -msgid "Rara Bakati'" -msgstr "" - -#. name for lrc -msgid "Luri; Northern" -msgstr "" - -#. name for lre -msgid "Laurentian" -msgstr "" - -#. name for lrg -msgid "Laragia" -msgstr "" - -#. name for lri -msgid "Marachi" -msgstr "" - -#. name for lrk -msgid "Loarki" -msgstr "" - -#. name for lrl -msgid "Lari" -msgstr "" - -#. name for lrm -msgid "Marama" -msgstr "" - -#. name for lrn -msgid "Lorang" -msgstr "" - -#. name for lro -msgid "Laro" -msgstr "" - -#. name for lrr -msgid "Lorung; Southern" -msgstr "" - -#. name for lrt -msgid "Malay; Larantuka" -msgstr "" - -#. name for lrv -msgid "Larevat" -msgstr "" - -#. name for lrz -msgid "Lemerig" -msgstr "" - -#. name for lsa -msgid "Lasgerdi" -msgstr "" - -#. name for lsd -msgid "Lishana Deni" -msgstr "" - -#. name for lse -msgid "Lusengo" -msgstr "" - -#. name for lsg -msgid "Lyons Sign Language" -msgstr "" - -#. name for lsh -msgid "Lish" -msgstr "" - -#. name for lsi -msgid "Lashi" -msgstr "" - -#. name for lsl -msgid "Latvian Sign Language" -msgstr "" - -#. name for lsm -msgid "Saamia" -msgstr "" - -#. name for lso -msgid "Laos Sign Language" -msgstr "" - -#. name for lsp -msgid "Panamanian Sign Language" -msgstr "" - -#. name for lsr -msgid "Aruop" -msgstr "" - -#. name for lss -msgid "Lasi" -msgstr "" - -#. name for lst -msgid "Trinidad and Tobago Sign Language" -msgstr "" - -#. name for lsy -msgid "Mauritian Sign Language" -msgstr "" - -#. name for ltc -msgid "Chinese; Late Middle" -msgstr "" - -#. name for ltg -msgid "Latgalian" -msgstr "" - -#. name for lti -msgid "Leti (Indonesia)" -msgstr "" - -#. name for ltn -msgid "Latundê" -msgstr "" - -#. name for lto -msgid "Tsotso" -msgstr "" - -#. name for lts -msgid "Tachoni" -msgstr "" - -#. name for ltu -msgid "Latu" -msgstr "" - -#. name for ltz -msgid "Luxembourgish" -msgstr "" - -#. name for lua -msgid "Luba-Lulua" -msgstr "" - -#. name for lub -msgid "Luba-Katanga" -msgstr "" - -#. name for luc -msgid "Aringa" -msgstr "" - -#. name for lud -msgid "Ludian" -msgstr "" - -#. name for lue -msgid "Luvale" -msgstr "" - -#. name for luf -msgid "Laua" -msgstr "" - -#. name for lug -msgid "Ganda" -msgstr "" - -#. name for lui -msgid "Luiseno" -msgstr "" - -#. name for luj -msgid "Luna" -msgstr "" - -#. name for luk -msgid "Lunanakha" -msgstr "" - -#. name for lul -msgid "Olu'bo" -msgstr "" - -#. name for lum -msgid "Luimbi" -msgstr "" - -#. name for lun -msgid "Lunda" -msgstr "" - -#. name for luo -msgid "Luo (Kenya and Tanzania)" -msgstr "" - -#. name for lup -msgid "Lumbu" -msgstr "" - -#. name for luq -msgid "Lucumi" -msgstr "" - -#. name for lur -msgid "Laura" -msgstr "" - -#. name for lus -msgid "Lushai" -msgstr "" - -#. name for lut -msgid "Lushootseed" -msgstr "" - -#. name for luu -msgid "Lumba-Yakkha" -msgstr "" - -#. name for luv -msgid "Luwati" -msgstr "" - -#. name for luw -msgid "Luo (Cameroon)" -msgstr "" - -#. name for luy -msgid "Luyia" -msgstr "" - -#. name for luz -msgid "Luri; Southern" -msgstr "" - -#. name for lva -msgid "Maku'a" -msgstr "" - -#. name for lvk -msgid "Lavukaleve" -msgstr "" - -#. name for lvs -msgid "Latvian; Standard" -msgstr "" - -#. name for lvu -msgid "Levuka" -msgstr "" - -#. name for lwa -msgid "Lwalu" -msgstr "" - -#. name for lwe -msgid "Lewo Eleng" -msgstr "" - -#. name for lwg -msgid "Wanga" -msgstr "" - -#. name for lwh -msgid "Lachi; White" -msgstr "" - -#. name for lwl -msgid "Lawa; Eastern" -msgstr "" - -#. name for lwm -msgid "Laomian" -msgstr "" - -#. name for lwo -msgid "Luwo" -msgstr "" - -#. name for lwt -msgid "Lewotobi" -msgstr "" - -#. name for lww -msgid "Lewo" -msgstr "" - -#. name for lya -msgid "Layakha" -msgstr "" - -#. name for lyg -msgid "Lyngngam" -msgstr "" - -#. name for lyn -msgid "Luyana" -msgstr "" - -#. name for lzh -msgid "Chinese; Literary" -msgstr "" - -#. name for lzl -msgid "Litzlitz" -msgstr "" - -#. name for lzn -msgid "Naga; Leinong" -msgstr "" - -#. name for lzz -msgid "Laz" -msgstr "" - -#. name for maa -msgid "Mazatec; San Jerónimo Tecóatl" -msgstr "" - -#. name for mab -msgid "Mixtec; Yutanduchi" -msgstr "" - -#. name for mad -msgid "Madurese" -msgstr "" - -#. name for mae -msgid "Bo-Rukul" -msgstr "" - -#. name for maf -msgid "Mafa" -msgstr "" - -#. name for mag -msgid "Magahi" -msgstr "" - -#. name for mah -msgid "Marshallese" -msgstr "" - -#. name for mai -msgid "Maithili" -msgstr "" - -#. name for maj -msgid "Mazatec; Jalapa De Díaz" -msgstr "" - -#. name for mak -msgid "Makasar" -msgstr "" - -#. name for mal -msgid "Malayalam" -msgstr "" - -#. name for mam -msgid "Mam" -msgstr "" - -#. name for man -msgid "Mandingo" -msgstr "" - -#. name for maq -msgid "Mazatec; Chiquihuitlán" -msgstr "" - -#. name for mar -msgid "Marathi" -msgstr "" - -#. name for mas -msgid "Masai" -msgstr "" - -#. name for mat -msgid "Matlatzinca; San Francisco" -msgstr "" - -#. name for mau -msgid "Mazatec; Huautla" -msgstr "" - -#. name for mav -msgid "Sateré-Mawé" -msgstr "" - -#. name for maw -msgid "Mampruli" -msgstr "" - -#. name for max -msgid "Malay; North Moluccan" -msgstr "" - -#. name for maz -msgid "Mazahua; Central" -msgstr "" - -#. name for mba -msgid "Higaonon" -msgstr "" - -#. name for mbb -msgid "Manobo; Western Bukidnon" -msgstr "" - -#. name for mbc -msgid "Macushi" -msgstr "" - -#. name for mbd -msgid "Manobo; Dibabawon" -msgstr "" - -#. name for mbe -msgid "Molale" -msgstr "" - -#. name for mbf -msgid "Malay; Baba" -msgstr "" - -#. name for mbh -msgid "Mangseng" -msgstr "" - -#. name for mbi -msgid "Manobo; Ilianen" -msgstr "" - -#. name for mbj -msgid "Nadëb" -msgstr "" - -#. name for mbk -msgid "Malol" -msgstr "" - -#. name for mbl -msgid "Maxakalí" -msgstr "" - -#. name for mbm -msgid "Ombamba" -msgstr "" - -#. name for mbn -msgid "Macaguán" -msgstr "" - -#. name for mbo -msgid "Mbo (Cameroon)" -msgstr "" - -#. name for mbp -msgid "Malayo" -msgstr "" - -#. name for mbq -msgid "Maisin" -msgstr "" - -#. name for mbr -msgid "Nukak Makú" -msgstr "" - -#. name for mbs -msgid "Manobo; Sarangani" -msgstr "" - -#. name for mbt -msgid "Manobo; Matigsalug" -msgstr "" - -#. name for mbu -msgid "Mbula-Bwazza" -msgstr "" - -#. name for mbv -msgid "Mbulungish" -msgstr "" - -#. name for mbw -msgid "Maring" -msgstr "" - -#. name for mbx -msgid "Mari (East Sepik Province)" -msgstr "" - -#. name for mby -msgid "Memoni" -msgstr "" - -#. name for mbz -msgid "Mixtec; Amoltepec" -msgstr "" - -#. name for mca -msgid "Maca" -msgstr "" - -#. name for mcb -msgid "Machiguenga" -msgstr "" - -#. name for mcc -msgid "Bitur" -msgstr "" - -#. name for mcd -msgid "Sharanahua" -msgstr "" - -#. name for mce -msgid "Mixtec; Itundujia" -msgstr "" - -#. name for mcf -msgid "Matsés" -msgstr "" - -#. name for mcg -msgid "Mapoyo" -msgstr "" - -#. name for mch -msgid "Maquiritari" -msgstr "" - -#. name for mci -msgid "Mese" -msgstr "" - -#. name for mcj -msgid "Mvanip" -msgstr "" - -#. name for mck -msgid "Mbunda" -msgstr "" - -#. name for mcl -msgid "Macaguaje" -msgstr "" - -#. name for mcm -msgid "Creole Portuguese; Malaccan" -msgstr "" - -#. name for mcn -msgid "Masana" -msgstr "" - -#. name for mco -msgid "Mixe; Coatlán" -msgstr "" - -#. name for mcp -msgid "Makaa" -msgstr "" - -#. name for mcq -msgid "Ese" -msgstr "" - -#. name for mcr -msgid "Menya" -msgstr "" - -#. name for mcs -msgid "Mambai" -msgstr "" - -#. name for mct -msgid "Mengisa" -msgstr "" - -#. name for mcu -msgid "Mambila; Cameroon" -msgstr "" - -#. name for mcv -msgid "Minanibai" -msgstr "" - -#. name for mcw -msgid "Mawa (Chad)" -msgstr "" - -#. name for mcx -msgid "Mpiemo" -msgstr "" - -#. name for mcy -msgid "Watut; South" -msgstr "" - -#. name for mcz -msgid "Mawan" -msgstr "" - -#. name for mda -msgid "Mada (Nigeria)" -msgstr "" - -#. name for mdb -msgid "Morigi" -msgstr "" - -#. name for mdc -msgid "Male (Papua New Guinea)" -msgstr "" - -#. name for mdd -msgid "Mbum" -msgstr "" - -#. name for mde -msgid "Maba (Chad)" -msgstr "" - -#. name for mdf -msgid "Moksha" -msgstr "" - -#. name for mdg -msgid "Massalat" -msgstr "" - -#. name for mdh -msgid "Maguindanaon" -msgstr "" - -#. name for mdi -msgid "Mamvu" -msgstr "" - -#. name for mdj -msgid "Mangbetu" -msgstr "" - -#. name for mdk -msgid "Mangbutu" -msgstr "" - -#. name for mdl -msgid "Maltese Sign Language" -msgstr "" - -#. name for mdm -msgid "Mayogo" -msgstr "" - -#. name for mdn -msgid "Mbati" -msgstr "" - -#. name for mdp -msgid "Mbala" -msgstr "" - -#. name for mdq -msgid "Mbole" -msgstr "" - -#. name for mdr -msgid "Mandar" -msgstr "" - -#. name for mds -msgid "Maria (Papua New Guinea)" -msgstr "" - -#. name for mdt -msgid "Mbere" -msgstr "" - -#. name for mdu -msgid "Mboko" -msgstr "" - -#. name for mdv -msgid "Mixtec; Santa Lucía Monteverde" -msgstr "" - -#. name for mdw -msgid "Mbosi" -msgstr "" - -#. name for mdx -msgid "Dizin" -msgstr "" - -#. name for mdy -msgid "Male (Ethiopia)" -msgstr "" - -#. name for mdz -msgid "Suruí Do Pará" -msgstr "" - -#. name for mea -msgid "Menka" -msgstr "" - -#. name for meb -msgid "Ikobi-Mena" -msgstr "" - -#. name for mec -msgid "Mara" -msgstr "" - -#. name for med -msgid "Melpa" -msgstr "" - -#. name for mee -msgid "Mengen" -msgstr "" - -#. name for mef -msgid "Megam" -msgstr "" - -#. name for meg -msgid "Mea" -msgstr "" - -#. name for meh -msgid "Mixtec; Southwestern Tlaxiaco" -msgstr "" - -#. name for mei -msgid "Midob" -msgstr "" - -#. name for mej -msgid "Meyah" -msgstr "" - -#. name for mek -msgid "Mekeo" -msgstr "" - -#. name for mel -msgid "Melanau; Central" -msgstr "" - -#. name for mem -msgid "Mangala" -msgstr "" - -#. name for men -msgid "Mende (Sierra Leone)" -msgstr "" - -#. name for meo -msgid "Malay; Kedah" -msgstr "" - -#. name for mep -msgid "Miriwung" -msgstr "" - -#. name for meq -msgid "Merey" -msgstr "" - -#. name for mer -msgid "Meru" -msgstr "" - -#. name for mes -msgid "Masmaje" -msgstr "" - -#. name for met -msgid "Mato" -msgstr "" - -#. name for meu -msgid "Motu" -msgstr "" - -#. name for mev -msgid "Mann" -msgstr "" - -#. name for mew -msgid "Maaka" -msgstr "" - -#. name for mey -msgid "Hassaniyya" -msgstr "" - -#. name for mez -msgid "Menominee" -msgstr "" - -#. name for mfa -msgid "Malay; Pattani" -msgstr "" - -#. name for mfb -msgid "Bangka" -msgstr "" - -#. name for mfc -msgid "Mba" -msgstr "" - -#. name for mfd -msgid "Mendankwe-Nkwen" -msgstr "" - -#. name for mfe -msgid "Morisyen" -msgstr "" - -#. name for mff -msgid "Naki" -msgstr "" - -#. name for mfg -msgid "Mixifore" -msgstr "" - -#. name for mfh -msgid "Matal" -msgstr "" - -#. name for mfi -msgid "Wandala" -msgstr "" - -#. name for mfj -msgid "Mefele" -msgstr "" - -#. name for mfk -msgid "Mofu; North" -msgstr "" - -#. name for mfl -msgid "Putai" -msgstr "" - -#. name for mfm -msgid "Marghi South" -msgstr "" - -#. name for mfn -msgid "Mbembe; Cross River" -msgstr "" - -#. name for mfo -msgid "Mbe" -msgstr "" - -#. name for mfp -msgid "Malay; Makassar" -msgstr "" - -#. name for mfq -msgid "Moba" -msgstr "" - -#. name for mfr -msgid "Marithiel" -msgstr "" - -#. name for mfs -msgid "Mexican Sign Language" -msgstr "" - -#. name for mft -msgid "Mokerang" -msgstr "" - -#. name for mfu -msgid "Mbwela" -msgstr "" - -#. name for mfv -msgid "Mandjak" -msgstr "" - -#. name for mfw -msgid "Mulaha" -msgstr "" - -#. name for mfx -msgid "Melo" -msgstr "" - -#. name for mfy -msgid "Mayo" -msgstr "" - -#. name for mfz -msgid "Mabaan" -msgstr "" - -#. name for mga -msgid "Irish; Middle (900-1200)" -msgstr "" - -#. name for mgb -msgid "Mararit" -msgstr "" - -#. name for mgc -msgid "Morokodo" -msgstr "" - -#. name for mgd -msgid "Moru" -msgstr "" - -#. name for mge -msgid "Mango" -msgstr "" - -#. name for mgf -msgid "Maklew" -msgstr "" - -#. name for mgg -msgid "Mpongmpong" -msgstr "" - -#. name for mgh -msgid "Makhuwa-Meetto" -msgstr "" - -#. name for mgi -msgid "Lijili" -msgstr "" - -#. name for mgj -msgid "Abureni" -msgstr "" - -#. name for mgk -msgid "Mawes" -msgstr "" - -#. name for mgl -msgid "Maleu-Kilenge" -msgstr "" - -#. name for mgm -msgid "Mambae" -msgstr "" - -#. name for mgn -msgid "Mbangi" -msgstr "" - -#. name for mgo -msgid "Meta'" -msgstr "" - -#. name for mgp -msgid "Magar; Eastern" -msgstr "" - -#. name for mgq -msgid "Malila" -msgstr "" - -#. name for mgr -msgid "Mambwe-Lungu" -msgstr "" - -#. name for mgs -msgid "Manda (Tanzania)" -msgstr "" - -#. name for mgt -msgid "Mongol" -msgstr "" - -#. name for mgu -msgid "Mailu" -msgstr "" - -#. name for mgv -msgid "Matengo" -msgstr "" - -#. name for mgw -msgid "Matumbi" -msgstr "" - -#. name for mgx -msgid "Omati" -msgstr "" - -#. name for mgy -msgid "Mbunga" -msgstr "" - -#. name for mgz -msgid "Mbugwe" -msgstr "" - -#. name for mha -msgid "Manda (India)" -msgstr "" - -#. name for mhb -msgid "Mahongwe" -msgstr "" - -#. name for mhc -msgid "Mocho" -msgstr "" - -#. name for mhd -msgid "Mbugu" -msgstr "" - -#. name for mhe -msgid "Besisi" -msgstr "" - -#. name for mhf -msgid "Mamaa" -msgstr "" - -#. name for mhg -msgid "Margu" -msgstr "" - -#. name for mhh -msgid "Maskoy Pidgin" -msgstr "" - -#. name for mhi -msgid "Ma'di" -msgstr "" - -#. name for mhj -msgid "Mogholi" -msgstr "" - -#. name for mhk -msgid "Mungaka" -msgstr "" - -#. name for mhl -msgid "Mauwake" -msgstr "" - -#. name for mhm -msgid "Makhuwa-Moniga" -msgstr "" - -#. name for mhn -msgid "Mócheno" -msgstr "" - -#. name for mho -msgid "Mashi (Zambia)" -msgstr "" - -#. name for mhp -msgid "Malay; Balinese" -msgstr "" - -#. name for mhq -msgid "Mandan" -msgstr "" - -#. name for mhr -msgid "Mari; Eastern" -msgstr "" - -#. name for mhs -msgid "Buru (Indonesia)" -msgstr "" - -#. name for mht -msgid "Mandahuaca" -msgstr "" - -#. name for mhu -msgid "Deng; Darang" -msgstr "" - -#. name for mhw -msgid "Mbukushu" -msgstr "" - -#. name for mhx -msgid "Maru" -msgstr "" - -#. name for mhy -msgid "Ma'anyan" -msgstr "" - -#. name for mhz -msgid "Mor (Mor Islands)" -msgstr "" - -#. name for mia -msgid "Miami" -msgstr "" - -#. name for mib -msgid "Mixtec; Atatláhuca" -msgstr "" - -#. name for mic -msgid "Mi'kmaq" -msgstr "" - -#. name for mid -msgid "Mandaic" -msgstr "" - -#. name for mie -msgid "Mixtec; Ocotepec" -msgstr "" - -#. name for mif -msgid "Mofu-Gudur" -msgstr "" - -#. name for mig -msgid "Mixtec; San Miguel El Grande" -msgstr "" - -#. name for mih -msgid "Mixtec; Chayuco" -msgstr "" - -#. name for mii -msgid "Mixtec; Chigmecatitlán" -msgstr "" - -#. name for mij -msgid "Abar" -msgstr "" - -#. name for mik -msgid "Mikasuki" -msgstr "" - -#. name for mil -msgid "Mixtec; Peñoles" -msgstr "" - -#. name for mim -msgid "Mixtec; Alacatlatzala" -msgstr "" - -#. name for min -msgid "Minangkabau" -msgstr "" - -#. name for mio -msgid "Mixtec; Pinotepa Nacional" -msgstr "" - -#. name for mip -msgid "Mixtec; Apasco-Apoala" -msgstr "" - -#. name for miq -msgid "Mískito" -msgstr "" - -#. name for mir -msgid "Mixe; Isthmus" -msgstr "" - -#. name for mis -msgid "Uncoded languages" -msgstr "" - -#. name for mit -msgid "Mixtec; Southern Puebla" -msgstr "" - -#. name for miu -msgid "Mixtec; Cacaloxtepec" -msgstr "" - -#. name for miw -msgid "Akoye" -msgstr "" - -#. name for mix -msgid "Mixtec; Mixtepec" -msgstr "" - -#. name for miy -msgid "Mixtec; Ayutla" -msgstr "" - -#. name for miz -msgid "Mixtec; Coatzospan" -msgstr "" - -#. name for mjc -msgid "Mixtec; San Juan Colorado" -msgstr "" - -#. name for mjd -msgid "Maidu; Northwest" -msgstr "" - -#. name for mje -msgid "Muskum" -msgstr "" - -#. name for mjg -msgid "Tu" -msgstr "" - -#. name for mjh -msgid "Mwera (Nyasa)" -msgstr "" - -#. name for mji -msgid "Kim Mun" -msgstr "" - -#. name for mjj -msgid "Mawak" -msgstr "" - -#. name for mjk -msgid "Matukar" -msgstr "" - -#. name for mjl -msgid "Mandeali" -msgstr "" - -#. name for mjm -msgid "Medebur" -msgstr "" - -#. name for mjn -msgid "Ma (Papua New Guinea)" -msgstr "" - -#. name for mjo -msgid "Malankuravan" -msgstr "" - -#. name for mjp -msgid "Malapandaram" -msgstr "" - -#. name for mjq -msgid "Malaryan" -msgstr "" - -#. name for mjr -msgid "Malavedan" -msgstr "" - -#. name for mjs -msgid "Miship" -msgstr "" - -#. name for mjt -msgid "Sauria Paharia" -msgstr "" - -#. name for mju -msgid "Manna-Dora" -msgstr "" - -#. name for mjv -msgid "Mannan" -msgstr "" - -#. name for mjw -msgid "Karbi" -msgstr "" - -#. name for mjx -msgid "Mahali" -msgstr "" - -#. name for mjy -msgid "Mahican" -msgstr "" - -#. name for mjz -msgid "Majhi" -msgstr "" - -#. name for mka -msgid "Mbre" -msgstr "" - -#. name for mkb -msgid "Mal Paharia" -msgstr "" - -#. name for mkc -msgid "Siliput" -msgstr "" - -#. name for mkd -msgid "Macedonian" -msgstr "" - -#. name for mke -msgid "Mawchi" -msgstr "" - -#. name for mkf -msgid "Miya" -msgstr "" - -#. name for mkg -msgid "Mak (China)" -msgstr "" - -#. name for mki -msgid "Dhatki" -msgstr "" - -#. name for mkj -msgid "Mokilese" -msgstr "" - -#. name for mkk -msgid "Byep" -msgstr "" - -#. name for mkl -msgid "Mokole" -msgstr "" - -#. name for mkm -msgid "Moklen" -msgstr "" - -#. name for mkn -msgid "Malay; Kupang" -msgstr "" - -#. name for mko -msgid "Mingang Doso" -msgstr "" - -#. name for mkp -msgid "Moikodi" -msgstr "" - -#. name for mkq -msgid "Miwok; Bay" -msgstr "" - -#. name for mkr -msgid "Malas" -msgstr "" - -#. name for mks -msgid "Mixtec; Silacayoapan" -msgstr "" - -#. name for mkt -msgid "Vamale" -msgstr "" - -#. name for mku -msgid "Maninka; Konyanka" -msgstr "" - -#. name for mkv -msgid "Mafea" -msgstr "" - -#. name for mkw -msgid "Kituba (Congo)" -msgstr "" - -#. name for mkx -msgid "Manobo; Kinamiging" -msgstr "" - -#. name for mky -msgid "Makian; East" -msgstr "" - -#. name for mkz -msgid "Makasae" -msgstr "" - -#. name for mla -msgid "Malo" -msgstr "" - -#. name for mlb -msgid "Mbule" -msgstr "" - -#. name for mlc -msgid "Cao Lan" -msgstr "" - -#. name for mld -msgid "Malakhel" -msgstr "" - -#. name for mle -msgid "Manambu" -msgstr "" - -#. name for mlf -msgid "Mal" -msgstr "" - -#. name for mlg -msgid "Malagasy" -msgstr "" - -#. name for mlh -msgid "Mape" -msgstr "" - -#. name for mli -msgid "Malimpung" -msgstr "" - -#. name for mlj -msgid "Miltu" -msgstr "" - -#. name for mlk -msgid "Ilwana" -msgstr "" - -#. name for mll -msgid "Malua Bay" -msgstr "" - -#. name for mlm -msgid "Mulam" -msgstr "" - -#. name for mln -msgid "Malango" -msgstr "" - -#. name for mlo -msgid "Mlomp" -msgstr "" - -#. name for mlp -msgid "Bargam" -msgstr "" - -#. name for mlq -msgid "Maninkakan; Western" -msgstr "" - -#. name for mlr -msgid "Vame" -msgstr "" - -#. name for mls -msgid "Masalit" -msgstr "" - -#. name for mlt -msgid "Maltese" -msgstr "" - -#. name for mlu -msgid "To'abaita" -msgstr "" - -#. name for mlv -msgid "Motlav" -msgstr "" - -#. name for mlw -msgid "Moloko" -msgstr "" - -#. name for mlx -msgid "Malfaxal" -msgstr "" - -#. name for mlz -msgid "Malaynon" -msgstr "" - -#. name for mma -msgid "Mama" -msgstr "" - -#. name for mmb -msgid "Momina" -msgstr "" - -#. name for mmc -msgid "Mazahua; Michoacán" -msgstr "" - -#. name for mmd -msgid "Maonan" -msgstr "" - -#. name for mme -msgid "Mae" -msgstr "" - -#. name for mmf -msgid "Mundat" -msgstr "" - -#. name for mmg -msgid "Ambrym; North" -msgstr "" - -#. name for mmh -msgid "Mehináku" -msgstr "" - -#. name for mmi -msgid "Musar" -msgstr "" - -#. name for mmj -msgid "Majhwar" -msgstr "" - -#. name for mmk -msgid "Mukha-Dora" -msgstr "" - -#. name for mml -msgid "Man Met" -msgstr "" - -#. name for mmm -msgid "Maii" -msgstr "" - -#. name for mmn -msgid "Mamanwa" -msgstr "" - -#. name for mmo -msgid "Buang; Mangga" -msgstr "" - -#. name for mmp -msgid "Siawi" -msgstr "" - -#. name for mmq -msgid "Musak" -msgstr "" - -#. name for mmr -msgid "Miao; Western Xiangxi" -msgstr "" - -#. name for mmt -msgid "Malalamai" -msgstr "" - -#. name for mmu -msgid "Mmaala" -msgstr "" - -#. name for mmv -msgid "Miriti" -msgstr "" - -#. name for mmw -msgid "Emae" -msgstr "" - -#. name for mmx -msgid "Madak" -msgstr "" - -#. name for mmy -msgid "Migaama" -msgstr "" - -#. name for mmz -msgid "Mabaale" -msgstr "" - -#. name for mna -msgid "Mbula" -msgstr "" - -#. name for mnb -msgid "Muna" -msgstr "" - -#. name for mnc -msgid "Manchu" -msgstr "" - -#. name for mnd -msgid "Mondé" -msgstr "" - -#. name for mne -msgid "Naba" -msgstr "" - -#. name for mnf -msgid "Mundani" -msgstr "" - -#. name for mng -msgid "Mnong; Eastern" -msgstr "" - -#. name for mnh -msgid "Mono (Democratic Republic of Congo)" -msgstr "" - -#. name for mni -msgid "Manipuri" -msgstr "" - -#. name for mnj -msgid "Munji" -msgstr "" - -#. name for mnk -msgid "Mandinka" -msgstr "" - -#. name for mnl -msgid "Tiale" -msgstr "" - -#. name for mnm -msgid "Mapena" -msgstr "" - -#. name for mnn -msgid "Mnong; Southern" -msgstr "" - -#. name for mnp -msgid "Chinese; Min Bei" -msgstr "" - -#. name for mnq -msgid "Minriq" -msgstr "" - -#. name for mnr -msgid "Mono (USA)" -msgstr "" - -#. name for mns -msgid "Mansi" -msgstr "" - -#. name for mnt -msgid "Maykulan" -msgstr "" - -#. name for mnu -msgid "Mer" -msgstr "" - -#. name for mnv -msgid "Rennell-Bellona" -msgstr "" - -#. name for mnw -msgid "Mon" -msgstr "" - -#. name for mnx -msgid "Manikion" -msgstr "" - -#. name for mny -msgid "Manyawa" -msgstr "" - -#. name for mnz -msgid "Moni" -msgstr "" - -#. name for moa -msgid "Mwan" -msgstr "" - -#. name for moc -msgid "Mocoví" -msgstr "" - -#. name for mod -msgid "Mobilian" -msgstr "" - -#. name for moe -msgid "Montagnais" -msgstr "" - -#. name for mog -msgid "Mongondow" -msgstr "" - -#. name for moh -msgid "Mohawk" -msgstr "" - -#. name for moi -msgid "Mboi" -msgstr "" - -#. name for moj -msgid "Monzombo" -msgstr "" - -#. name for mok -msgid "Morori" -msgstr "" - -#. name for mom -msgid "Mangue" -msgstr "" - -#. name for mon -msgid "Mongolian" -msgstr "" - -#. name for moo -msgid "Monom" -msgstr "" - -#. name for mop -msgid "Mopán Maya" -msgstr "" - -#. name for moq -msgid "Mor (Bomberai Peninsula)" -msgstr "" - -#. name for mor -msgid "Moro" -msgstr "" - -#. name for mos -msgid "Mossi" -msgstr "" - -#. name for mot -msgid "Barí" -msgstr "" - -#. name for mou -msgid "Mogum" -msgstr "" - -#. name for mov -msgid "Mohave" -msgstr "" - -#. name for mow -msgid "Moi (Congo)" -msgstr "" - -#. name for mox -msgid "Molima" -msgstr "" - -#. name for moy -msgid "Shekkacho" -msgstr "" - -#. name for moz -msgid "Mukulu" -msgstr "" - -#. name for mpa -msgid "Mpoto" -msgstr "" - -#. name for mpb -msgid "Mullukmulluk" -msgstr "" - -#. name for mpc -msgid "Mangarayi" -msgstr "" - -#. name for mpd -msgid "Machinere" -msgstr "" - -#. name for mpe -msgid "Majang" -msgstr "" - -#. name for mpg -msgid "Marba" -msgstr "" - -#. name for mph -msgid "Maung" -msgstr "" - -#. name for mpi -msgid "Mpade" -msgstr "" - -#. name for mpj -msgid "Martu Wangka" -msgstr "" - -#. name for mpk -msgid "Mbara (Chad)" -msgstr "" - -#. name for mpl -msgid "Watut; Middle" -msgstr "" - -#. name for mpm -msgid "Mixtec; Yosondúa" -msgstr "" - -#. name for mpn -msgid "Mindiri" -msgstr "" - -#. name for mpo -msgid "Miu" -msgstr "" - -#. name for mpp -msgid "Migabac" -msgstr "" - -#. name for mpq -msgid "Matís" -msgstr "" - -#. name for mpr -msgid "Vangunu" -msgstr "" - -#. name for mps -msgid "Dadibi" -msgstr "" - -#. name for mpt -msgid "Mian" -msgstr "" - -#. name for mpu -msgid "Makuráp" -msgstr "" - -#. name for mpv -msgid "Mungkip" -msgstr "" - -#. name for mpw -msgid "Mapidian" -msgstr "" - -#. name for mpx -msgid "Misima-Paneati" -msgstr "" - -#. name for mpy -msgid "Mapia" -msgstr "" - -#. name for mpz -msgid "Mpi" -msgstr "" - -#. name for mqa -msgid "Maba (Indonesia)" -msgstr "" - -#. name for mqb -msgid "Mbuko" -msgstr "" - -#. name for mqc -msgid "Mangole" -msgstr "" - -#. name for mqe -msgid "Matepi" -msgstr "" - -#. name for mqf -msgid "Momuna" -msgstr "" - -#. name for mqg -msgid "Malay; Kota Bangun Kutai" -msgstr "" - -#. name for mqh -msgid "Mixtec; Tlazoyaltepec" -msgstr "" - -#. name for mqi -msgid "Mariri" -msgstr "" - -#. name for mqj -msgid "Mamasa" -msgstr "" - -#. name for mqk -msgid "Manobo; Rajah Kabunsuwan" -msgstr "" - -#. name for mql -msgid "Mbelime" -msgstr "" - -#. name for mqm -msgid "Marquesan; South" -msgstr "" - -#. name for mqn -msgid "Moronene" -msgstr "" - -#. name for mqo -msgid "Modole" -msgstr "" - -#. name for mqp -msgid "Manipa" -msgstr "" - -#. name for mqq -msgid "Minokok" -msgstr "" - -#. name for mqr -msgid "Mander" -msgstr "" - -#. name for mqs -msgid "Makian; West" -msgstr "" - -#. name for mqt -msgid "Mok" -msgstr "" - -#. name for mqu -msgid "Mandari" -msgstr "" - -#. name for mqv -msgid "Mosimo" -msgstr "" - -#. name for mqw -msgid "Murupi" -msgstr "" - -#. name for mqx -msgid "Mamuju" -msgstr "" - -#. name for mqy -msgid "Manggarai" -msgstr "" - -#. name for mqz -msgid "Malasanga" -msgstr "" - -#. name for mra -msgid "Mlabri" -msgstr "" - -#. name for mrb -msgid "Marino" -msgstr "" - -#. name for mrc -msgid "Maricopa" -msgstr "" - -#. name for mrd -msgid "Magar; Western" -msgstr "" - -#. name for mre -msgid "Martha's Vineyard Sign Language" -msgstr "" - -#. name for mrf -msgid "Elseng" -msgstr "" - -#. name for mrg -msgid "Mising" -msgstr "" - -#. name for mrh -msgid "Chin; Mara" -msgstr "" - -#. name for mri -msgid "Maori" -msgstr "" - -#. name for mrj -msgid "Mari; Western" -msgstr "" - -#. name for mrk -msgid "Hmwaveke" -msgstr "" - -#. name for mrl -msgid "Mortlockese" -msgstr "" - -#. name for mrm -msgid "Merlav" -msgstr "" - -#. name for mrn -msgid "Cheke Holo" -msgstr "" - -#. name for mro -msgid "Mru" -msgstr "" - -#. name for mrp -msgid "Morouas" -msgstr "" - -#. name for mrq -msgid "Marquesan; North" -msgstr "" - -#. name for mrr -msgid "Maria (India)" -msgstr "" - -#. name for mrs -msgid "Maragus" -msgstr "" - -#. name for mrt -msgid "Marghi Central" -msgstr "" - -#. name for mru -msgid "Mono (Cameroon)" -msgstr "" - -#. name for mrv -msgid "Mangareva" -msgstr "" - -#. name for mrw -msgid "Maranao" -msgstr "" - -#. name for mrx -msgid "Maremgi" -msgstr "" - -#. name for mry -msgid "Mandaya" -msgstr "" - -#. name for mrz -msgid "Marind" -msgstr "" - -#. name for msa -msgid "Malay (macrolanguage)" -msgstr "" - -#. name for msb -msgid "Masbatenyo" -msgstr "" - -#. name for msc -msgid "Maninka; Sankaran" -msgstr "" - -#. name for msd -msgid "Yucatec Maya Sign Language" -msgstr "" - -#. name for mse -msgid "Musey" -msgstr "" - -#. name for msf -msgid "Mekwei" -msgstr "" - -#. name for msg -msgid "Moraid" -msgstr "" - -#. name for msh -msgid "Malagasy; Masikoro" -msgstr "" - -#. name for msi -msgid "Malay; Sabah" -msgstr "" - -#. name for msj -msgid "Ma (Democratic Republic of Congo)" -msgstr "" - -#. name for msk -msgid "Mansaka" -msgstr "" - -#. name for msl -msgid "Molof" -msgstr "" - -#. name for msm -msgid "Manobo; Agusan" -msgstr "" - -#. name for msn -msgid "Vurës" -msgstr "" - -#. name for mso -msgid "Mombum" -msgstr "" - -#. name for msp -msgid "Maritsauá" -msgstr "" - -#. name for msq -msgid "Caac" -msgstr "" - -#. name for msr -msgid "Mongolian Sign Language" -msgstr "" - -#. name for mss -msgid "Masela; West" -msgstr "" - -#. name for msu -msgid "Musom" -msgstr "" - -#. name for msv -msgid "Maslam" -msgstr "" - -#. name for msw -msgid "Mansoanka" -msgstr "" - -#. name for msx -msgid "Moresada" -msgstr "" - -#. name for msy -msgid "Aruamu" -msgstr "" - -#. name for msz -msgid "Momare" -msgstr "" - -#. name for mta -msgid "Manobo; Cotabato" -msgstr "" - -#. name for mtb -msgid "Anyin Morofo" -msgstr "" - -#. name for mtc -msgid "Munit" -msgstr "" - -#. name for mtd -msgid "Mualang" -msgstr "" - -#. name for mte -msgid "Mono (Solomon Islands)" -msgstr "" - -#. name for mtf -msgid "Murik (Papua New Guinea)" -msgstr "" - -#. name for mtg -msgid "Una" -msgstr "" - -#. name for mth -msgid "Munggui" -msgstr "" - -#. name for mti -msgid "Maiwa (Papua New Guinea)" -msgstr "" - -#. name for mtj -msgid "Moskona" -msgstr "" - -#. name for mtk -msgid "Mbe'" -msgstr "" - -#. name for mtl -msgid "Montol" -msgstr "" - -#. name for mtm -msgid "Mator" -msgstr "" - -#. name for mtn -msgid "Matagalpa" -msgstr "" - -#. name for mto -msgid "Mixe; Totontepec" -msgstr "" - -#. name for mtp -msgid "Wichí Lhamtés Nocten" -msgstr "" - -#. name for mtq -msgid "Muong" -msgstr "" - -#. name for mtr -msgid "Mewari" -msgstr "" - -#. name for mts -msgid "Yora" -msgstr "" - -#. name for mtt -msgid "Mota" -msgstr "" - -#. name for mtu -msgid "Mixtec; Tututepec" -msgstr "" - -#. name for mtv -msgid "Asaro'o" -msgstr "" - -#. name for mtw -msgid "Binukidnon; Southern" -msgstr "" - -#. name for mtx -msgid "Mixtec; Tidaá" -msgstr "" - -#. name for mty -msgid "Nabi" -msgstr "" - -#. name for mua -msgid "Mundang" -msgstr "" - -#. name for mub -msgid "Mubi" -msgstr "" - -#. name for muc -msgid "Mbu'" -msgstr "" - -#. name for mud -msgid "Aleut; Mednyj" -msgstr "" - -#. name for mue -msgid "Media Lengua" -msgstr "" - -#. name for mug -msgid "Musgu" -msgstr "" - -#. name for muh -msgid "Mündü" -msgstr "" - -#. name for mui -msgid "Musi" -msgstr "" - -#. name for muj -msgid "Mabire" -msgstr "" - -#. name for muk -msgid "Mugom" -msgstr "" - -#. name for mul -msgid "Multiple languages" -msgstr "" - -#. name for mum -msgid "Maiwala" -msgstr "" - -#. name for muo -msgid "Nyong" -msgstr "" - -#. name for mup -msgid "Malvi" -msgstr "" - -#. name for muq -msgid "Miao; Eastern Xiangxi" -msgstr "" - -#. name for mur -msgid "Murle" -msgstr "" - -#. name for mus -msgid "Creek" -msgstr "" - -#. name for mut -msgid "Muria; Western" -msgstr "" - -#. name for muu -msgid "Yaaku" -msgstr "" - -#. name for muv -msgid "Muthuvan" -msgstr "" - -#. name for mux -msgid "Bo-Ung" -msgstr "" - -#. name for muy -msgid "Muyang" -msgstr "" - -#. name for muz -msgid "Mursi" -msgstr "" - -#. name for mva -msgid "Manam" -msgstr "" - -#. name for mvb -msgid "Mattole" -msgstr "" - -#. name for mvd -msgid "Mamboru" -msgstr "" - -#. name for mve -msgid "Marwari (Pakistan)" -msgstr "" - -#. name for mvf -msgid "Mongolian; Peripheral" -msgstr "" - -#. name for mvg -msgid "Mixtec; Yucuañe" -msgstr "" - -#. name for mvh -msgid "Mire" -msgstr "" - -#. name for mvi -msgid "Miyako" -msgstr "" - -#. name for mvk -msgid "Mekmek" -msgstr "" - -#. name for mvl -msgid "Mbara (Australia)" -msgstr "" - -#. name for mvm -msgid "Muya" -msgstr "" - -#. name for mvn -msgid "Minaveha" -msgstr "" - -#. name for mvo -msgid "Marovo" -msgstr "" - -#. name for mvp -msgid "Duri" -msgstr "" - -#. name for mvq -msgid "Moere" -msgstr "" - -#. name for mvr -msgid "Marau" -msgstr "" - -#. name for mvs -msgid "Massep" -msgstr "" - -#. name for mvt -msgid "Mpotovoro" -msgstr "" - -#. name for mvu -msgid "Marfa" -msgstr "" - -#. name for mvv -msgid "Murut; Tagal" -msgstr "" - -#. name for mvw -msgid "Machinga" -msgstr "" - -#. name for mvx -msgid "Meoswar" -msgstr "" - -#. name for mvy -msgid "Kohistani; Indus" -msgstr "" - -#. name for mvz -msgid "Mesqan" -msgstr "" - -#. name for mwa -msgid "Mwatebu" -msgstr "" - -#. name for mwb -msgid "Juwal" -msgstr "" - -#. name for mwc -msgid "Are" -msgstr "" - -#. name for mwd -msgid "Mudbura" -msgstr "" - -#. name for mwe -msgid "Mwera (Chimwera)" -msgstr "" - -#. name for mwf -msgid "Murrinh-Patha" -msgstr "" - -#. name for mwg -msgid "Aiklep" -msgstr "" - -#. name for mwh -msgid "Mouk-Aria" -msgstr "" - -#. name for mwi -msgid "Labo" -msgstr "" - -#. name for mwj -msgid "Maligo" -msgstr "" - -#. name for mwk -msgid "Maninkakan; Kita" -msgstr "" - -#. name for mwl -msgid "Mirandese" -msgstr "" - -#. name for mwm -msgid "Sar" -msgstr "" - -#. name for mwn -msgid "Nyamwanga" -msgstr "" - -#. name for mwo -msgid "Maewo; Central" -msgstr "" - -#. name for mwp -msgid "Kala Lagaw Ya" -msgstr "" - -#. name for mwq -msgid "Chin; Mün" -msgstr "" - -#. name for mwr -msgid "Marwari" -msgstr "" - -#. name for mws -msgid "Mwimbi-Muthambi" -msgstr "" - -#. name for mwt -msgid "Moken" -msgstr "" - -#. name for mwu -msgid "Mittu" -msgstr "" - -#. name for mwv -msgid "Mentawai" -msgstr "" - -#. name for mww -msgid "Hmong Daw" -msgstr "" - -#. name for mwx -msgid "Mediak" -msgstr "" - -#. name for mwy -msgid "Mosiro" -msgstr "" - -#. name for mwz -msgid "Moingi" -msgstr "" - -#. name for mxa -msgid "Mixtec; Northwest Oaxaca" -msgstr "" - -#. name for mxb -msgid "Mixtec; Tezoatlán" -msgstr "" - -#. name for mxc -msgid "Manyika" -msgstr "" - -#. name for mxd -msgid "Modang" -msgstr "" - -#. name for mxe -msgid "Mele-Fila" -msgstr "" - -#. name for mxf -msgid "Malgbe" -msgstr "" - -#. name for mxg -msgid "Mbangala" -msgstr "" - -#. name for mxh -msgid "Mvuba" -msgstr "" - -#. name for mxi -msgid "Mozarabic" -msgstr "" - -#. name for mxj -msgid "Deng; Geman" -msgstr "" - -#. name for mxk -msgid "Monumbo" -msgstr "" - -#. name for mxl -msgid "Gbe; Maxi" -msgstr "" - -#. name for mxm -msgid "Meramera" -msgstr "" - -#. name for mxn -msgid "Moi (Indonesia)" -msgstr "" - -#. name for mxo -msgid "Mbowe" -msgstr "" - -#. name for mxp -msgid "Mixe; Tlahuitoltepec" -msgstr "" - -#. name for mxq -msgid "Mixe; Juquila" -msgstr "" - -#. name for mxr -msgid "Murik (Malaysia)" -msgstr "" - -#. name for mxs -msgid "Mixtec; Huitepec" -msgstr "" - -#. name for mxt -msgid "Mixtec; Jamiltepec" -msgstr "" - -#. name for mxu -msgid "Mada (Cameroon)" -msgstr "" - -#. name for mxv -msgid "Mixtec; Metlatónoc" -msgstr "" - -#. name for mxw -msgid "Namo" -msgstr "" - -#. name for mxx -msgid "Mahou" -msgstr "" - -#. name for mxy -msgid "Mixtec; Southeastern Nochixtlán" -msgstr "" - -#. name for mxz -msgid "Masela; Central" -msgstr "" - -#. name for mya -msgid "Burmese" -msgstr "" - -#. name for myb -msgid "Mbay" -msgstr "" - -#. name for myc -msgid "Mayeka" -msgstr "" - -#. name for myd -msgid "Maramba" -msgstr "" - -#. name for mye -msgid "Myene" -msgstr "" - -#. name for myf -msgid "Bambassi" -msgstr "" - -#. name for myg -msgid "Manta" -msgstr "" - -#. name for myh -msgid "Makah" -msgstr "" - -#. name for myi -msgid "Mina (India)" -msgstr "" - -#. name for myj -msgid "Mangayat" -msgstr "" - -#. name for myk -msgid "Senoufo; Mamara" -msgstr "" - -#. name for myl -msgid "Moma" -msgstr "" - -#. name for mym -msgid "Me'en" -msgstr "" - -#. name for myo -msgid "Anfillo" -msgstr "" - -#. name for myp -msgid "Pirahã" -msgstr "" - -#. name for myq -msgid "Maninka; Forest" -msgstr "" - -#. name for myr -msgid "Muniche" -msgstr "" - -#. name for mys -msgid "Mesmes" -msgstr "" - -#. name for myu -msgid "Mundurukú" -msgstr "" - -#. name for myv -msgid "Erzya" -msgstr "" - -#. name for myw -msgid "Muyuw" -msgstr "" - -#. name for myx -msgid "Masaaba" -msgstr "" - -#. name for myy -msgid "Macuna" -msgstr "" - -#. name for myz -msgid "Mandaic; Classical" -msgstr "" - -#. name for mza -msgid "Mixtec; Santa María Zacatepec" -msgstr "" - -#. name for mzb -msgid "Tumzabt" -msgstr "" - -#. name for mzc -msgid "Madagascar Sign Language" -msgstr "" - -#. name for mzd -msgid "Malimba" -msgstr "" - -#. name for mze -msgid "Morawa" -msgstr "" - -#. name for mzg -msgid "Monastic Sign Language" -msgstr "" - -#. name for mzh -msgid "Wichí Lhamtés Güisnay" -msgstr "" - -#. name for mzi -msgid "Mazatec; Ixcatlán" -msgstr "" - -#. name for mzj -msgid "Manya" -msgstr "" - -#. name for mzk -msgid "Mambila; Nigeria" -msgstr "" - -#. name for mzl -msgid "Mixe; Mazatlán" -msgstr "" - -#. name for mzm -msgid "Mumuye" -msgstr "" - -#. name for mzn -msgid "Mazanderani" -msgstr "" - -#. name for mzo -msgid "Matipuhy" -msgstr "" - -#. name for mzp -msgid "Movima" -msgstr "" - -#. name for mzq -msgid "Mori Atas" -msgstr "" - -#. name for mzr -msgid "Marúbo" -msgstr "" - -#. name for mzs -msgid "Macanese" -msgstr "" - -#. name for mzt -msgid "Mintil" -msgstr "" - -#. name for mzu -msgid "Inapang" -msgstr "" - -#. name for mzv -msgid "Manza" -msgstr "" - -#. name for mzw -msgid "Deg" -msgstr "" - -#. name for mzx -msgid "Mawayana" -msgstr "" - -#. name for mzy -msgid "Mozambican Sign Language" -msgstr "" - -#. name for mzz -msgid "Maiadomu" -msgstr "" - -#. name for naa -msgid "Namla" -msgstr "" - -#. name for nab -msgid "Nambikuára; Southern" -msgstr "" - -#. name for nac -msgid "Narak" -msgstr "" - -#. name for nad -msgid "Nijadali" -msgstr "" - -#. name for nae -msgid "Naka'ela" -msgstr "" - -#. name for naf -msgid "Nabak" -msgstr "" - -#. name for nag -msgid "Naga Pidgin" -msgstr "" - -#. name for naj -msgid "Nalu" -msgstr "" - -#. name for nak -msgid "Nakanai" -msgstr "" - -#. name for nal -msgid "Nalik" -msgstr "" - -#. name for nam -msgid "Nangikurrunggurr" -msgstr "" - -#. name for nan -msgid "Chinese; Min Nan" -msgstr "" - -#. name for nao -msgid "Naaba" -msgstr "" - -#. name for nap -msgid "Neapolitan" -msgstr "" - -#. name for naq -msgid "Nama (Namibia)" -msgstr "" - -#. name for nar -msgid "Iguta" -msgstr "" - -#. name for nas -msgid "Naasioi" -msgstr "" - -#. name for nat -msgid "Hungworo" -msgstr "" - -#. name for nau -msgid "Nauru" -msgstr "" - -#. name for nav -msgid "Navajo" -msgstr "" - -#. name for naw -msgid "Nawuri" -msgstr "" - -#. name for nax -msgid "Nakwi" -msgstr "" - -#. name for nay -msgid "Narrinyeri" -msgstr "" - -#. name for naz -msgid "Nahuatl; Coatepec" -msgstr "" - -#. name for nba -msgid "Nyemba" -msgstr "" - -#. name for nbb -msgid "Ndoe" -msgstr "" - -#. name for nbc -msgid "Naga; Chang" -msgstr "" - -#. name for nbd -msgid "Ngbinda" -msgstr "" - -#. name for nbe -msgid "Naga; Konyak" -msgstr "" - -#. name for nbg -msgid "Nagarchal" -msgstr "" - -#. name for nbh -msgid "Ngamo" -msgstr "" - -#. name for nbi -msgid "Naga; Mao" -msgstr "" - -#. name for nbj -msgid "Ngarinman" -msgstr "" - -#. name for nbk -msgid "Nake" -msgstr "" - -#. name for nbl -msgid "Ndebele; South" -msgstr "" - -#. name for nbm -msgid "Ngbaka Ma'bo" -msgstr "" - -#. name for nbn -msgid "Kuri" -msgstr "" - -#. name for nbo -msgid "Nkukoli" -msgstr "" - -#. name for nbp -msgid "Nnam" -msgstr "" - -#. name for nbq -msgid "Nggem" -msgstr "" - -#. name for nbr -msgid "Numana-Nunku-Gbantu-Numbu" -msgstr "" - -#. name for nbs -msgid "Namibian Sign Language" -msgstr "" - -#. name for nbt -msgid "Na" -msgstr "" - -#. name for nbu -msgid "Naga; Rongmei" -msgstr "" - -#. name for nbv -msgid "Ngamambo" -msgstr "" - -#. name for nbw -msgid "Ngbandi; Southern" -msgstr "" - -#. name for nbx -msgid "Ngura" -msgstr "" - -#. name for nby -msgid "Ningera" -msgstr "" - -#. name for nca -msgid "Iyo" -msgstr "" - -#. name for ncb -msgid "Nicobarese; Central" -msgstr "" - -#. name for ncc -msgid "Ponam" -msgstr "" - -#. name for ncd -msgid "Nachering" -msgstr "" - -#. name for nce -msgid "Yale" -msgstr "" - -#. name for ncf -msgid "Notsi" -msgstr "" - -#. name for ncg -msgid "Nisga'a" -msgstr "" - -#. name for nch -msgid "Nahuatl; Central Huasteca" -msgstr "" - -#. name for nci -msgid "Nahuatl; Classical" -msgstr "" - -#. name for ncj -msgid "Nahuatl; Northern Puebla" -msgstr "" - -#. name for nck -msgid "Nakara" -msgstr "" - -#. name for ncl -msgid "Nahuatl; Michoacán" -msgstr "" - -#. name for ncm -msgid "Nambo" -msgstr "" - -#. name for ncn -msgid "Nauna" -msgstr "" - -#. name for nco -msgid "Sibe" -msgstr "" - -#. name for ncp -msgid "Ndaktup" -msgstr "" - -#. name for ncr -msgid "Ncane" -msgstr "" - -#. name for ncs -msgid "Nicaraguan Sign Language" -msgstr "" - -#. name for nct -msgid "Naga; Chothe" -msgstr "" - -#. name for ncu -msgid "Chumburung" -msgstr "" - -#. name for ncx -msgid "Nahuatl; Central Puebla" -msgstr "" - -#. name for ncz -msgid "Natchez" -msgstr "" - -#. name for nda -msgid "Ndasa" -msgstr "" - -#. name for ndb -msgid "Kenswei Nsei" -msgstr "" - -#. name for ndc -msgid "Ndau" -msgstr "" - -#. name for ndd -msgid "Nde-Nsele-Nta" -msgstr "" - -#. name for nde -msgid "Ndebele; North" -msgstr "" - -#. name for ndf -msgid "Nadruvian" -msgstr "" - -#. name for ndg -msgid "Ndengereko" -msgstr "" - -#. name for ndh -msgid "Ndali" -msgstr "" - -#. name for ndi -msgid "Samba Leko" -msgstr "" - -#. name for ndj -msgid "Ndamba" -msgstr "" - -#. name for ndk -msgid "Ndaka" -msgstr "" - -#. name for ndl -msgid "Ndolo" -msgstr "" - -#. name for ndm -msgid "Ndam" -msgstr "" - -#. name for ndn -msgid "Ngundi" -msgstr "" - -#. name for ndo -msgid "Ndonga" -msgstr "" - -#. name for ndp -msgid "Ndo" -msgstr "" - -#. name for ndq -msgid "Ndombe" -msgstr "" - -#. name for ndr -msgid "Ndoola" -msgstr "" - -#. name for nds -msgid "German; Low" -msgstr "" - -#. name for ndt -msgid "Ndunga" -msgstr "" - -#. name for ndu -msgid "Dugun" -msgstr "" - -#. name for ndv -msgid "Ndut" -msgstr "" - -#. name for ndw -msgid "Ndobo" -msgstr "" - -#. name for ndx -msgid "Nduga" -msgstr "" - -#. name for ndy -msgid "Lutos" -msgstr "" - -#. name for ndz -msgid "Ndogo" -msgstr "" - -#. name for nea -msgid "Ngad'a; Eastern" -msgstr "" - -#. name for neb -msgid "Toura (Côte d'Ivoire)" -msgstr "" - -#. name for nec -msgid "Nedebang" -msgstr "" - -#. name for ned -msgid "Nde-Gbite" -msgstr "" - -#. name for nee -msgid "Nêlêmwa-Nixumwak" -msgstr "" - -#. name for nef -msgid "Nefamese" -msgstr "" - -#. name for neg -msgid "Negidal" -msgstr "" - -#. name for neh -msgid "Nyenkha" -msgstr "" - -#. name for nei -msgid "Hittite; Neo-" -msgstr "" - -#. name for nej -msgid "Neko" -msgstr "" - -#. name for nek -msgid "Neku" -msgstr "" - -#. name for nem -msgid "Nemi" -msgstr "" - -#. name for nen -msgid "Nengone" -msgstr "" - -#. name for neo -msgid "Ná-Meo" -msgstr "" - -#. name for nep -msgid "Nepali" -msgstr "" - -#. name for neq -msgid "Mixe; North Central" -msgstr "" - -#. name for ner -msgid "Yahadian" -msgstr "" - -#. name for nes -msgid "Kinnauri; Bhoti" -msgstr "" - -#. name for net -msgid "Nete" -msgstr "" - -#. name for nev -msgid "Nyaheun" -msgstr "" - -#. name for new -msgid "Bhasa; Nepal" -msgstr "" - -#. name for nex -msgid "Neme" -msgstr "" - -#. name for ney -msgid "Neyo" -msgstr "" - -#. name for nez -msgid "Nez Perce" -msgstr "" - -#. name for nfa -msgid "Dhao" -msgstr "" - -#. name for nfd -msgid "Ahwai" -msgstr "" - -#. name for nfl -msgid "Ayiwo" -msgstr "" - -#. name for nfr -msgid "Nafaanra" -msgstr "" - -#. name for nfu -msgid "Mfumte" -msgstr "" - -#. name for nga -msgid "Ngbaka" -msgstr "" - -#. name for ngb -msgid "Ngbandi; Northern" -msgstr "" - -#. name for ngc -msgid "Ngombe (Democratic Republic of Congo)" -msgstr "" - -#. name for ngd -msgid "Ngando (Central African Republic)" -msgstr "" - -#. name for nge -msgid "Ngemba" -msgstr "" - -#. name for ngg -msgid "Ngbaka Manza" -msgstr "" - -#. name for ngh -msgid "N/u" -msgstr "" - -#. name for ngi -msgid "Ngizim" -msgstr "" - -#. name for ngj -msgid "Ngie" -msgstr "" - -#. name for ngk -msgid "Ngalkbun" -msgstr "" - -#. name for ngl -msgid "Lomwe" -msgstr "" - -#. name for ngm -msgid "Ngatik Men's Creole" -msgstr "" - -#. name for ngn -msgid "Ngwo" -msgstr "" - -#. name for ngo -msgid "Ngoni" -msgstr "" - -#. name for ngp -msgid "Ngulu" -msgstr "" - -#. name for ngq -msgid "Ngurimi" -msgstr "" - -#. name for ngr -msgid "Nanggu" -msgstr "" - -#. name for ngs -msgid "Gvoko" -msgstr "" - -#. name for ngt -msgid "Ngeq" -msgstr "" - -#. name for ngu -msgid "Nahuatl; Guerrero" -msgstr "" - -#. name for ngv -msgid "Nagumi" -msgstr "" - -#. name for ngw -msgid "Ngwaba" -msgstr "" - -#. name for ngx -msgid "Nggwahyi" -msgstr "" - -#. name for ngy -msgid "Tibea" -msgstr "" - -#. name for ngz -msgid "Ngungwel" -msgstr "" - -#. name for nha -msgid "Nhanda" -msgstr "" - -#. name for nhb -msgid "Beng" -msgstr "" - -#. name for nhc -msgid "Nahuatl; Tabasco" -msgstr "" - -#. name for nhd -msgid "Guaraní; Ava" -msgstr "" - -#. name for nhe -msgid "Nahuatl; Eastern Huasteca" -msgstr "" - -#. name for nhf -msgid "Nhuwala" -msgstr "" - -#. name for nhg -msgid "Nahuatl; Tetelcingo" -msgstr "" - -#. name for nhh -msgid "Nahari" -msgstr "" - -#. name for nhi -msgid "Nahuatl; Zacatlán-Ahuacatlán-Tepetzintla" -msgstr "" - -#. name for nhk -msgid "Nahuatl; Isthmus-Cosoleacaque" -msgstr "" - -#. name for nhm -msgid "Nahuatl; Morelos" -msgstr "" - -#. name for nhn -msgid "Nahuatl; Central" -msgstr "" - -#. name for nho -msgid "Takuu" -msgstr "" - -#. name for nhp -msgid "Nahuatl; Isthmus-Pajapan" -msgstr "" - -#. name for nhq -msgid "Nahuatl; Huaxcaleca" -msgstr "" - -#. name for nhr -msgid "Naro" -msgstr "" - -#. name for nht -msgid "Nahuatl; Ometepec" -msgstr "" - -#. name for nhu -msgid "Noone" -msgstr "" - -#. name for nhv -msgid "Nahuatl; Temascaltepec" -msgstr "" - -#. name for nhw -msgid "Nahuatl; Western Huasteca" -msgstr "" - -#. name for nhx -msgid "Nahuatl; Isthmus-Mecayapan" -msgstr "" - -#. name for nhy -msgid "Nahuatl; Northern Oaxaca" -msgstr "" - -#. name for nhz -msgid "Nahuatl; Santa María La Alta" -msgstr "" - -#. name for nia -msgid "Nias" -msgstr "" - -#. name for nib -msgid "Nakame" -msgstr "" - -#. name for nid -msgid "Ngandi" -msgstr "" - -#. name for nie -msgid "Niellim" -msgstr "" - -#. name for nif -msgid "Nek" -msgstr "" - -#. name for nig -msgid "Ngalakan" -msgstr "" - -#. name for nih -msgid "Nyiha (Tanzania)" -msgstr "" - -#. name for nii -msgid "Nii" -msgstr "" - -#. name for nij -msgid "Ngaju" -msgstr "" - -#. name for nik -msgid "Nicobarese; Southern" -msgstr "" - -#. name for nil -msgid "Nila" -msgstr "" - -#. name for nim -msgid "Nilamba" -msgstr "" - -#. name for nin -msgid "Ninzo" -msgstr "" - -#. name for nio -msgid "Nganasan" -msgstr "" - -#. name for niq -msgid "Nandi" -msgstr "" - -#. name for nir -msgid "Nimboran" -msgstr "" - -#. name for nis -msgid "Nimi" -msgstr "" - -#. name for nit -msgid "Kolami; Southeastern" -msgstr "" - -#. name for niu -msgid "Niuean" -msgstr "" - -#. name for niv -msgid "Gilyak" -msgstr "" - -#. name for niw -msgid "Nimo" -msgstr "" - -#. name for nix -msgid "Hema" -msgstr "" - -#. name for niy -msgid "Ngiti" -msgstr "" - -#. name for niz -msgid "Ningil" -msgstr "" - -#. name for nja -msgid "Nzanyi" -msgstr "" - -#. name for njb -msgid "Naga; Nocte" -msgstr "" - -#. name for njd -msgid "Ndonde Hamba" -msgstr "" - -#. name for njh -msgid "Naga; Lotha" -msgstr "" - -#. name for nji -msgid "Gudanji" -msgstr "" - -#. name for njj -msgid "Njen" -msgstr "" - -#. name for njl -msgid "Njalgulgule" -msgstr "" - -#. name for njm -msgid "Naga; Angami" -msgstr "" - -#. name for njn -msgid "Naga; Liangmai" -msgstr "" - -#. name for njo -msgid "Naga; Ao" -msgstr "" - -#. name for njr -msgid "Njerep" -msgstr "" - -#. name for njs -msgid "Nisa" -msgstr "" - -#. name for njt -msgid "Ndyuka-Trio Pidgin" -msgstr "" - -#. name for nju -msgid "Ngadjunmaya" -msgstr "" - -#. name for njx -msgid "Kunyi" -msgstr "" - -#. name for njy -msgid "Njyem" -msgstr "" - -#. name for nka -msgid "Nkoya" -msgstr "" - -#. name for nkb -msgid "Naga; Khoibu" -msgstr "" - -#. name for nkc -msgid "Nkongho" -msgstr "" - -#. name for nkd -msgid "Koireng" -msgstr "" - -#. name for nke -msgid "Duke" -msgstr "" - -#. name for nkf -msgid "Naga; Inpui" -msgstr "" - -#. name for nkg -msgid "Nekgini" -msgstr "" - -#. name for nkh -msgid "Naga; Khezha" -msgstr "" - -#. name for nki -msgid "Naga; Thangal" -msgstr "" - -#. name for nkj -msgid "Nakai" -msgstr "" - -#. name for nkk -msgid "Nokuku" -msgstr "" - -#. name for nkm -msgid "Namat" -msgstr "" - -#. name for nkn -msgid "Nkangala" -msgstr "" - -#. name for nko -msgid "Nkonya" -msgstr "" - -#. name for nkp -msgid "Niuatoputapu" -msgstr "" - -#. name for nkq -msgid "Nkami" -msgstr "" - -#. name for nkr -msgid "Nukuoro" -msgstr "" - -#. name for nks -msgid "Asmat; North" -msgstr "" - -#. name for nkt -msgid "Nyika (Tanzania)" -msgstr "" - -#. name for nku -msgid "Kulango; Bouna" -msgstr "" - -#. name for nkv -msgid "Nyika (Malawi and Zambia)" -msgstr "" - -#. name for nkw -msgid "Nkutu" -msgstr "" - -#. name for nkx -msgid "Nkoroo" -msgstr "" - -#. name for nkz -msgid "Nkari" -msgstr "" - -#. name for nla -msgid "Ngombale" -msgstr "" - -#. name for nlc -msgid "Nalca" -msgstr "" - -#. name for nld -msgid "Dutch" -msgstr "" - -#. name for nle -msgid "Nyala; East" -msgstr "" - -#. name for nlg -msgid "Gela" -msgstr "" - -#. name for nli -msgid "Grangali" -msgstr "" - -#. name for nlj -msgid "Nyali" -msgstr "" - -#. name for nlk -msgid "Yali; Ninia" -msgstr "" - -#. name for nll -msgid "Nihali" -msgstr "" - -#. name for nln -msgid "Nahuatl; Durango" -msgstr "" - -#. name for nlo -msgid "Ngul" -msgstr "" - -#. name for nlr -msgid "Ngarla" -msgstr "" - -#. name for nlu -msgid "Nchumbulu" -msgstr "" - -#. name for nlv -msgid "Nahuatl; Orizaba" -msgstr "" - -#. name for nlx -msgid "Nahali" -msgstr "" - -#. name for nly -msgid "Nyamal" -msgstr "" - -#. name for nlz -msgid "Nalögo" -msgstr "" - -#. name for nma -msgid "Naga; Maram" -msgstr "" - -#. name for nmb -msgid "Nambas; Big" -msgstr "" - -#. name for nmc -msgid "Ngam" -msgstr "" - -#. name for nmd -msgid "Ndumu" -msgstr "" - -#. name for nme -msgid "Naga; Mzieme" -msgstr "" - -#. name for nmf -msgid "Naga; Tangkhul" -msgstr "" - -#. name for nmg -msgid "Kwasio" -msgstr "" - -#. name for nmh -msgid "Naga; Monsang" -msgstr "" - -#. name for nmi -msgid "Nyam" -msgstr "" - -#. name for nmj -msgid "Ngombe (Central African Republic)" -msgstr "" - -#. name for nmk -msgid "Namakura" -msgstr "" - -#. name for nml -msgid "Ndemli" -msgstr "" - -#. name for nmm -msgid "Manangba" -msgstr "" - -#. name for nmn -msgid "!Xóõ" -msgstr "" - -#. name for nmo -msgid "Naga; Moyon" -msgstr "" - -#. name for nmp -msgid "Nimanbur" -msgstr "" - -#. name for nmq -msgid "Nambya" -msgstr "" - -#. name for nmr -msgid "Nimbari" -msgstr "" - -#. name for nms -msgid "Letemboi" -msgstr "" - -#. name for nmt -msgid "Namonuito" -msgstr "" - -#. name for nmu -msgid "Maidu; Northeast" -msgstr "" - -#. name for nmv -msgid "Ngamini" -msgstr "" - -#. name for nmw -msgid "Nimoa" -msgstr "" - -#. name for nmx -msgid "Nama (Papua New Guinea)" -msgstr "" - -#. name for nmy -msgid "Namuyi" -msgstr "" - -#. name for nmz -msgid "Nawdm" -msgstr "" - -#. name for nna -msgid "Nyangumarta" -msgstr "" - -#. name for nnb -msgid "Nande" -msgstr "" - -#. name for nnc -msgid "Nancere" -msgstr "" - -#. name for nnd -msgid "Ambae; West" -msgstr "" - -#. name for nne -msgid "Ngandyera" -msgstr "" - -#. name for nnf -msgid "Ngaing" -msgstr "" - -#. name for nng -msgid "Naga; Maring" -msgstr "" - -#. name for nnh -msgid "Ngiemboon" -msgstr "" - -#. name for nni -msgid "Nuaulu; North" -msgstr "" - -#. name for nnj -msgid "Nyangatom" -msgstr "" - -#. name for nnk -msgid "Nankina" -msgstr "" - -#. name for nnl -msgid "Naga; Northern Rengma" -msgstr "" - -#. name for nnm -msgid "Namia" -msgstr "" - -#. name for nnn -msgid "Ngete" -msgstr "" - -#. name for nno -msgid "Norwegian Nynorsk" -msgstr "" - -#. name for nnp -msgid "Naga; Wancho" -msgstr "" - -#. name for nnq -msgid "Ngindo" -msgstr "" - -#. name for nnr -msgid "Narungga" -msgstr "" - -#. name for nns -msgid "Ningye" -msgstr "" - -#. name for nnt -msgid "Nanticoke" -msgstr "" - -#. name for nnu -msgid "Dwang" -msgstr "" - -#. name for nnv -msgid "Nugunu (Australia)" -msgstr "" - -#. name for nnw -msgid "Nuni; Southern" -msgstr "" - -#. name for nnx -msgid "Ngong" -msgstr "" - -#. name for nny -msgid "Nyangga" -msgstr "" - -#. name for nnz -msgid "Nda'nda'" -msgstr "" - -#. name for noa -msgid "Woun Meu" -msgstr "" - -#. name for nob -msgid "Norwegian Bokmål" -msgstr "" - -#. name for noc -msgid "Nuk" -msgstr "" - -#. name for nod -msgid "Thai; Northern" -msgstr "" - -#. name for noe -msgid "Nimadi" -msgstr "" - -#. name for nof -msgid "Nomane" -msgstr "" - -#. name for nog -msgid "Nogai" -msgstr "" - -#. name for noh -msgid "Nomu" -msgstr "" - -#. name for noi -msgid "Noiri" -msgstr "" - -#. name for noj -msgid "Nonuya" -msgstr "" - -#. name for nok -msgid "Nooksack" -msgstr "" - -#. name for nom -msgid "Nocamán" -msgstr "" - -#. name for non -msgid "Norse; Old" -msgstr "" - -#. name for nop -msgid "Numanggang" -msgstr "" - -#. name for noq -msgid "Ngongo" -msgstr "" - -#. name for nor -msgid "Norwegian" -msgstr "" - -#. name for nos -msgid "Nisu; Eastern" -msgstr "" - -#. name for not -msgid "Nomatsiguenga" -msgstr "" - -#. name for nou -msgid "Ewage-Notu" -msgstr "" - -#. name for nov -msgid "Novial" -msgstr "" - -#. name for now -msgid "Nyambo" -msgstr "" - -#. name for noy -msgid "Noy" -msgstr "" - -#. name for noz -msgid "Nayi" -msgstr "" - -#. name for npa -msgid "Nar Phu" -msgstr "" - -#. name for npb -msgid "Nupbikha" -msgstr "" - -#. name for nph -msgid "Naga; Phom" -msgstr "" - -#. name for npl -msgid "Nahuatl; Southeastern Puebla" -msgstr "" - -#. name for npn -msgid "Mondropolon" -msgstr "" - -#. name for npo -msgid "Naga; Pochuri" -msgstr "" - -#. name for nps -msgid "Nipsan" -msgstr "" - -#. name for npu -msgid "Naga; Puimei" -msgstr "" - -#. name for npy -msgid "Napu" -msgstr "" - -#. name for nqg -msgid "Nago; Southern" -msgstr "" - -#. name for nqk -msgid "Ede Nago; Kura" -msgstr "" - -#. name for nqm -msgid "Ndom" -msgstr "" - -#. name for nqn -msgid "Nen" -msgstr "" - -#. name for nqo -msgid "N'Ko" -msgstr "" - -#. name for nra -msgid "Ngom" -msgstr "" - -#. name for nrb -msgid "Nara" -msgstr "" - -#. name for nrc -msgid "Noric" -msgstr "" - -#. name for nre -msgid "Naga; Southern Rengma" -msgstr "" - -#. name for nrg -msgid "Narango" -msgstr "" - -#. name for nri -msgid "Naga; Chokri" -msgstr "" - -#. name for nrl -msgid "Ngarluma" -msgstr "" - -#. name for nrm -msgid "Narom" -msgstr "" - -#. name for nrn -msgid "Norn" -msgstr "" - -#. name for nrp -msgid "Picene; North" -msgstr "" - -#. name for nrr -msgid "Norra" -msgstr "" - -#. name for nrt -msgid "Kalapuya; Northern" -msgstr "" - -#. name for nru -msgid "Narua" -msgstr "" - -#. name for nrx -msgid "Ngurmbur" -msgstr "" - -#. name for nrz -msgid "Lala" -msgstr "" - -#. name for nsa -msgid "Naga; Sangtam" -msgstr "" - -#. name for nsc -msgid "Nshi" -msgstr "" - -#. name for nsd -msgid "Nisu; Southern" -msgstr "" - -#. name for nse -msgid "Nsenga" -msgstr "" - -#. name for nsg -msgid "Ngasa" -msgstr "" - -#. name for nsh -msgid "Ngoshie" -msgstr "" - -#. name for nsi -msgid "Nigerian Sign Language" -msgstr "" - -#. name for nsk -msgid "Naskapi" -msgstr "" - -#. name for nsl -msgid "Norwegian Sign Language" -msgstr "" - -#. name for nsm -msgid "Naga; Sumi" -msgstr "" - -#. name for nsn -msgid "Nehan" -msgstr "" - -#. name for nso -msgid "Sotho; Northern" -msgstr "" - -#. name for nsp -msgid "Nepalese Sign Language" -msgstr "" - -#. name for nsq -msgid "Miwok; Northern Sierra" -msgstr "" - -#. name for nsr -msgid "Maritime Sign Language" -msgstr "" - -#. name for nss -msgid "Nali" -msgstr "" - -#. name for nst -msgid "Naga; Tase" -msgstr "" - -#. name for nsu -msgid "Nahuatl; Sierra Negra" -msgstr "" - -#. name for nsv -msgid "Nisu; Southwestern" -msgstr "" - -#. name for nsw -msgid "Navut" -msgstr "" - -#. name for nsx -msgid "Nsongo" -msgstr "" - -#. name for nsy -msgid "Nasal" -msgstr "" - -#. name for nsz -msgid "Nisenan" -msgstr "" - -#. name for nte -msgid "Nathembo" -msgstr "" - -#. name for nti -msgid "Natioro" -msgstr "" - -#. name for ntj -msgid "Ngaanyatjarra" -msgstr "" - -#. name for ntk -msgid "Ikoma-Nata-Isenye" -msgstr "" - -#. name for ntm -msgid "Nateni" -msgstr "" - -#. name for nto -msgid "Ntomba" -msgstr "" - -#. name for ntp -msgid "Tepehuan; Northern" -msgstr "" - -#. name for ntr -msgid "Delo" -msgstr "" - -#. name for nts -msgid "Natagaimas" -msgstr "" - -#. name for ntu -msgid "Natügu" -msgstr "" - -#. name for ntw -msgid "Nottoway" -msgstr "" - -#. name for nty -msgid "Mantsi" -msgstr "" - -#. name for ntz -msgid "Natanzi" -msgstr "" - -#. name for nua -msgid "Yuaga" -msgstr "" - -#. name for nuc -msgid "Nukuini" -msgstr "" - -#. name for nud -msgid "Ngala" -msgstr "" - -#. name for nue -msgid "Ngundu" -msgstr "" - -#. name for nuf -msgid "Nusu" -msgstr "" - -#. name for nug -msgid "Nungali" -msgstr "" - -#. name for nuh -msgid "Ndunda" -msgstr "" - -#. name for nui -msgid "Ngumbi" -msgstr "" - -#. name for nuj -msgid "Nyole" -msgstr "" - -#. name for nuk -msgid "Nuu-chah-nulth" -msgstr "" - -#. name for nul -msgid "Nusa Laut" -msgstr "" - -#. name for num -msgid "Niuafo'ou" -msgstr "" - -#. name for nun -msgid "Anong" -msgstr "" - -#. name for nuo -msgid "Nguôn" -msgstr "" - -#. name for nup -msgid "Nupe-Nupe-Tako" -msgstr "" - -#. name for nuq -msgid "Nukumanu" -msgstr "" - -#. name for nur -msgid "Nukuria" -msgstr "" - -#. name for nus -msgid "Nuer" -msgstr "" - -#. name for nut -msgid "Nung (Viet Nam)" -msgstr "" - -#. name for nuu -msgid "Ngbundu" -msgstr "" - -#. name for nuv -msgid "Nuni; Northern" -msgstr "" - -#. name for nuw -msgid "Nguluwan" -msgstr "" - -#. name for nux -msgid "Mehek" -msgstr "" - -#. name for nuy -msgid "Nunggubuyu" -msgstr "" - -#. name for nuz -msgid "Nahuatl; Tlamacazapa" -msgstr "" - -#. name for nvh -msgid "Nasarian" -msgstr "" - -#. name for nvm -msgid "Namiae" -msgstr "" - -#. name for nwa -msgid "Nawathinehena" -msgstr "" - -#. name for nwb -msgid "Nyabwa" -msgstr "" - -#. name for nwc -msgid "Newari; Old" -msgstr "" - -#. name for nwe -msgid "Ngwe" -msgstr "" - -#. name for nwi -msgid "Tanna; Southwest" -msgstr "" - -#. name for nwm -msgid "Nyamusa-Molo" -msgstr "" - -#. name for nwr -msgid "Nawaru" -msgstr "" - -#. name for nwx -msgid "Newar; Middle" -msgstr "" - -#. name for nwy -msgid "Nottoway-Meherrin" -msgstr "" - -#. name for nxa -msgid "Nauete" -msgstr "" - -#. name for nxd -msgid "Ngando (Democratic Republic of Congo)" -msgstr "" - -#. name for nxe -msgid "Nage" -msgstr "" - -#. name for nxg -msgid "Ngad'a" -msgstr "" - -#. name for nxi -msgid "Nindi" -msgstr "" - -#. name for nxl -msgid "Nuaulu; South" -msgstr "" - -#. name for nxm -msgid "Numidian" -msgstr "" - -#. name for nxn -msgid "Ngawun" -msgstr "" - -#. name for nxq -msgid "Naxi" -msgstr "" - -#. name for nxr -msgid "Ninggerum" -msgstr "" - -#. name for nxu -msgid "Narau" -msgstr "" - -#. name for nxx -msgid "Nafri" -msgstr "" - -#. name for nya -msgid "Nyanja" -msgstr "" - -#. name for nyb -msgid "Nyangbo" -msgstr "" - -#. name for nyc -msgid "Nyanga-li" -msgstr "" - -#. name for nyd -msgid "Nyore" -msgstr "" - -#. name for nye -msgid "Nyengo" -msgstr "" - -#. name for nyf -msgid "Giryama" -msgstr "" - -#. name for nyg -msgid "Nyindu" -msgstr "" - -#. name for nyh -msgid "Nyigina" -msgstr "" - -#. name for nyi -msgid "Ama (Sudan)" -msgstr "" - -#. name for nyj -msgid "Nyanga" -msgstr "" - -#. name for nyk -msgid "Nyaneka" -msgstr "" - -#. name for nyl -msgid "Nyeu" -msgstr "" - -#. name for nym -msgid "Nyamwezi" -msgstr "" - -#. name for nyn -msgid "Nyankole" -msgstr "" - -#. name for nyo -msgid "Nyoro" -msgstr "" - -#. name for nyp -msgid "Nyang'i" -msgstr "" - -#. name for nyq -msgid "Nayini" -msgstr "" - -#. name for nyr -msgid "Nyiha (Malawi)" -msgstr "" - -#. name for nys -msgid "Nyunga" -msgstr "" - -#. name for nyt -msgid "Nyawaygi" -msgstr "" - -#. name for nyu -msgid "Nyungwe" -msgstr "" - -#. name for nyv -msgid "Nyulnyul" -msgstr "" - -#. name for nyw -msgid "Nyaw" -msgstr "" - -#. name for nyx -msgid "Nganyaywana" -msgstr "" - -#. name for nyy -msgid "Nyakyusa-Ngonde" -msgstr "" - -#. name for nza -msgid "Mbembe; Tigon" -msgstr "" - -#. name for nzb -msgid "Njebi" -msgstr "" - -#. name for nzi -msgid "Nzima" -msgstr "" - -#. name for nzk -msgid "Nzakara" -msgstr "" - -#. name for nzm -msgid "Naga; Zeme" -msgstr "" - -#. name for nzs -msgid "New Zealand Sign Language" -msgstr "" - -#. name for nzu -msgid "Teke-Nzikou" -msgstr "" - -#. name for nzy -msgid "Nzakambay" -msgstr "" - -#. name for nzz -msgid "Dogon; Nanga Dama" -msgstr "" - -#. name for oaa -msgid "Orok" -msgstr "" - -#. name for oac -msgid "Oroch" -msgstr "" - -#. name for oar -msgid "Aramaic; Old (up to 700 BCE)" -msgstr "" - -#. name for oav -msgid "Avar; Old" -msgstr "" - -#. name for obi -msgid "Obispeño" -msgstr "" - -#. name for obk -msgid "Bontok; Southern" -msgstr "" - -#. name for obl -msgid "Oblo" -msgstr "" - -#. name for obm -msgid "Moabite" -msgstr "" - -#. name for obo -msgid "Manobo; Obo" -msgstr "" - -#. name for obr -msgid "Burmese; Old" -msgstr "" - -#. name for obt -msgid "Breton; Old" -msgstr "" - -#. name for obu -msgid "Obulom" -msgstr "" - -#. name for oca -msgid "Ocaina" -msgstr "" - -#. name for och -msgid "Chinese; Old" -msgstr "" - -#. name for oci -msgid "Occitan (post 1500)" -msgstr "" - -#. name for oco -msgid "Cornish; Old" -msgstr "" - -#. name for ocu -msgid "Matlatzinca; Atzingo" -msgstr "" - -#. name for oda -msgid "Odut" -msgstr "" - -#. name for odk -msgid "Od" -msgstr "" - -#. name for odt -msgid "Dutch; Old" -msgstr "" - -#. name for odu -msgid "Odual" -msgstr "" - -#. name for ofo -msgid "Ofo" -msgstr "" - -#. name for ofs -msgid "Frisian; Old" -msgstr "" - -#. name for ofu -msgid "Efutop" -msgstr "" - -#. name for ogb -msgid "Ogbia" -msgstr "" - -#. name for ogc -msgid "Ogbah" -msgstr "" - -#. name for oge -msgid "Georgian; Old" -msgstr "" - -#. name for ogg -msgid "Ogbogolo" -msgstr "" - -#. name for ogo -msgid "Khana" -msgstr "" - -#. name for ogu -msgid "Ogbronuagum" -msgstr "" - -#. name for oht -msgid "Hittite; Old" -msgstr "" - -#. name for ohu -msgid "Hungarian; Old" -msgstr "" - -#. name for oia -msgid "Oirata" -msgstr "" - -#. name for oin -msgid "One; Inebu" -msgstr "" - -#. name for ojb -msgid "Ojibwa; Northwestern" -msgstr "" - -#. name for ojc -msgid "Ojibwa; Central" -msgstr "" - -#. name for ojg -msgid "Ojibwa; Eastern" -msgstr "" - -#. name for oji -msgid "Ojibwa" -msgstr "" - -#. name for ojp -msgid "Japanese; Old" -msgstr "" - -#. name for ojs -msgid "Ojibwa; Severn" -msgstr "" - -#. name for ojv -msgid "Ontong Java" -msgstr "" - -#. name for ojw -msgid "Ojibwa; Western" -msgstr "" - -#. name for oka -msgid "Okanagan" -msgstr "" - -#. name for okb -msgid "Okobo" -msgstr "" - -#. name for okd -msgid "Okodia" -msgstr "" - -#. name for oke -msgid "Okpe (Southwestern Edo)" -msgstr "" - -#. name for okh -msgid "Koresh-e Rostam" -msgstr "" - -#. name for oki -msgid "Okiek" -msgstr "" - -#. name for okj -msgid "Oko-Juwoi" -msgstr "" - -#. name for okk -msgid "One; Kwamtim" -msgstr "" - -#. name for okl -msgid "Kentish Sign Language; Old" -msgstr "" - -#. name for okm -msgid "Korean; Middle (10th-16th cent.)" -msgstr "" - -#. name for okn -msgid "Oki-No-Erabu" -msgstr "" - -#. name for oko -msgid "Korean; Old (3rd-9th cent.)" -msgstr "" - -#. name for okr -msgid "Kirike" -msgstr "" - -#. name for oks -msgid "Oko-Eni-Osayen" -msgstr "" - -#. name for oku -msgid "Oku" -msgstr "" - -#. name for okv -msgid "Orokaiva" -msgstr "" - -#. name for okx -msgid "Okpe (Northwestern Edo)" -msgstr "" - -#. name for ola -msgid "Walungge" -msgstr "" - -#. name for old -msgid "Mochi" -msgstr "" - -#. name for ole -msgid "Olekha" -msgstr "" - -#. name for olm -msgid "Oloma" -msgstr "" - -#. name for olo -msgid "Livvi" -msgstr "" - -#. name for olr -msgid "Olrat" -msgstr "" - -#. name for oma -msgid "Omaha-Ponca" -msgstr "" - -#. name for omb -msgid "Ambae; East" -msgstr "" - -#. name for omc -msgid "Mochica" -msgstr "" - -#. name for ome -msgid "Omejes" -msgstr "" - -#. name for omg -msgid "Omagua" -msgstr "" - -#. name for omi -msgid "Omi" -msgstr "" - -#. name for omk -msgid "Omok" -msgstr "" - -#. name for oml -msgid "Ombo" -msgstr "" - -#. name for omn -msgid "Minoan" -msgstr "" - -#. name for omo -msgid "Utarmbung" -msgstr "" - -#. name for omp -msgid "Manipuri; Old" -msgstr "" - -#. name for omr -msgid "Marathi; Old" -msgstr "" - -#. name for omt -msgid "Omotik" -msgstr "" - -#. name for omu -msgid "Omurano" -msgstr "" - -#. name for omw -msgid "Tairora; South" -msgstr "" - -#. name for omx -msgid "Mon; Old" -msgstr "" - -#. name for ona -msgid "Ona" -msgstr "" - -#. name for onb -msgid "Lingao" -msgstr "" - -#. name for one -msgid "Oneida" -msgstr "" - -#. name for ong -msgid "Olo" -msgstr "" - -#. name for oni -msgid "Onin" -msgstr "" - -#. name for onj -msgid "Onjob" -msgstr "" - -#. name for onk -msgid "One; Kabore" -msgstr "" - -#. name for onn -msgid "Onobasulu" -msgstr "" - -#. name for ono -msgid "Onondaga" -msgstr "" - -#. name for onp -msgid "Sartang" -msgstr "" - -#. name for onr -msgid "One; Northern" -msgstr "" - -#. name for ons -msgid "Ono" -msgstr "" - -#. name for ont -msgid "Ontenu" -msgstr "" - -#. name for onu -msgid "Unua" -msgstr "" - -#. name for onw -msgid "Nubian; Old" -msgstr "" - -#. name for onx -msgid "Onin Based Pidgin" -msgstr "" - -#. name for ood -msgid "Tohono O'odham" -msgstr "" - -#. name for oog -msgid "Ong" -msgstr "" - -#. name for oon -msgid "Önge" -msgstr "" - -#. name for oor -msgid "Oorlams" -msgstr "" - -#. name for oos -msgid "Ossetic; Old" -msgstr "" - -#. name for opa -msgid "Okpamheri" -msgstr "" - -#. name for opk -msgid "Kopkaka" -msgstr "" - -#. name for opm -msgid "Oksapmin" -msgstr "" - -#. name for opo -msgid "Opao" -msgstr "" - -#. name for opt -msgid "Opata" -msgstr "" - -#. name for opy -msgid "Ofayé" -msgstr "" - -#. name for ora -msgid "Oroha" -msgstr "" - -#. name for orc -msgid "Orma" -msgstr "" - -#. name for ore -msgid "Orejón" -msgstr "" - -#. name for org -msgid "Oring" -msgstr "" - -#. name for orh -msgid "Oroqen" -msgstr "" - -#. name for ori -msgid "Oriya" -msgstr "" - -#. name for orm -msgid "Oromo" -msgstr "" - -#. name for orn -msgid "Orang Kanaq" -msgstr "" - -#. name for oro -msgid "Orokolo" -msgstr "" - -#. name for orr -msgid "Oruma" -msgstr "" - -#. name for ors -msgid "Orang Seletar" -msgstr "" - -#. name for ort -msgid "Oriya; Adivasi" -msgstr "" - -#. name for oru -msgid "Ormuri" -msgstr "" - -#. name for orv -msgid "Russian; Old" -msgstr "" - -#. name for orw -msgid "Oro Win" -msgstr "" - -#. name for orx -msgid "Oro" -msgstr "" - -#. name for orz -msgid "Ormu" -msgstr "" - -#. name for osa -msgid "Osage" -msgstr "" - -#. name for osc -msgid "Oscan" -msgstr "" - -#. name for osi -msgid "Osing" -msgstr "" - -#. name for oso -msgid "Ososo" -msgstr "" - -#. name for osp -msgid "Spanish; Old" -msgstr "" - -#. name for oss -msgid "Ossetian" -msgstr "" - -#. name for ost -msgid "Osatu" -msgstr "" - -#. name for osu -msgid "One; Southern" -msgstr "" - -#. name for osx -msgid "Saxon; Old" -msgstr "" - -#. name for ota -msgid "Turkish; Ottoman (1500-1928)" -msgstr "" - -#. name for otb -msgid "Tibetan; Old" -msgstr "" - -#. name for otd -msgid "Ot Danum" -msgstr "" - -#. name for ote -msgid "Otomi; Mezquital" -msgstr "" - -#. name for oti -msgid "Oti" -msgstr "" - -#. name for otk -msgid "Turkish; Old" -msgstr "" - -#. name for otl -msgid "Otomi; Tilapa" -msgstr "" - -#. name for otm -msgid "Otomi; Eastern Highland" -msgstr "" - -#. name for otn -msgid "Otomi; Tenango" -msgstr "" - -#. name for otq -msgid "Otomi; Querétaro" -msgstr "" - -#. name for otr -msgid "Otoro" -msgstr "" - -#. name for ots -msgid "Otomi; Estado de México" -msgstr "" - -#. name for ott -msgid "Otomi; Temoaya" -msgstr "" - -#. name for otu -msgid "Otuke" -msgstr "" - -#. name for otw -msgid "Ottawa" -msgstr "" - -#. name for otx -msgid "Otomi; Texcatepec" -msgstr "" - -#. name for oty -msgid "Tamil; Old" -msgstr "" - -#. name for otz -msgid "Otomi; Ixtenco" -msgstr "" - -#. name for oua -msgid "Tagargrent" -msgstr "" - -#. name for oub -msgid "Glio-Oubi" -msgstr "" - -#. name for oue -msgid "Oune" -msgstr "" - -#. name for oui -msgid "Uighur; Old" -msgstr "" - -#. name for oum -msgid "Ouma" -msgstr "" - -#. name for oun -msgid "!O!ung" -msgstr "" - -#. name for owi -msgid "Owiniga" -msgstr "" - -#. name for owl -msgid "Welsh; Old" -msgstr "" - -#. name for oyb -msgid "Oy" -msgstr "" - -#. name for oyd -msgid "Oyda" -msgstr "" - -#. name for oym -msgid "Wayampi" -msgstr "" - -#. name for oyy -msgid "Oya'oya" -msgstr "" - -#. name for ozm -msgid "Koonzime" -msgstr "" - -#. name for pab -msgid "Parecís" -msgstr "" - -#. name for pac -msgid "Pacoh" -msgstr "" - -#. name for pad -msgid "Paumarí" -msgstr "" - -#. name for pae -msgid "Pagibete" -msgstr "" - -#. name for paf -msgid "Paranawát" -msgstr "" - -#. name for pag -msgid "Pangasinan" -msgstr "" - -#. name for pah -msgid "Tenharim" -msgstr "" - -#. name for pai -msgid "Pe" -msgstr "" - -#. name for pak -msgid "Parakanã" -msgstr "" - -#. name for pal -msgid "Pahlavi" -msgstr "" - -#. name for pam -msgid "Pampanga" -msgstr "" - -#. name for pan -msgid "Panjabi" -msgstr "" - -#. name for pao -msgid "Paiute; Northern" -msgstr "" - -#. name for pap -msgid "Papiamento" -msgstr "" - -#. name for paq -msgid "Parya" -msgstr "" - -#. name for par -msgid "Panamint" -msgstr "" - -#. name for pas -msgid "Papasena" -msgstr "" - -#. name for pat -msgid "Papitalai" -msgstr "" - -#. name for pau -msgid "Palauan" -msgstr "" - -#. name for pav -msgid "Pakaásnovos" -msgstr "" - -#. name for paw -msgid "Pawnee" -msgstr "" - -#. name for pax -msgid "Pankararé" -msgstr "" - -#. name for pay -msgid "Pech" -msgstr "" - -#. name for paz -msgid "Pankararú" -msgstr "" - -#. name for pbb -msgid "Páez" -msgstr "" - -#. name for pbc -msgid "Patamona" -msgstr "" - -#. name for pbe -msgid "Popoloca; Mezontla" -msgstr "" - -#. name for pbf -msgid "Popoloca; Coyotepec" -msgstr "" - -#. name for pbg -msgid "Paraujano" -msgstr "" - -#. name for pbh -msgid "E'ñapa Woromaipu" -msgstr "" - -#. name for pbi -msgid "Parkwa" -msgstr "" - -#. name for pbl -msgid "Mak (Nigeria)" -msgstr "" - -#. name for pbn -msgid "Kpasam" -msgstr "" - -#. name for pbo -msgid "Papel" -msgstr "" - -#. name for pbp -msgid "Badyara" -msgstr "" - -#. name for pbr -msgid "Pangwa" -msgstr "" - -#. name for pbs -msgid "Pame; Central" -msgstr "" - -#. name for pbt -msgid "Pashto; Southern" -msgstr "" - -#. name for pbu -msgid "Pashto; Northern" -msgstr "" - -#. name for pbv -msgid "Pnar" -msgstr "" - -#. name for pby -msgid "Pyu" -msgstr "" - -#. name for pbz -msgid "Palu" -msgstr "" - -#. name for pca -msgid "Popoloca; Santa Inés Ahuatempan" -msgstr "" - -#. name for pcb -msgid "Pear" -msgstr "" - -#. name for pcc -msgid "Bouyei" -msgstr "" - -#. name for pcd -msgid "Picard" -msgstr "" - -#. name for pce -msgid "Palaung; Ruching" -msgstr "" - -#. name for pcf -msgid "Paliyan" -msgstr "" - -#. name for pcg -msgid "Paniya" -msgstr "" - -#. name for pch -msgid "Pardhan" -msgstr "" - -#. name for pci -msgid "Duruwa" -msgstr "" - -#. name for pcj -msgid "Parenga" -msgstr "" - -#. name for pck -msgid "Chin; Paite" -msgstr "" - -#. name for pcl -msgid "Pardhi" -msgstr "" - -#. name for pcm -msgid "Pidgin; Nigerian" -msgstr "" - -#. name for pcn -msgid "Piti" -msgstr "" - -#. name for pcp -msgid "Pacahuara" -msgstr "" - -#. name for pcr -msgid "Panang" -msgstr "" - -#. name for pcw -msgid "Pyapun" -msgstr "" - -#. name for pda -msgid "Anam" -msgstr "" - -#. name for pdc -msgid "German; Pennsylvania" -msgstr "" - -#. name for pdi -msgid "Pa Di" -msgstr "" - -#. name for pdn -msgid "Podena" -msgstr "" - -#. name for pdo -msgid "Padoe" -msgstr "" - -#. name for pdt -msgid "Plautdietsch" -msgstr "" - -#. name for pdu -msgid "Kayan" -msgstr "" - -#. name for pea -msgid "Indonesian; Peranakan" -msgstr "" - -#. name for peb -msgid "Pomo; Eastern" -msgstr "" - -#. name for ped -msgid "Mala (Papua New Guinea)" -msgstr "" - -#. name for pee -msgid "Taje" -msgstr "" - -#. name for pef -msgid "Pomo; Northeastern" -msgstr "" - -#. name for peg -msgid "Pengo" -msgstr "" - -#. name for peh -msgid "Bonan" -msgstr "" - -#. name for pei -msgid "Chichimeca-Jonaz" -msgstr "" - -#. name for pej -msgid "Pomo; Northern" -msgstr "" - -#. name for pek -msgid "Penchal" -msgstr "" - -#. name for pel -msgid "Pekal" -msgstr "" - -#. name for pem -msgid "Phende" -msgstr "" - -#. name for peo -msgid "Persian; Old (ca. 600-400 B.C.)" -msgstr "" - -#. name for pep -msgid "Kunja" -msgstr "" - -#. name for peq -msgid "Pomo; Southern" -msgstr "" - -#. name for pes -msgid "Persian; Iranian" -msgstr "" - -#. name for pev -msgid "Pémono" -msgstr "" - -#. name for pex -msgid "Petats" -msgstr "" - -#. name for pey -msgid "Petjo" -msgstr "" - -#. name for pez -msgid "Penan; Eastern" -msgstr "" - -#. name for pfa -msgid "Pááfang" -msgstr "" - -#. name for pfe -msgid "Peere" -msgstr "" - -#. name for pfl -msgid "Pfaelzisch" -msgstr "" - -#. name for pga -msgid "Creole Arabic; Sudanese" -msgstr "" - -#. name for pgg -msgid "Pangwali" -msgstr "" - -#. name for pgi -msgid "Pagi" -msgstr "" - -#. name for pgk -msgid "Rerep" -msgstr "" - -#. name for pgl -msgid "Irish; Primitive" -msgstr "" - -#. name for pgn -msgid "Paelignian" -msgstr "" - -#. name for pgs -msgid "Pangseng" -msgstr "" - -#. name for pgu -msgid "Pagu" -msgstr "" - -#. name for pgy -msgid "Pongyong" -msgstr "" - -#. name for pha -msgid "Pa-Hng" -msgstr "" - -#. name for phd -msgid "Phudagi" -msgstr "" - -#. name for phg -msgid "Phuong" -msgstr "" - -#. name for phh -msgid "Phukha" -msgstr "" - -#. name for phk -msgid "Phake" -msgstr "" - -#. name for phl -msgid "Phalura" -msgstr "" - -#. name for phm -msgid "Phimbi" -msgstr "" - -#. name for phn -msgid "Phoenician" -msgstr "" - -#. name for pho -msgid "Phunoi" -msgstr "" - -#. name for phq -msgid "Phana'" -msgstr "" - -#. name for phr -msgid "Pahari-Potwari" -msgstr "" - -#. name for pht -msgid "Phu Thai" -msgstr "" - -#. name for phu -msgid "Phuan" -msgstr "" - -#. name for phv -msgid "Pahlavani" -msgstr "" - -#. name for phw -msgid "Phangduwali" -msgstr "" - -#. name for pia -msgid "Pima Bajo" -msgstr "" - -#. name for pib -msgid "Yine" -msgstr "" - -#. name for pic -msgid "Pinji" -msgstr "" - -#. name for pid -msgid "Piaroa" -msgstr "" - -#. name for pie -msgid "Piro" -msgstr "" - -#. name for pif -msgid "Pingelapese" -msgstr "" - -#. name for pig -msgid "Pisabo" -msgstr "" - -#. name for pih -msgid "Pitcairn-Norfolk" -msgstr "" - -#. name for pii -msgid "Pini" -msgstr "" - -#. name for pij -msgid "Pijao" -msgstr "" - -#. name for pil -msgid "Yom" -msgstr "" - -#. name for pim -msgid "Powhatan" -msgstr "" - -#. name for pin -msgid "Piame" -msgstr "" - -#. name for pio -msgid "Piapoco" -msgstr "" - -#. name for pip -msgid "Pero" -msgstr "" - -#. name for pir -msgid "Piratapuyo" -msgstr "" - -#. name for pis -msgid "Pijin" -msgstr "" - -#. name for pit -msgid "Pitta Pitta" -msgstr "" - -#. name for piu -msgid "Pintupi-Luritja" -msgstr "" - -#. name for piv -msgid "Pileni" -msgstr "" - -#. name for piw -msgid "Pimbwe" -msgstr "" - -#. name for pix -msgid "Piu" -msgstr "" - -#. name for piy -msgid "Piya-Kwonci" -msgstr "" - -#. name for piz -msgid "Pije" -msgstr "" - -#. name for pjt -msgid "Pitjantjatjara" -msgstr "" - -#. name for pka -msgid "Prākrit; Ardhamāgadhī" -msgstr "" - -#. name for pkb -msgid "Pokomo" -msgstr "" - -#. name for pkc -msgid "Paekche" -msgstr "" - -#. name for pkg -msgid "Pak-Tong" -msgstr "" - -#. name for pkh -msgid "Pankhu" -msgstr "" - -#. name for pkn -msgid "Pakanha" -msgstr "" - -#. name for pko -msgid "Pökoot" -msgstr "" - -#. name for pkp -msgid "Pukapuka" -msgstr "" - -#. name for pkr -msgid "Kurumba; Attapady" -msgstr "" - -#. name for pks -msgid "Pakistan Sign Language" -msgstr "" - -#. name for pkt -msgid "Maleng" -msgstr "" - -#. name for pku -msgid "Paku" -msgstr "" - -#. name for pla -msgid "Miani" -msgstr "" - -#. name for plb -msgid "Polonombauk" -msgstr "" - -#. name for plc -msgid "Palawano; Central" -msgstr "" - -#. name for pld -msgid "Polari" -msgstr "" - -#. name for ple -msgid "Palu'e" -msgstr "" - -#. name for plg -msgid "Pilagá" -msgstr "" - -#. name for plh -msgid "Paulohi" -msgstr "" - -#. name for pli -msgid "Pali" -msgstr "" - -#. name for plj -msgid "Polci" -msgstr "" - -#. name for plk -msgid "Shina; Kohistani" -msgstr "" - -#. name for pll -msgid "Palaung; Shwe" -msgstr "" - -#. name for pln -msgid "Palenquero" -msgstr "" - -#. name for plo -msgid "Popoluca; Oluta" -msgstr "" - -#. name for plp -msgid "Palpa" -msgstr "" - -#. name for plq -msgid "Palaic" -msgstr "" - -#. name for plr -msgid "Senoufo; Palaka" -msgstr "" - -#. name for pls -msgid "Popoloca; San Marcos Tlalcoyalco" -msgstr "" - -#. name for plt -msgid "Malagasy; Plateau" -msgstr "" - -#. name for plu -msgid "Palikúr" -msgstr "" - -#. name for plv -msgid "Palawano; Southwest" -msgstr "" - -#. name for plw -msgid "Palawano; Brooke's Point" -msgstr "" - -#. name for ply -msgid "Bolyu" -msgstr "" - -#. name for plz -msgid "Paluan" -msgstr "" - -#. name for pma -msgid "Paama" -msgstr "" - -#. name for pmb -msgid "Pambia" -msgstr "" - -#. name for pmc -msgid "Palumata" -msgstr "" - -#. name for pme -msgid "Pwaamei" -msgstr "" - -#. name for pmf -msgid "Pamona" -msgstr "" - -#. name for pmh -msgid "Prākrit; Māhārāṣṭri" -msgstr "" - -#. name for pmi -msgid "Pumi; Northern" -msgstr "" - -#. name for pmj -msgid "Pumi; Southern" -msgstr "" - -#. name for pmk -msgid "Pamlico" -msgstr "" - -#. name for pml -msgid "Lingua Franca" -msgstr "" - -#. name for pmm -msgid "Pomo" -msgstr "" - -#. name for pmn -msgid "Pam" -msgstr "" - -#. name for pmo -msgid "Pom" -msgstr "" - -#. name for pmq -msgid "Pame; Northern" -msgstr "" - -#. name for pmr -msgid "Paynamar" -msgstr "" - -#. name for pms -msgid "Piemontese" -msgstr "" - -#. name for pmt -msgid "Tuamotuan" -msgstr "" - -#. name for pmu -msgid "Panjabi; Mirpur" -msgstr "" - -#. name for pmw -msgid "Miwok; Plains" -msgstr "" - -#. name for pmx -msgid "Naga; Poumei" -msgstr "" - -#. name for pmy -msgid "Malay; Papuan" -msgstr "" - -#. name for pmz -msgid "Pame; Southern" -msgstr "" - -#. name for pna -msgid "Punan Bah-Biau" -msgstr "" - -#. name for pnb -msgid "Panjabi; Western" -msgstr "" - -#. name for pnc -msgid "Pannei" -msgstr "" - -#. name for pne -msgid "Penan; Western" -msgstr "" - -#. name for png -msgid "Pongu" -msgstr "" - -#. name for pnh -msgid "Penrhyn" -msgstr "" - -#. name for pni -msgid "Aoheng" -msgstr "" - -#. name for pnm -msgid "Punan Batu 1" -msgstr "" - -#. name for pnn -msgid "Pinai-Hagahai" -msgstr "" - -#. name for pno -msgid "Panobo" -msgstr "" - -#. name for pnp -msgid "Pancana" -msgstr "" - -#. name for pnq -msgid "Pana (Burkina Faso)" -msgstr "" - -#. name for pnr -msgid "Panim" -msgstr "" - -#. name for pns -msgid "Ponosakan" -msgstr "" - -#. name for pnt -msgid "Pontic" -msgstr "" - -#. name for pnu -msgid "Bunu; Jiongnai" -msgstr "" - -#. name for pnv -msgid "Pinigura" -msgstr "" - -#. name for pnw -msgid "Panytyima" -msgstr "" - -#. name for pnx -msgid "Phong-Kniang" -msgstr "" - -#. name for pny -msgid "Pinyin" -msgstr "" - -#. name for pnz -msgid "Pana (Central African Republic)" -msgstr "" - -#. name for poc -msgid "Poqomam" -msgstr "" - -#. name for pod -msgid "Ponares" -msgstr "" - -#. name for poe -msgid "Popoloca; San Juan Atzingo" -msgstr "" - -#. name for pof -msgid "Poke" -msgstr "" - -#. name for pog -msgid "Potiguára" -msgstr "" - -#. name for poh -msgid "Poqomchi'" -msgstr "" - -#. name for poi -msgid "Popoluca; Highland" -msgstr "" - -#. name for pok -msgid "Pokangá" -msgstr "" - -#. name for pol -msgid "Polish" -msgstr "" - -#. name for pom -msgid "Pomo; Southeastern" -msgstr "" - -#. name for pon -msgid "Pohnpeian" -msgstr "" - -#. name for poo -msgid "Pomo; Central" -msgstr "" - -#. name for pop -msgid "Pwapwa" -msgstr "" - -#. name for poq -msgid "Popoluca; Texistepec" -msgstr "" - -#. name for por -msgid "Portuguese" -msgstr "" - -#. name for pos -msgid "Popoluca; Sayula" -msgstr "" - -#. name for pot -msgid "Potawatomi" -msgstr "" - -#. name for pov -msgid "Crioulo; Upper Guinea" -msgstr "" - -#. name for pow -msgid "Popoloca; San Felipe Otlaltepec" -msgstr "" - -#. name for pox -msgid "Polabian" -msgstr "" - -#. name for poy -msgid "Pogolo" -msgstr "" - -#. name for ppa -msgid "Pao" -msgstr "" - -#. name for ppe -msgid "Papi" -msgstr "" - -#. name for ppi -msgid "Paipai" -msgstr "" - -#. name for ppk -msgid "Uma" -msgstr "" - -#. name for ppl -msgid "Pipil" -msgstr "" - -#. name for ppm -msgid "Papuma" -msgstr "" - -#. name for ppn -msgid "Papapana" -msgstr "" - -#. name for ppo -msgid "Folopa" -msgstr "" - -#. name for ppp -msgid "Pelende" -msgstr "" - -#. name for ppq -msgid "Pei" -msgstr "" - -#. name for ppr -msgid "Piru" -msgstr "" - -#. name for pps -msgid "Popoloca; San Luís Temalacayuca" -msgstr "" - -#. name for ppt -msgid "Pare" -msgstr "" - -#. name for ppu -msgid "Papora" -msgstr "" - -#. name for pqa -msgid "Pa'a" -msgstr "" - -#. name for pqm -msgid "Malecite-Passamaquoddy" -msgstr "" - -#. name for prb -msgid "Lua'" -msgstr "" - -#. name for prc -msgid "Parachi" -msgstr "" - -#. name for prd -msgid "Parsi-Dari" -msgstr "" - -#. name for pre -msgid "Principense" -msgstr "" - -#. name for prf -msgid "Paranan" -msgstr "" - -#. name for prg -msgid "Prussian" -msgstr "" - -#. name for prh -msgid "Porohanon" -msgstr "" - -#. name for pri -msgid "Paicî" -msgstr "" - -#. name for prk -msgid "Parauk" -msgstr "" - -#. name for prl -msgid "Peruvian Sign Language" -msgstr "" - -#. name for prm -msgid "Kibiri" -msgstr "" - -#. name for prn -msgid "Prasuni" -msgstr "" - -#. name for pro -msgid "Provençal; Old (to 1500)" -msgstr "" - -#. name for prp -msgid "Parsi" -msgstr "" - -#. name for prq -msgid "Ashéninka Perené" -msgstr "" - -#. name for prr -msgid "Puri" -msgstr "" - -#. name for prs -msgid "Persian; Afghan" -msgstr "" - -#. name for prt -msgid "Phai" -msgstr "" - -#. name for pru -msgid "Puragi" -msgstr "" - -#. name for prw -msgid "Parawen" -msgstr "" - -#. name for prx -msgid "Purik" -msgstr "" - -#. name for pry -msgid "Pray 3" -msgstr "" - -#. name for prz -msgid "Providencia Sign Language" -msgstr "" - -#. name for psa -msgid "Awyu; Asue" -msgstr "" - -#. name for psc -msgid "Persian Sign Language" -msgstr "" - -#. name for psd -msgid "Plains Indian Sign Language" -msgstr "" - -#. name for pse -msgid "Malay; Central" -msgstr "" - -#. name for psg -msgid "Penang Sign Language" -msgstr "" - -#. name for psh -msgid "Pashayi; Southwest" -msgstr "" - -#. name for psi -msgid "Pashayi; Southeast" -msgstr "" - -#. name for psl -msgid "Puerto Rican Sign Language" -msgstr "" - -#. name for psm -msgid "Pauserna" -msgstr "" - -#. name for psn -msgid "Panasuan" -msgstr "" - -#. name for pso -msgid "Polish Sign Language" -msgstr "" - -#. name for psp -msgid "Philippine Sign Language" -msgstr "" - -#. name for psq -msgid "Pasi" -msgstr "" - -#. name for psr -msgid "Portuguese Sign Language" -msgstr "" - -#. name for pss -msgid "Kaulong" -msgstr "" - -#. name for pst -msgid "Pashto; Central" -msgstr "" - -#. name for psu -msgid "Prākrit; Sauraseni" -msgstr "" - -#. name for psw -msgid "Port Sandwich" -msgstr "" - -#. name for psy -msgid "Piscataway" -msgstr "" - -#. name for pta -msgid "Pai Tavytera" -msgstr "" - -#. name for pth -msgid "Pataxó Hã-Ha-Hãe" -msgstr "" - -#. name for pti -msgid "Pintiini" -msgstr "" - -#. name for ptn -msgid "Patani" -msgstr "" - -#. name for pto -msgid "Zo'é" -msgstr "" - -#. name for ptp -msgid "Patep" -msgstr "" - -#. name for ptr -msgid "Piamatsina" -msgstr "" - -#. name for ptt -msgid "Enrekang" -msgstr "" - -#. name for ptu -msgid "Bambam" -msgstr "" - -#. name for ptv -msgid "Port Vato" -msgstr "" - -#. name for ptw -msgid "Pentlatch" -msgstr "" - -#. name for pty -msgid "Pathiya" -msgstr "" - -#. name for pua -msgid "Purepecha; Western Highland" -msgstr "" - -#. name for pub -msgid "Purum" -msgstr "" - -#. name for puc -msgid "Punan Merap" -msgstr "" - -#. name for pud -msgid "Punan Aput" -msgstr "" - -#. name for pue -msgid "Puelche" -msgstr "" - -#. name for puf -msgid "Punan Merah" -msgstr "" - -#. name for pug -msgid "Phuie" -msgstr "" - -#. name for pui -msgid "Puinave" -msgstr "" - -#. name for puj -msgid "Punan Tubu" -msgstr "" - -#. name for puk -msgid "Pu Ko" -msgstr "" - -#. name for pum -msgid "Puma" -msgstr "" - -#. name for puo -msgid "Puoc" -msgstr "" - -#. name for pup -msgid "Pulabu" -msgstr "" - -#. name for puq -msgid "Puquina" -msgstr "" - -#. name for pur -msgid "Puruborá" -msgstr "" - -#. name for pus -msgid "Pushto" -msgstr "" - -#. name for put -msgid "Putoh" -msgstr "" - -#. name for puu -msgid "Punu" -msgstr "" - -#. name for puw -msgid "Puluwatese" -msgstr "" - -#. name for pux -msgid "Puare" -msgstr "" - -#. name for puy -msgid "Purisimeño" -msgstr "" - -#. name for puz -msgid "Naga; Purum" -msgstr "" - -#. name for pwa -msgid "Pawaia" -msgstr "" - -#. name for pwb -msgid "Panawa" -msgstr "" - -#. name for pwg -msgid "Gapapaiwa" -msgstr "" - -#. name for pwm -msgid "Molbog" -msgstr "" - -#. name for pwn -msgid "Paiwan" -msgstr "" - -#. name for pwo -msgid "Karen; Pwo Western" -msgstr "" - -#. name for pwr -msgid "Powari" -msgstr "" - -#. name for pww -msgid "Karen; Pwo Northern" -msgstr "" - -#. name for pxm -msgid "Mixe; Quetzaltepec" -msgstr "" - -#. name for pye -msgid "Krumen; Pye" -msgstr "" - -#. name for pym -msgid "Fyam" -msgstr "" - -#. name for pyn -msgid "Poyanáwa" -msgstr "" - -#. name for pys -msgid "Paraguayan Sign Language" -msgstr "" - -#. name for pyu -msgid "Puyuma" -msgstr "" - -#. name for pyx -msgid "Pyu (Myanmar)" -msgstr "" - -#. name for pyy -msgid "Pyen" -msgstr "" - -#. name for pzn -msgid "Naga; Para" -msgstr "" - -#. name for qua -msgid "Quapaw" -msgstr "" - -#. name for qub -msgid "Quechua; Huallaga Huánuco" -msgstr "" - -#. name for quc -msgid "K'iche'" -msgstr "" - -#. name for qud -msgid "Quichua; Calderón Highland" -msgstr "" - -#. name for que -msgid "Quechua" -msgstr "" - -#. name for quf -msgid "Quechua; Lambayeque" -msgstr "" - -#. name for qug -msgid "Quichua; Chimborazo Highland" -msgstr "" - -#. name for quh -msgid "Quechua; South Bolivian" -msgstr "" - -#. name for qui -msgid "Quileute" -msgstr "" - -#. name for quk -msgid "Quechua; Chachapoyas" -msgstr "" - -#. name for qul -msgid "Quechua; North Bolivian" -msgstr "" - -#. name for qum -msgid "Sipacapense" -msgstr "" - -#. name for qun -msgid "Quinault" -msgstr "" - -#. name for qup -msgid "Quechua; Southern Pastaza" -msgstr "" - -#. name for quq -msgid "Quinqui" -msgstr "" - -#. name for qur -msgid "Quechua; Yanahuanca Pasco" -msgstr "" - -#. name for qus -msgid "Quichua; Santiago del Estero" -msgstr "" - -#. name for quv -msgid "Sacapulteco" -msgstr "" - -#. name for quw -msgid "Quichua; Tena Lowland" -msgstr "" - -#. name for qux -msgid "Quechua; Yauyos" -msgstr "" - -#. name for quy -msgid "Quechua; Ayacucho" -msgstr "" - -#. name for quz -msgid "Quechua; Cusco" -msgstr "" - -#. name for qva -msgid "Quechua; Ambo-Pasco" -msgstr "" - -#. name for qvc -msgid "Quechua; Cajamarca" -msgstr "" - -#. name for qve -msgid "Quechua; Eastern Apurímac" -msgstr "" - -#. name for qvh -msgid "Quechua; Huamalíes-Dos de Mayo Huánuco" -msgstr "" - -#. name for qvi -msgid "Quichua; Imbabura Highland" -msgstr "" - -#. name for qvj -msgid "Quichua; Loja Highland" -msgstr "" - -#. name for qvl -msgid "Quechua; Cajatambo North Lima" -msgstr "" - -#. name for qvm -msgid "Quechua; Margos-Yarowilca-Lauricocha" -msgstr "" - -#. name for qvn -msgid "Quechua; North Junín" -msgstr "" - -#. name for qvo -msgid "Quechua; Napo Lowland" -msgstr "" - -#. name for qvp -msgid "Quechua; Pacaraos" -msgstr "" - -#. name for qvs -msgid "Quechua; San Martín" -msgstr "" - -#. name for qvw -msgid "Quechua; Huaylla Wanca" -msgstr "" - -#. name for qvy -msgid "Queyu" -msgstr "" - -#. name for qvz -msgid "Quichua; Northern Pastaza" -msgstr "" - -#. name for qwa -msgid "Quechua; Corongo Ancash" -msgstr "" - -#. name for qwc -msgid "Quechua; Classical" -msgstr "" - -#. name for qwh -msgid "Quechua; Huaylas Ancash" -msgstr "" - -#. name for qwm -msgid "Kuman (Russia)" -msgstr "" - -#. name for qws -msgid "Quechua; Sihuas Ancash" -msgstr "" - -#. name for qwt -msgid "Kwalhioqua-Tlatskanai" -msgstr "" - -#. name for qxa -msgid "Quechua; Chiquián Ancash" -msgstr "" - -#. name for qxc -msgid "Quechua; Chincha" -msgstr "" - -#. name for qxh -msgid "Quechua; Panao Huánuco" -msgstr "" - -#. name for qxl -msgid "Quichua; Salasaca Highland" -msgstr "" - -#. name for qxn -msgid "Quechua; Northern Conchucos Ancash" -msgstr "" - -#. name for qxo -msgid "Quechua; Southern Conchucos Ancash" -msgstr "" - -#. name for qxp -msgid "Quechua; Puno" -msgstr "" - -#. name for qxq -msgid "Qashqa'i" -msgstr "" - -#. name for qxr -msgid "Quichua; Cañar Highland" -msgstr "" - -#. name for qxs -msgid "Qiang; Southern" -msgstr "" - -#. name for qxt -msgid "Quechua; Santa Ana de Tusi Pasco" -msgstr "" - -#. name for qxu -msgid "Quechua; Arequipa-La Unión" -msgstr "" - -#. name for qxw -msgid "Quechua; Jauja Wanca" -msgstr "" - -#. name for qya -msgid "Quenya" -msgstr "" - -#. name for qyp -msgid "Quiripi" -msgstr "" - -#. name for raa -msgid "Dungmali" -msgstr "" - -#. name for rab -msgid "Camling" -msgstr "" - -#. name for rac -msgid "Rasawa" -msgstr "" - -#. name for rad -msgid "Rade" -msgstr "" - -#. name for raf -msgid "Meohang; Western" -msgstr "" - -#. name for rag -msgid "Logooli" -msgstr "" - -#. name for rah -msgid "Rabha" -msgstr "" - -#. name for rai -msgid "Ramoaaina" -msgstr "" - -#. name for raj -msgid "Rajasthani" -msgstr "" - -#. name for rak -msgid "Tulu-Bohuai" -msgstr "" - -#. name for ral -msgid "Ralte" -msgstr "" - -#. name for ram -msgid "Canela" -msgstr "" - -#. name for ran -msgid "Riantana" -msgstr "" - -#. name for rao -msgid "Rao" -msgstr "" - -#. name for rap -msgid "Rapanui" -msgstr "" - -#. name for raq -msgid "Saam" -msgstr "" - -#. name for rar -msgid "Maori; Cook Islands" -msgstr "" - -#. name for ras -msgid "Tegali" -msgstr "" - -#. name for rat -msgid "Razajerdi" -msgstr "" - -#. name for rau -msgid "Raute" -msgstr "" - -#. name for rav -msgid "Sampang" -msgstr "" - -#. name for raw -msgid "Rawang" -msgstr "" - -#. name for rax -msgid "Rang" -msgstr "" - -#. name for ray -msgid "Rapa" -msgstr "" - -#. name for raz -msgid "Rahambuu" -msgstr "" - -#. name for rbb -msgid "Palaung; Rumai" -msgstr "" - -#. name for rbk -msgid "Bontok; Northern" -msgstr "" - -#. name for rbl -msgid "Bikol; Miraya" -msgstr "" - -#. name for rcf -msgid "Creole French; Réunion" -msgstr "" - -#. name for rdb -msgid "Rudbari" -msgstr "" - -#. name for rea -msgid "Rerau" -msgstr "" - -#. name for reb -msgid "Rembong" -msgstr "" - -#. name for ree -msgid "Kayan; Rejang" -msgstr "" - -#. name for reg -msgid "Kara (Tanzania)" -msgstr "" - -#. name for rei -msgid "Reli" -msgstr "" - -#. name for rej -msgid "Rejang" -msgstr "" - -#. name for rel -msgid "Rendille" -msgstr "" - -#. name for rem -msgid "Remo" -msgstr "" - -#. name for ren -msgid "Rengao" -msgstr "" - -#. name for rer -msgid "Rer Bare" -msgstr "" - -#. name for res -msgid "Reshe" -msgstr "" - -#. name for ret -msgid "Retta" -msgstr "" - -#. name for rey -msgid "Reyesano" -msgstr "" - -#. name for rga -msgid "Roria" -msgstr "" - -#. name for rge -msgid "Romano-Greek" -msgstr "" - -#. name for rgk -msgid "Rangkas" -msgstr "" - -#. name for rgn -msgid "Romagnol" -msgstr "" - -#. name for rgr -msgid "Resígaro" -msgstr "" - -#. name for rgs -msgid "Roglai; Southern" -msgstr "" - -#. name for rgu -msgid "Ringgou" -msgstr "" - -#. name for rhg -msgid "Rohingya" -msgstr "" - -#. name for rhp -msgid "Yahang" -msgstr "" - -#. name for ria -msgid "Riang (India)" -msgstr "" - -#. name for rie -msgid "Rien" -msgstr "" - -#. name for rif -msgid "Tarifit" -msgstr "" - -#. name for ril -msgid "Riang (Myanmar)" -msgstr "" - -#. name for rim -msgid "Nyaturu" -msgstr "" - -#. name for rin -msgid "Nungu" -msgstr "" - -#. name for rir -msgid "Ribun" -msgstr "" - -#. name for rit -msgid "Ritarungo" -msgstr "" - -#. name for riu -msgid "Riung" -msgstr "" - -#. name for rjg -msgid "Rajong" -msgstr "" - -#. name for rji -msgid "Raji" -msgstr "" - -#. name for rjs -msgid "Rajbanshi" -msgstr "" - -#. name for rka -msgid "Kraol" -msgstr "" - -#. name for rkb -msgid "Rikbaktsa" -msgstr "" - -#. name for rkh -msgid "Rakahanga-Manihiki" -msgstr "" - -#. name for rki -msgid "Rakhine" -msgstr "" - -#. name for rkm -msgid "Marka" -msgstr "" - -#. name for rkt -msgid "Rangpuri" -msgstr "" - -#. name for rma -msgid "Rama" -msgstr "" - -#. name for rmb -msgid "Rembarunga" -msgstr "" - -#. name for rmc -msgid "Romani; Carpathian" -msgstr "" - -#. name for rmd -msgid "Danish; Traveller" -msgstr "" - -#. name for rme -msgid "Angloromani" -msgstr "" - -#. name for rmf -msgid "Romani; Kalo Finnish" -msgstr "" - -#. name for rmg -msgid "Norwegian; Traveller" -msgstr "" - -#. name for rmh -msgid "Murkim" -msgstr "" - -#. name for rmi -msgid "Lomavren" -msgstr "" - -#. name for rmk -msgid "Romkun" -msgstr "" - -#. name for rml -msgid "Romani; Baltic" -msgstr "" - -#. name for rmm -msgid "Roma" -msgstr "" - -#. name for rmn -msgid "Romani; Balkan" -msgstr "" - -#. name for rmo -msgid "Romani; Sinte" -msgstr "" - -#. name for rmp -msgid "Rempi" -msgstr "" - -#. name for rmq -msgid "Caló" -msgstr "" - -#. name for rms -msgid "Romanian Sign Language" -msgstr "" - -#. name for rmt -msgid "Domari" -msgstr "" - -#. name for rmu -msgid "Romani; Tavringer" -msgstr "" - -#. name for rmv -msgid "Romanova" -msgstr "" - -#. name for rmw -msgid "Romani; Welsh" -msgstr "" - -#. name for rmx -msgid "Romam" -msgstr "" - -#. name for rmy -msgid "Romani; Vlax" -msgstr "" - -#. name for rmz -msgid "Marma" -msgstr "" - -#. name for rna -msgid "Runa" -msgstr "" - -#. name for rnd -msgid "Ruund" -msgstr "" - -#. name for rng -msgid "Ronga" -msgstr "" - -#. name for rnl -msgid "Ranglong" -msgstr "" - -#. name for rnn -msgid "Roon" -msgstr "" - -#. name for rnp -msgid "Rongpo" -msgstr "" - -#. name for rnw -msgid "Rungwa" -msgstr "" - -#. name for rob -msgid "Tae'" -msgstr "" - -#. name for roc -msgid "Roglai; Cacgia" -msgstr "" - -#. name for rod -msgid "Rogo" -msgstr "" - -#. name for roe -msgid "Ronji" -msgstr "" - -#. name for rof -msgid "Rombo" -msgstr "" - -#. name for rog -msgid "Roglai; Northern" -msgstr "" - -#. name for roh -msgid "Romansh" -msgstr "" - -#. name for rol -msgid "Romblomanon" -msgstr "" - -#. name for rom -msgid "Romany" -msgstr "" - -#. name for ron -msgid "Romanian" -msgstr "" - -#. name for roo -msgid "Rotokas" -msgstr "" - -#. name for rop -msgid "Kriol" -msgstr "" - -#. name for ror -msgid "Rongga" -msgstr "" - -#. name for rou -msgid "Runga" -msgstr "" - -#. name for row -msgid "Dela-Oenale" -msgstr "" - -#. name for rpn -msgid "Repanbitip" -msgstr "" - -#. name for rpt -msgid "Rapting" -msgstr "" - -#. name for rri -msgid "Ririo" -msgstr "" - -#. name for rro -msgid "Waima" -msgstr "" - -#. name for rsb -msgid "Romano-Serbian" -msgstr "" - -#. name for rsi -msgid "Rennellese Sign Language" -msgstr "" - -#. name for rsl -msgid "Russian Sign Language" -msgstr "" - -#. name for rth -msgid "Ratahan" -msgstr "" - -#. name for rtm -msgid "Rotuman" -msgstr "" - -#. name for rtw -msgid "Rathawi" -msgstr "" - -#. name for rub -msgid "Gungu" -msgstr "" - -#. name for ruc -msgid "Ruuli" -msgstr "" - -#. name for rue -msgid "Rusyn" -msgstr "" - -#. name for ruf -msgid "Luguru" -msgstr "" - -#. name for rug -msgid "Roviana" -msgstr "" - -#. name for ruh -msgid "Ruga" -msgstr "" - -#. name for rui -msgid "Rufiji" -msgstr "" - -#. name for ruk -msgid "Che" -msgstr "" - -#. name for run -msgid "Rundi" -msgstr "" - -#. name for ruo -msgid "Romanian; Istro" -msgstr "" - -#. name for rup -msgid "Romanian; Macedo-" -msgstr "" - -#. name for ruq -msgid "Romanian; Megleno" -msgstr "" - -#. name for rus -msgid "Russian" -msgstr "" - -#. name for rut -msgid "Rutul" -msgstr "" - -#. name for ruu -msgid "Lobu; Lanas" -msgstr "" - -#. name for ruy -msgid "Mala (Nigeria)" -msgstr "" - -#. name for ruz -msgid "Ruma" -msgstr "" - -#. name for rwa -msgid "Rawo" -msgstr "" - -#. name for rwk -msgid "Rwa" -msgstr "" - -#. name for rwm -msgid "Amba (Uganda)" -msgstr "" - -#. name for rwo -msgid "Rawa" -msgstr "" - -#. name for rwr -msgid "Marwari (India)" -msgstr "" - -#. name for ryn -msgid "Amami-Oshima; Northern" -msgstr "" - -#. name for rys -msgid "Yaeyama" -msgstr "" - -#. name for ryu -msgid "Okinawan; Central" -msgstr "" - -#. name for saa -msgid "Saba" -msgstr "" - -#. name for sab -msgid "Buglere" -msgstr "" - -#. name for sac -msgid "Meskwaki" -msgstr "" - -#. name for sad -msgid "Sandawe" -msgstr "" - -#. name for sae -msgid "Sabanê" -msgstr "" - -#. name for saf -msgid "Safaliba" -msgstr "" - -#. name for sag -msgid "Sango" -msgstr "" - -#. name for sah -msgid "Yakut" -msgstr "" - -#. name for saj -msgid "Sahu" -msgstr "" - -#. name for sak -msgid "Sake" -msgstr "" - -#. name for sam -msgid "Aramaic; Samaritan" -msgstr "" - -#. name for san -msgid "Sanskrit" -msgstr "" - -#. name for sao -msgid "Sause" -msgstr "" - -#. name for sap -msgid "Sanapaná" -msgstr "" - -#. name for saq -msgid "Samburu" -msgstr "" - -#. name for sar -msgid "Saraveca" -msgstr "" - -#. name for sas -msgid "Sasak" -msgstr "" - -#. name for sat -msgid "Santali" -msgstr "" - -#. name for sau -msgid "Saleman" -msgstr "" - -#. name for sav -msgid "Saafi-Saafi" -msgstr "" - -#. name for saw -msgid "Sawi" -msgstr "" - -#. name for sax -msgid "Sa" -msgstr "" - -#. name for say -msgid "Saya" -msgstr "" - -#. name for saz -msgid "Saurashtra" -msgstr "" - -#. name for sba -msgid "Ngambay" -msgstr "" - -#. name for sbb -msgid "Simbo" -msgstr "" - -#. name for sbc -msgid "Kele (Papua New Guinea)" -msgstr "" - -#. name for sbd -msgid "Samo; Southern" -msgstr "" - -#. name for sbe -msgid "Saliba" -msgstr "" - -#. name for sbf -msgid "Shabo" -msgstr "" - -#. name for sbg -msgid "Seget" -msgstr "" - -#. name for sbh -msgid "Sori-Harengan" -msgstr "" - -#. name for sbi -msgid "Seti" -msgstr "" - -#. name for sbj -msgid "Surbakhal" -msgstr "" - -#. name for sbk -msgid "Safwa" -msgstr "" - -#. name for sbl -msgid "Sambal; Botolan" -msgstr "" - -#. name for sbm -msgid "Sagala" -msgstr "" - -#. name for sbn -msgid "Bhil; Sindhi" -msgstr "" - -#. name for sbo -msgid "Sabüm" -msgstr "" - -#. name for sbp -msgid "Sangu (Tanzania)" -msgstr "" - -#. name for sbq -msgid "Sileibi" -msgstr "" - -#. name for sbr -msgid "Sembakung Murut" -msgstr "" - -#. name for sbs -msgid "Subiya" -msgstr "" - -#. name for sbt -msgid "Kimki" -msgstr "" - -#. name for sbu -msgid "Bhoti; Stod" -msgstr "" - -#. name for sbv -msgid "Sabine" -msgstr "" - -#. name for sbw -msgid "Simba" -msgstr "" - -#. name for sbx -msgid "Seberuang" -msgstr "" - -#. name for sby -msgid "Soli" -msgstr "" - -#. name for sbz -msgid "Sara Kaba" -msgstr "" - -#. name for sca -msgid "Sansu" -msgstr "" - -#. name for scb -msgid "Chut" -msgstr "" - -#. name for sce -msgid "Dongxiang" -msgstr "" - -#. name for scf -msgid "Creole French; San Miguel" -msgstr "" - -#. name for scg -msgid "Sanggau" -msgstr "" - -#. name for sch -msgid "Sakachep" -msgstr "" - -#. name for sci -msgid "Creole Malay; Sri Lankan" -msgstr "" - -#. name for sck -msgid "Sadri" -msgstr "" - -#. name for scl -msgid "Shina" -msgstr "" - -#. name for scn -msgid "Sicilian" -msgstr "" - -#. name for sco -msgid "Scots" -msgstr "" - -#. name for scp -msgid "Helambu Sherpa" -msgstr "" - -#. name for scq -msgid "Sa'och" -msgstr "" - -#. name for scs -msgid "Slavey; North" -msgstr "" - -#. name for scu -msgid "Shumcho" -msgstr "" - -#. name for scv -msgid "Sheni" -msgstr "" - -#. name for scw -msgid "Sha" -msgstr "" - -#. name for scx -msgid "Sicel" -msgstr "" - -#. name for sda -msgid "Toraja-Sa'dan" -msgstr "" - -#. name for sdb -msgid "Shabak" -msgstr "" - -#. name for sdc -msgid "Sardinian; Sassarese" -msgstr "" - -#. name for sde -msgid "Surubu" -msgstr "" - -#. name for sdf -msgid "Sarli" -msgstr "" - -#. name for sdg -msgid "Savi" -msgstr "" - -#. name for sdh -msgid "Kurdish; Southern" -msgstr "" - -#. name for sdj -msgid "Suundi" -msgstr "" - -#. name for sdk -msgid "Sos Kundi" -msgstr "" - -#. name for sdl -msgid "Saudi Arabian Sign Language" -msgstr "" - -#. name for sdm -msgid "Semandang" -msgstr "" - -#. name for sdn -msgid "Sardinian; Gallurese" -msgstr "" - -#. name for sdo -msgid "Bidayuh; Bukar-Sadung" -msgstr "" - -#. name for sdp -msgid "Sherdukpen" -msgstr "" - -#. name for sdr -msgid "Sadri; Oraon" -msgstr "" - -#. name for sds -msgid "Sened" -msgstr "" - -#. name for sdt -msgid "Shuadit" -msgstr "" - -#. name for sdu -msgid "Sarudu" -msgstr "" - -#. name for sdx -msgid "Melanau; Sibu" -msgstr "" - -#. name for sdz -msgid "Sallands" -msgstr "" - -#. name for sea -msgid "Semai" -msgstr "" - -#. name for seb -msgid "Senoufo; Shempire" -msgstr "" - -#. name for sec -msgid "Sechelt" -msgstr "" - -#. name for sed -msgid "Sedang" -msgstr "" - -#. name for see -msgid "Seneca" -msgstr "" - -#. name for sef -msgid "Senoufo; Cebaara" -msgstr "" - -#. name for seg -msgid "Segeju" -msgstr "" - -#. name for seh -msgid "Sena" -msgstr "" - -#. name for sei -msgid "Seri" -msgstr "" - -#. name for sej -msgid "Sene" -msgstr "" - -#. name for sek -msgid "Sekani" -msgstr "" - -#. name for sel -msgid "Selkup" -msgstr "" - -#. name for sen -msgid "Sénoufo; Nanerigé" -msgstr "" - -#. name for seo -msgid "Suarmin" -msgstr "" - -#. name for sep -msgid "Sénoufo; Sìcìté" -msgstr "" - -#. name for seq -msgid "Sénoufo; Senara" -msgstr "" - -#. name for ser -msgid "Serrano" -msgstr "" - -#. name for ses -msgid "Songhai; Koyraboro Senni" -msgstr "" - -#. name for set -msgid "Sentani" -msgstr "" - -#. name for seu -msgid "Serui-Laut" -msgstr "" - -#. name for sev -msgid "Senoufo; Nyarafolo" -msgstr "" - -#. name for sew -msgid "Sewa Bay" -msgstr "" - -#. name for sey -msgid "Secoya" -msgstr "" - -#. name for sez -msgid "Chin; Senthang" -msgstr "" - -#. name for sfb -msgid "Langue des signes de Belgique Francophone" -msgstr "" - -#. name for sfm -msgid "Miao; Small Flowery" -msgstr "" - -#. name for sfs -msgid "South African Sign Language" -msgstr "" - -#. name for sfw -msgid "Sehwi" -msgstr "" - -#. name for sga -msgid "Irish; Old (to 900)" -msgstr "" - -#. name for sgb -msgid "Ayta; Mag-antsi" -msgstr "" - -#. name for sgc -msgid "Kipsigis" -msgstr "" - -#. name for sgd -msgid "Surigaonon" -msgstr "" - -#. name for sge -msgid "Segai" -msgstr "" - -#. name for sgg -msgid "Swiss-German Sign Language" -msgstr "" - -#. name for sgh -msgid "Shughni" -msgstr "" - -#. name for sgi -msgid "Suga" -msgstr "" - -#. name for sgk -msgid "Sangkong" -msgstr "" - -#. name for sgm -msgid "Singa" -msgstr "" - -#. name for sgo -msgid "Songa" -msgstr "" - -#. name for sgp -msgid "Singpho" -msgstr "" - -#. name for sgr -msgid "Sangisari" -msgstr "" - -#. name for sgs -msgid "Samogitian" -msgstr "" - -#. name for sgt -msgid "Brokpake" -msgstr "" - -#. name for sgu -msgid "Salas" -msgstr "" - -#. name for sgw -msgid "Sebat Bet Gurage" -msgstr "" - -#. name for sgx -msgid "Sierra Leone Sign Language" -msgstr "" - -#. name for sgy -msgid "Sanglechi" -msgstr "" - -#. name for sgz -msgid "Sursurunga" -msgstr "" - -#. name for sha -msgid "Shall-Zwall" -msgstr "" - -#. name for shb -msgid "Ninam" -msgstr "" - -#. name for shc -msgid "Sonde" -msgstr "" - -#. name for shd -msgid "Kundal Shahi" -msgstr "" - -#. name for she -msgid "Sheko" -msgstr "" - -#. name for shg -msgid "Shua" -msgstr "" - -#. name for shh -msgid "Shoshoni" -msgstr "" - -#. name for shi -msgid "Tachelhit" -msgstr "" - -#. name for shj -msgid "Shatt" -msgstr "" - -#. name for shk -msgid "Shilluk" -msgstr "" - -#. name for shl -msgid "Shendu" -msgstr "" - -#. name for shm -msgid "Shahrudi" -msgstr "" - -#. name for shn -msgid "Shan" -msgstr "" - -#. name for sho -msgid "Shanga" -msgstr "" - -#. name for shp -msgid "Shipibo-Conibo" -msgstr "" - -#. name for shq -msgid "Sala" -msgstr "" - -#. name for shr -msgid "Shi" -msgstr "" - -#. name for shs -msgid "Shuswap" -msgstr "" - -#. name for sht -msgid "Shasta" -msgstr "" - -#. name for shu -msgid "Arabic; Chadian" -msgstr "" - -#. name for shv -msgid "Shehri" -msgstr "" - -#. name for shw -msgid "Shwai" -msgstr "" - -#. name for shx -msgid "She" -msgstr "" - -#. name for shy -msgid "Tachawit" -msgstr "" - -#. name for shz -msgid "Senoufo; Syenara" -msgstr "" - -#. name for sia -msgid "Sami; Akkala" -msgstr "" - -#. name for sib -msgid "Sebop" -msgstr "" - -#. name for sid -msgid "Sidamo" -msgstr "" - -#. name for sie -msgid "Simaa" -msgstr "" - -#. name for sif -msgid "Siamou" -msgstr "" - -#. name for sig -msgid "Paasaal" -msgstr "" - -#. name for sih -msgid "Zire" -msgstr "" - -#. name for sii -msgid "Shom Peng" -msgstr "" - -#. name for sij -msgid "Numbami" -msgstr "" - -#. name for sik -msgid "Sikiana" -msgstr "" - -#. name for sil -msgid "Sisaala; Tumulung" -msgstr "" - -#. name for sim -msgid "Mende (Papua New Guinea)" -msgstr "" - -#. name for sin -msgid "Sinhala" -msgstr "" - -#. name for sip -msgid "Sikkimese" -msgstr "" - -#. name for siq -msgid "Sonia" -msgstr "" - -#. name for sir -msgid "Siri" -msgstr "" - -#. name for sis -msgid "Siuslaw" -msgstr "" - -#. name for siu -msgid "Sinagen" -msgstr "" - -#. name for siv -msgid "Sumariup" -msgstr "" - -#. name for siw -msgid "Siwai" -msgstr "" - -#. name for six -msgid "Sumau" -msgstr "" - -#. name for siy -msgid "Sivandi" -msgstr "" - -#. name for siz -msgid "Siwi" -msgstr "" - -#. name for sja -msgid "Epena" -msgstr "" - -#. name for sjb -msgid "Sajau Basap" -msgstr "" - -#. name for sjd -msgid "Sami; Kildin" -msgstr "" - -#. name for sje -msgid "Sami; Pite" -msgstr "" - -#. name for sjg -msgid "Assangori" -msgstr "" - -#. name for sjk -msgid "Sami; Kemi" -msgstr "" - -#. name for sjl -msgid "Sajalong" -msgstr "" - -#. name for sjm -msgid "Mapun" -msgstr "" - -#. name for sjn -msgid "Sindarin" -msgstr "" - -#. name for sjo -msgid "Xibe" -msgstr "" - -#. name for sjp -msgid "Surjapuri" -msgstr "" - -#. name for sjr -msgid "Siar-Lak" -msgstr "" - -#. name for sjs -msgid "Senhaja De Srair" -msgstr "" - -#. name for sjt -msgid "Sami; Ter" -msgstr "" - -#. name for sju -msgid "Sami; Ume" -msgstr "" - -#. name for sjw -msgid "Shawnee" -msgstr "" - -#. name for ska -msgid "Skagit" -msgstr "" - -#. name for skb -msgid "Saek" -msgstr "" - -#. name for skc -msgid "Sauk" -msgstr "" - -#. name for skd -msgid "Miwok; Southern Sierra" -msgstr "" - -#. name for ske -msgid "Seke (Vanuatu)" -msgstr "" - -#. name for skf -msgid "Sakirabiá" -msgstr "" - -#. name for skg -msgid "Malagasy; Sakalava" -msgstr "" - -#. name for skh -msgid "Sikule" -msgstr "" - -#. name for ski -msgid "Sika" -msgstr "" - -#. name for skj -msgid "Seke (Nepal)" -msgstr "" - -#. name for skk -msgid "Sok" -msgstr "" - -#. name for skm -msgid "Sakam" -msgstr "" - -#. name for skn -msgid "Subanon; Kolibugan" -msgstr "" - -#. name for sko -msgid "Seko Tengah" -msgstr "" - -#. name for skp -msgid "Sekapan" -msgstr "" - -#. name for skq -msgid "Sininkere" -msgstr "" - -#. name for skr -msgid "Seraiki" -msgstr "" - -#. name for sks -msgid "Maia" -msgstr "" - -#. name for skt -msgid "Sakata" -msgstr "" - -#. name for sku -msgid "Sakao" -msgstr "" - -#. name for skv -msgid "Skou" -msgstr "" - -#. name for skw -msgid "Creole Dutch; Skepi" -msgstr "" - -#. name for skx -msgid "Seko Padang" -msgstr "" - -#. name for sky -msgid "Sikaiana" -msgstr "" - -#. name for skz -msgid "Sekar" -msgstr "" - -#. name for slc -msgid "Sáliba" -msgstr "" - -#. name for sld -msgid "Sissala" -msgstr "" - -#. name for sle -msgid "Sholaga" -msgstr "" - -#. name for slf -msgid "Swiss-Italian Sign Language" -msgstr "" - -#. name for slg -msgid "Selungai Murut" -msgstr "" - -#. name for slh -msgid "Salish; Southern Puget Sound" -msgstr "" - -#. name for sli -msgid "Silesian; Lower" -msgstr "" - -#. name for slj -msgid "Salumá" -msgstr "" - -#. name for slk -msgid "Slovak" -msgstr "" - -#. name for sll -msgid "Salt-Yui" -msgstr "" - -#. name for slm -msgid "Sama; Pangutaran" -msgstr "" - -#. name for sln -msgid "Salinan" -msgstr "" - -#. name for slp -msgid "Lamaholot" -msgstr "" - -#. name for slq -msgid "Salchuq" -msgstr "" - -#. name for slr -msgid "Salar" -msgstr "" - -#. name for sls -msgid "Singapore Sign Language" -msgstr "" - -#. name for slt -msgid "Sila" -msgstr "" - -#. name for slu -msgid "Selaru" -msgstr "" - -#. name for slv -msgid "Slovenian" -msgstr "" - -#. name for slw -msgid "Sialum" -msgstr "" - -#. name for slx -msgid "Salampasu" -msgstr "" - -#. name for sly -msgid "Selayar" -msgstr "" - -#. name for slz -msgid "Ma'ya" -msgstr "" - -#. name for sma -msgid "Sami; Southern" -msgstr "" - -#. name for smb -msgid "Simbari" -msgstr "" - -#. name for smc -msgid "Som" -msgstr "" - -#. name for smd -msgid "Sama" -msgstr "" - -#. name for sme -msgid "Sami; Northern" -msgstr "" - -#. name for smf -msgid "Auwe" -msgstr "" - -#. name for smg -msgid "Simbali" -msgstr "" - -#. name for smh -msgid "Samei" -msgstr "" - -#. name for smj -msgid "Lule Sami" -msgstr "" - -#. name for smk -msgid "Bolinao" -msgstr "" - -#. name for sml -msgid "Sama; Central" -msgstr "" - -#. name for smm -msgid "Musasa" -msgstr "" - -#. name for smn -msgid "Sami; Inari" -msgstr "" - -#. name for smo -msgid "Samoan" -msgstr "" - -#. name for smp -msgid "Samaritan" -msgstr "" - -#. name for smq -msgid "Samo" -msgstr "" - -#. name for smr -msgid "Simeulue" -msgstr "" - -#. name for sms -msgid "Sami; Skolt" -msgstr "" - -#. name for smt -msgid "Simte" -msgstr "" - -#. name for smu -msgid "Somray" -msgstr "" - -#. name for smv -msgid "Samvedi" -msgstr "" - -#. name for smw -msgid "Sumbawa" -msgstr "" - -#. name for smx -msgid "Samba" -msgstr "" - -#. name for smy -msgid "Semnani" -msgstr "" - -#. name for smz -msgid "Simeku" -msgstr "" - -#. name for sna -msgid "Shona" -msgstr "" - -#. name for snb -msgid "Sebuyau" -msgstr "" - -#. name for snc -msgid "Sinaugoro" -msgstr "" - -#. name for snd -msgid "Sindhi" -msgstr "" - -#. name for sne -msgid "Bidayuh; Bau" -msgstr "" - -#. name for snf -msgid "Noon" -msgstr "" - -#. name for sng -msgid "Sanga (Democratic Republic of Congo)" -msgstr "" - -#. name for snh -msgid "Shinabo" -msgstr "" - -#. name for sni -msgid "Sensi" -msgstr "" - -#. name for snj -msgid "Sango; Riverain" -msgstr "" - -#. name for snk -msgid "Soninke" -msgstr "" - -#. name for snl -msgid "Sangil" -msgstr "" - -#. name for snm -msgid "Ma'di; Southern" -msgstr "" - -#. name for snn -msgid "Siona" -msgstr "" - -#. name for sno -msgid "Snohomish" -msgstr "" - -#. name for snp -msgid "Siane" -msgstr "" - -#. name for snq -msgid "Sangu (Gabon)" -msgstr "" - -#. name for snr -msgid "Sihan" -msgstr "" - -#. name for sns -msgid "South West Bay" -msgstr "" - -#. name for snu -msgid "Senggi" -msgstr "" - -#. name for snv -msgid "Sa'ban" -msgstr "" - -#. name for snw -msgid "Selee" -msgstr "" - -#. name for snx -msgid "Sam" -msgstr "" - -#. name for sny -msgid "Saniyo-Hiyewe" -msgstr "" - -#. name for snz -msgid "Sinsauru" -msgstr "" - -#. name for soa -msgid "Thai Song" -msgstr "" - -#. name for sob -msgid "Sobei" -msgstr "" - -#. name for soc -msgid "So (Democratic Republic of Congo)" -msgstr "" - -#. name for sod -msgid "Songoora" -msgstr "" - -#. name for soe -msgid "Songomeno" -msgstr "" - -#. name for sog -msgid "Sogdian" -msgstr "" - -#. name for soh -msgid "Aka" -msgstr "" - -#. name for soi -msgid "Sonha" -msgstr "" - -#. name for soj -msgid "Soi" -msgstr "" - -#. name for sok -msgid "Sokoro" -msgstr "" - -#. name for sol -msgid "Solos" -msgstr "" - -#. name for som -msgid "Somali" -msgstr "" - -#. name for soo -msgid "Songo" -msgstr "" - -#. name for sop -msgid "Songe" -msgstr "" - -#. name for soq -msgid "Kanasi" -msgstr "" - -#. name for sor -msgid "Somrai" -msgstr "" - -#. name for sos -msgid "Seeku" -msgstr "" - -#. name for sot -msgid "Sotho; Southern" -msgstr "" - -#. name for sou -msgid "Thai; Southern" -msgstr "" - -#. name for sov -msgid "Sonsorol" -msgstr "" - -#. name for sow -msgid "Sowanda" -msgstr "" - -#. name for sox -msgid "So (Cameroon)" -msgstr "" - -#. name for soy -msgid "Miyobe" -msgstr "" - -#. name for soz -msgid "Temi" -msgstr "" - -#. name for spa -msgid "Spanish" -msgstr "" - -#. name for spb -msgid "Sepa (Indonesia)" -msgstr "" - -#. name for spc -msgid "Sapé" -msgstr "" - -#. name for spd -msgid "Saep" -msgstr "" - -#. name for spe -msgid "Sepa (Papua New Guinea)" -msgstr "" - -#. name for spg -msgid "Sian" -msgstr "" - -#. name for spi -msgid "Saponi" -msgstr "" - -#. name for spk -msgid "Sengo" -msgstr "" - -#. name for spl -msgid "Selepet" -msgstr "" - -#. name for spm -msgid "Sepen" -msgstr "" - -#. name for spo -msgid "Spokane" -msgstr "" - -#. name for spp -msgid "Senoufo; Supyire" -msgstr "" - -#. name for spq -msgid "Spanish; Loreto-Ucayali" -msgstr "" - -#. name for spr -msgid "Saparua" -msgstr "" - -#. name for sps -msgid "Saposa" -msgstr "" - -#. name for spt -msgid "Bhoti; Spiti" -msgstr "" - -#. name for spu -msgid "Sapuan" -msgstr "" - -#. name for spx -msgid "Picene; South" -msgstr "" - -#. name for spy -msgid "Sabaot" -msgstr "" - -#. name for sqa -msgid "Shama-Sambuga" -msgstr "" - -#. name for sqh -msgid "Shau" -msgstr "" - -#. name for sqi -msgid "Albanian" -msgstr "" - -#. name for sqm -msgid "Suma" -msgstr "" - -#. name for sqn -msgid "Susquehannock" -msgstr "" - -#. name for sqo -msgid "Sorkhei" -msgstr "" - -#. name for sqq -msgid "Sou" -msgstr "" - -#. name for sqr -msgid "Arabic; Siculo" -msgstr "" - -#. name for sqs -msgid "Sri Lankan Sign Language" -msgstr "" - -#. name for sqt -msgid "Soqotri" -msgstr "" - -#. name for squ -msgid "Squamish" -msgstr "" - -#. name for sra -msgid "Saruga" -msgstr "" - -#. name for srb -msgid "Sora" -msgstr "" - -#. name for src -msgid "Sardinian; Logudorese" -msgstr "" - -#. name for srd -msgid "Sardinian" -msgstr "" - -#. name for sre -msgid "Sara" -msgstr "" - -#. name for srf -msgid "Nafi" -msgstr "" - -#. name for srg -msgid "Sulod" -msgstr "" - -#. name for srh -msgid "Sarikoli" -msgstr "" - -#. name for sri -msgid "Siriano" -msgstr "" - -#. name for srk -msgid "Serudung Murut" -msgstr "" - -#. name for srl -msgid "Isirawa" -msgstr "" - -#. name for srm -msgid "Saramaccan" -msgstr "" - -#. name for srn -msgid "Sranan Tongo" -msgstr "" - -#. name for sro -msgid "Sardinian; Campidanese" -msgstr "" - -#. name for srp -msgid "Serbian" -msgstr "" - -#. name for srq -msgid "Sirionó" -msgstr "" - -#. name for srr -msgid "Serer" -msgstr "" - -#. name for srs -msgid "Sarsi" -msgstr "" - -#. name for srt -msgid "Sauri" -msgstr "" - -#. name for sru -msgid "Suruí" -msgstr "" - -#. name for srv -msgid "Sorsoganon; Southern" -msgstr "" - -#. name for srw -msgid "Serua" -msgstr "" - -#. name for srx -msgid "Sirmauri" -msgstr "" - -#. name for sry -msgid "Sera" -msgstr "" - -#. name for srz -msgid "Shahmirzadi" -msgstr "" - -#. name for ssb -msgid "Sama; Southern" -msgstr "" - -#. name for ssc -msgid "Suba-Simbiti" -msgstr "" - -#. name for ssd -msgid "Siroi" -msgstr "" - -#. name for sse -msgid "Sama; Bangingih" -msgstr "" - -#. name for ssf -msgid "Thao" -msgstr "" - -#. name for ssg -msgid "Seimat" -msgstr "" - -#. name for ssh -msgid "Arabic; Shihhi" -msgstr "" - -#. name for ssi -msgid "Sansi" -msgstr "" - -#. name for ssj -msgid "Sausi" -msgstr "" - -#. name for ssk -msgid "Sunam" -msgstr "" - -#. name for ssl -msgid "Sisaala; Western" -msgstr "" - -#. name for ssm -msgid "Semnam" -msgstr "" - -#. name for ssn -msgid "Waata" -msgstr "" - -#. name for sso -msgid "Sissano" -msgstr "" - -#. name for ssp -msgid "Spanish Sign Language" -msgstr "" - -#. name for ssq -msgid "So'a" -msgstr "" - -#. name for ssr -msgid "Swiss-French Sign Language" -msgstr "" - -#. name for sss -msgid "Sô" -msgstr "" - -#. name for sst -msgid "Sinasina" -msgstr "" - -#. name for ssu -msgid "Susuami" -msgstr "" - -#. name for ssv -msgid "Shark Bay" -msgstr "" - -#. name for ssw -msgid "Swati" -msgstr "" - -#. name for ssx -msgid "Samberigi" -msgstr "" - -#. name for ssy -msgid "Saho" -msgstr "" - -#. name for ssz -msgid "Sengseng" -msgstr "" - -#. name for sta -msgid "Settla" -msgstr "" - -#. name for stb -msgid "Subanen; Northern" -msgstr "" - -#. name for std -msgid "Sentinel" -msgstr "" - -#. name for ste -msgid "Liana-Seti" -msgstr "" - -#. name for stf -msgid "Seta" -msgstr "" - -#. name for stg -msgid "Trieng" -msgstr "" - -#. name for sth -msgid "Shelta" -msgstr "" - -#. name for sti -msgid "Stieng; Bulo" -msgstr "" - -#. name for stj -msgid "Samo; Matya" -msgstr "" - -#. name for stk -msgid "Arammba" -msgstr "" - -#. name for stl -msgid "Stellingwerfs" -msgstr "" - -#. name for stm -msgid "Setaman" -msgstr "" - -#. name for stn -msgid "Owa" -msgstr "" - -#. name for sto -msgid "Stoney" -msgstr "" - -#. name for stp -msgid "Tepehuan; Southeastern" -msgstr "" - -#. name for stq -msgid "Saterfriesisch" -msgstr "" - -#. name for str -msgid "Salish; Straits" -msgstr "" - -#. name for sts -msgid "Shumashti" -msgstr "" - -#. name for stt -msgid "Stieng; Budeh" -msgstr "" - -#. name for stu -msgid "Samtao" -msgstr "" - -#. name for stv -msgid "Silt'e" -msgstr "" - -#. name for stw -msgid "Satawalese" -msgstr "" - -#. name for sua -msgid "Sulka" -msgstr "" - -#. name for sub -msgid "Suku" -msgstr "" - -#. name for suc -msgid "Subanon; Western" -msgstr "" - -#. name for sue -msgid "Suena" -msgstr "" - -#. name for sug -msgid "Suganga" -msgstr "" - -#. name for sui -msgid "Suki" -msgstr "" - -#. name for suj -msgid "Shubi" -msgstr "" - -#. name for suk -msgid "Sukuma" -msgstr "" - -#. name for sun -msgid "Sundanese" -msgstr "" - -#. name for suq -msgid "Suri" -msgstr "" - -#. name for sur -msgid "Mwaghavul" -msgstr "" - -#. name for sus -msgid "Susu" -msgstr "" - -#. name for sut -msgid "Subtiaba" -msgstr "" - -#. name for suv -msgid "Sulung" -msgstr "" - -#. name for suw -msgid "Sumbwa" -msgstr "" - -#. name for sux -msgid "Sumerian" -msgstr "" - -#. name for suy -msgid "Suyá" -msgstr "" - -#. name for suz -msgid "Sunwar" -msgstr "" - -#. name for sva -msgid "Svan" -msgstr "" - -#. name for svb -msgid "Ulau-Suain" -msgstr "" - -#. name for svc -msgid "Creole English; Vincentian" -msgstr "" - -#. name for sve -msgid "Serili" -msgstr "" - -#. name for svk -msgid "Slovakian Sign Language" -msgstr "" - -#. name for svr -msgid "Savara" -msgstr "" - -#. name for svs -msgid "Savosavo" -msgstr "" - -#. name for svx -msgid "Skalvian" -msgstr "" - -#. name for swa -msgid "Swahili (macrolanguage)" -msgstr "" - -#. name for swb -msgid "Comorian; Maore" -msgstr "" - -#. name for swc -msgid "Swahili; Congo" -msgstr "" - -#. name for swe -msgid "Swedish" -msgstr "" - -#. name for swf -msgid "Sere" -msgstr "" - -#. name for swg -msgid "Swabian" -msgstr "" - -#. name for swh -msgid "Swahili (individual language)" -msgstr "" - -#. name for swi -msgid "Sui" -msgstr "" - -#. name for swj -msgid "Sira" -msgstr "" - -#. name for swk -msgid "Sena; Malawi" -msgstr "" - -#. name for swl -msgid "Swedish Sign Language" -msgstr "" - -#. name for swm -msgid "Samosa" -msgstr "" - -#. name for swn -msgid "Sawknah" -msgstr "" - -#. name for swo -msgid "Shanenawa" -msgstr "" - -#. name for swp -msgid "Suau" -msgstr "" - -#. name for swq -msgid "Sharwa" -msgstr "" - -#. name for swr -msgid "Saweru" -msgstr "" - -#. name for sws -msgid "Seluwasan" -msgstr "" - -#. name for swt -msgid "Sawila" -msgstr "" - -#. name for swu -msgid "Suwawa" -msgstr "" - -#. name for swv -msgid "Shekhawati" -msgstr "" - -#. name for sww -msgid "Sowa" -msgstr "" - -#. name for swx -msgid "Suruahá" -msgstr "" - -#. name for swy -msgid "Sarua" -msgstr "" - -#. name for sxb -msgid "Suba" -msgstr "" - -#. name for sxc -msgid "Sicanian" -msgstr "" - -#. name for sxe -msgid "Sighu" -msgstr "" - -#. name for sxg -msgid "Shixing" -msgstr "" - -#. name for sxk -msgid "Kalapuya; Southern" -msgstr "" - -#. name for sxl -msgid "Selian" -msgstr "" - -#. name for sxm -msgid "Samre" -msgstr "" - -#. name for sxn -msgid "Sangir" -msgstr "" - -#. name for sxo -msgid "Sorothaptic" -msgstr "" - -#. name for sxr -msgid "Saaroa" -msgstr "" - -#. name for sxs -msgid "Sasaru" -msgstr "" - -#. name for sxu -msgid "Saxon; Upper" -msgstr "" - -#. name for sxw -msgid "Gbe; Saxwe" -msgstr "" - -#. name for sya -msgid "Siang" -msgstr "" - -#. name for syb -msgid "Subanen; Central" -msgstr "" - -#. name for syc -msgid "Syriac; Classical" -msgstr "" - -#. name for syi -msgid "Seki" -msgstr "" - -#. name for syk -msgid "Sukur" -msgstr "" - -#. name for syl -msgid "Sylheti" -msgstr "" - -#. name for sym -msgid "Samo; Maya" -msgstr "" - -#. name for syn -msgid "Senaya" -msgstr "" - -#. name for syo -msgid "Suoy" -msgstr "" - -#. name for syr -msgid "Syriac" -msgstr "" - -#. name for sys -msgid "Sinyar" -msgstr "" - -#. name for syw -msgid "Kagate" -msgstr "" - -#. name for syy -msgid "Al-Sayyid Bedouin Sign Language" -msgstr "" - -#. name for sza -msgid "Semelai" -msgstr "" - -#. name for szb -msgid "Ngalum" -msgstr "" - -#. name for szc -msgid "Semaq Beri" -msgstr "" - -#. name for szd -msgid "Seru" -msgstr "" - -#. name for sze -msgid "Seze" -msgstr "" - -#. name for szg -msgid "Sengele" -msgstr "" - -#. name for szl -msgid "Silesian" -msgstr "" - -#. name for szn -msgid "Sula" -msgstr "" - -#. name for szp -msgid "Suabo" -msgstr "" - -#. name for szv -msgid "Isu (Fako Division)" -msgstr "" - -#. name for szw -msgid "Sawai" -msgstr "" - -#. name for taa -msgid "Tanana; Lower" -msgstr "" - -#. name for tab -msgid "Tabassaran" -msgstr "" - -#. name for tac -msgid "Tarahumara; Lowland" -msgstr "" - -#. name for tad -msgid "Tause" -msgstr "" - -#. name for tae -msgid "Tariana" -msgstr "" - -#. name for taf -msgid "Tapirapé" -msgstr "" - -#. name for tag -msgid "Tagoi" -msgstr "" - -#. name for tah -msgid "Tahitian" -msgstr "" - -#. name for taj -msgid "Tamang; Eastern" -msgstr "" - -#. name for tak -msgid "Tala" -msgstr "" - -#. name for tal -msgid "Tal" -msgstr "" - -#. name for tam -msgid "Tamil" -msgstr "" - -#. name for tan -msgid "Tangale" -msgstr "" - -#. name for tao -msgid "Yami" -msgstr "" - -#. name for tap -msgid "Taabwa" -msgstr "" - -#. name for taq -msgid "Tamasheq" -msgstr "" - -#. name for tar -msgid "Tarahumara; Central" -msgstr "" - -#. name for tas -msgid "Tay Boi" -msgstr "" - -#. name for tat -msgid "Tatar" -msgstr "" - -#. name for tau -msgid "Tanana; Upper" -msgstr "" - -#. name for tav -msgid "Tatuyo" -msgstr "" - -#. name for taw -msgid "Tai" -msgstr "" - -#. name for tax -msgid "Tamki" -msgstr "" - -#. name for tay -msgid "Atayal" -msgstr "" - -#. name for taz -msgid "Tocho" -msgstr "" - -#. name for tba -msgid "Aikanã" -msgstr "" - -#. name for tbb -msgid "Tapeba" -msgstr "" - -#. name for tbc -msgid "Takia" -msgstr "" - -#. name for tbd -msgid "Kaki Ae" -msgstr "" - -#. name for tbe -msgid "Tanimbili" -msgstr "" - -#. name for tbf -msgid "Mandara" -msgstr "" - -#. name for tbg -msgid "Tairora; North" -msgstr "" - -#. name for tbh -msgid "Thurawal" -msgstr "" - -#. name for tbi -msgid "Gaam" -msgstr "" - -#. name for tbj -msgid "Tiang" -msgstr "" - -#. name for tbk -msgid "Tagbanwa; Calamian" -msgstr "" - -#. name for tbl -msgid "Tboli" -msgstr "" - -#. name for tbm -msgid "Tagbu" -msgstr "" - -#. name for tbn -msgid "Tunebo; Barro Negro" -msgstr "" - -#. name for tbo -msgid "Tawala" -msgstr "" - -#. name for tbp -msgid "Taworta" -msgstr "" - -#. name for tbr -msgid "Tumtum" -msgstr "" - -#. name for tbs -msgid "Tanguat" -msgstr "" - -#. name for tbt -msgid "Tembo (Kitembo)" -msgstr "" - -#. name for tbu -msgid "Tubar" -msgstr "" - -#. name for tbv -msgid "Tobo" -msgstr "" - -#. name for tbw -msgid "Tagbanwa" -msgstr "" - -#. name for tbx -msgid "Kapin" -msgstr "" - -#. name for tby -msgid "Tabaru" -msgstr "" - -#. name for tbz -msgid "Ditammari" -msgstr "" - -#. name for tca -msgid "Ticuna" -msgstr "" - -#. name for tcb -msgid "Tanacross" -msgstr "" - -#. name for tcc -msgid "Datooga" -msgstr "" - -#. name for tcd -msgid "Tafi" -msgstr "" - -#. name for tce -msgid "Tutchone; Southern" -msgstr "" - -#. name for tcf -msgid "Tlapanec; Malinaltepec" -msgstr "" - -#. name for tcg -msgid "Tamagario" -msgstr "" - -#. name for tch -msgid "Creole English; Turks And Caicos" -msgstr "" - -#. name for tci -msgid "Wára" -msgstr "" - -#. name for tck -msgid "Tchitchege" -msgstr "" - -#. name for tcl -msgid "Taman (Myanmar)" -msgstr "" - -#. name for tcm -msgid "Tanahmerah" -msgstr "" - -#. name for tcn -msgid "Tichurong" -msgstr "" - -#. name for tco -msgid "Taungyo" -msgstr "" - -#. name for tcp -msgid "Chin; Tawr" -msgstr "" - -#. name for tcq -msgid "Kaiy" -msgstr "" - -#. name for tcs -msgid "Creole; Torres Strait" -msgstr "" - -#. name for tct -msgid "T'en" -msgstr "" - -#. name for tcu -msgid "Tarahumara; Southeastern" -msgstr "" - -#. name for tcw -msgid "Totonac; Tecpatlán" -msgstr "" - -#. name for tcx -msgid "Toda" -msgstr "" - -#. name for tcy -msgid "Tulu" -msgstr "" - -#. name for tcz -msgid "Chin; Thado" -msgstr "" - -#. name for tda -msgid "Tagdal" -msgstr "" - -#. name for tdb -msgid "Panchpargania" -msgstr "" - -#. name for tdc -msgid "Emberá-Tadó" -msgstr "" - -#. name for tdd -msgid "Tai Nüa" -msgstr "" - -#. name for tde -msgid "Dogon; Tiranige Diga" -msgstr "" - -#. name for tdf -msgid "Talieng" -msgstr "" - -#. name for tdg -msgid "Tamang; Western" -msgstr "" - -#. name for tdh -msgid "Thulung" -msgstr "" - -#. name for tdi -msgid "Tomadino" -msgstr "" - -#. name for tdj -msgid "Tajio" -msgstr "" - -#. name for tdk -msgid "Tambas" -msgstr "" - -#. name for tdl -msgid "Sur" -msgstr "" - -#. name for tdn -msgid "Tondano" -msgstr "" - -#. name for tdo -msgid "Teme" -msgstr "" - -#. name for tdq -msgid "Tita" -msgstr "" - -#. name for tdr -msgid "Todrah" -msgstr "" - -#. name for tds -msgid "Doutai" -msgstr "" - -#. name for tdt -msgid "Tetun Dili" -msgstr "" - -#. name for tdu -msgid "Dusun; Tempasuk" -msgstr "" - -#. name for tdv -msgid "Toro" -msgstr "" - -#. name for tdx -msgid "Malagasy; Tandroy-Mahafaly" -msgstr "" - -#. name for tdy -msgid "Tadyawan" -msgstr "" - -#. name for tea -msgid "Temiar" -msgstr "" - -#. name for teb -msgid "Tetete" -msgstr "" - -#. name for tec -msgid "Terik" -msgstr "" - -#. name for ted -msgid "Krumen; Tepo" -msgstr "" - -#. name for tee -msgid "Tepehua; Huehuetla" -msgstr "" - -#. name for tef -msgid "Teressa" -msgstr "" - -#. name for teg -msgid "Teke-Tege" -msgstr "" - -#. name for teh -msgid "Tehuelche" -msgstr "" - -#. name for tei -msgid "Torricelli" -msgstr "" - -#. name for tek -msgid "Teke; Ibali" -msgstr "" - -#. name for tel -msgid "Telugu" -msgstr "" - -#. name for tem -msgid "Timne" -msgstr "" - -#. name for ten -msgid "Tama (Colombia)" -msgstr "" - -#. name for teo -msgid "Teso" -msgstr "" - -#. name for tep -msgid "Tepecano" -msgstr "" - -#. name for teq -msgid "Temein" -msgstr "" - -#. name for ter -msgid "Tereno" -msgstr "" - -#. name for tes -msgid "Tengger" -msgstr "" - -#. name for tet -msgid "Tetum" -msgstr "" - -#. name for teu -msgid "Soo" -msgstr "" - -#. name for tev -msgid "Teor" -msgstr "" - -#. name for tew -msgid "Tewa (USA)" -msgstr "" - -#. name for tex -msgid "Tennet" -msgstr "" - -#. name for tey -msgid "Tulishi" -msgstr "" - -#. name for tfi -msgid "Gbe; Tofin" -msgstr "" - -#. name for tfn -msgid "Tanaina" -msgstr "" - -#. name for tfo -msgid "Tefaro" -msgstr "" - -#. name for tfr -msgid "Teribe" -msgstr "" - -#. name for tft -msgid "Ternate" -msgstr "" - -#. name for tga -msgid "Sagalla" -msgstr "" - -#. name for tgb -msgid "Tobilung" -msgstr "" - -#. name for tgc -msgid "Tigak" -msgstr "" - -#. name for tgd -msgid "Ciwogai" -msgstr "" - -#. name for tge -msgid "Tamang; Eastern Gorkha" -msgstr "" - -#. name for tgf -msgid "Chalikha" -msgstr "" - -#. name for tgg -msgid "Tangga" -msgstr "" - -#. name for tgh -msgid "Creole English; Tobagonian" -msgstr "" - -#. name for tgi -msgid "Lawunuia" -msgstr "" - -#. name for tgk -msgid "Tajik" -msgstr "" - -#. name for tgl -msgid "Tagalog" -msgstr "" - -#. name for tgn -msgid "Tandaganon" -msgstr "" - -#. name for tgo -msgid "Sudest" -msgstr "" - -#. name for tgp -msgid "Tangoa" -msgstr "" - -#. name for tgq -msgid "Tring" -msgstr "" - -#. name for tgr -msgid "Tareng" -msgstr "" - -#. name for tgs -msgid "Nume" -msgstr "" - -#. name for tgt -msgid "Tagbanwa; Central" -msgstr "" - -#. name for tgu -msgid "Tanggu" -msgstr "" - -#. name for tgv -msgid "Tingui-Boto" -msgstr "" - -#. name for tgw -msgid "Senoufo; Tagwana" -msgstr "" - -#. name for tgx -msgid "Tagish" -msgstr "" - -#. name for tgy -msgid "Togoyo" -msgstr "" - -#. name for tha -msgid "Thai" -msgstr "" - -#. name for thc -msgid "Tai Hang Tong" -msgstr "" - -#. name for thd -msgid "Thayore" -msgstr "" - -#. name for the -msgid "Tharu; Chitwania" -msgstr "" - -#. name for thf -msgid "Thangmi" -msgstr "" - -#. name for thh -msgid "Tarahumara; Northern" -msgstr "" - -#. name for thi -msgid "Tai Long" -msgstr "" - -#. name for thk -msgid "Tharaka" -msgstr "" - -#. name for thl -msgid "Tharu; Dangaura" -msgstr "" - -#. name for thm -msgid "Aheu" -msgstr "" - -#. name for thn -msgid "Thachanadan" -msgstr "" - -#. name for thp -msgid "Thompson" -msgstr "" - -#. name for thq -msgid "Tharu; Kochila" -msgstr "" - -#. name for thr -msgid "Tharu; Rana" -msgstr "" - -#. name for ths -msgid "Thakali" -msgstr "" - -#. name for tht -msgid "Tahltan" -msgstr "" - -#. name for thu -msgid "Thuri" -msgstr "" - -#. name for thv -msgid "Tamahaq; Tahaggart" -msgstr "" - -#. name for thw -msgid "Thudam" -msgstr "" - -#. name for thx -msgid "The" -msgstr "" - -#. name for thy -msgid "Tha" -msgstr "" - -#. name for thz -msgid "Tamajeq; Tayart" -msgstr "" - -#. name for tia -msgid "Tamazight; Tidikelt" -msgstr "" - -#. name for tic -msgid "Tira" -msgstr "" - -#. name for tid -msgid "Tidong" -msgstr "" - -#. name for tif -msgid "Tifal" -msgstr "" - -#. name for tig -msgid "Tigre" -msgstr "" - -#. name for tih -msgid "Murut; Timugon" -msgstr "" - -#. name for tii -msgid "Tiene" -msgstr "" - -#. name for tij -msgid "Tilung" -msgstr "" - -#. name for tik -msgid "Tikar" -msgstr "" - -#. name for til -msgid "Tillamook" -msgstr "" - -#. name for tim -msgid "Timbe" -msgstr "" - -#. name for tin -msgid "Tindi" -msgstr "" - -#. name for tio -msgid "Teop" -msgstr "" - -#. name for tip -msgid "Trimuris" -msgstr "" - -#. name for tiq -msgid "Tiéfo" -msgstr "" - -#. name for tir -msgid "Tigrinya" -msgstr "" - -#. name for tis -msgid "Itneg; Masadiit" -msgstr "" - -#. name for tit -msgid "Tinigua" -msgstr "" - -#. name for tiu -msgid "Adasen" -msgstr "" - -#. name for tiv -msgid "Tiv" -msgstr "" - -#. name for tiw -msgid "Tiwi" -msgstr "" - -#. name for tix -msgid "Tiwa; Southern" -msgstr "" - -#. name for tiy -msgid "Tiruray" -msgstr "" - -#. name for tiz -msgid "Tai Hongjin" -msgstr "" - -#. name for tja -msgid "Tajuasohn" -msgstr "" - -#. name for tjg -msgid "Tunjung" -msgstr "" - -#. name for tji -msgid "Tujia; Northern" -msgstr "" - -#. name for tjm -msgid "Timucua" -msgstr "" - -#. name for tjn -msgid "Tonjon" -msgstr "" - -#. name for tjo -msgid "Tamazight; Temacine" -msgstr "" - -#. name for tjs -msgid "Tujia; Southern" -msgstr "" - -#. name for tju -msgid "Tjurruru" -msgstr "" - -#. name for tka -msgid "Truká" -msgstr "" - -#. name for tkb -msgid "Buksa" -msgstr "" - -#. name for tkd -msgid "Tukudede" -msgstr "" - -#. name for tke -msgid "Takwane" -msgstr "" - -#. name for tkf -msgid "Tukumanféd" -msgstr "" - -#. name for tkg -msgid "Malagasy; Tesaka" -msgstr "" - -#. name for tkl -msgid "Tokelau" -msgstr "" - -#. name for tkm -msgid "Takelma" -msgstr "" - -#. name for tkn -msgid "Toku-No-Shima" -msgstr "" - -#. name for tkp -msgid "Tikopia" -msgstr "" - -#. name for tkq -msgid "Tee" -msgstr "" - -#. name for tkr -msgid "Tsakhur" -msgstr "" - -#. name for tks -msgid "Takestani" -msgstr "" - -#. name for tkt -msgid "Tharu; Kathoriya" -msgstr "" - -#. name for tku -msgid "Totonac; Upper Necaxa" -msgstr "" - -#. name for tkw -msgid "Teanu" -msgstr "" - -#. name for tkx -msgid "Tangko" -msgstr "" - -#. name for tkz -msgid "Takua" -msgstr "" - -#. name for tla -msgid "Tepehuan; Southwestern" -msgstr "" - -#. name for tlb -msgid "Tobelo" -msgstr "" - -#. name for tlc -msgid "Totonac; Yecuatla" -msgstr "" - -#. name for tld -msgid "Talaud" -msgstr "" - -#. name for tlf -msgid "Telefol" -msgstr "" - -#. name for tlg -msgid "Tofanma" -msgstr "" - -#. name for tlh -msgid "Klingon" -msgstr "" - -#. name for tli -msgid "Tlingit" -msgstr "" - -#. name for tlj -msgid "Talinga-Bwisi" -msgstr "" - -#. name for tlk -msgid "Taloki" -msgstr "" - -#. name for tll -msgid "Tetela" -msgstr "" - -#. name for tlm -msgid "Tolomako" -msgstr "" - -#. name for tln -msgid "Talondo'" -msgstr "" - -#. name for tlo -msgid "Talodi" -msgstr "" - -#. name for tlp -msgid "Totonac; Filomena Mata-Coahuitlán" -msgstr "" - -#. name for tlq -msgid "Tai Loi" -msgstr "" - -#. name for tlr -msgid "Talise" -msgstr "" - -#. name for tls -msgid "Tambotalo" -msgstr "" - -#. name for tlt -msgid "Teluti" -msgstr "" - -#. name for tlu -msgid "Tulehu" -msgstr "" - -#. name for tlv -msgid "Taliabu" -msgstr "" - -#. name for tlw -msgid "Wemale; South" -msgstr "" - -#. name for tlx -msgid "Khehek" -msgstr "" - -#. name for tly -msgid "Talysh" -msgstr "" - -#. name for tma -msgid "Tama (Chad)" -msgstr "" - -#. name for tmb -msgid "Katbol" -msgstr "" - -#. name for tmc -msgid "Tumak" -msgstr "" - -#. name for tmd -msgid "Haruai" -msgstr "" - -#. name for tme -msgid "Tremembé" -msgstr "" - -#. name for tmf -msgid "Toba-Maskoy" -msgstr "" - -#. name for tmg -msgid "Ternateño" -msgstr "" - -#. name for tmh -msgid "Tamashek" -msgstr "" - -#. name for tmi -msgid "Tutuba" -msgstr "" - -#. name for tmj -msgid "Samarokena" -msgstr "" - -#. name for tmk -msgid "Tamang; Northwestern" -msgstr "" - -#. name for tml -msgid "Citak; Tamnim" -msgstr "" - -#. name for tmm -msgid "Tai Thanh" -msgstr "" - -#. name for tmn -msgid "Taman (Indonesia)" -msgstr "" - -#. name for tmo -msgid "Temoq" -msgstr "" - -#. name for tmp -msgid "Tai Mène" -msgstr "" - -#. name for tmq -msgid "Tumleo" -msgstr "" - -#. name for tmr -msgid "Aramaic; Jewish Babylonian (ca. 200-1200 CE)" -msgstr "" - -#. name for tms -msgid "Tima" -msgstr "" - -#. name for tmt -msgid "Tasmate" -msgstr "" - -#. name for tmu -msgid "Iau" -msgstr "" - -#. name for tmv -msgid "Tembo (Motembo)" -msgstr "" - -#. name for tmw -msgid "Temuan" -msgstr "" - -#. name for tmy -msgid "Tami" -msgstr "" - -#. name for tmz -msgid "Tamanaku" -msgstr "" - -#. name for tna -msgid "Tacana" -msgstr "" - -#. name for tnb -msgid "Tunebo; Western" -msgstr "" - -#. name for tnc -msgid "Tanimuca-Retuarã" -msgstr "" - -#. name for tnd -msgid "Tunebo; Angosturas" -msgstr "" - -#. name for tne -msgid "Kallahan; Tinoc" -msgstr "" - -#. name for tng -msgid "Tobanga" -msgstr "" - -#. name for tnh -msgid "Maiani" -msgstr "" - -#. name for tni -msgid "Tandia" -msgstr "" - -#. name for tnk -msgid "Kwamera" -msgstr "" - -#. name for tnl -msgid "Lenakel" -msgstr "" - -#. name for tnm -msgid "Tabla" -msgstr "" - -#. name for tnn -msgid "Tanna; North" -msgstr "" - -#. name for tno -msgid "Toromono" -msgstr "" - -#. name for tnp -msgid "Whitesands" -msgstr "" - -#. name for tnq -msgid "Taino" -msgstr "" - -#. name for tnr -msgid "Bedik" -msgstr "" - -#. name for tns -msgid "Tenis" -msgstr "" - -#. name for tnt -msgid "Tontemboan" -msgstr "" - -#. name for tnu -msgid "Tay Khang" -msgstr "" - -#. name for tnv -msgid "Tangchangya" -msgstr "" - -#. name for tnw -msgid "Tonsawang" -msgstr "" - -#. name for tnx -msgid "Tanema" -msgstr "" - -#. name for tny -msgid "Tongwe" -msgstr "" - -#. name for tnz -msgid "Tonga (Thailand)" -msgstr "" - -#. name for tob -msgid "Toba" -msgstr "" - -#. name for toc -msgid "Totonac; Coyutla" -msgstr "" - -#. name for tod -msgid "Toma" -msgstr "" - -#. name for toe -msgid "Tomedes" -msgstr "" - -#. name for tof -msgid "Gizrra" -msgstr "" - -#. name for tog -msgid "Tonga (Nyasa)" -msgstr "" - -#. name for toh -msgid "Gitonga" -msgstr "" - -#. name for toi -msgid "Tonga (Zambia)" -msgstr "" - -#. name for toj -msgid "Tojolabal" -msgstr "" - -#. name for tol -msgid "Tolowa" -msgstr "" - -#. name for tom -msgid "Tombulu" -msgstr "" - -#. name for ton -msgid "Tonga (Tonga Islands)" -msgstr "" - -#. name for too -msgid "Totonac; Xicotepec De Juárez" -msgstr "" - -#. name for top -msgid "Totonac; Papantla" -msgstr "" - -#. name for toq -msgid "Toposa" -msgstr "" - -#. name for tor -msgid "Banda; Togbo-Vara" -msgstr "" - -#. name for tos -msgid "Totonac; Highland" -msgstr "" - -#. name for tou -msgid "Tho" -msgstr "" - -#. name for tov -msgid "Taromi; Upper" -msgstr "" - -#. name for tow -msgid "Jemez" -msgstr "" - -#. name for tox -msgid "Tobian" -msgstr "" - -#. name for toy -msgid "Topoiyo" -msgstr "" - -#. name for toz -msgid "To" -msgstr "" - -#. name for tpa -msgid "Taupota" -msgstr "" - -#. name for tpc -msgid "Tlapanec; Azoyú" -msgstr "" - -#. name for tpe -msgid "Tippera" -msgstr "" - -#. name for tpf -msgid "Tarpia" -msgstr "" - -#. name for tpg -msgid "Kula" -msgstr "" - -#. name for tpi -msgid "Tok Pisin" -msgstr "" - -#. name for tpj -msgid "Tapieté" -msgstr "" - -#. name for tpk -msgid "Tupinikin" -msgstr "" - -#. name for tpl -msgid "Tlapanec; Tlacoapa" -msgstr "" - -#. name for tpm -msgid "Tampulma" -msgstr "" - -#. name for tpn -msgid "Tupinambá" -msgstr "" - -#. name for tpo -msgid "Tai Pao" -msgstr "" - -#. name for tpp -msgid "Tepehua; Pisaflores" -msgstr "" - -#. name for tpq -msgid "Tukpa" -msgstr "" - -#. name for tpr -msgid "Tuparí" -msgstr "" - -#. name for tpt -msgid "Tepehua; Tlachichilco" -msgstr "" - -#. name for tpu -msgid "Tampuan" -msgstr "" - -#. name for tpv -msgid "Tanapag" -msgstr "" - -#. name for tpw -msgid "Tupí" -msgstr "" - -#. name for tpx -msgid "Tlapanec; Acatepec" -msgstr "" - -#. name for tpy -msgid "Trumai" -msgstr "" - -#. name for tpz -msgid "Tinputz" -msgstr "" - -#. name for tqb -msgid "Tembé" -msgstr "" - -#. name for tql -msgid "Lehali" -msgstr "" - -#. name for tqm -msgid "Turumsa" -msgstr "" - -#. name for tqn -msgid "Tenino" -msgstr "" - -#. name for tqo -msgid "Toaripi" -msgstr "" - -#. name for tqp -msgid "Tomoip" -msgstr "" - -#. name for tqq -msgid "Tunni" -msgstr "" - -#. name for tqr -msgid "Torona" -msgstr "" - -#. name for tqt -msgid "Totonac; Western" -msgstr "" - -#. name for tqu -msgid "Touo" -msgstr "" - -#. name for tqw -msgid "Tonkawa" -msgstr "" - -#. name for tra -msgid "Tirahi" -msgstr "" - -#. name for trb -msgid "Terebu" -msgstr "" - -#. name for trc -msgid "Triqui; Copala" -msgstr "" - -#. name for trd -msgid "Turi" -msgstr "" - -#. name for tre -msgid "Tarangan; East" -msgstr "" - -#. name for trf -msgid "Creole English; Trinidadian" -msgstr "" - -#. name for trg -msgid "Lishán Didán" -msgstr "" - -#. name for trh -msgid "Turaka" -msgstr "" - -#. name for tri -msgid "Trió" -msgstr "" - -#. name for trj -msgid "Toram" -msgstr "" - -#. name for trl -msgid "Scottish; Traveller" -msgstr "" - -#. name for trm -msgid "Tregami" -msgstr "" - -#. name for trn -msgid "Trinitario" -msgstr "" - -#. name for tro -msgid "Naga; Tarao" -msgstr "" - -#. name for trp -msgid "Kok Borok" -msgstr "" - -#. name for trq -msgid "Triqui; San Martín Itunyoso" -msgstr "" - -#. name for trr -msgid "Taushiro" -msgstr "" - -#. name for trs -msgid "Triqui; Chicahuaxtla" -msgstr "" - -#. name for trt -msgid "Tunggare" -msgstr "" - -#. name for tru -msgid "Turoyo" -msgstr "" - -#. name for trv -msgid "Taroko" -msgstr "" - -#. name for trw -msgid "Torwali" -msgstr "" - -#. name for trx -msgid "Bidayuh; Tringgus-Sembaan" -msgstr "" - -#. name for try -msgid "Turung" -msgstr "" - -#. name for trz -msgid "Torá" -msgstr "" - -#. name for tsa -msgid "Tsaangi" -msgstr "" - -#. name for tsb -msgid "Tsamai" -msgstr "" - -#. name for tsc -msgid "Tswa" -msgstr "" - -#. name for tsd -msgid "Tsakonian" -msgstr "" - -#. name for tse -msgid "Tunisian Sign Language" -msgstr "" - -#. name for tsf -msgid "Tamang; Southwestern" -msgstr "" - -#. name for tsg -msgid "Tausug" -msgstr "" - -#. name for tsh -msgid "Tsuvan" -msgstr "" - -#. name for tsi -msgid "Tsimshian" -msgstr "" - -#. name for tsj -msgid "Tshangla" -msgstr "" - -#. name for tsk -msgid "Tseku" -msgstr "" - -#. name for tsl -msgid "Ts'ün-Lao" -msgstr "" - -#. name for tsm -msgid "Turkish Sign Language" -msgstr "" - -#. name for tsn -msgid "Tswana" -msgstr "" - -#. name for tso -msgid "Tsonga" -msgstr "" - -#. name for tsp -msgid "Toussian; Northern" -msgstr "" - -#. name for tsq -msgid "Thai Sign Language" -msgstr "" - -#. name for tsr -msgid "Akei" -msgstr "" - -#. name for tss -msgid "Taiwan Sign Language" -msgstr "" - -#. name for tst -msgid "Songway Kiini; Tondi" -msgstr "" - -#. name for tsu -msgid "Tsou" -msgstr "" - -#. name for tsv -msgid "Tsogo" -msgstr "" - -#. name for tsw -msgid "Tsishingini" -msgstr "" - -#. name for tsx -msgid "Mubami" -msgstr "" - -#. name for tsy -msgid "Tebul Sign Language" -msgstr "" - -#. name for tsz -msgid "Purepecha" -msgstr "" - -#. name for tta -msgid "Tutelo" -msgstr "" - -#. name for ttb -msgid "Gaa" -msgstr "" - -#. name for ttc -msgid "Tektiteko" -msgstr "" - -#. name for ttd -msgid "Tauade" -msgstr "" - -#. name for tte -msgid "Bwanabwana" -msgstr "" - -#. name for ttf -msgid "Tuotomb" -msgstr "" - -#. name for ttg -msgid "Tutong" -msgstr "" - -#. name for tth -msgid "Ta'oih; Upper" -msgstr "" - -#. name for tti -msgid "Tobati" -msgstr "" - -#. name for ttj -msgid "Tooro" -msgstr "" - -#. name for ttk -msgid "Totoro" -msgstr "" - -#. name for ttl -msgid "Totela" -msgstr "" - -#. name for ttm -msgid "Tutchone; Northern" -msgstr "" - -#. name for ttn -msgid "Towei" -msgstr "" - -#. name for tto -msgid "Ta'oih; Lower" -msgstr "" - -#. name for ttp -msgid "Tombelala" -msgstr "" - -#. name for ttq -msgid "Tamajaq; Tawallammat" -msgstr "" - -#. name for ttr -msgid "Tera" -msgstr "" - -#. name for tts -msgid "Thai; Northeastern" -msgstr "" - -#. name for ttt -msgid "Tat; Muslim" -msgstr "" - -#. name for ttu -msgid "Torau" -msgstr "" - -#. name for ttv -msgid "Titan" -msgstr "" - -#. name for ttw -msgid "Long Wat" -msgstr "" - -#. name for tty -msgid "Sikaritai" -msgstr "" - -#. name for ttz -msgid "Tsum" -msgstr "" - -#. name for tua -msgid "Wiarumus" -msgstr "" - -#. name for tub -msgid "Tübatulabal" -msgstr "" - -#. name for tuc -msgid "Mutu" -msgstr "" - -#. name for tud -msgid "Tuxá" -msgstr "" - -#. name for tue -msgid "Tuyuca" -msgstr "" - -#. name for tuf -msgid "Tunebo; Central" -msgstr "" - -#. name for tug -msgid "Tunia" -msgstr "" - -#. name for tuh -msgid "Taulil" -msgstr "" - -#. name for tui -msgid "Tupuri" -msgstr "" - -#. name for tuj -msgid "Tugutil" -msgstr "" - -#. name for tuk -msgid "Turkmen" -msgstr "" - -#. name for tul -msgid "Tula" -msgstr "" - -#. name for tum -msgid "Tumbuka" -msgstr "" - -#. name for tun -msgid "Tunica" -msgstr "" - -#. name for tuo -msgid "Tucano" -msgstr "" - -#. name for tuq -msgid "Tedaga" -msgstr "" - -#. name for tur -msgid "Turkish" -msgstr "" - -#. name for tus -msgid "Tuscarora" -msgstr "" - -#. name for tuu -msgid "Tututni" -msgstr "" - -#. name for tuv -msgid "Turkana" -msgstr "" - -#. name for tux -msgid "Tuxináwa" -msgstr "" - -#. name for tuy -msgid "Tugen" -msgstr "" - -#. name for tuz -msgid "Turka" -msgstr "" - -#. name for tva -msgid "Vaghua" -msgstr "" - -#. name for tvd -msgid "Tsuvadi" -msgstr "" - -#. name for tve -msgid "Te'un" -msgstr "" - -#. name for tvk -msgid "Ambrym; Southeast" -msgstr "" - -#. name for tvl -msgid "Tuvalu" -msgstr "" - -#. name for tvm -msgid "Tela-Masbuar" -msgstr "" - -#. name for tvn -msgid "Tavoyan" -msgstr "" - -#. name for tvo -msgid "Tidore" -msgstr "" - -#. name for tvs -msgid "Taveta" -msgstr "" - -#. name for tvt -msgid "Naga; Tutsa" -msgstr "" - -#. name for tvw -msgid "Sedoa" -msgstr "" - -#. name for tvy -msgid "Pidgin; Timor" -msgstr "" - -#. name for twa -msgid "Twana" -msgstr "" - -#. name for twb -msgid "Tawbuid; Western" -msgstr "" - -#. name for twc -msgid "Teshenawa" -msgstr "" - -#. name for twd -msgid "Twents" -msgstr "" - -#. name for twe -msgid "Tewa (Indonesia)" -msgstr "" - -#. name for twf -msgid "Tiwa; Northern" -msgstr "" - -#. name for twg -msgid "Tereweng" -msgstr "" - -#. name for twh -msgid "Tai Dón" -msgstr "" - -#. name for twi -msgid "Twi" -msgstr "" - -#. name for twl -msgid "Tawara" -msgstr "" - -#. name for twm -msgid "Monpa; Tawang" -msgstr "" - -#. name for twn -msgid "Twendi" -msgstr "" - -#. name for two -msgid "Tswapong" -msgstr "" - -#. name for twp -msgid "Ere" -msgstr "" - -#. name for twq -msgid "Tasawaq" -msgstr "" - -#. name for twr -msgid "Tarahumara; Southwestern" -msgstr "" - -#. name for twt -msgid "Turiwára" -msgstr "" - -#. name for twu -msgid "Termanu" -msgstr "" - -#. name for tww -msgid "Tuwari" -msgstr "" - -#. name for twx -msgid "Tewe" -msgstr "" - -#. name for twy -msgid "Tawoyan" -msgstr "" - -#. name for txa -msgid "Tombonuo" -msgstr "" - -#. name for txb -msgid "Tokharian B" -msgstr "" - -#. name for txc -msgid "Tsetsaut" -msgstr "" - -#. name for txe -msgid "Totoli" -msgstr "" - -#. name for txg -msgid "Tangut" -msgstr "" - -#. name for txh -msgid "Thracian" -msgstr "" - -#. name for txi -msgid "Ikpeng" -msgstr "" - -#. name for txm -msgid "Tomini" -msgstr "" - -#. name for txn -msgid "Tarangan; West" -msgstr "" - -#. name for txo -msgid "Toto" -msgstr "" - -#. name for txq -msgid "Tii" -msgstr "" - -#. name for txr -msgid "Tartessian" -msgstr "" - -#. name for txs -msgid "Tonsea" -msgstr "" - -#. name for txt -msgid "Citak" -msgstr "" - -#. name for txu -msgid "Kayapó" -msgstr "" - -#. name for txx -msgid "Tatana" -msgstr "" - -#. name for txy -msgid "Malagasy; Tanosy" -msgstr "" - -#. name for tya -msgid "Tauya" -msgstr "" - -#. name for tye -msgid "Kyenga" -msgstr "" - -#. name for tyh -msgid "O'du" -msgstr "" - -#. name for tyi -msgid "Teke-Tsaayi" -msgstr "" - -#. name for tyj -msgid "Tai Do" -msgstr "" - -#. name for tyl -msgid "Thu Lao" -msgstr "" - -#. name for tyn -msgid "Kombai" -msgstr "" - -#. name for typ -msgid "Thaypan" -msgstr "" - -#. name for tyr -msgid "Tai Daeng" -msgstr "" - -#. name for tys -msgid "Tày Sa Pa" -msgstr "" - -#. name for tyt -msgid "Tày Tac" -msgstr "" - -#. name for tyu -msgid "Kua" -msgstr "" - -#. name for tyv -msgid "Tuvinian" -msgstr "" - -#. name for tyx -msgid "Teke-Tyee" -msgstr "" - -#. name for tyz -msgid "Tày" -msgstr "" - -#. name for tza -msgid "Tanzanian Sign Language" -msgstr "" - -#. name for tzh -msgid "Tzeltal" -msgstr "" - -#. name for tzj -msgid "Tz'utujil" -msgstr "" - -#. name for tzm -msgid "Tamazight; Central Atlas" -msgstr "" - -#. name for tzn -msgid "Tugun" -msgstr "" - -#. name for tzo -msgid "Tzotzil" -msgstr "" - -#. name for tzx -msgid "Tabriak" -msgstr "" - -#. name for uam -msgid "Uamué" -msgstr "" - -#. name for uan -msgid "Kuan" -msgstr "" - -#. name for uar -msgid "Tairuma" -msgstr "" - -#. name for uba -msgid "Ubang" -msgstr "" - -#. name for ubi -msgid "Ubi" -msgstr "" - -#. name for ubl -msgid "Bikol; Buhi'non" -msgstr "" - -#. name for ubr -msgid "Ubir" -msgstr "" - -#. name for ubu -msgid "Umbu-Ungu" -msgstr "" - -#. name for uby -msgid "Ubykh" -msgstr "" - -#. name for uda -msgid "Uda" -msgstr "" - -#. name for ude -msgid "Udihe" -msgstr "" - -#. name for udg -msgid "Muduga" -msgstr "" - -#. name for udi -msgid "Udi" -msgstr "" - -#. name for udj -msgid "Ujir" -msgstr "" - -#. name for udl -msgid "Wuzlam" -msgstr "" - -#. name for udm -msgid "Udmurt" -msgstr "" - -#. name for udu -msgid "Uduk" -msgstr "" - -#. name for ues -msgid "Kioko" -msgstr "" - -#. name for ufi -msgid "Ufim" -msgstr "" - -#. name for uga -msgid "Ugaritic" -msgstr "" - -#. name for ugb -msgid "Kuku-Ugbanh" -msgstr "" - -#. name for uge -msgid "Ughele" -msgstr "" - -#. name for ugn -msgid "Ugandan Sign Language" -msgstr "" - -#. name for ugo -msgid "Ugong" -msgstr "" - -#. name for ugy -msgid "Uruguayan Sign Language" -msgstr "" - -#. name for uha -msgid "Uhami" -msgstr "" - -#. name for uhn -msgid "Damal" -msgstr "" - -#. name for uig -msgid "Uighur" -msgstr "" - -#. name for uis -msgid "Uisai" -msgstr "" - -#. name for uiv -msgid "Iyive" -msgstr "" - -#. name for uji -msgid "Tanjijili" -msgstr "" - -#. name for uka -msgid "Kaburi" -msgstr "" - -#. name for ukg -msgid "Ukuriguma" -msgstr "" - -#. name for ukh -msgid "Ukhwejo" -msgstr "" - -#. name for ukl -msgid "Ukrainian Sign Language" -msgstr "" - -#. name for ukp -msgid "Ukpe-Bayobiri" -msgstr "" - -#. name for ukq -msgid "Ukwa" -msgstr "" - -#. name for ukr -msgid "Ukrainian" -msgstr "" - -#. name for uks -msgid "Urubú-Kaapor Sign Language" -msgstr "" - -#. name for uku -msgid "Ukue" -msgstr "" - -#. name for ukw -msgid "Ukwuani-Aboh-Ndoni" -msgstr "" - -#. name for ula -msgid "Fungwa" -msgstr "" - -#. name for ulb -msgid "Ulukwumi" -msgstr "" - -#. name for ulc -msgid "Ulch" -msgstr "" - -#. name for ulf -msgid "Usku" -msgstr "" - -#. name for uli -msgid "Ulithian" -msgstr "" - -#. name for ulk -msgid "Meriam" -msgstr "" - -#. name for ull -msgid "Ullatan" -msgstr "" - -#. name for ulm -msgid "Ulumanda'" -msgstr "" - -#. name for uln -msgid "Unserdeutsch" -msgstr "" - -#. name for ulu -msgid "Uma' Lung" -msgstr "" - -#. name for ulw -msgid "Ulwa" -msgstr "" - -#. name for uma -msgid "Umatilla" -msgstr "" - -#. name for umb -msgid "Umbundu" -msgstr "" - -#. name for umc -msgid "Marrucinian" -msgstr "" - -#. name for umd -msgid "Umbindhamu" -msgstr "" - -#. name for umg -msgid "Umbuygamu" -msgstr "" - -#. name for umi -msgid "Ukit" -msgstr "" - -#. name for umm -msgid "Umon" -msgstr "" - -#. name for umn -msgid "Naga; Makyan" -msgstr "" - -#. name for umo -msgid "Umotína" -msgstr "" - -#. name for ump -msgid "Umpila" -msgstr "" - -#. name for umr -msgid "Umbugarla" -msgstr "" - -#. name for ums -msgid "Pendau" -msgstr "" - -#. name for umu -msgid "Munsee" -msgstr "" - -#. name for una -msgid "Watut; North" -msgstr "" - -#. name for und -msgid "Undetermined" -msgstr "" - -#. name for une -msgid "Uneme" -msgstr "" - -#. name for ung -msgid "Ngarinyin" -msgstr "" - -#. name for unk -msgid "Enawené-Nawé" -msgstr "" - -#. name for unm -msgid "Unami" -msgstr "" - -#. name for unp -msgid "Worora" -msgstr "" - -#. name for unr -msgid "Mundari" -msgstr "" - -#. name for unx -msgid "Munda" -msgstr "" - -#. name for unz -msgid "Kaili; Unde" -msgstr "" - -#. name for uok -msgid "Uokha" -msgstr "" - -#. name for upi -msgid "Umeda" -msgstr "" - -#. name for upv -msgid "Uripiv-Wala-Rano-Atchin" -msgstr "" - -#. name for ura -msgid "Urarina" -msgstr "" - -#. name for urb -msgid "Urubú-Kaapor" -msgstr "" - -#. name for urc -msgid "Urningangg" -msgstr "" - -#. name for urd -msgid "Urdu" -msgstr "" - -#. name for ure -msgid "Uru" -msgstr "" - -#. name for urf -msgid "Uradhi" -msgstr "" - -#. name for urg -msgid "Urigina" -msgstr "" - -#. name for urh -msgid "Urhobo" -msgstr "" - -#. name for uri -msgid "Urim" -msgstr "" - -#. name for urk -msgid "Urak Lawoi'" -msgstr "" - -#. name for url -msgid "Urali" -msgstr "" - -#. name for urm -msgid "Urapmin" -msgstr "" - -#. name for urn -msgid "Uruangnirin" -msgstr "" - -#. name for uro -msgid "Ura (Papua New Guinea)" -msgstr "" - -#. name for urp -msgid "Uru-Pa-In" -msgstr "" - -#. name for urr -msgid "Lehalurup" -msgstr "" - -#. name for urt -msgid "Urat" -msgstr "" - -#. name for uru -msgid "Urumi" -msgstr "" - -#. name for urv -msgid "Uruava" -msgstr "" - -#. name for urw -msgid "Sop" -msgstr "" - -#. name for urx -msgid "Urimo" -msgstr "" - -#. name for ury -msgid "Orya" -msgstr "" - -#. name for urz -msgid "Uru-Eu-Wau-Wau" -msgstr "" - -#. name for usa -msgid "Usarufa" -msgstr "" - -#. name for ush -msgid "Ushojo" -msgstr "" - -#. name for usi -msgid "Usui" -msgstr "" - -#. name for usk -msgid "Usaghade" -msgstr "" - -#. name for usp -msgid "Uspanteco" -msgstr "" - -#. name for usu -msgid "Uya" -msgstr "" - -#. name for uta -msgid "Otank" -msgstr "" - -#. name for ute -msgid "Ute-Southern Paiute" -msgstr "" - -#. name for utp -msgid "Amba (Solomon Islands)" -msgstr "" - -#. name for utr -msgid "Etulo" -msgstr "" - -#. name for utu -msgid "Utu" -msgstr "" - -#. name for uum -msgid "Urum" -msgstr "" - -#. name for uun -msgid "Kulon-Pazeh" -msgstr "" - -#. name for uur -msgid "Ura (Vanuatu)" -msgstr "" - -#. name for uuu -msgid "U" -msgstr "" - -#. name for uve -msgid "Uvean; West" -msgstr "" - -#. name for uvh -msgid "Uri" -msgstr "" - -#. name for uvl -msgid "Lote" -msgstr "" - -#. name for uwa -msgid "Kuku-Uwanh" -msgstr "" - -#. name for uya -msgid "Doko-Uyanga" -msgstr "" - -#. name for uzb -msgid "Uzbek" -msgstr "" - -#. name for uzn -msgid "Uzbek; Northern" -msgstr "" - -#. name for uzs -msgid "Uzbek; Southern" -msgstr "" - -#. name for vaa -msgid "Vaagri Booli" -msgstr "" - -#. name for vae -msgid "Vale" -msgstr "" - -#. name for vaf -msgid "Vafsi" -msgstr "" - -#. name for vag -msgid "Vagla" -msgstr "" - -#. name for vah -msgid "Varhadi-Nagpuri" -msgstr "" - -#. name for vai -msgid "Vai" -msgstr "" - -#. name for vaj -msgid "Vasekela Bushman" -msgstr "" - -#. name for val -msgid "Vehes" -msgstr "" - -#. name for vam -msgid "Vanimo" -msgstr "" - -#. name for van -msgid "Valman" -msgstr "" - -#. name for vao -msgid "Vao" -msgstr "" - -#. name for vap -msgid "Vaiphei" -msgstr "" - -#. name for var -msgid "Huarijio" -msgstr "" - -#. name for vas -msgid "Vasavi" -msgstr "" - -#. name for vau -msgid "Vanuma" -msgstr "" - -#. name for vav -msgid "Varli" -msgstr "" - -#. name for vay -msgid "Wayu" -msgstr "" - -#. name for vbb -msgid "Babar; Southeast" -msgstr "" - -#. name for vbk -msgid "Bontok; Southwestern" -msgstr "" - -#. name for vec -msgid "Venetian" -msgstr "" - -#. name for ved -msgid "Veddah" -msgstr "" - -#. name for vel -msgid "Veluws" -msgstr "" - -#. name for vem -msgid "Vemgo-Mabas" -msgstr "" - -#. name for ven -msgid "Venda" -msgstr "" - -#. name for veo -msgid "Ventureño" -msgstr "" - -#. name for vep -msgid "Veps" -msgstr "" - -#. name for ver -msgid "Mom Jango" -msgstr "" - -#. name for vgr -msgid "Vaghri" -msgstr "" - -#. name for vgt -msgid "Vlaamse Gebarentaal" -msgstr "" - -#. name for vic -msgid "Creole English; Virgin Islands" -msgstr "" - -#. name for vid -msgid "Vidunda" -msgstr "" - -#. name for vie -msgid "Vietnamese" -msgstr "" - -#. name for vif -msgid "Vili" -msgstr "" - -#. name for vig -msgid "Viemo" -msgstr "" - -#. name for vil -msgid "Vilela" -msgstr "" - -#. name for vin -msgid "Vinza" -msgstr "" - -#. name for vis -msgid "Vishavan" -msgstr "" - -#. name for vit -msgid "Viti" -msgstr "" - -#. name for viv -msgid "Iduna" -msgstr "" - -#. name for vka -msgid "Kariyarra" -msgstr "" - -#. name for vki -msgid "Ija-Zuba" -msgstr "" - -#. name for vkj -msgid "Kujarge" -msgstr "" - -#. name for vkk -msgid "Kaur" -msgstr "" - -#. name for vkl -msgid "Kulisusu" -msgstr "" - -#. name for vkm -msgid "Kamakan" -msgstr "" - -#. name for vko -msgid "Kodeoha" -msgstr "" - -#. name for vkp -msgid "Creole Portuguese; Korlai" -msgstr "" - -#. name for vkt -msgid "Malay; Tenggarong Kutai" -msgstr "" - -#. name for vku -msgid "Kurrama" -msgstr "" - -#. name for vlp -msgid "Valpei" -msgstr "" - -#. name for vls -msgid "Vlaams" -msgstr "" - -#. name for vma -msgid "Martuyhunira" -msgstr "" - -#. name for vmb -msgid "Mbabaram" -msgstr "" - -#. name for vmc -msgid "Mixtec; Juxtlahuaca" -msgstr "" - -#. name for vmd -msgid "Koraga; Mudu" -msgstr "" - -#. name for vme -msgid "Masela; East" -msgstr "" - -#. name for vmf -msgid "Mainfränkisch" -msgstr "" - -#. name for vmg -msgid "Minigir" -msgstr "" - -#. name for vmh -msgid "Maraghei" -msgstr "" - -#. name for vmi -msgid "Miwa" -msgstr "" - -#. name for vmj -msgid "Mixtec; Ixtayutla" -msgstr "" - -#. name for vmk -msgid "Makhuwa-Shirima" -msgstr "" - -#. name for vml -msgid "Malgana" -msgstr "" - -#. name for vmm -msgid "Mixtec; Mitlatongo" -msgstr "" - -#. name for vmp -msgid "Mazatec; Soyaltepec" -msgstr "" - -#. name for vmq -msgid "Mixtec; Soyaltepec" -msgstr "" - -#. name for vmr -msgid "Marenje" -msgstr "" - -#. name for vms -msgid "Moksela" -msgstr "" - -#. name for vmu -msgid "Muluridyi" -msgstr "" - -#. name for vmv -msgid "Maidu; Valley" -msgstr "" - -#. name for vmw -msgid "Makhuwa" -msgstr "" - -#. name for vmx -msgid "Mixtec; Tamazola" -msgstr "" - -#. name for vmy -msgid "Mazatec; Ayautla" -msgstr "" - -#. name for vmz -msgid "Mazatec; Mazatlán" -msgstr "" - -#. name for vnk -msgid "Vano" -msgstr "" - -#. name for vnm -msgid "Vinmavis" -msgstr "" - -#. name for vnp -msgid "Vunapu" -msgstr "" - -#. name for vol -msgid "Volapük" -msgstr "" - -#. name for vor -msgid "Voro" -msgstr "" - -#. name for vot -msgid "Votic" -msgstr "" - -#. name for vra -msgid "Vera'a" -msgstr "" - -#. name for vro -msgid "Võro" -msgstr "" - -#. name for vrs -msgid "Varisi" -msgstr "" - -#. name for vrt -msgid "Burmbar" -msgstr "" - -#. name for vsi -msgid "Moldova Sign Language" -msgstr "" - -#. name for vsl -msgid "Venezuelan Sign Language" -msgstr "" - -#. name for vsv -msgid "Valencian Sign Language" -msgstr "" - -#. name for vto -msgid "Vitou" -msgstr "" - -#. name for vum -msgid "Vumbu" -msgstr "" - -#. name for vun -msgid "Vunjo" -msgstr "" - -#. name for vut -msgid "Vute" -msgstr "" - -#. name for vwa -msgid "Awa (China)" -msgstr "" - -#. name for waa -msgid "Walla Walla" -msgstr "" - -#. name for wab -msgid "Wab" -msgstr "" - -#. name for wac -msgid "Wasco-Wishram" -msgstr "" - -#. name for wad -msgid "Wandamen" -msgstr "" - -#. name for wae -msgid "Walser" -msgstr "" - -#. name for waf -msgid "Wakoná" -msgstr "" - -#. name for wag -msgid "Wa'ema" -msgstr "" - -#. name for wah -msgid "Watubela" -msgstr "" - -#. name for wai -msgid "Wares" -msgstr "" - -#. name for waj -msgid "Waffa" -msgstr "" - -#. name for wal -msgid "Wolaytta" -msgstr "" - -#. name for wam -msgid "Wampanoag" -msgstr "" - -#. name for wan -msgid "Wan" -msgstr "" - -#. name for wao -msgid "Wappo" -msgstr "" - -#. name for wap -msgid "Wapishana" -msgstr "" - -#. name for waq -msgid "Wageman" -msgstr "" - -#. name for war -msgid "Waray (Philippines)" -msgstr "" - -#. name for was -msgid "Washo" -msgstr "" - -#. name for wat -msgid "Kaninuwa" -msgstr "" - -#. name for wau -msgid "Waurá" -msgstr "" - -#. name for wav -msgid "Waka" -msgstr "" - -#. name for waw -msgid "Waiwai" -msgstr "" - -#. name for wax -msgid "Watam" -msgstr "" - -#. name for way -msgid "Wayana" -msgstr "" - -#. name for waz -msgid "Wampur" -msgstr "" - -#. name for wba -msgid "Warao" -msgstr "" - -#. name for wbb -msgid "Wabo" -msgstr "" - -#. name for wbe -msgid "Waritai" -msgstr "" - -#. name for wbf -msgid "Wara" -msgstr "" - -#. name for wbh -msgid "Wanda" -msgstr "" - -#. name for wbi -msgid "Vwanji" -msgstr "" - -#. name for wbj -msgid "Alagwa" -msgstr "" - -#. name for wbk -msgid "Waigali" -msgstr "" - -#. name for wbl -msgid "Wakhi" -msgstr "" - -#. name for wbm -msgid "Wa" -msgstr "" - -#. name for wbp -msgid "Warlpiri" -msgstr "" - -#. name for wbq -msgid "Waddar" -msgstr "" - -#. name for wbr -msgid "Wagdi" -msgstr "" - -#. name for wbt -msgid "Wanman" -msgstr "" - -#. name for wbv -msgid "Wajarri" -msgstr "" - -#. name for wbw -msgid "Woi" -msgstr "" - -#. name for wca -msgid "Yanomámi" -msgstr "" - -#. name for wci -msgid "Gbe; Waci" -msgstr "" - -#. name for wdd -msgid "Wandji" -msgstr "" - -#. name for wdg -msgid "Wadaginam" -msgstr "" - -#. name for wdj -msgid "Wadjiginy" -msgstr "" - -#. name for wdu -msgid "Wadjigu" -msgstr "" - -#. name for wea -msgid "Wewaw" -msgstr "" - -#. name for wec -msgid "Wè Western" -msgstr "" - -#. name for wed -msgid "Wedau" -msgstr "" - -#. name for weh -msgid "Weh" -msgstr "" - -#. name for wei -msgid "Kiunum" -msgstr "" - -#. name for wem -msgid "Gbe; Weme" -msgstr "" - -#. name for weo -msgid "Wemale; North" -msgstr "" - -#. name for wep -msgid "Westphalien" -msgstr "" - -#. name for wer -msgid "Weri" -msgstr "" - -#. name for wes -msgid "Pidgin; Cameroon" -msgstr "" - -#. name for wet -msgid "Perai" -msgstr "" - -#. name for weu -msgid "Welaung" -msgstr "" - -#. name for wew -msgid "Wejewa" -msgstr "" - -#. name for wfg -msgid "Yafi" -msgstr "" - -#. name for wga -msgid "Wagaya" -msgstr "" - -#. name for wgb -msgid "Wagawaga" -msgstr "" - -#. name for wgg -msgid "Wangganguru" -msgstr "" - -#. name for wgi -msgid "Wahgi" -msgstr "" - -#. name for wgo -msgid "Waigeo" -msgstr "" - -#. name for wgy -msgid "Warrgamay" -msgstr "" - -#. name for wha -msgid "Manusela" -msgstr "" - -#. name for whg -msgid "Wahgi; North" -msgstr "" - -#. name for whk -msgid "Kenyah; Wahau" -msgstr "" - -#. name for whu -msgid "Kayan; Wahau" -msgstr "" - -#. name for wib -msgid "Toussian; Southern" -msgstr "" - -#. name for wic -msgid "Wichita" -msgstr "" - -#. name for wie -msgid "Wik-Epa" -msgstr "" - -#. name for wif -msgid "Wik-Keyangan" -msgstr "" - -#. name for wig -msgid "Wik-Ngathana" -msgstr "" - -#. name for wih -msgid "Wik-Me'anha" -msgstr "" - -#. name for wii -msgid "Minidien" -msgstr "" - -#. name for wij -msgid "Wik-Iiyanh" -msgstr "" - -#. name for wik -msgid "Wikalkan" -msgstr "" - -#. name for wil -msgid "Wilawila" -msgstr "" - -#. name for wim -msgid "Wik-Mungkan" -msgstr "" - -#. name for win -msgid "Ho-Chunk" -msgstr "" - -#. name for wir -msgid "Wiraféd" -msgstr "" - -#. name for wit -msgid "Wintu" -msgstr "" - -#. name for wiu -msgid "Wiru" -msgstr "" - -#. name for wiv -msgid "Muduapa" -msgstr "" - -#. name for wiw -msgid "Wirangu" -msgstr "" - -#. name for wiy -msgid "Wiyot" -msgstr "" - -#. name for wja -msgid "Waja" -msgstr "" - -#. name for wji -msgid "Warji" -msgstr "" - -#. name for wka -msgid "Kw'adza" -msgstr "" - -#. name for wkb -msgid "Kumbaran" -msgstr "" - -#. name for wkd -msgid "Wakde" -msgstr "" - -#. name for wkl -msgid "Kalanadi" -msgstr "" - -#. name for wku -msgid "Kunduvadi" -msgstr "" - -#. name for wkw -msgid "Wakawaka" -msgstr "" - -#. name for wla -msgid "Walio" -msgstr "" - -#. name for wlc -msgid "Comorian; Mwali" -msgstr "" - -#. name for wle -msgid "Wolane" -msgstr "" - -#. name for wlg -msgid "Kunbarlang" -msgstr "" - -#. name for wli -msgid "Waioli" -msgstr "" - -#. name for wlk -msgid "Wailaki" -msgstr "" - -#. name for wll -msgid "Wali (Sudan)" -msgstr "" - -#. name for wlm -msgid "Welsh; Middle" -msgstr "" - -#. name for wln -msgid "Walloon" -msgstr "" - -#. name for wlo -msgid "Wolio" -msgstr "" - -#. name for wlr -msgid "Wailapa" -msgstr "" - -#. name for wls -msgid "Wallisian" -msgstr "" - -#. name for wlu -msgid "Wuliwuli" -msgstr "" - -#. name for wlv -msgid "Wichí Lhamtés Vejoz" -msgstr "" - -#. name for wlw -msgid "Walak" -msgstr "" - -#. name for wlx -msgid "Wali (Ghana)" -msgstr "" - -#. name for wly -msgid "Waling" -msgstr "" - -#. name for wma -msgid "Mawa (Nigeria)" -msgstr "" - -#. name for wmb -msgid "Wambaya" -msgstr "" - -#. name for wmc -msgid "Wamas" -msgstr "" - -#. name for wmd -msgid "Mamaindé" -msgstr "" - -#. name for wme -msgid "Wambule" -msgstr "" - -#. name for wmh -msgid "Waima'a" -msgstr "" - -#. name for wmi -msgid "Wamin" -msgstr "" - -#. name for wmm -msgid "Maiwa (Indonesia)" -msgstr "" - -#. name for wmn -msgid "Waamwang" -msgstr "" - -#. name for wmo -msgid "Wom (Papua New Guinea)" -msgstr "" - -#. name for wms -msgid "Wambon" -msgstr "" - -#. name for wmt -msgid "Walmajarri" -msgstr "" - -#. name for wmw -msgid "Mwani" -msgstr "" - -#. name for wmx -msgid "Womo" -msgstr "" - -#. name for wnb -msgid "Wanambre" -msgstr "" - -#. name for wnc -msgid "Wantoat" -msgstr "" - -#. name for wnd -msgid "Wandarang" -msgstr "" - -#. name for wne -msgid "Waneci" -msgstr "" - -#. name for wng -msgid "Wanggom" -msgstr "" - -#. name for wni -msgid "Comorian; Ndzwani" -msgstr "" - -#. name for wnk -msgid "Wanukaka" -msgstr "" - -#. name for wnm -msgid "Wanggamala" -msgstr "" - -#. name for wno -msgid "Wano" -msgstr "" - -#. name for wnp -msgid "Wanap" -msgstr "" - -#. name for wnu -msgid "Usan" -msgstr "" - -#. name for woa -msgid "Tyaraity" -msgstr "" - -#. name for wob -msgid "Wè Northern" -msgstr "" - -#. name for woc -msgid "Wogeo" -msgstr "" - -#. name for wod -msgid "Wolani" -msgstr "" - -#. name for woe -msgid "Woleaian" -msgstr "" - -#. name for wof -msgid "Wolof; Gambian" -msgstr "" - -#. name for wog -msgid "Wogamusin" -msgstr "" - -#. name for woi -msgid "Kamang" -msgstr "" - -#. name for wok -msgid "Longto" -msgstr "" - -#. name for wol -msgid "Wolof" -msgstr "" - -#. name for wom -msgid "Wom (Nigeria)" -msgstr "" - -#. name for won -msgid "Wongo" -msgstr "" - -#. name for woo -msgid "Manombai" -msgstr "" - -#. name for wor -msgid "Woria" -msgstr "" - -#. name for wos -msgid "Hanga Hundi" -msgstr "" - -#. name for wow -msgid "Wawonii" -msgstr "" - -#. name for woy -msgid "Weyto" -msgstr "" - -#. name for wpc -msgid "Maco" -msgstr "" - -#. name for wra -msgid "Warapu" -msgstr "" - -#. name for wrb -msgid "Warluwara" -msgstr "" - -#. name for wrd -msgid "Warduji" -msgstr "" - -#. name for wrg -msgid "Warungu" -msgstr "" - -#. name for wrh -msgid "Wiradhuri" -msgstr "" - -#. name for wri -msgid "Wariyangga" -msgstr "" - -#. name for wrl -msgid "Warlmanpa" -msgstr "" - -#. name for wrm -msgid "Warumungu" -msgstr "" - -#. name for wrn -msgid "Warnang" -msgstr "" - -#. name for wrp -msgid "Waropen" -msgstr "" - -#. name for wrr -msgid "Wardaman" -msgstr "" - -#. name for wrs -msgid "Waris" -msgstr "" - -#. name for wru -msgid "Waru" -msgstr "" - -#. name for wrv -msgid "Waruna" -msgstr "" - -#. name for wrw -msgid "Gugu Warra" -msgstr "" - -#. name for wrx -msgid "Wae Rana" -msgstr "" - -#. name for wry -msgid "Merwari" -msgstr "" - -#. name for wrz -msgid "Waray (Australia)" -msgstr "" - -#. name for wsa -msgid "Warembori" -msgstr "" - -#. name for wsi -msgid "Wusi" -msgstr "" - -#. name for wsk -msgid "Waskia" -msgstr "" - -#. name for wsr -msgid "Owenia" -msgstr "" - -#. name for wss -msgid "Wasa" -msgstr "" - -#. name for wsu -msgid "Wasu" -msgstr "" - -#. name for wsv -msgid "Wotapuri-Katarqalai" -msgstr "" - -#. name for wtf -msgid "Watiwa" -msgstr "" - -#. name for wti -msgid "Berta" -msgstr "" - -#. name for wtk -msgid "Watakataui" -msgstr "" - -#. name for wtm -msgid "Mewati" -msgstr "" - -#. name for wtw -msgid "Wotu" -msgstr "" - -#. name for wua -msgid "Wikngenchera" -msgstr "" - -#. name for wub -msgid "Wunambal" -msgstr "" - -#. name for wud -msgid "Wudu" -msgstr "" - -#. name for wuh -msgid "Wutunhua" -msgstr "" - -#. name for wul -msgid "Silimo" -msgstr "" - -#. name for wum -msgid "Wumbvu" -msgstr "" - -#. name for wun -msgid "Bungu" -msgstr "" - -#. name for wur -msgid "Wurrugu" -msgstr "" - -#. name for wut -msgid "Wutung" -msgstr "" - -#. name for wuu -msgid "Chinese; Wu" -msgstr "" - -#. name for wuv -msgid "Wuvulu-Aua" -msgstr "" - -#. name for wux -msgid "Wulna" -msgstr "" - -#. name for wuy -msgid "Wauyai" -msgstr "" - -#. name for wwa -msgid "Waama" -msgstr "" - -#. name for wwo -msgid "Wetamut" -msgstr "" - -#. name for wwr -msgid "Warrwa" -msgstr "" - -#. name for www -msgid "Wawa" -msgstr "" - -#. name for wxa -msgid "Waxianghua" -msgstr "" - -#. name for wya -msgid "Wyandot" -msgstr "" - -#. name for wyb -msgid "Wangaaybuwan-Ngiyambaa" -msgstr "" - -#. name for wym -msgid "Wymysorys" -msgstr "" - -#. name for wyr -msgid "Wayoró" -msgstr "" - -#. name for wyy -msgid "Fijian; Western" -msgstr "" - -#. name for xaa -msgid "Arabic; Andalusian" -msgstr "" - -#. name for xab -msgid "Sambe" -msgstr "" - -#. name for xac -msgid "Kachari" -msgstr "" - -#. name for xad -msgid "Adai" -msgstr "" - -#. name for xae -msgid "Aequian" -msgstr "" - -#. name for xag -msgid "Aghwan" -msgstr "" - -#. name for xai -msgid "Kaimbé" -msgstr "" - -#. name for xal -msgid "Kalmyk" -msgstr "" - -#. name for xam -msgid "/Xam" -msgstr "" - -#. name for xan -msgid "Xamtanga" -msgstr "" - -#. name for xao -msgid "Khao" -msgstr "" - -#. name for xap -msgid "Apalachee" -msgstr "" - -#. name for xaq -msgid "Aquitanian" -msgstr "" - -#. name for xar -msgid "Karami" -msgstr "" - -#. name for xas -msgid "Kamas" -msgstr "" - -#. name for xat -msgid "Katawixi" -msgstr "" - -#. name for xau -msgid "Kauwera" -msgstr "" - -#. name for xav -msgid "Xavánte" -msgstr "" - -#. name for xaw -msgid "Kawaiisu" -msgstr "" - -#. name for xay -msgid "Kayan Mahakam" -msgstr "" - -#. name for xba -msgid "Kamba (Brazil)" -msgstr "" - -#. name for xbb -msgid "Burdekin; Lower" -msgstr "" - -#. name for xbc -msgid "Bactrian" -msgstr "" - -#. name for xbi -msgid "Kombio" -msgstr "" - -#. name for xbm -msgid "Breton; Middle" -msgstr "" - -#. name for xbn -msgid "Kenaboi" -msgstr "" - -#. name for xbo -msgid "Bolgarian" -msgstr "" - -#. name for xbr -msgid "Kambera" -msgstr "" - -#. name for xbw -msgid "Kambiwá" -msgstr "" - -#. name for xbx -msgid "Kabixí" -msgstr "" - -#. name for xcb -msgid "Cumbric" -msgstr "" - -#. name for xcc -msgid "Camunic" -msgstr "" - -#. name for xce -msgid "Celtiberian" -msgstr "" - -#. name for xcg -msgid "Gaulish; Cisalpine" -msgstr "" - -#. name for xch -msgid "Chemakum" -msgstr "" - -#. name for xcl -msgid "Armenian; Classical" -msgstr "" - -#. name for xcm -msgid "Comecrudo" -msgstr "" - -#. name for xcn -msgid "Cotoname" -msgstr "" - -#. name for xco -msgid "Chorasmian" -msgstr "" - -#. name for xcr -msgid "Carian" -msgstr "" - -#. name for xct -msgid "Tibetan; Classical" -msgstr "" - -#. name for xcu -msgid "Curonian" -msgstr "" - -#. name for xcv -msgid "Chuvantsy" -msgstr "" - -#. name for xcw -msgid "Coahuilteco" -msgstr "" - -#. name for xcy -msgid "Cayuse" -msgstr "" - -#. name for xdc -msgid "Dacian" -msgstr "" - -#. name for xdm -msgid "Edomite" -msgstr "" - -#. name for xdy -msgid "Dayak; Malayic" -msgstr "" - -#. name for xeb -msgid "Eblan" -msgstr "" - -#. name for xed -msgid "Hdi" -msgstr "" - -#. name for xeg -msgid "//Xegwi" -msgstr "" - -#. name for xel -msgid "Kelo" -msgstr "" - -#. name for xem -msgid "Kembayan" -msgstr "" - -#. name for xep -msgid "Epi-Olmec" -msgstr "" - -#. name for xer -msgid "Xerénte" -msgstr "" - -#. name for xes -msgid "Kesawai" -msgstr "" - -#. name for xet -msgid "Xetá" -msgstr "" - -#. name for xeu -msgid "Keoru-Ahia" -msgstr "" - -#. name for xfa -msgid "Faliscan" -msgstr "" - -#. name for xga -msgid "Galatian" -msgstr "" - -#. name for xgf -msgid "Gabrielino-Fernandeño" -msgstr "" - -#. name for xgl -msgid "Galindan" -msgstr "" - -#. name for xgr -msgid "Garza" -msgstr "" - -#. name for xha -msgid "Harami" -msgstr "" - -#. name for xhc -msgid "Hunnic" -msgstr "" - -#. name for xhd -msgid "Hadrami" -msgstr "" - -#. name for xhe -msgid "Khetrani" -msgstr "" - -#. name for xho -msgid "Xhosa" -msgstr "" - -#. name for xhr -msgid "Hernican" -msgstr "" - -#. name for xht -msgid "Hattic" -msgstr "" - -#. name for xhu -msgid "Hurrian" -msgstr "" - -#. name for xhv -msgid "Khua" -msgstr "" - -#. name for xia -msgid "Xiandao" -msgstr "" - -#. name for xib -msgid "Iberian" -msgstr "" - -#. name for xii -msgid "Xiri" -msgstr "" - -#. name for xil -msgid "Illyrian" -msgstr "" - -#. name for xin -msgid "Xinca" -msgstr "" - -#. name for xip -msgid "Xipináwa" -msgstr "" - -#. name for xir -msgid "Xiriâna" -msgstr "" - -#. name for xiv -msgid "Indus Valley Language" -msgstr "" - -#. name for xiy -msgid "Xipaya" -msgstr "" - -#. name for xka -msgid "Kalkoti" -msgstr "" - -#. name for xkb -msgid "Nago; Northern" -msgstr "" - -#. name for xkc -msgid "Kho'ini" -msgstr "" - -#. name for xkd -msgid "Kayan; Mendalam" -msgstr "" - -#. name for xke -msgid "Kereho" -msgstr "" - -#. name for xkf -msgid "Khengkha" -msgstr "" - -#. name for xkg -msgid "Kagoro" -msgstr "" - -#. name for xkh -msgid "Karahawyana" -msgstr "" - -#. name for xki -msgid "Kenyan Sign Language" -msgstr "" - -#. name for xkj -msgid "Kajali" -msgstr "" - -#. name for xkk -msgid "Kaco'" -msgstr "" - -#. name for xkl -msgid "Mainstream Kenyah" -msgstr "" - -#. name for xkn -msgid "Kayan; Kayan River" -msgstr "" - -#. name for xko -msgid "Kiorr" -msgstr "" - -#. name for xkp -msgid "Kabatei" -msgstr "" - -#. name for xkq -msgid "Koroni" -msgstr "" - -#. name for xkr -msgid "Xakriabá" -msgstr "" - -#. name for xks -msgid "Kumbewaha" -msgstr "" - -#. name for xkt -msgid "Kantosi" -msgstr "" - -#. name for xku -msgid "Kaamba" -msgstr "" - -#. name for xkv -msgid "Kgalagadi" -msgstr "" - -#. name for xkw -msgid "Kembra" -msgstr "" - -#. name for xkx -msgid "Karore" -msgstr "" - -#. name for xky -msgid "Uma' Lasan" -msgstr "" - -#. name for xkz -msgid "Kurtokha" -msgstr "" - -#. name for xla -msgid "Kamula" -msgstr "" - -#. name for xlb -msgid "Loup B" -msgstr "" - -#. name for xlc -msgid "Lycian" -msgstr "" - -#. name for xld -msgid "Lydian" -msgstr "" - -#. name for xle -msgid "Lemnian" -msgstr "" - -#. name for xlg -msgid "Ligurian (Ancient)" -msgstr "" - -#. name for xli -msgid "Liburnian" -msgstr "" - -#. name for xln -msgid "Alanic" -msgstr "" - -#. name for xlo -msgid "Loup A" -msgstr "" - -#. name for xlp -msgid "Lepontic" -msgstr "" - -#. name for xls -msgid "Lusitanian" -msgstr "" - -#. name for xlu -msgid "Luwian; Cuneiform" -msgstr "" - -#. name for xly -msgid "Elymian" -msgstr "" - -#. name for xma -msgid "Mushungulu" -msgstr "" - -#. name for xmb -msgid "Mbonga" -msgstr "" - -#. name for xmc -msgid "Makhuwa-Marrevone" -msgstr "" - -#. name for xmd -msgid "Mbudum" -msgstr "" - -#. name for xme -msgid "Median" -msgstr "" - -#. name for xmf -msgid "Mingrelian" -msgstr "" - -#. name for xmg -msgid "Mengaka" -msgstr "" - -#. name for xmh -msgid "Kuku-Muminh" -msgstr "" - -#. name for xmj -msgid "Majera" -msgstr "" - -#. name for xmk -msgid "Macedonian; Ancient" -msgstr "" - -#. name for xml -msgid "Malaysian Sign Language" -msgstr "" - -#. name for xmm -msgid "Malay; Manado" -msgstr "" - -#. name for xmn -msgid "Persian; Manichaean Middle" -msgstr "" - -#. name for xmo -msgid "Morerebi" -msgstr "" - -#. name for xmp -msgid "Kuku-Mu'inh" -msgstr "" - -#. name for xmq -msgid "Kuku-Mangk" -msgstr "" - -#. name for xmr -msgid "Meroitic" -msgstr "" - -#. name for xms -msgid "Moroccan Sign Language" -msgstr "" - -#. name for xmt -msgid "Matbat" -msgstr "" - -#. name for xmu -msgid "Kamu" -msgstr "" - -#. name for xmv -msgid "Malagasy; Tankarana" -msgstr "" - -#. name for xmw -msgid "Malagasy; Tsimihety" -msgstr "" - -#. name for xmx -msgid "Maden" -msgstr "" - -#. name for xmy -msgid "Mayaguduna" -msgstr "" - -#. name for xmz -msgid "Mori Bawah" -msgstr "" - -#. name for xna -msgid "North Arabian; Ancient" -msgstr "" - -#. name for xnb -msgid "Kanakanabu" -msgstr "" - -#. name for xng -msgid "Mongolian; Middle" -msgstr "" - -#. name for xnh -msgid "Kuanhua" -msgstr "" - -#. name for xnn -msgid "Kankanay; Northern" -msgstr "" - -#. name for xno -msgid "Anglo-Norman" -msgstr "" - -#. name for xnr -msgid "Kangri" -msgstr "" - -#. name for xns -msgid "Kanashi" -msgstr "" - -#. name for xnt -msgid "Narragansett" -msgstr "" - -#. name for xoc -msgid "O'chi'chi'" -msgstr "" - -#. name for xod -msgid "Kokoda" -msgstr "" - -#. name for xog -msgid "Soga" -msgstr "" - -#. name for xoi -msgid "Kominimung" -msgstr "" - -#. name for xok -msgid "Xokleng" -msgstr "" - -#. name for xom -msgid "Komo (Sudan)" -msgstr "" - -#. name for xon -msgid "Konkomba" -msgstr "" - -#. name for xoo -msgid "Xukurú" -msgstr "" - -#. name for xop -msgid "Kopar" -msgstr "" - -#. name for xor -msgid "Korubo" -msgstr "" - -#. name for xow -msgid "Kowaki" -msgstr "" - -#. name for xpc -msgid "Pecheneg" -msgstr "" - -#. name for xpe -msgid "Kpelle; Liberia" -msgstr "" - -#. name for xpg -msgid "Phrygian" -msgstr "" - -#. name for xpi -msgid "Pictish" -msgstr "" - -#. name for xpk -msgid "Pano; Kulina" -msgstr "" - -#. name for xpm -msgid "Pumpokol" -msgstr "" - -#. name for xpn -msgid "Kapinawá" -msgstr "" - -#. name for xpo -msgid "Pochutec" -msgstr "" - -#. name for xpp -msgid "Puyo-Paekche" -msgstr "" - -#. name for xpq -msgid "Mohegan-Pequot" -msgstr "" - -#. name for xpr -msgid "Parthian" -msgstr "" - -#. name for xps -msgid "Pisidian" -msgstr "" - -#. name for xpu -msgid "Punic" -msgstr "" - -#. name for xpy -msgid "Puyo" -msgstr "" - -#. name for xqa -msgid "Karakhanid" -msgstr "" - -#. name for xqt -msgid "Qatabanian" -msgstr "" - -#. name for xra -msgid "Krahô" -msgstr "" - -#. name for xrb -msgid "Karaboro; Eastern" -msgstr "" - -#. name for xre -msgid "Kreye" -msgstr "" - -#. name for xri -msgid "Krikati-Timbira" -msgstr "" - -#. name for xrm -msgid "Armazic" -msgstr "" - -#. name for xrn -msgid "Arin" -msgstr "" - -#. name for xrr -msgid "Raetic" -msgstr "" - -#. name for xrt -msgid "Aranama-Tamique" -msgstr "" - -#. name for xru -msgid "Marriammu" -msgstr "" - -#. name for xrw -msgid "Karawa" -msgstr "" - -#. name for xsa -msgid "Sabaean" -msgstr "" - -#. name for xsb -msgid "Sambal; Tinà" -msgstr "" - -#. name for xsc -msgid "Scythian" -msgstr "" - -#. name for xsd -msgid "Sidetic" -msgstr "" - -#. name for xse -msgid "Sempan" -msgstr "" - -#. name for xsh -msgid "Shamang" -msgstr "" - -#. name for xsi -msgid "Sio" -msgstr "" - -#. name for xsj -msgid "Subi" -msgstr "" - -#. name for xsl -msgid "Slavey; South" -msgstr "" - -#. name for xsm -msgid "Kasem" -msgstr "" - -#. name for xsn -msgid "Sanga (Nigeria)" -msgstr "" - -#. name for xso -msgid "Solano" -msgstr "" - -#. name for xsp -msgid "Silopi" -msgstr "" - -#. name for xsq -msgid "Makhuwa-Saka" -msgstr "" - -#. name for xsr -msgid "Sherpa" -msgstr "" - -#. name for xss -msgid "Assan" -msgstr "" - -#. name for xsu -msgid "Sanumá" -msgstr "" - -#. name for xsv -msgid "Sudovian" -msgstr "" - -#. name for xsy -msgid "Saisiyat" -msgstr "" - -#. name for xta -msgid "Mixtec; Alcozauca" -msgstr "" - -#. name for xtb -msgid "Mixtec; Chazumba" -msgstr "" - -#. name for xtc -msgid "Katcha-Kadugli-Miri" -msgstr "" - -#. name for xtd -msgid "Mixtec; Diuxi-Tilantongo" -msgstr "" - -#. name for xte -msgid "Ketengban" -msgstr "" - -#. name for xtg -msgid "Gaulish; Transalpine" -msgstr "" - -#. name for xti -msgid "Mixtec; Sinicahua" -msgstr "" - -#. name for xtj -msgid "Mixtec; San Juan Teita" -msgstr "" - -#. name for xtl -msgid "Mixtec; Tijaltepec" -msgstr "" - -#. name for xtm -msgid "Mixtec; Magdalena Peñasco" -msgstr "" - -#. name for xtn -msgid "Mixtec; Northern Tlaxiaco" -msgstr "" - -#. name for xto -msgid "Tokharian A" -msgstr "" - -#. name for xtp -msgid "Mixtec; San Miguel Piedras" -msgstr "" - -#. name for xtq -msgid "Tumshuqese" -msgstr "" - -#. name for xtr -msgid "Tripuri; Early" -msgstr "" - -#. name for xts -msgid "Mixtec; Sindihui" -msgstr "" - -#. name for xtt -msgid "Mixtec; Tacahua" -msgstr "" - -#. name for xtu -msgid "Mixtec; Cuyamecalco" -msgstr "" - -#. name for xtw -msgid "Tawandê" -msgstr "" - -#. name for xty -msgid "Mixtec; Yoloxochitl" -msgstr "" - -#. name for xtz -msgid "Tasmanian" -msgstr "" - -#. name for xua -msgid "Kurumba; Alu" -msgstr "" - -#. name for xub -msgid "Kurumba; Betta" -msgstr "" - -#. name for xug -msgid "Kunigami" -msgstr "" - -#. name for xuj -msgid "Kurumba; Jennu" -msgstr "" - -#. name for xum -msgid "Umbrian" -msgstr "" - -#. name for xuo -msgid "Kuo" -msgstr "" - -#. name for xup -msgid "Umpqua; Upper" -msgstr "" - -#. name for xur -msgid "Urartian" -msgstr "" - -#. name for xut -msgid "Kuthant" -msgstr "" - -#. name for xuu -msgid "Kxoe" -msgstr "" - -#. name for xve -msgid "Venetic" -msgstr "" - -#. name for xvi -msgid "Kamviri" -msgstr "" - -#. name for xvn -msgid "Vandalic" -msgstr "" - -#. name for xvo -msgid "Volscian" -msgstr "" - -#. name for xvs -msgid "Vestinian" -msgstr "" - -#. name for xwa -msgid "Kwaza" -msgstr "" - -#. name for xwc -msgid "Woccon" -msgstr "" - -#. name for xwe -msgid "Gbe; Xwela" -msgstr "" - -#. name for xwg -msgid "Kwegu" -msgstr "" - -#. name for xwl -msgid "Gbe; Western Xwla" -msgstr "" - -#. name for xwo -msgid "Oirat; Written" -msgstr "" - -#. name for xwr -msgid "Kwerba Mamberamo" -msgstr "" - -#. name for xxb -msgid "Boro (Ghana)" -msgstr "" - -#. name for xxk -msgid "Ke'o" -msgstr "" - -#. name for xxr -msgid "Koropó" -msgstr "" - -#. name for xxt -msgid "Tambora" -msgstr "" - -#. name for xyl -msgid "Yalakalore" -msgstr "" - -#. name for xzh -msgid "Zhang-Zhung" -msgstr "" - -#. name for xzm -msgid "Zemgalian" -msgstr "" - -#. name for xzp -msgid "Zapotec; Ancient" -msgstr "" - -#. name for yaa -msgid "Yaminahua" -msgstr "" - -#. name for yab -msgid "Yuhup" -msgstr "" - -#. name for yac -msgid "Yali; Pass Valley" -msgstr "" - -#. name for yad -msgid "Yagua" -msgstr "" - -#. name for yae -msgid "Pumé" -msgstr "" - -#. name for yaf -msgid "Yaka (Democratic Republic of Congo)" -msgstr "" - -#. name for yag -msgid "Yámana" -msgstr "" - -#. name for yah -msgid "Yazgulyam" -msgstr "" - -#. name for yai -msgid "Yagnobi" -msgstr "" - -#. name for yaj -msgid "Banda-Yangere" -msgstr "" - -#. name for yak -msgid "Yakama" -msgstr "" - -#. name for yal -msgid "Yalunka" -msgstr "" - -#. name for yam -msgid "Yamba" -msgstr "" - -#. name for yan -msgid "Mayangna" -msgstr "" - -#. name for yao -msgid "Yao" -msgstr "" - -#. name for yap -msgid "Yapese" -msgstr "" - -#. name for yaq -msgid "Yaqui" -msgstr "" - -#. name for yar -msgid "Yabarana" -msgstr "" - -#. name for yas -msgid "Nugunu (Cameroon)" -msgstr "" - -#. name for yat -msgid "Yambeta" -msgstr "" - -#. name for yau -msgid "Yuwana" -msgstr "" - -#. name for yav -msgid "Yangben" -msgstr "" - -#. name for yaw -msgid "Yawalapití" -msgstr "" - -#. name for yax -msgid "Yauma" -msgstr "" - -#. name for yay -msgid "Agwagwune" -msgstr "" - -#. name for yaz -msgid "Lokaa" -msgstr "" - -#. name for yba -msgid "Yala" -msgstr "" - -#. name for ybb -msgid "Yemba" -msgstr "" - -#. name for ybd -msgid "Yangbye" -msgstr "" - -#. name for ybe -msgid "Yugur; West" -msgstr "" - -#. name for ybh -msgid "Yakha" -msgstr "" - -#. name for ybi -msgid "Yamphu" -msgstr "" - -#. name for ybj -msgid "Hasha" -msgstr "" - -#. name for ybk -msgid "Bokha" -msgstr "" - -#. name for ybl -msgid "Yukuben" -msgstr "" - -#. name for ybm -msgid "Yaben" -msgstr "" - -#. name for ybn -msgid "Yabaâna" -msgstr "" - -#. name for ybo -msgid "Yabong" -msgstr "" - -#. name for ybx -msgid "Yawiyo" -msgstr "" - -#. name for yby -msgid "Yaweyuha" -msgstr "" - -#. name for ych -msgid "Chesu" -msgstr "" - -#. name for ycl -msgid "Lolopo" -msgstr "" - -#. name for ycn -msgid "Yucuna" -msgstr "" - -#. name for ycp -msgid "Chepya" -msgstr "" - -#. name for ydd -msgid "Yiddish; Eastern" -msgstr "" - -#. name for yde -msgid "Yangum Dey" -msgstr "" - -#. name for ydg -msgid "Yidgha" -msgstr "" - -#. name for ydk -msgid "Yoidik" -msgstr "" - -#. name for yds -msgid "Yiddish Sign Language" -msgstr "" - -#. name for yea -msgid "Ravula" -msgstr "" - -#. name for yec -msgid "Yeniche" -msgstr "" - -#. name for yee -msgid "Yimas" -msgstr "" - -#. name for yei -msgid "Yeni" -msgstr "" - -#. name for yej -msgid "Yevanic" -msgstr "" - -#. name for yel -msgid "Yela" -msgstr "" - -#. name for yen -msgid "Yendang" -msgstr "" - -#. name for yer -msgid "Tarok" -msgstr "" - -#. name for yes -msgid "Yeskwa" -msgstr "" - -#. name for yet -msgid "Yetfa" -msgstr "" - -#. name for yeu -msgid "Yerukula" -msgstr "" - -#. name for yev -msgid "Yapunda" -msgstr "" - -#. name for yey -msgid "Yeyi" -msgstr "" - -#. name for ygl -msgid "Yangum Gel" -msgstr "" - -#. name for ygm -msgid "Yagomi" -msgstr "" - -#. name for ygp -msgid "Gepo" -msgstr "" - -#. name for ygr -msgid "Yagaria" -msgstr "" - -#. name for ygw -msgid "Yagwoia" -msgstr "" - -#. name for yha -msgid "Buyang; Baha" -msgstr "" - -#. name for yhd -msgid "Arabic; Judeo-Iraqi" -msgstr "" - -#. name for yhl -msgid "Phowa; Hlepho" -msgstr "" - -#. name for yia -msgid "Yinggarda" -msgstr "" - -#. name for yid -msgid "Yiddish" -msgstr "" - -#. name for yif -msgid "Ache" -msgstr "" - -#. name for yig -msgid "Nasu; Wusa" -msgstr "" - -#. name for yih -msgid "Yiddish; Western" -msgstr "" - -#. name for yii -msgid "Yidiny" -msgstr "" - -#. name for yij -msgid "Yindjibarndi" -msgstr "" - -#. name for yik -msgid "Lalo; Dongshanba" -msgstr "" - -#. name for yil -msgid "Yindjilandji" -msgstr "" - -#. name for yim -msgid "Naga; Yimchungru" -msgstr "" - -#. name for yin -msgid "Yinchia" -msgstr "" - -#. name for yip -msgid "Pholo" -msgstr "" - -#. name for yiq -msgid "Miqie" -msgstr "" - -#. name for yir -msgid "Awyu; North" -msgstr "" - -#. name for yis -msgid "Yis" -msgstr "" - -#. name for yit -msgid "Lalu; Eastern" -msgstr "" - -#. name for yiu -msgid "Awu" -msgstr "" - -#. name for yiv -msgid "Nisu; Northern" -msgstr "" - -#. name for yix -msgid "Yi; Axi" -msgstr "" - -#. name for yiy -msgid "Yir Yoront" -msgstr "" - -#. name for yiz -msgid "Azhe" -msgstr "" - -#. name for yka -msgid "Yakan" -msgstr "" - -#. name for ykg -msgid "Yukaghir; Northern" -msgstr "" - -#. name for yki -msgid "Yoke" -msgstr "" - -#. name for ykk -msgid "Yakaikeke" -msgstr "" - -#. name for ykl -msgid "Khlula" -msgstr "" - -#. name for ykm -msgid "Kap" -msgstr "" - -#. name for yko -msgid "Yasa" -msgstr "" - -#. name for ykr -msgid "Yekora" -msgstr "" - -#. name for ykt -msgid "Kathu" -msgstr "" - -#. name for yky -msgid "Yakoma" -msgstr "" - -#. name for yla -msgid "Yaul" -msgstr "" - -#. name for ylb -msgid "Yaleba" -msgstr "" - -#. name for yle -msgid "Yele" -msgstr "" - -#. name for ylg -msgid "Yelogu" -msgstr "" - -#. name for yli -msgid "Yali; Angguruk" -msgstr "" - -#. name for yll -msgid "Yil" -msgstr "" - -#. name for ylm -msgid "Limi" -msgstr "" - -#. name for yln -msgid "Buyang; Langnian" -msgstr "" - -#. name for ylo -msgid "Yi; Naluo" -msgstr "" - -#. name for ylr -msgid "Yalarnnga" -msgstr "" - -#. name for ylu -msgid "Aribwaung" -msgstr "" - -#. name for yly -msgid "Nyâlayu" -msgstr "" - -#. name for yma -msgid "Yamphe" -msgstr "" - -#. name for ymb -msgid "Yambes" -msgstr "" - -#. name for ymc -msgid "Muji; Southern" -msgstr "" - -#. name for ymd -msgid "Muda" -msgstr "" - -#. name for yme -msgid "Yameo" -msgstr "" - -#. name for ymg -msgid "Yamongeri" -msgstr "" - -#. name for ymh -msgid "Mili" -msgstr "" - -#. name for ymi -msgid "Moji" -msgstr "" - -#. name for ymk -msgid "Makwe" -msgstr "" - -#. name for yml -msgid "Iamalele" -msgstr "" - -#. name for ymm -msgid "Maay" -msgstr "" - -#. name for ymn -msgid "Yamna" -msgstr "" - -#. name for ymo -msgid "Yangum Mon" -msgstr "" - -#. name for ymp -msgid "Yamap" -msgstr "" - -#. name for ymq -msgid "Muji; Qila" -msgstr "" - -#. name for ymr -msgid "Malasar" -msgstr "" - -#. name for yms -msgid "Mysian" -msgstr "" - -#. name for ymt -msgid "Mator-Taygi-Karagas" -msgstr "" - -#. name for ymx -msgid "Muji; Northern" -msgstr "" - -#. name for ymz -msgid "Muzi" -msgstr "" - -#. name for yna -msgid "Aluo" -msgstr "" - -#. name for ynd -msgid "Yandruwandha" -msgstr "" - -#. name for yne -msgid "Lang'e" -msgstr "" - -#. name for yng -msgid "Yango" -msgstr "" - -#. name for ynh -msgid "Yangho" -msgstr "" - -#. name for ynk -msgid "Yupik; Naukan" -msgstr "" - -#. name for ynl -msgid "Yangulam" -msgstr "" - -#. name for ynn -msgid "Yana" -msgstr "" - -#. name for yno -msgid "Yong" -msgstr "" - -#. name for yns -msgid "Yansi" -msgstr "" - -#. name for ynu -msgid "Yahuna" -msgstr "" - -#. name for yob -msgid "Yoba" -msgstr "" - -#. name for yog -msgid "Yogad" -msgstr "" - -#. name for yoi -msgid "Yonaguni" -msgstr "" - -#. name for yok -msgid "Yokuts" -msgstr "" - -#. name for yol -msgid "Yola" -msgstr "" - -#. name for yom -msgid "Yombe" -msgstr "" - -#. name for yon -msgid "Yongkom" -msgstr "" - -#. name for yor -msgid "Yoruba" -msgstr "" - -#. name for yos -msgid "Yos" -msgstr "" - -#. name for yox -msgid "Yoron" -msgstr "" - -#. name for yoy -msgid "Yoy" -msgstr "" - -#. name for ypa -msgid "Phala" -msgstr "" - -#. name for ypb -msgid "Phowa; Labo" -msgstr "" - -#. name for ypg -msgid "Phola" -msgstr "" - -#. name for yph -msgid "Phupha" -msgstr "" - -#. name for ypm -msgid "Phuma" -msgstr "" - -#. name for ypn -msgid "Phowa; Ani" -msgstr "" - -#. name for ypo -msgid "Phola; Alo" -msgstr "" - -#. name for ypp -msgid "Phupa" -msgstr "" - -#. name for ypz -msgid "Phuza" -msgstr "" - -#. name for yra -msgid "Yerakai" -msgstr "" - -#. name for yrb -msgid "Yareba" -msgstr "" - -#. name for yre -msgid "Yaouré" -msgstr "" - -#. name for yri -msgid "Yarí" -msgstr "" - -#. name for yrk -msgid "Nenets" -msgstr "" - -#. name for yrl -msgid "Nhengatu" -msgstr "" - -#. name for yrn -msgid "Yerong" -msgstr "" - -#. name for yrs -msgid "Yarsun" -msgstr "" - -#. name for yrw -msgid "Yarawata" -msgstr "" - -#. name for ysc -msgid "Yassic" -msgstr "" - -#. name for ysd -msgid "Samatao" -msgstr "" - -#. name for ysl -msgid "Yugoslavian Sign Language" -msgstr "" - -#. name for ysn -msgid "Sani" -msgstr "" - -#. name for yso -msgid "Nisi (China)" -msgstr "" - -#. name for ysp -msgid "Lolopo; Southern" -msgstr "" - -#. name for ysr -msgid "Yupik; Sirenik" -msgstr "" - -#. name for yss -msgid "Yessan-Mayo" -msgstr "" - -#. name for ysy -msgid "Sanie" -msgstr "" - -#. name for yta -msgid "Talu" -msgstr "" - -#. name for ytl -msgid "Tanglang" -msgstr "" - -#. name for ytp -msgid "Thopho" -msgstr "" - -#. name for ytw -msgid "Yout Wam" -msgstr "" - -#. name for yua -msgid "Maya; Yucatec" -msgstr "" - -#. name for yub -msgid "Yugambal" -msgstr "" - -#. name for yuc -msgid "Yuchi" -msgstr "" - -#. name for yud -msgid "Arabic; Judeo-Tripolitanian" -msgstr "" - -#. name for yue -msgid "Chinese; Yue" -msgstr "" - -#. name for yuf -msgid "Havasupai-Walapai-Yavapai" -msgstr "" - -#. name for yug -msgid "Yug" -msgstr "" - -#. name for yui -msgid "Yurutí" -msgstr "" - -#. name for yuj -msgid "Karkar-Yuri" -msgstr "" - -#. name for yuk -msgid "Yuki" -msgstr "" - -#. name for yul -msgid "Yulu" -msgstr "" - -#. name for yum -msgid "Quechan" -msgstr "" - -#. name for yun -msgid "Bena (Nigeria)" -msgstr "" - -#. name for yup -msgid "Yukpa" -msgstr "" - -#. name for yuq -msgid "Yuqui" -msgstr "" - -#. name for yur -msgid "Yurok" -msgstr "" - -#. name for yut -msgid "Yopno" -msgstr "" - -#. name for yuu -msgid "Yugh" -msgstr "" - -#. name for yuw -msgid "Yau (Morobe Province)" -msgstr "" - -#. name for yux -msgid "Yukaghir; Southern" -msgstr "" - -#. name for yuy -msgid "Yugur; East" -msgstr "" - -#. name for yuz -msgid "Yuracare" -msgstr "" - -#. name for yva -msgid "Yawa" -msgstr "" - -#. name for yvt -msgid "Yavitero" -msgstr "" - -#. name for ywa -msgid "Kalou" -msgstr "" - -#. name for ywl -msgid "Lalu; Western" -msgstr "" - -#. name for ywn -msgid "Yawanawa" -msgstr "" - -#. name for ywq -msgid "Yi; Wuding-Luquan" -msgstr "" - -#. name for ywr -msgid "Yawuru" -msgstr "" - -#. name for ywt -msgid "Lalo; Xishanba" -msgstr "" - -#. name for ywu -msgid "Nasu; Wumeng" -msgstr "" - -#. name for yww -msgid "Yawarawarga" -msgstr "" - -#. name for yyu -msgid "Yau (Sandaun Province)" -msgstr "" - -#. name for yyz -msgid "Ayizi" -msgstr "" - -#. name for yzg -msgid "Buyang; E'ma" -msgstr "" - -#. name for yzk -msgid "Zokhuo" -msgstr "" - -#. name for zaa -msgid "Zapotec; Sierra de Juárez" -msgstr "" - -#. name for zab -msgid "Zapotec; San Juan Guelavía" -msgstr "" - -#. name for zac -msgid "Zapotec; Ocotlán" -msgstr "" - -#. name for zad -msgid "Zapotec; Cajonos" -msgstr "" - -#. name for zae -msgid "Zapotec; Yareni" -msgstr "" - -#. name for zaf -msgid "Zapotec; Ayoquesco" -msgstr "" - -#. name for zag -msgid "Zaghawa" -msgstr "" - -#. name for zah -msgid "Zangwal" -msgstr "" - -#. name for zai -msgid "Zapotec; Isthmus" -msgstr "" - -#. name for zaj -msgid "Zaramo" -msgstr "" - -#. name for zak -msgid "Zanaki" -msgstr "" - -#. name for zal -msgid "Zauzou" -msgstr "" - -#. name for zam -msgid "Zapotec; Miahuatlán" -msgstr "" - -#. name for zao -msgid "Zapotec; Ozolotepec" -msgstr "" - -#. name for zap -msgid "Zapotec" -msgstr "" - -#. name for zaq -msgid "Zapotec; Aloápam" -msgstr "" - -#. name for zar -msgid "Zapotec; Rincón" -msgstr "" - -#. name for zas -msgid "Zapotec; Santo Domingo Albarradas" -msgstr "" - -#. name for zat -msgid "Zapotec; Tabaa" -msgstr "" - -#. name for zau -msgid "Zangskari" -msgstr "" - -#. name for zav -msgid "Zapotec; Yatzachi" -msgstr "" - -#. name for zaw -msgid "Zapotec; Mitla" -msgstr "" - -#. name for zax -msgid "Zapotec; Xadani" -msgstr "" - -#. name for zay -msgid "Zayse-Zergulla" -msgstr "" - -#. name for zaz -msgid "Zari" -msgstr "" - -#. name for zbc -msgid "Berawan; Central" -msgstr "" - -#. name for zbe -msgid "Berawan; East" -msgstr "" - -#. name for zbl -msgid "Blissymbols" -msgstr "" - -#. name for zbt -msgid "Batui" -msgstr "" - -#. name for zbw -msgid "Berawan; West" -msgstr "" - -#. name for zca -msgid "Zapotec; Coatecas Altas" -msgstr "" - -#. name for zch -msgid "Zhuang; Central Hongshuihe" -msgstr "" - -#. name for zdj -msgid "Comorian; Ngazidja" -msgstr "" - -#. name for zea -msgid "Zeeuws" -msgstr "" - -#. name for zeg -msgid "Zenag" -msgstr "" - -#. name for zeh -msgid "Zhuang; Eastern Hongshuihe" -msgstr "" - -#. name for zen -msgid "Zenaga" -msgstr "" - -#. name for zga -msgid "Kinga" -msgstr "" - -#. name for zgb -msgid "Zhuang; Guibei" -msgstr "" - -#. name for zgm -msgid "Zhuang; Minz" -msgstr "" - -#. name for zgn -msgid "Zhuang; Guibian" -msgstr "" - -#. name for zgr -msgid "Magori" -msgstr "" - -#. name for zha -msgid "Zhuang" -msgstr "" - -#. name for zhb -msgid "Zhaba" -msgstr "" - -#. name for zhd -msgid "Zhuang; Dai" -msgstr "" - -#. name for zhi -msgid "Zhire" -msgstr "" - -#. name for zhn -msgid "Zhuang; Nong" -msgstr "" - -#. name for zho -msgid "Chinese" -msgstr "" - -#. name for zhw -msgid "Zhoa" -msgstr "" - -#. name for zia -msgid "Zia" -msgstr "" - -#. name for zib -msgid "Zimbabwe Sign Language" -msgstr "" - -#. name for zik -msgid "Zimakani" -msgstr "" - -#. name for zil -msgid "Zialo" -msgstr "" - -#. name for zim -msgid "Mesme" -msgstr "" - -#. name for zin -msgid "Zinza" -msgstr "" - -#. name for zir -msgid "Ziriya" -msgstr "" - -#. name for ziw -msgid "Zigula" -msgstr "" - -#. name for ziz -msgid "Zizilivakan" -msgstr "" - -#. name for zka -msgid "Kaimbulawa" -msgstr "" - -#. name for zkb -msgid "Koibal" -msgstr "" - -#. name for zkg -msgid "Koguryo" -msgstr "" - -#. name for zkh -msgid "Khorezmian" -msgstr "" - -#. name for zkk -msgid "Karankawa" -msgstr "" - -#. name for zko -msgid "Kott" -msgstr "" - -#. name for zkp -msgid "Kaingáng; São Paulo" -msgstr "" - -#. name for zkr -msgid "Zakhring" -msgstr "" - -#. name for zkt -msgid "Kitan" -msgstr "" - -#. name for zku -msgid "Kaurna" -msgstr "" - -#. name for zkv -msgid "Krevinian" -msgstr "" - -#. name for zkz -msgid "Khazar" -msgstr "" - -#. name for zlj -msgid "Zhuang; Liujiang" -msgstr "" - -#. name for zlm -msgid "Malay (individual language)" -msgstr "" - -#. name for zln -msgid "Zhuang; Lianshan" -msgstr "" - -#. name for zlq -msgid "Zhuang; Liuqian" -msgstr "" - -#. name for zma -msgid "Manda (Australia)" -msgstr "" - -#. name for zmb -msgid "Zimba" -msgstr "" - -#. name for zmc -msgid "Margany" -msgstr "" - -#. name for zmd -msgid "Maridan" -msgstr "" - -#. name for zme -msgid "Mangerr" -msgstr "" - -#. name for zmf -msgid "Mfinu" -msgstr "" - -#. name for zmg -msgid "Marti Ke" -msgstr "" - -#. name for zmh -msgid "Makolkol" -msgstr "" - -#. name for zmi -msgid "Negeri Sembilan Malay" -msgstr "" - -#. name for zmj -msgid "Maridjabin" -msgstr "" - -#. name for zmk -msgid "Mandandanyi" -msgstr "" - -#. name for zml -msgid "Madngele" -msgstr "" - -#. name for zmm -msgid "Marimanindji" -msgstr "" - -#. name for zmn -msgid "Mbangwe" -msgstr "" - -#. name for zmo -msgid "Molo" -msgstr "" - -#. name for zmp -msgid "Mpuono" -msgstr "" - -#. name for zmq -msgid "Mituku" -msgstr "" - -#. name for zmr -msgid "Maranunggu" -msgstr "" - -#. name for zms -msgid "Mbesa" -msgstr "" - -#. name for zmt -msgid "Maringarr" -msgstr "" - -#. name for zmu -msgid "Muruwari" -msgstr "" - -#. name for zmv -msgid "Mbariman-Gudhinma" -msgstr "" - -#. name for zmw -msgid "Mbo (Democratic Republic of Congo)" -msgstr "" - -#. name for zmx -msgid "Bomitaba" -msgstr "" - -#. name for zmy -msgid "Mariyedi" -msgstr "" - -#. name for zmz -msgid "Mbandja" -msgstr "" - -#. name for zna -msgid "Zan Gula" -msgstr "" - -#. name for zne -msgid "Zande (individual language)" -msgstr "" - -#. name for zng -msgid "Mang" -msgstr "" - -#. name for znk -msgid "Manangkari" -msgstr "" - -#. name for zns -msgid "Mangas" -msgstr "" - -#. name for zoc -msgid "Zoque; Copainalá" -msgstr "" - -#. name for zoh -msgid "Zoque; Chimalapa" -msgstr "" - -#. name for zom -msgid "Zou" -msgstr "" - -#. name for zoo -msgid "Zapotec; Asunción Mixtepec" -msgstr "" - -#. name for zoq -msgid "Zoque; Tabasco" -msgstr "" - -#. name for zor -msgid "Zoque; Rayón" -msgstr "" - -#. name for zos -msgid "Zoque; Francisco León" -msgstr "" - -#. name for zpa -msgid "Zapotec; Lachiguiri" -msgstr "" - -#. name for zpb -msgid "Zapotec; Yautepec" -msgstr "" - -#. name for zpc -msgid "Zapotec; Choapan" -msgstr "" - -#. name for zpd -msgid "Zapotec; Southeastern Ixtlán" -msgstr "" - -#. name for zpe -msgid "Zapotec; Petapa" -msgstr "" - -#. name for zpf -msgid "Zapotec; San Pedro Quiatoni" -msgstr "" - -#. name for zpg -msgid "Zapotec; Guevea De Humboldt" -msgstr "" - -#. name for zph -msgid "Zapotec; Totomachapan" -msgstr "" - -#. name for zpi -msgid "Zapotec; Santa María Quiegolani" -msgstr "" - -#. name for zpj -msgid "Zapotec; Quiavicuzas" -msgstr "" - -#. name for zpk -msgid "Zapotec; Tlacolulita" -msgstr "" - -#. name for zpl -msgid "Zapotec; Lachixío" -msgstr "" - -#. name for zpm -msgid "Zapotec; Mixtepec" -msgstr "" - -#. name for zpn -msgid "Zapotec; Santa Inés Yatzechi" -msgstr "" - -#. name for zpo -msgid "Zapotec; Amatlán" -msgstr "" - -#. name for zpp -msgid "Zapotec; El Alto" -msgstr "" - -#. name for zpq -msgid "Zapotec; Zoogocho" -msgstr "" - -#. name for zpr -msgid "Zapotec; Santiago Xanica" -msgstr "" - -#. name for zps -msgid "Zapotec; Coatlán" -msgstr "" - -#. name for zpt -msgid "Zapotec; San Vicente Coatlán" -msgstr "" - -#. name for zpu -msgid "Zapotec; Yalálag" -msgstr "" - -#. name for zpv -msgid "Zapotec; Chichicapan" -msgstr "" - -#. name for zpw -msgid "Zapotec; Zaniza" -msgstr "" - -#. name for zpx -msgid "Zapotec; San Baltazar Loxicha" -msgstr "" - -#. name for zpy -msgid "Zapotec; Mazaltepec" -msgstr "" - -#. name for zpz -msgid "Zapotec; Texmelucan" -msgstr "" - -#. name for zqe -msgid "Zhuang; Qiubei" -msgstr "" - -#. name for zra -msgid "Kara (Korea)" -msgstr "" - -#. name for zrg -msgid "Mirgan" -msgstr "" - -#. name for zrn -msgid "Zerenkel" -msgstr "" - -#. name for zro -msgid "Záparo" -msgstr "" - -#. name for zrp -msgid "Zarphatic" -msgstr "" - -#. name for zrs -msgid "Mairasi" -msgstr "" - -#. name for zsa -msgid "Sarasira" -msgstr "" - -#. name for zsk -msgid "Kaskean" -msgstr "" - -#. name for zsl -msgid "Zambian Sign Language" -msgstr "" - -#. name for zsm -msgid "Malay; Standard" -msgstr "" - -#. name for zsr -msgid "Zapotec; Southern Rincon" -msgstr "" - -#. name for zsu -msgid "Sukurum" -msgstr "" - -#. name for zte -msgid "Zapotec; Elotepec" -msgstr "" - -#. name for ztg -msgid "Zapotec; Xanaguía" -msgstr "" - -#. name for ztl -msgid "Zapotec; Lapaguía-Guivini" -msgstr "" - -#. name for ztm -msgid "Zapotec; San Agustín Mixtepec" -msgstr "" - -#. name for ztn -msgid "Zapotec; Santa Catarina Albarradas" -msgstr "" - -#. name for ztp -msgid "Zapotec; Loxicha" -msgstr "" - -#. name for ztq -msgid "Zapotec; Quioquitani-Quierí" -msgstr "" - -#. name for zts -msgid "Zapotec; Tilquiapan" -msgstr "" - -#. name for ztt -msgid "Zapotec; Tejalapan" -msgstr "" - -#. name for ztu -msgid "Zapotec; Güilá" -msgstr "" - -#. name for ztx -msgid "Zapotec; Zaachila" -msgstr "" - -#. name for zty -msgid "Zapotec; Yatee" -msgstr "" - -#. name for zua -msgid "Zeem" -msgstr "" - -#. name for zuh -msgid "Tokano" -msgstr "" - -#. name for zul -msgid "Zulu" -msgstr "" - -#. name for zum -msgid "Kumzari" -msgstr "" - -#. name for zun -msgid "Zuni" -msgstr "" - -#. name for zuy -msgid "Zumaya" -msgstr "" - -#. name for zwa -msgid "Zay" -msgstr "" - -#. name for zxx -msgid "No linguistic content" -msgstr "" - -#. name for zyb -msgid "Zhuang; Yongbei" -msgstr "" - -#. name for zyg -msgid "Zhuang; Yang" -msgstr "" - -#. name for zyj -msgid "Zhuang; Youjiang" -msgstr "" - -#. name for zyn -msgid "Zhuang; Yongnan" -msgstr "" - -#. name for zyp -msgid "Zyphe" -msgstr "" - -#. name for zza -msgid "Zaza" -msgstr "" - -#. name for zzj -msgid "Zhuang; Zuojiang" -msgstr "" diff --git a/translations/iso_639/iso_639_3.xml b/translations/iso_639/iso_639_3.xml deleted file mode 100644 index 6b94a3850b..0000000000 --- a/translations/iso_639/iso_639_3.xml +++ /dev/null @@ -1,39178 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<!-- -This file gives a list of all languages in the ISO 639-3 -standard, and is used to provide translations via gettext - -Copyright (C) 2005 Alastair McKinstry <mckinstry@computer.org> -Copyright (C) 2008 Tobias Quathamer <toddy@debian.org> - - This file is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This file is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this file; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Source: <http://www.sil.org/iso639-3/> ---> - -<!DOCTYPE iso_639_3_entries [ - <!ELEMENT iso_639_3_entries (iso_639_3_entry+)> - <!ELEMENT iso_639_3_entry EMPTY> - <!ATTLIST iso_639_3_entry - id CDATA #REQUIRED - name CDATA #REQUIRED - type CDATA #REQUIRED - scope CDATA #REQUIRED - part1_code CDATA #IMPLIED - part2_code CDATA #IMPLIED - > -]> - -<iso_639_3_entries> - <iso_639_3_entry - id="aaa" - scope="I" - type="L" - name="Ghotuo" /> - <iso_639_3_entry - id="aab" - scope="I" - type="L" - name="Alumu-Tesu" /> - <iso_639_3_entry - id="aac" - scope="I" - type="L" - name="Ari" /> - <iso_639_3_entry - id="aad" - scope="I" - type="L" - name="Amal" /> - <iso_639_3_entry - id="aae" - scope="I" - type="L" - name="Albanian; Arbëreshë" /> - <iso_639_3_entry - id="aaf" - scope="I" - type="L" - name="Aranadan" /> - <iso_639_3_entry - id="aag" - scope="I" - type="L" - name="Ambrak" /> - <iso_639_3_entry - id="aah" - scope="I" - type="L" - name="Arapesh; Abu'" /> - <iso_639_3_entry - id="aai" - scope="I" - type="L" - name="Arifama-Miniafia" /> - <iso_639_3_entry - id="aak" - scope="I" - type="L" - name="Ankave" /> - <iso_639_3_entry - id="aal" - scope="I" - type="L" - name="Afade" /> - <iso_639_3_entry - id="aam" - scope="I" - type="L" - name="Aramanik" /> - <iso_639_3_entry - id="aan" - scope="I" - type="L" - name="Anambé" /> - <iso_639_3_entry - id="aao" - scope="I" - type="L" - name="Arabic; Algerian Saharan" /> - <iso_639_3_entry - id="aap" - scope="I" - type="L" - name="Arára; Pará" /> - <iso_639_3_entry - id="aaq" - scope="I" - type="E" - name="Abnaki; Eastern" /> - <iso_639_3_entry - id="aar" - part1_code="aa" - part2_code="aar" - scope="I" - type="L" - name="Afar" /> - <iso_639_3_entry - id="aas" - scope="I" - type="L" - name="Aasáx" /> - <iso_639_3_entry - id="aat" - scope="I" - type="L" - name="Albanian; Arvanitika" /> - <iso_639_3_entry - id="aau" - scope="I" - type="L" - name="Abau" /> - <iso_639_3_entry - id="aaw" - scope="I" - type="L" - name="Solong" /> - <iso_639_3_entry - id="aax" - scope="I" - type="L" - name="Mandobo Atas" /> - <iso_639_3_entry - id="aaz" - scope="I" - type="L" - name="Amarasi" /> - <iso_639_3_entry - id="aba" - scope="I" - type="L" - name="Abé" /> - <iso_639_3_entry - id="abb" - scope="I" - type="L" - name="Bankon" /> - <iso_639_3_entry - id="abc" - scope="I" - type="L" - name="Ayta; Ambala" /> - <iso_639_3_entry - id="abd" - scope="I" - type="L" - name="Manide" /> - <iso_639_3_entry - id="abe" - scope="I" - type="E" - name="Abnaki; Western" /> - <iso_639_3_entry - id="abf" - scope="I" - type="L" - name="Abai Sungai" /> - <iso_639_3_entry - id="abg" - scope="I" - type="L" - name="Abaga" /> - <iso_639_3_entry - id="abh" - scope="I" - type="L" - name="Arabic; Tajiki" /> - <iso_639_3_entry - id="abi" - scope="I" - type="L" - name="Abidji" /> - <iso_639_3_entry - id="abj" - scope="I" - type="E" - name="Aka-Bea" /> - <iso_639_3_entry - id="abk" - part1_code="ab" - part2_code="abk" - scope="I" - type="L" - name="Abkhazian" /> - <iso_639_3_entry - id="abl" - scope="I" - type="L" - name="Lampung Nyo" /> - <iso_639_3_entry - id="abm" - scope="I" - type="L" - name="Abanyom" /> - <iso_639_3_entry - id="abn" - scope="I" - type="L" - name="Abua" /> - <iso_639_3_entry - id="abo" - scope="I" - type="L" - name="Abon" /> - <iso_639_3_entry - id="abp" - scope="I" - type="L" - name="Ayta; Abellen" /> - <iso_639_3_entry - id="abq" - scope="I" - type="L" - name="Abaza" /> - <iso_639_3_entry - id="abr" - scope="I" - type="L" - name="Abron" /> - <iso_639_3_entry - id="abs" - scope="I" - type="L" - name="Malay; Ambonese" /> - <iso_639_3_entry - id="abt" - scope="I" - type="L" - name="Ambulas" /> - <iso_639_3_entry - id="abu" - scope="I" - type="L" - name="Abure" /> - <iso_639_3_entry - id="abv" - scope="I" - type="L" - name="Arabic; Baharna" /> - <iso_639_3_entry - id="abw" - scope="I" - type="L" - name="Pal" /> - <iso_639_3_entry - id="abx" - scope="I" - type="L" - name="Inabaknon" /> - <iso_639_3_entry - id="aby" - scope="I" - type="L" - name="Aneme Wake" /> - <iso_639_3_entry - id="abz" - scope="I" - type="L" - name="Abui" /> - <iso_639_3_entry - id="aca" - scope="I" - type="L" - name="Achagua" /> - <iso_639_3_entry - id="acb" - scope="I" - type="L" - name="Áncá" /> - <iso_639_3_entry - id="acd" - scope="I" - type="L" - name="Gikyode" /> - <iso_639_3_entry - id="ace" - part2_code="ace" - scope="I" - type="L" - name="Achinese" /> - <iso_639_3_entry - id="acf" - scope="I" - type="L" - name="Creole French; Saint Lucian" /> - <iso_639_3_entry - id="ach" - part2_code="ach" - scope="I" - type="L" - name="Acoli" /> - <iso_639_3_entry - id="aci" - scope="I" - type="E" - name="Aka-Cari" /> - <iso_639_3_entry - id="ack" - scope="I" - type="E" - name="Aka-Kora" /> - <iso_639_3_entry - id="acl" - scope="I" - type="E" - name="Akar-Bale" /> - <iso_639_3_entry - id="acm" - scope="I" - type="L" - name="Arabic; Mesopotamian" /> - <iso_639_3_entry - id="acn" - scope="I" - type="L" - name="Achang" /> - <iso_639_3_entry - id="acp" - scope="I" - type="L" - name="Acipa; Eastern" /> - <iso_639_3_entry - id="acq" - scope="I" - type="L" - name="Arabic; Ta'izzi-Adeni" /> - <iso_639_3_entry - id="acr" - scope="I" - type="L" - name="Achi" /> - <iso_639_3_entry - id="acs" - scope="I" - type="E" - name="Acroá" /> - <iso_639_3_entry - id="act" - scope="I" - type="L" - name="Achterhoeks" /> - <iso_639_3_entry - id="acu" - scope="I" - type="L" - name="Achuar-Shiwiar" /> - <iso_639_3_entry - id="acv" - scope="I" - type="L" - name="Achumawi" /> - <iso_639_3_entry - id="acw" - scope="I" - type="L" - name="Arabic; Hijazi" /> - <iso_639_3_entry - id="acx" - scope="I" - type="L" - name="Arabic; Omani" /> - <iso_639_3_entry - id="acy" - scope="I" - type="L" - name="Arabic; Cypriot" /> - <iso_639_3_entry - id="acz" - scope="I" - type="L" - name="Acheron" /> - <iso_639_3_entry - id="ada" - part2_code="ada" - scope="I" - type="L" - name="Adangme" /> - <iso_639_3_entry - id="adb" - scope="I" - type="L" - name="Adabe" /> - <iso_639_3_entry - id="add" - scope="I" - type="L" - name="Dzodinka" /> - <iso_639_3_entry - id="ade" - scope="I" - type="L" - name="Adele" /> - <iso_639_3_entry - id="adf" - scope="I" - type="L" - name="Arabic; Dhofari" /> - <iso_639_3_entry - id="adg" - scope="I" - type="L" - name="Andegerebinha" /> - <iso_639_3_entry - id="adh" - scope="I" - type="L" - name="Adhola" /> - <iso_639_3_entry - id="adi" - scope="I" - type="L" - name="Adi" /> - <iso_639_3_entry - id="adj" - scope="I" - type="L" - name="Adioukrou" /> - <iso_639_3_entry - id="adl" - scope="I" - type="L" - name="Galo" /> - <iso_639_3_entry - id="adn" - scope="I" - type="L" - name="Adang" /> - <iso_639_3_entry - id="ado" - scope="I" - type="L" - name="Abu" /> - <iso_639_3_entry - id="adp" - scope="I" - type="L" - name="Adap" /> - <iso_639_3_entry - id="adq" - scope="I" - type="L" - name="Adangbe" /> - <iso_639_3_entry - id="adr" - scope="I" - type="L" - name="Adonara" /> - <iso_639_3_entry - id="ads" - scope="I" - type="L" - name="Adamorobe Sign Language" /> - <iso_639_3_entry - id="adt" - scope="I" - type="L" - name="Adnyamathanha" /> - <iso_639_3_entry - id="adu" - scope="I" - type="L" - name="Aduge" /> - <iso_639_3_entry - id="adw" - scope="I" - type="L" - name="Amundava" /> - <iso_639_3_entry - id="adx" - scope="I" - type="L" - name="Tibetan; Amdo" /> - <iso_639_3_entry - id="ady" - part2_code="ady" - scope="I" - type="L" - name="Adyghe" /> - <iso_639_3_entry - id="adz" - scope="I" - type="L" - name="Adzera" /> - <iso_639_3_entry - id="aea" - scope="I" - type="E" - name="Areba" /> - <iso_639_3_entry - id="aeb" - scope="I" - type="L" - name="Arabic; Tunisian" /> - <iso_639_3_entry - id="aec" - scope="I" - type="L" - name="Arabic; Saidi" /> - <iso_639_3_entry - id="aed" - scope="I" - type="L" - name="Argentine Sign Language" /> - <iso_639_3_entry - id="aee" - scope="I" - type="L" - name="Pashayi; Northeast" /> - <iso_639_3_entry - id="aek" - scope="I" - type="L" - name="Haeke" /> - <iso_639_3_entry - id="ael" - scope="I" - type="L" - name="Ambele" /> - <iso_639_3_entry - id="aem" - scope="I" - type="L" - name="Arem" /> - <iso_639_3_entry - id="aen" - scope="I" - type="L" - name="Armenian Sign Language" /> - <iso_639_3_entry - id="aeq" - scope="I" - type="L" - name="Aer" /> - <iso_639_3_entry - id="aer" - scope="I" - type="L" - name="Arrernte; Eastern" /> - <iso_639_3_entry - id="aes" - scope="I" - type="E" - name="Alsea" /> - <iso_639_3_entry - id="aeu" - scope="I" - type="L" - name="Akeu" /> - <iso_639_3_entry - id="aew" - scope="I" - type="L" - name="Ambakich" /> - <iso_639_3_entry - id="aey" - scope="I" - type="L" - name="Amele" /> - <iso_639_3_entry - id="aez" - scope="I" - type="L" - name="Aeka" /> - <iso_639_3_entry - id="afb" - scope="I" - type="L" - name="Arabic; Gulf" /> - <iso_639_3_entry - id="afd" - scope="I" - type="L" - name="Andai" /> - <iso_639_3_entry - id="afe" - scope="I" - type="L" - name="Putukwam" /> - <iso_639_3_entry - id="afg" - scope="I" - type="L" - name="Afghan Sign Language" /> - <iso_639_3_entry - id="afh" - part2_code="afh" - scope="I" - type="C" - name="Afrihili" /> - <iso_639_3_entry - id="afi" - scope="I" - type="L" - name="Akrukay" /> - <iso_639_3_entry - id="afk" - scope="I" - type="L" - name="Nanubae" /> - <iso_639_3_entry - id="afn" - scope="I" - type="L" - name="Defaka" /> - <iso_639_3_entry - id="afo" - scope="I" - type="L" - name="Eloyi" /> - <iso_639_3_entry - id="afp" - scope="I" - type="L" - name="Tapei" /> - <iso_639_3_entry - id="afr" - part1_code="af" - part2_code="afr" - scope="I" - type="L" - name="Afrikaans" /> - <iso_639_3_entry - id="afs" - scope="I" - type="L" - name="Creole; Afro-Seminole" /> - <iso_639_3_entry - id="aft" - scope="I" - type="L" - name="Afitti" /> - <iso_639_3_entry - id="afu" - scope="I" - type="L" - name="Awutu" /> - <iso_639_3_entry - id="afz" - scope="I" - type="L" - name="Obokuitai" /> - <iso_639_3_entry - id="aga" - scope="I" - type="E" - name="Aguano" /> - <iso_639_3_entry - id="agb" - scope="I" - type="L" - name="Legbo" /> - <iso_639_3_entry - id="agc" - scope="I" - type="L" - name="Agatu" /> - <iso_639_3_entry - id="agd" - scope="I" - type="L" - name="Agarabi" /> - <iso_639_3_entry - id="age" - scope="I" - type="L" - name="Angal" /> - <iso_639_3_entry - id="agf" - scope="I" - type="L" - name="Arguni" /> - <iso_639_3_entry - id="agg" - scope="I" - type="L" - name="Angor" /> - <iso_639_3_entry - id="agh" - scope="I" - type="L" - name="Ngelima" /> - <iso_639_3_entry - id="agi" - scope="I" - type="L" - name="Agariya" /> - <iso_639_3_entry - id="agj" - scope="I" - type="L" - name="Argobba" /> - <iso_639_3_entry - id="agk" - scope="I" - type="L" - name="Agta; Isarog" /> - <iso_639_3_entry - id="agl" - scope="I" - type="L" - name="Fembe" /> - <iso_639_3_entry - id="agm" - scope="I" - type="L" - name="Angaataha" /> - <iso_639_3_entry - id="agn" - scope="I" - type="L" - name="Agutaynen" /> - <iso_639_3_entry - id="ago" - scope="I" - type="L" - name="Tainae" /> - <iso_639_3_entry - id="agq" - scope="I" - type="L" - name="Aghem" /> - <iso_639_3_entry - id="agr" - scope="I" - type="L" - name="Aguaruna" /> - <iso_639_3_entry - id="ags" - scope="I" - type="L" - name="Esimbi" /> - <iso_639_3_entry - id="agt" - scope="I" - type="L" - name="Agta; Central Cagayan" /> - <iso_639_3_entry - id="agu" - scope="I" - type="L" - name="Aguacateco" /> - <iso_639_3_entry - id="agv" - scope="I" - type="L" - name="Dumagat; Remontado" /> - <iso_639_3_entry - id="agw" - scope="I" - type="L" - name="Kahua" /> - <iso_639_3_entry - id="agx" - scope="I" - type="L" - name="Aghul" /> - <iso_639_3_entry - id="agy" - scope="I" - type="L" - name="Alta; Southern" /> - <iso_639_3_entry - id="agz" - scope="I" - type="L" - name="Agta; Mt. Iriga" /> - <iso_639_3_entry - id="aha" - scope="I" - type="L" - name="Ahanta" /> - <iso_639_3_entry - id="ahb" - scope="I" - type="L" - name="Axamb" /> - <iso_639_3_entry - id="ahg" - scope="I" - type="L" - name="Qimant" /> - <iso_639_3_entry - id="ahh" - scope="I" - type="L" - name="Aghu" /> - <iso_639_3_entry - id="ahi" - scope="I" - type="L" - name="Aizi; Tiagbamrin" /> - <iso_639_3_entry - id="ahk" - scope="I" - type="L" - name="Akha" /> - <iso_639_3_entry - id="ahl" - scope="I" - type="L" - name="Igo" /> - <iso_639_3_entry - id="ahm" - scope="I" - type="L" - name="Aizi; Mobumrin" /> - <iso_639_3_entry - id="ahn" - scope="I" - type="L" - name="Àhàn" /> - <iso_639_3_entry - id="aho" - scope="I" - type="E" - name="Ahom" /> - <iso_639_3_entry - id="ahp" - scope="I" - type="L" - name="Aizi; Aproumu" /> - <iso_639_3_entry - id="ahr" - scope="I" - type="L" - name="Ahirani" /> - <iso_639_3_entry - id="ahs" - scope="I" - type="L" - name="Ashe" /> - <iso_639_3_entry - id="aht" - scope="I" - type="L" - name="Ahtena" /> - <iso_639_3_entry - id="aia" - scope="I" - type="L" - name="Arosi" /> - <iso_639_3_entry - id="aib" - scope="I" - type="L" - name="Ainu (China)" /> - <iso_639_3_entry - id="aic" - scope="I" - type="L" - name="Ainbai" /> - <iso_639_3_entry - id="aid" - scope="I" - type="E" - name="Alngith" /> - <iso_639_3_entry - id="aie" - scope="I" - type="L" - name="Amara" /> - <iso_639_3_entry - id="aif" - scope="I" - type="L" - name="Agi" /> - <iso_639_3_entry - id="aig" - scope="I" - type="L" - name="Creole English; Antigua and Barbuda" /> - <iso_639_3_entry - id="aih" - scope="I" - type="L" - name="Ai-Cham" /> - <iso_639_3_entry - id="aii" - scope="I" - type="L" - name="Neo-Aramaic; Assyrian" /> - <iso_639_3_entry - id="aij" - scope="I" - type="L" - name="Lishanid Noshan" /> - <iso_639_3_entry - id="aik" - scope="I" - type="L" - name="Ake" /> - <iso_639_3_entry - id="ail" - scope="I" - type="L" - name="Aimele" /> - <iso_639_3_entry - id="aim" - scope="I" - type="L" - name="Aimol" /> - <iso_639_3_entry - id="ain" - part2_code="ain" - scope="I" - type="L" - name="Ainu (Japan)" /> - <iso_639_3_entry - id="aio" - scope="I" - type="L" - name="Aiton" /> - <iso_639_3_entry - id="aip" - scope="I" - type="L" - name="Burumakok" /> - <iso_639_3_entry - id="aiq" - scope="I" - type="L" - name="Aimaq" /> - <iso_639_3_entry - id="air" - scope="I" - type="L" - name="Airoran" /> - <iso_639_3_entry - id="ais" - scope="I" - type="L" - name="Amis; Nataoran" /> - <iso_639_3_entry - id="ait" - scope="I" - type="E" - name="Arikem" /> - <iso_639_3_entry - id="aiw" - scope="I" - type="L" - name="Aari" /> - <iso_639_3_entry - id="aix" - scope="I" - type="L" - name="Aighon" /> - <iso_639_3_entry - id="aiy" - scope="I" - type="L" - name="Ali" /> - <iso_639_3_entry - id="aja" - scope="I" - type="L" - name="Aja (Sudan)" /> - <iso_639_3_entry - id="ajg" - scope="I" - type="L" - name="Aja (Benin)" /> - <iso_639_3_entry - id="aji" - scope="I" - type="L" - name="Ajië" /> - <iso_639_3_entry - id="ajp" - scope="I" - type="L" - name="Arabic; South Levantine" /> - <iso_639_3_entry - id="ajt" - scope="I" - type="L" - name="Arabic; Judeo-Tunisian" /> - <iso_639_3_entry - id="aju" - scope="I" - type="L" - name="Arabic; Judeo-Moroccan" /> - <iso_639_3_entry - id="ajw" - scope="I" - type="E" - name="Ajawa" /> - <iso_639_3_entry - id="ajz" - scope="I" - type="L" - name="Karbi; Amri" /> - <iso_639_3_entry - id="aka" - part1_code="ak" - part2_code="aka" - scope="M" - type="L" - name="Akan" /> - <iso_639_3_entry - id="akb" - scope="I" - type="L" - name="Batak Angkola" /> - <iso_639_3_entry - id="akc" - scope="I" - type="L" - name="Mpur" /> - <iso_639_3_entry - id="akd" - scope="I" - type="L" - name="Ukpet-Ehom" /> - <iso_639_3_entry - id="ake" - scope="I" - type="L" - name="Akawaio" /> - <iso_639_3_entry - id="akf" - scope="I" - type="L" - name="Akpa" /> - <iso_639_3_entry - id="akg" - scope="I" - type="L" - name="Anakalangu" /> - <iso_639_3_entry - id="akh" - scope="I" - type="L" - name="Angal Heneng" /> - <iso_639_3_entry - id="aki" - scope="I" - type="L" - name="Aiome" /> - <iso_639_3_entry - id="akj" - scope="I" - type="E" - name="Aka-Jeru" /> - <iso_639_3_entry - id="akk" - part2_code="akk" - scope="I" - type="A" - name="Akkadian" /> - <iso_639_3_entry - id="akl" - scope="I" - type="L" - name="Aklanon" /> - <iso_639_3_entry - id="akm" - scope="I" - type="E" - name="Aka-Bo" /> - <iso_639_3_entry - id="ako" - scope="I" - type="L" - name="Akurio" /> - <iso_639_3_entry - id="akp" - scope="I" - type="L" - name="Siwu" /> - <iso_639_3_entry - id="akq" - scope="I" - type="L" - name="Ak" /> - <iso_639_3_entry - id="akr" - scope="I" - type="L" - name="Araki" /> - <iso_639_3_entry - id="aks" - scope="I" - type="L" - name="Akaselem" /> - <iso_639_3_entry - id="akt" - scope="I" - type="L" - name="Akolet" /> - <iso_639_3_entry - id="aku" - scope="I" - type="L" - name="Akum" /> - <iso_639_3_entry - id="akv" - scope="I" - type="L" - name="Akhvakh" /> - <iso_639_3_entry - id="akw" - scope="I" - type="L" - name="Akwa" /> - <iso_639_3_entry - id="akx" - scope="I" - type="E" - name="Aka-Kede" /> - <iso_639_3_entry - id="aky" - scope="I" - type="E" - name="Aka-Kol" /> - <iso_639_3_entry - id="akz" - scope="I" - type="L" - name="Alabama" /> - <iso_639_3_entry - id="ala" - scope="I" - type="L" - name="Alago" /> - <iso_639_3_entry - id="alc" - scope="I" - type="L" - name="Qawasqar" /> - <iso_639_3_entry - id="ald" - scope="I" - type="L" - name="Alladian" /> - <iso_639_3_entry - id="ale" - part2_code="ale" - scope="I" - type="L" - name="Aleut" /> - <iso_639_3_entry - id="alf" - scope="I" - type="L" - name="Alege" /> - <iso_639_3_entry - id="alh" - scope="I" - type="L" - name="Alawa" /> - <iso_639_3_entry - id="ali" - scope="I" - type="L" - name="Amaimon" /> - <iso_639_3_entry - id="alj" - scope="I" - type="L" - name="Alangan" /> - <iso_639_3_entry - id="alk" - scope="I" - type="L" - name="Alak" /> - <iso_639_3_entry - id="all" - scope="I" - type="L" - name="Allar" /> - <iso_639_3_entry - id="alm" - scope="I" - type="L" - name="Amblong" /> - <iso_639_3_entry - id="aln" - scope="I" - type="L" - name="Albanian; Gheg" /> - <iso_639_3_entry - id="alo" - scope="I" - type="L" - name="Larike-Wakasihu" /> - <iso_639_3_entry - id="alp" - scope="I" - type="L" - name="Alune" /> - <iso_639_3_entry - id="alq" - scope="I" - type="L" - name="Algonquin" /> - <iso_639_3_entry - id="alr" - scope="I" - type="L" - name="Alutor" /> - <iso_639_3_entry - id="als" - scope="I" - type="L" - name="Albanian; Tosk" /> - <iso_639_3_entry - id="alt" - part2_code="alt" - scope="I" - type="L" - name="Altai; Southern" /> - <iso_639_3_entry - id="alu" - scope="I" - type="L" - name="'Are'are" /> - <iso_639_3_entry - id="alw" - scope="I" - type="L" - name="Alaba-K’abeena" /> - <iso_639_3_entry - id="alx" - scope="I" - type="L" - name="Amol" /> - <iso_639_3_entry - id="aly" - scope="I" - type="L" - name="Alyawarr" /> - <iso_639_3_entry - id="alz" - scope="I" - type="L" - name="Alur" /> - <iso_639_3_entry - id="ama" - scope="I" - type="E" - name="Amanayé" /> - <iso_639_3_entry - id="amb" - scope="I" - type="L" - name="Ambo" /> - <iso_639_3_entry - id="amc" - scope="I" - type="L" - name="Amahuaca" /> - <iso_639_3_entry - id="ame" - scope="I" - type="L" - name="Yanesha'" /> - <iso_639_3_entry - id="amf" - scope="I" - type="L" - name="Hamer-Banna" /> - <iso_639_3_entry - id="amg" - scope="I" - type="L" - name="Amarag" /> - <iso_639_3_entry - id="amh" - part1_code="am" - part2_code="amh" - scope="I" - type="L" - name="Amharic" /> - <iso_639_3_entry - id="ami" - scope="I" - type="L" - name="Amis" /> - <iso_639_3_entry - id="amj" - scope="I" - type="L" - name="Amdang" /> - <iso_639_3_entry - id="amk" - scope="I" - type="L" - name="Ambai" /> - <iso_639_3_entry - id="aml" - scope="I" - type="L" - name="War-Jaintia" /> - <iso_639_3_entry - id="amm" - scope="I" - type="L" - name="Ama (Papua New Guinea)" /> - <iso_639_3_entry - id="amn" - scope="I" - type="L" - name="Amanab" /> - <iso_639_3_entry - id="amo" - scope="I" - type="L" - name="Amo" /> - <iso_639_3_entry - id="amp" - scope="I" - type="L" - name="Alamblak" /> - <iso_639_3_entry - id="amq" - scope="I" - type="L" - name="Amahai" /> - <iso_639_3_entry - id="amr" - scope="I" - type="L" - name="Amarakaeri" /> - <iso_639_3_entry - id="ams" - scope="I" - type="L" - name="Amami-Oshima; Southern" /> - <iso_639_3_entry - id="amt" - scope="I" - type="L" - name="Amto" /> - <iso_639_3_entry - id="amu" - scope="I" - type="L" - name="Amuzgo; Guerrero" /> - <iso_639_3_entry - id="amv" - scope="I" - type="L" - name="Ambelau" /> - <iso_639_3_entry - id="amw" - scope="I" - type="L" - name="Neo-Aramaic; Western" /> - <iso_639_3_entry - id="amx" - scope="I" - type="L" - name="Anmatyerre" /> - <iso_639_3_entry - id="amy" - scope="I" - type="L" - name="Ami" /> - <iso_639_3_entry - id="amz" - scope="I" - type="E" - name="Atampaya" /> - <iso_639_3_entry - id="ana" - scope="I" - type="E" - name="Andaqui" /> - <iso_639_3_entry - id="anb" - scope="I" - type="E" - name="Andoa" /> - <iso_639_3_entry - id="anc" - scope="I" - type="L" - name="Ngas" /> - <iso_639_3_entry - id="and" - scope="I" - type="L" - name="Ansus" /> - <iso_639_3_entry - id="ane" - scope="I" - type="L" - name="Xârâcùù" /> - <iso_639_3_entry - id="anf" - scope="I" - type="L" - name="Animere" /> - <iso_639_3_entry - id="ang" - part2_code="ang" - scope="I" - type="H" - name="English; Old (ca. 450-1100)" /> - <iso_639_3_entry - id="anh" - scope="I" - type="L" - name="Nend" /> - <iso_639_3_entry - id="ani" - scope="I" - type="L" - name="Andi" /> - <iso_639_3_entry - id="anj" - scope="I" - type="L" - name="Anor" /> - <iso_639_3_entry - id="ank" - scope="I" - type="L" - name="Goemai" /> - <iso_639_3_entry - id="anl" - scope="I" - type="L" - name="Anu" /> - <iso_639_3_entry - id="anm" - scope="I" - type="L" - name="Anal" /> - <iso_639_3_entry - id="ann" - scope="I" - type="L" - name="Obolo" /> - <iso_639_3_entry - id="ano" - scope="I" - type="L" - name="Andoque" /> - <iso_639_3_entry - id="anp" - part2_code="anp" - scope="I" - type="L" - name="Angika" /> - <iso_639_3_entry - id="anq" - scope="I" - type="L" - name="Jarawa (India)" /> - <iso_639_3_entry - id="anr" - scope="I" - type="L" - name="Andh" /> - <iso_639_3_entry - id="ans" - scope="I" - type="E" - name="Anserma" /> - <iso_639_3_entry - id="ant" - scope="I" - type="L" - name="Antakarinya" /> - <iso_639_3_entry - id="anu" - scope="I" - type="L" - name="Anuak" /> - <iso_639_3_entry - id="anv" - scope="I" - type="L" - name="Denya" /> - <iso_639_3_entry - id="anw" - scope="I" - type="L" - name="Anaang" /> - <iso_639_3_entry - id="anx" - scope="I" - type="L" - name="Andra-Hus" /> - <iso_639_3_entry - id="any" - scope="I" - type="L" - name="Anyin" /> - <iso_639_3_entry - id="anz" - scope="I" - type="L" - name="Anem" /> - <iso_639_3_entry - id="aoa" - scope="I" - type="L" - name="Angolar" /> - <iso_639_3_entry - id="aob" - scope="I" - type="L" - name="Abom" /> - <iso_639_3_entry - id="aoc" - scope="I" - type="L" - name="Pemon" /> - <iso_639_3_entry - id="aod" - scope="I" - type="L" - name="Andarum" /> - <iso_639_3_entry - id="aoe" - scope="I" - type="L" - name="Angal Enen" /> - <iso_639_3_entry - id="aof" - scope="I" - type="L" - name="Bragat" /> - <iso_639_3_entry - id="aog" - scope="I" - type="L" - name="Angoram" /> - <iso_639_3_entry - id="aoh" - scope="I" - type="E" - name="Arma" /> - <iso_639_3_entry - id="aoi" - scope="I" - type="L" - name="Anindilyakwa" /> - <iso_639_3_entry - id="aoj" - scope="I" - type="L" - name="Mufian" /> - <iso_639_3_entry - id="aok" - scope="I" - type="L" - name="Arhö" /> - <iso_639_3_entry - id="aol" - scope="I" - type="L" - name="Alor" /> - <iso_639_3_entry - id="aom" - scope="I" - type="L" - name="Ömie" /> - <iso_639_3_entry - id="aon" - scope="I" - type="L" - name="Arapesh; Bumbita" /> - <iso_639_3_entry - id="aor" - scope="I" - type="E" - name="Aore" /> - <iso_639_3_entry - id="aos" - scope="I" - type="L" - name="Taikat" /> - <iso_639_3_entry - id="aot" - scope="I" - type="L" - name="A'tong" /> - <iso_639_3_entry - id="aox" - scope="I" - type="L" - name="Atorada" /> - <iso_639_3_entry - id="aoz" - scope="I" - type="L" - name="Uab Meto" /> - <iso_639_3_entry - id="apb" - scope="I" - type="L" - name="Sa'a" /> - <iso_639_3_entry - id="apc" - scope="I" - type="L" - name="Arabic; North Levantine" /> - <iso_639_3_entry - id="apd" - scope="I" - type="L" - name="Arabic; Sudanese" /> - <iso_639_3_entry - id="ape" - scope="I" - type="L" - name="Bukiyip" /> - <iso_639_3_entry - id="apf" - scope="I" - type="L" - name="Agta; Pahanan" /> - <iso_639_3_entry - id="apg" - scope="I" - type="L" - name="Ampanang" /> - <iso_639_3_entry - id="aph" - scope="I" - type="L" - name="Athpariya" /> - <iso_639_3_entry - id="api" - scope="I" - type="L" - name="Apiaká" /> - <iso_639_3_entry - id="apj" - scope="I" - type="L" - name="Apache; Jicarilla" /> - <iso_639_3_entry - id="apk" - scope="I" - type="L" - name="Apache; Kiowa" /> - <iso_639_3_entry - id="apl" - scope="I" - type="L" - name="Apache; Lipan" /> - <iso_639_3_entry - id="apm" - scope="I" - type="L" - name="Apache; Mescalero-Chiricahua" /> - <iso_639_3_entry - id="apn" - scope="I" - type="L" - name="Apinayé" /> - <iso_639_3_entry - id="apo" - scope="I" - type="L" - name="Ambul" /> - <iso_639_3_entry - id="app" - scope="I" - type="L" - name="Apma" /> - <iso_639_3_entry - id="apq" - scope="I" - type="L" - name="A-Pucikwar" /> - <iso_639_3_entry - id="apr" - scope="I" - type="L" - name="Arop-Lokep" /> - <iso_639_3_entry - id="aps" - scope="I" - type="L" - name="Arop-Sissano" /> - <iso_639_3_entry - id="apt" - scope="I" - type="L" - name="Apatani" /> - <iso_639_3_entry - id="apu" - scope="I" - type="L" - name="Apurinã" /> - <iso_639_3_entry - id="apv" - scope="I" - type="E" - name="Alapmunte" /> - <iso_639_3_entry - id="apw" - scope="I" - type="L" - name="Apache; Western" /> - <iso_639_3_entry - id="apx" - scope="I" - type="L" - name="Aputai" /> - <iso_639_3_entry - id="apy" - scope="I" - type="L" - name="Apalaí" /> - <iso_639_3_entry - id="apz" - scope="I" - type="L" - name="Safeyoka" /> - <iso_639_3_entry - id="aqc" - scope="I" - type="L" - name="Archi" /> - <iso_639_3_entry - id="aqd" - scope="I" - type="L" - name="Dogon; Ampari" /> - <iso_639_3_entry - id="aqg" - scope="I" - type="L" - name="Arigidi" /> - <iso_639_3_entry - id="aqm" - scope="I" - type="L" - name="Atohwaim" /> - <iso_639_3_entry - id="aqn" - scope="I" - type="L" - name="Alta; Northern" /> - <iso_639_3_entry - id="aqp" - scope="I" - type="E" - name="Atakapa" /> - <iso_639_3_entry - id="aqr" - scope="I" - type="L" - name="Arhâ" /> - <iso_639_3_entry - id="aqz" - scope="I" - type="L" - name="Akuntsu" /> - <iso_639_3_entry - id="ara" - part1_code="ar" - part2_code="ara" - scope="M" - type="L" - name="Arabic" /> - <iso_639_3_entry - id="arb" - scope="I" - type="L" - name="Arabic; Standard" /> - <iso_639_3_entry - id="arc" - part2_code="arc" - scope="I" - type="A" - name="Aramaic; Official (700-300 BCE)" /> - <iso_639_3_entry - id="ard" - scope="I" - type="E" - name="Arabana" /> - <iso_639_3_entry - id="are" - scope="I" - type="L" - name="Arrarnta; Western" /> - <iso_639_3_entry - id="arg" - part1_code="an" - part2_code="arg" - scope="I" - type="L" - name="Aragonese" /> - <iso_639_3_entry - id="arh" - scope="I" - type="L" - name="Arhuaco" /> - <iso_639_3_entry - id="ari" - scope="I" - type="L" - name="Arikara" /> - <iso_639_3_entry - id="arj" - scope="I" - type="E" - name="Arapaso" /> - <iso_639_3_entry - id="ark" - scope="I" - type="L" - name="Arikapú" /> - <iso_639_3_entry - id="arl" - scope="I" - type="L" - name="Arabela" /> - <iso_639_3_entry - id="arn" - part2_code="arn" - scope="I" - type="L" - name="Mapudungun" /> - <iso_639_3_entry - id="aro" - scope="I" - type="L" - name="Araona" /> - <iso_639_3_entry - id="arp" - part2_code="arp" - scope="I" - type="L" - name="Arapaho" /> - <iso_639_3_entry - id="arq" - scope="I" - type="L" - name="Arabic; Algerian" /> - <iso_639_3_entry - id="arr" - scope="I" - type="L" - name="Karo (Brazil)" /> - <iso_639_3_entry - id="ars" - scope="I" - type="L" - name="Arabic; Najdi" /> - <iso_639_3_entry - id="aru" - scope="I" - type="E" - name="Aruá (Amazonas State)" /> - <iso_639_3_entry - id="arv" - scope="I" - type="L" - name="Arbore" /> - <iso_639_3_entry - id="arw" - part2_code="arw" - scope="I" - type="L" - name="Arawak" /> - <iso_639_3_entry - id="arx" - scope="I" - type="L" - name="Aruá (Rodonia State)" /> - <iso_639_3_entry - id="ary" - scope="I" - type="L" - name="Arabic; Moroccan" /> - <iso_639_3_entry - id="arz" - scope="I" - type="L" - name="Arabic; Egyptian" /> - <iso_639_3_entry - id="asa" - scope="I" - type="L" - name="Asu (Tanzania)" /> - <iso_639_3_entry - id="asb" - scope="I" - type="L" - name="Assiniboine" /> - <iso_639_3_entry - id="asc" - scope="I" - type="L" - name="Asmat; Casuarina Coast" /> - <iso_639_3_entry - id="asd" - scope="I" - type="L" - name="Asas" /> - <iso_639_3_entry - id="ase" - scope="I" - type="L" - name="American Sign Language" /> - <iso_639_3_entry - id="asf" - scope="I" - type="L" - name="Australian Sign Language" /> - <iso_639_3_entry - id="asg" - scope="I" - type="L" - name="Cishingini" /> - <iso_639_3_entry - id="ash" - scope="I" - type="E" - name="Abishira" /> - <iso_639_3_entry - id="asi" - scope="I" - type="L" - name="Buruwai" /> - <iso_639_3_entry - id="asj" - scope="I" - type="L" - name="Nsari" /> - <iso_639_3_entry - id="ask" - scope="I" - type="L" - name="Ashkun" /> - <iso_639_3_entry - id="asl" - scope="I" - type="L" - name="Asilulu" /> - <iso_639_3_entry - id="asm" - part1_code="as" - part2_code="asm" - scope="I" - type="L" - name="Assamese" /> - <iso_639_3_entry - id="asn" - scope="I" - type="L" - name="Asuriní; Xingú" /> - <iso_639_3_entry - id="aso" - scope="I" - type="L" - name="Dano" /> - <iso_639_3_entry - id="asp" - scope="I" - type="L" - name="Algerian Sign Language" /> - <iso_639_3_entry - id="asq" - scope="I" - type="L" - name="Austrian Sign Language" /> - <iso_639_3_entry - id="asr" - scope="I" - type="L" - name="Asuri" /> - <iso_639_3_entry - id="ass" - scope="I" - type="L" - name="Ipulo" /> - <iso_639_3_entry - id="ast" - part2_code="ast" - scope="I" - type="L" - name="Asturian" /> - <iso_639_3_entry - id="asu" - scope="I" - type="L" - name="Asurini; Tocantins" /> - <iso_639_3_entry - id="asv" - scope="I" - type="L" - name="Asoa" /> - <iso_639_3_entry - id="asw" - scope="I" - type="L" - name="Australian Aborigines Sign Language" /> - <iso_639_3_entry - id="asx" - scope="I" - type="L" - name="Muratayak" /> - <iso_639_3_entry - id="asy" - scope="I" - type="L" - name="Asmat; Yaosakor" /> - <iso_639_3_entry - id="asz" - scope="I" - type="L" - name="As" /> - <iso_639_3_entry - id="ata" - scope="I" - type="L" - name="Pele-Ata" /> - <iso_639_3_entry - id="atb" - scope="I" - type="L" - name="Zaiwa" /> - <iso_639_3_entry - id="atc" - scope="I" - type="E" - name="Atsahuaca" /> - <iso_639_3_entry - id="atd" - scope="I" - type="L" - name="Manobo; Ata" /> - <iso_639_3_entry - id="ate" - scope="I" - type="L" - name="Atemble" /> - <iso_639_3_entry - id="atg" - scope="I" - type="L" - name="Ivbie North-Okpela-Arhe" /> - <iso_639_3_entry - id="ati" - scope="I" - type="L" - name="Attié" /> - <iso_639_3_entry - id="atj" - scope="I" - type="L" - name="Atikamekw" /> - <iso_639_3_entry - id="atk" - scope="I" - type="L" - name="Ati" /> - <iso_639_3_entry - id="atl" - scope="I" - type="L" - name="Agta; Mt. Iraya" /> - <iso_639_3_entry - id="atm" - scope="I" - type="L" - name="Ata" /> - <iso_639_3_entry - id="atn" - scope="I" - type="L" - name="Ashtiani" /> - <iso_639_3_entry - id="ato" - scope="I" - type="L" - name="Atong" /> - <iso_639_3_entry - id="atp" - scope="I" - type="L" - name="Atta; Pudtol" /> - <iso_639_3_entry - id="atq" - scope="I" - type="L" - name="Aralle-Tabulahan" /> - <iso_639_3_entry - id="atr" - scope="I" - type="L" - name="Waimiri-Atroari" /> - <iso_639_3_entry - id="ats" - scope="I" - type="L" - name="Gros Ventre" /> - <iso_639_3_entry - id="att" - scope="I" - type="L" - name="Atta; Pamplona" /> - <iso_639_3_entry - id="atu" - scope="I" - type="L" - name="Reel" /> - <iso_639_3_entry - id="atv" - scope="I" - type="L" - name="Altai; Northern" /> - <iso_639_3_entry - id="atw" - scope="I" - type="L" - name="Atsugewi" /> - <iso_639_3_entry - id="atx" - scope="I" - type="L" - name="Arutani" /> - <iso_639_3_entry - id="aty" - scope="I" - type="L" - name="Aneityum" /> - <iso_639_3_entry - id="atz" - scope="I" - type="L" - name="Arta" /> - <iso_639_3_entry - id="aua" - scope="I" - type="L" - name="Asumboa" /> - <iso_639_3_entry - id="aub" - scope="I" - type="L" - name="Alugu" /> - <iso_639_3_entry - id="auc" - scope="I" - type="L" - name="Waorani" /> - <iso_639_3_entry - id="aud" - scope="I" - type="L" - name="Anuta" /> - <iso_639_3_entry - id="aue" - scope="I" - type="L" - name="=/Kx'au//'ein" /> - <iso_639_3_entry - id="aug" - scope="I" - type="L" - name="Aguna" /> - <iso_639_3_entry - id="auh" - scope="I" - type="L" - name="Aushi" /> - <iso_639_3_entry - id="aui" - scope="I" - type="L" - name="Anuki" /> - <iso_639_3_entry - id="auj" - scope="I" - type="L" - name="Awjilah" /> - <iso_639_3_entry - id="auk" - scope="I" - type="L" - name="Heyo" /> - <iso_639_3_entry - id="aul" - scope="I" - type="L" - name="Aulua" /> - <iso_639_3_entry - id="aum" - scope="I" - type="L" - name="Asu (Nigeria)" /> - <iso_639_3_entry - id="aun" - scope="I" - type="L" - name="One; Molmo" /> - <iso_639_3_entry - id="auo" - scope="I" - type="E" - name="Auyokawa" /> - <iso_639_3_entry - id="aup" - scope="I" - type="L" - name="Makayam" /> - <iso_639_3_entry - id="auq" - scope="I" - type="L" - name="Anus" /> - <iso_639_3_entry - id="aur" - scope="I" - type="L" - name="Aruek" /> - <iso_639_3_entry - id="aut" - scope="I" - type="L" - name="Austral" /> - <iso_639_3_entry - id="auu" - scope="I" - type="L" - name="Auye" /> - <iso_639_3_entry - id="auw" - scope="I" - type="L" - name="Awyi" /> - <iso_639_3_entry - id="aux" - scope="I" - type="E" - name="Aurá" /> - <iso_639_3_entry - id="auy" - scope="I" - type="L" - name="Awiyaana" /> - <iso_639_3_entry - id="auz" - scope="I" - type="L" - name="Arabic; Uzbeki" /> - <iso_639_3_entry - id="ava" - part1_code="av" - part2_code="ava" - scope="I" - type="L" - name="Avaric" /> - <iso_639_3_entry - id="avb" - scope="I" - type="L" - name="Avau" /> - <iso_639_3_entry - id="avd" - scope="I" - type="L" - name="Alviri-Vidari" /> - <iso_639_3_entry - id="ave" - part1_code="ae" - part2_code="ave" - scope="I" - type="A" - name="Avestan" /> - <iso_639_3_entry - id="avi" - scope="I" - type="L" - name="Avikam" /> - <iso_639_3_entry - id="avk" - scope="I" - type="C" - name="Kotava" /> - <iso_639_3_entry - id="avl" - scope="I" - type="L" - name="Arabic; Eastern Egyptian Bedawi" /> - <iso_639_3_entry - id="avn" - scope="I" - type="L" - name="Avatime" /> - <iso_639_3_entry - id="avo" - scope="I" - type="E" - name="Agavotaguerra" /> - <iso_639_3_entry - id="avs" - scope="I" - type="E" - name="Aushiri" /> - <iso_639_3_entry - id="avt" - scope="I" - type="L" - name="Au" /> - <iso_639_3_entry - id="avu" - scope="I" - type="L" - name="Avokaya" /> - <iso_639_3_entry - id="avv" - scope="I" - type="L" - name="Avá-Canoeiro" /> - <iso_639_3_entry - id="awa" - part2_code="awa" - scope="I" - type="L" - name="Awadhi" /> - <iso_639_3_entry - id="awb" - scope="I" - type="L" - name="Awa (Papua New Guinea)" /> - <iso_639_3_entry - id="awc" - scope="I" - type="L" - name="Cicipu" /> - <iso_639_3_entry - id="awe" - scope="I" - type="L" - name="Awetí" /> - <iso_639_3_entry - id="awh" - scope="I" - type="L" - name="Awbono" /> - <iso_639_3_entry - id="awi" - scope="I" - type="L" - name="Aekyom" /> - <iso_639_3_entry - id="awk" - scope="I" - type="E" - name="Awabakal" /> - <iso_639_3_entry - id="awm" - scope="I" - type="L" - name="Arawum" /> - <iso_639_3_entry - id="awn" - scope="I" - type="L" - name="Awngi" /> - <iso_639_3_entry - id="awo" - scope="I" - type="L" - name="Awak" /> - <iso_639_3_entry - id="awr" - scope="I" - type="L" - name="Awera" /> - <iso_639_3_entry - id="aws" - scope="I" - type="L" - name="Awyu; South" /> - <iso_639_3_entry - id="awt" - scope="I" - type="L" - name="Araweté" /> - <iso_639_3_entry - id="awu" - scope="I" - type="L" - name="Awyu; Central" /> - <iso_639_3_entry - id="awv" - scope="I" - type="L" - name="Awyu; Jair" /> - <iso_639_3_entry - id="aww" - scope="I" - type="L" - name="Awun" /> - <iso_639_3_entry - id="awx" - scope="I" - type="L" - name="Awara" /> - <iso_639_3_entry - id="awy" - scope="I" - type="L" - name="Awyu; Edera" /> - <iso_639_3_entry - id="axb" - scope="I" - type="E" - name="Abipon" /> - <iso_639_3_entry - id="axg" - scope="I" - type="E" - name="Arára; Mato Grosso" /> - <iso_639_3_entry - id="axk" - scope="I" - type="L" - name="Yaka (Central African Republic)" /> - <iso_639_3_entry - id="axm" - scope="I" - type="H" - name="Armenian; Middle" /> - <iso_639_3_entry - id="axx" - scope="I" - type="L" - name="Xaragure" /> - <iso_639_3_entry - id="aya" - scope="I" - type="L" - name="Awar" /> - <iso_639_3_entry - id="ayb" - scope="I" - type="L" - name="Gbe; Ayizo" /> - <iso_639_3_entry - id="ayc" - scope="I" - type="L" - name="Aymara; Southern" /> - <iso_639_3_entry - id="ayd" - scope="I" - type="E" - name="Ayabadhu" /> - <iso_639_3_entry - id="aye" - scope="I" - type="L" - name="Ayere" /> - <iso_639_3_entry - id="ayg" - scope="I" - type="L" - name="Ginyanga" /> - <iso_639_3_entry - id="ayh" - scope="I" - type="L" - name="Arabic; Hadrami" /> - <iso_639_3_entry - id="ayi" - scope="I" - type="L" - name="Leyigha" /> - <iso_639_3_entry - id="ayk" - scope="I" - type="L" - name="Akuku" /> - <iso_639_3_entry - id="ayl" - scope="I" - type="L" - name="Arabic; Libyan" /> - <iso_639_3_entry - id="aym" - part1_code="ay" - part2_code="aym" - scope="M" - type="L" - name="Aymara" /> - <iso_639_3_entry - id="ayn" - scope="I" - type="L" - name="Arabic; Sanaani" /> - <iso_639_3_entry - id="ayo" - scope="I" - type="L" - name="Ayoreo" /> - <iso_639_3_entry - id="ayp" - scope="I" - type="L" - name="Arabic; North Mesopotamian" /> - <iso_639_3_entry - id="ayq" - scope="I" - type="L" - name="Ayi (Papua New Guinea)" /> - <iso_639_3_entry - id="ayr" - scope="I" - type="L" - name="Aymara; Central" /> - <iso_639_3_entry - id="ays" - scope="I" - type="L" - name="Ayta; Sorsogon" /> - <iso_639_3_entry - id="ayt" - scope="I" - type="L" - name="Ayta; Magbukun" /> - <iso_639_3_entry - id="ayu" - scope="I" - type="L" - name="Ayu" /> - <iso_639_3_entry - id="ayy" - scope="I" - type="E" - name="Ayta; Tayabas" /> - <iso_639_3_entry - id="ayz" - scope="I" - type="L" - name="Mai Brat" /> - <iso_639_3_entry - id="aza" - scope="I" - type="L" - name="Azha" /> - <iso_639_3_entry - id="azb" - scope="I" - type="L" - name="Azerbaijani; South" /> - <iso_639_3_entry - id="aze" - part1_code="az" - part2_code="aze" - scope="M" - type="L" - name="Azerbaijani" /> - <iso_639_3_entry - id="azg" - scope="I" - type="L" - name="Amuzgo; San Pedro Amuzgos" /> - <iso_639_3_entry - id="azj" - scope="I" - type="L" - name="Azerbaijani; North" /> - <iso_639_3_entry - id="azm" - scope="I" - type="L" - name="Amuzgo; Ipalapa" /> - <iso_639_3_entry - id="azo" - scope="I" - type="L" - name="Awing" /> - <iso_639_3_entry - id="azt" - scope="I" - type="L" - name="Atta; Faire" /> - <iso_639_3_entry - id="azz" - scope="I" - type="L" - name="Nahuatl; Highland Puebla" /> - <iso_639_3_entry - id="baa" - scope="I" - type="L" - name="Babatana" /> - <iso_639_3_entry - id="bab" - scope="I" - type="L" - name="Bainouk-Gunyuño" /> - <iso_639_3_entry - id="bac" - scope="I" - type="L" - name="Badui" /> - <iso_639_3_entry - id="bae" - scope="I" - type="E" - name="Baré" /> - <iso_639_3_entry - id="baf" - scope="I" - type="L" - name="Nubaca" /> - <iso_639_3_entry - id="bag" - scope="I" - type="L" - name="Tuki" /> - <iso_639_3_entry - id="bah" - scope="I" - type="L" - name="Creole English; Bahamas" /> - <iso_639_3_entry - id="baj" - scope="I" - type="L" - name="Barakai" /> - <iso_639_3_entry - id="bak" - part1_code="ba" - part2_code="bak" - scope="I" - type="L" - name="Bashkir" /> - <iso_639_3_entry - id="bal" - part2_code="bal" - scope="M" - type="L" - name="Baluchi" /> - <iso_639_3_entry - id="bam" - part1_code="bm" - part2_code="bam" - scope="I" - type="L" - name="Bambara" /> - <iso_639_3_entry - id="ban" - part2_code="ban" - scope="I" - type="L" - name="Balinese" /> - <iso_639_3_entry - id="bao" - scope="I" - type="L" - name="Waimaha" /> - <iso_639_3_entry - id="bap" - scope="I" - type="L" - name="Bantawa" /> - <iso_639_3_entry - id="bar" - scope="I" - type="L" - name="Bavarian" /> - <iso_639_3_entry - id="bas" - part2_code="bas" - scope="I" - type="L" - name="Basa (Cameroon)" /> - <iso_639_3_entry - id="bau" - scope="I" - type="L" - name="Bada (Nigeria)" /> - <iso_639_3_entry - id="bav" - scope="I" - type="L" - name="Vengo" /> - <iso_639_3_entry - id="baw" - scope="I" - type="L" - name="Bambili-Bambui" /> - <iso_639_3_entry - id="bax" - scope="I" - type="L" - name="Bamun" /> - <iso_639_3_entry - id="bay" - scope="I" - type="L" - name="Batuley" /> - <iso_639_3_entry - id="baz" - scope="I" - type="L" - name="Tunen" /> - <iso_639_3_entry - id="bba" - scope="I" - type="L" - name="Baatonum" /> - <iso_639_3_entry - id="bbb" - scope="I" - type="L" - name="Barai" /> - <iso_639_3_entry - id="bbc" - scope="I" - type="L" - name="Batak Toba" /> - <iso_639_3_entry - id="bbd" - scope="I" - type="L" - name="Bau" /> - <iso_639_3_entry - id="bbe" - scope="I" - type="L" - name="Bangba" /> - <iso_639_3_entry - id="bbf" - scope="I" - type="L" - name="Baibai" /> - <iso_639_3_entry - id="bbg" - scope="I" - type="L" - name="Barama" /> - <iso_639_3_entry - id="bbh" - scope="I" - type="L" - name="Bugan" /> - <iso_639_3_entry - id="bbi" - scope="I" - type="L" - name="Barombi" /> - <iso_639_3_entry - id="bbj" - scope="I" - type="L" - name="Ghomálá'" /> - <iso_639_3_entry - id="bbk" - scope="I" - type="L" - name="Babanki" /> - <iso_639_3_entry - id="bbl" - scope="I" - type="L" - name="Bats" /> - <iso_639_3_entry - id="bbm" - scope="I" - type="L" - name="Babango" /> - <iso_639_3_entry - id="bbn" - scope="I" - type="L" - name="Uneapa" /> - <iso_639_3_entry - id="bbo" - scope="I" - type="L" - name="Bobo Madaré; Northern" /> - <iso_639_3_entry - id="bbp" - scope="I" - type="L" - name="Banda; West Central" /> - <iso_639_3_entry - id="bbq" - scope="I" - type="L" - name="Bamali" /> - <iso_639_3_entry - id="bbr" - scope="I" - type="L" - name="Girawa" /> - <iso_639_3_entry - id="bbs" - scope="I" - type="L" - name="Bakpinka" /> - <iso_639_3_entry - id="bbt" - scope="I" - type="L" - name="Mburku" /> - <iso_639_3_entry - id="bbu" - scope="I" - type="L" - name="Kulung (Nigeria)" /> - <iso_639_3_entry - id="bbv" - scope="I" - type="L" - name="Karnai" /> - <iso_639_3_entry - id="bbw" - scope="I" - type="L" - name="Baba" /> - <iso_639_3_entry - id="bbx" - scope="I" - type="L" - name="Bubia" /> - <iso_639_3_entry - id="bby" - scope="I" - type="L" - name="Befang" /> - <iso_639_3_entry - id="bbz" - scope="I" - type="L" - name="Creole Arabic; Babalia" /> - <iso_639_3_entry - id="bca" - scope="I" - type="L" - name="Bai; Central" /> - <iso_639_3_entry - id="bcb" - scope="I" - type="L" - name="Bainouk-Samik" /> - <iso_639_3_entry - id="bcc" - scope="I" - type="L" - name="Balochi; Southern" /> - <iso_639_3_entry - id="bcd" - scope="I" - type="L" - name="Babar; North" /> - <iso_639_3_entry - id="bce" - scope="I" - type="L" - name="Bamenyam" /> - <iso_639_3_entry - id="bcf" - scope="I" - type="L" - name="Bamu" /> - <iso_639_3_entry - id="bcg" - scope="I" - type="L" - name="Baga Binari" /> - <iso_639_3_entry - id="bch" - scope="I" - type="L" - name="Bariai" /> - <iso_639_3_entry - id="bci" - scope="I" - type="L" - name="Baoulé" /> - <iso_639_3_entry - id="bcj" - scope="I" - type="L" - name="Bardi" /> - <iso_639_3_entry - id="bck" - scope="I" - type="L" - name="Bunaba" /> - <iso_639_3_entry - id="bcl" - scope="I" - type="L" - name="Bicolano; Central" /> - <iso_639_3_entry - id="bcm" - scope="I" - type="L" - name="Bannoni" /> - <iso_639_3_entry - id="bcn" - scope="I" - type="L" - name="Bali (Nigeria)" /> - <iso_639_3_entry - id="bco" - scope="I" - type="L" - name="Kaluli" /> - <iso_639_3_entry - id="bcp" - scope="I" - type="L" - name="Bali (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="bcq" - scope="I" - type="L" - name="Bench" /> - <iso_639_3_entry - id="bcr" - scope="I" - type="L" - name="Babine" /> - <iso_639_3_entry - id="bcs" - scope="I" - type="L" - name="Kohumono" /> - <iso_639_3_entry - id="bct" - scope="I" - type="L" - name="Bendi" /> - <iso_639_3_entry - id="bcu" - scope="I" - type="L" - name="Awad Bing" /> - <iso_639_3_entry - id="bcv" - scope="I" - type="L" - name="Shoo-Minda-Nye" /> - <iso_639_3_entry - id="bcw" - scope="I" - type="L" - name="Bana" /> - <iso_639_3_entry - id="bcy" - scope="I" - type="L" - name="Bacama" /> - <iso_639_3_entry - id="bcz" - scope="I" - type="L" - name="Bainouk-Gunyaamolo" /> - <iso_639_3_entry - id="bda" - scope="I" - type="L" - name="Bayot" /> - <iso_639_3_entry - id="bdb" - scope="I" - type="L" - name="Basap" /> - <iso_639_3_entry - id="bdc" - scope="I" - type="L" - name="Emberá-Baudó" /> - <iso_639_3_entry - id="bdd" - scope="I" - type="L" - name="Bunama" /> - <iso_639_3_entry - id="bde" - scope="I" - type="L" - name="Bade" /> - <iso_639_3_entry - id="bdf" - scope="I" - type="L" - name="Biage" /> - <iso_639_3_entry - id="bdg" - scope="I" - type="L" - name="Bonggi" /> - <iso_639_3_entry - id="bdh" - scope="I" - type="L" - name="Baka (Sudan)" /> - <iso_639_3_entry - id="bdi" - scope="I" - type="L" - name="Burun" /> - <iso_639_3_entry - id="bdj" - scope="I" - type="L" - name="Bai" /> - <iso_639_3_entry - id="bdk" - scope="I" - type="L" - name="Budukh" /> - <iso_639_3_entry - id="bdl" - scope="I" - type="L" - name="Bajau; Indonesian" /> - <iso_639_3_entry - id="bdm" - scope="I" - type="L" - name="Buduma" /> - <iso_639_3_entry - id="bdn" - scope="I" - type="L" - name="Baldemu" /> - <iso_639_3_entry - id="bdo" - scope="I" - type="L" - name="Morom" /> - <iso_639_3_entry - id="bdp" - scope="I" - type="L" - name="Bende" /> - <iso_639_3_entry - id="bdq" - scope="I" - type="L" - name="Bahnar" /> - <iso_639_3_entry - id="bdr" - scope="I" - type="L" - name="Bajau; West Coast" /> - <iso_639_3_entry - id="bds" - scope="I" - type="L" - name="Burunge" /> - <iso_639_3_entry - id="bdt" - scope="I" - type="L" - name="Bokoto" /> - <iso_639_3_entry - id="bdu" - scope="I" - type="L" - name="Oroko" /> - <iso_639_3_entry - id="bdv" - scope="I" - type="L" - name="Bodo Parja" /> - <iso_639_3_entry - id="bdw" - scope="I" - type="L" - name="Baham" /> - <iso_639_3_entry - id="bdx" - scope="I" - type="L" - name="Budong-Budong" /> - <iso_639_3_entry - id="bdy" - scope="I" - type="L" - name="Bandjalang" /> - <iso_639_3_entry - id="bdz" - scope="I" - type="L" - name="Badeshi" /> - <iso_639_3_entry - id="bea" - scope="I" - type="L" - name="Beaver" /> - <iso_639_3_entry - id="beb" - scope="I" - type="L" - name="Bebele" /> - <iso_639_3_entry - id="bec" - scope="I" - type="L" - name="Iceve-Maci" /> - <iso_639_3_entry - id="bed" - scope="I" - type="L" - name="Bedoanas" /> - <iso_639_3_entry - id="bee" - scope="I" - type="L" - name="Byangsi" /> - <iso_639_3_entry - id="bef" - scope="I" - type="L" - name="Benabena" /> - <iso_639_3_entry - id="beg" - scope="I" - type="L" - name="Belait" /> - <iso_639_3_entry - id="beh" - scope="I" - type="L" - name="Biali" /> - <iso_639_3_entry - id="bei" - scope="I" - type="L" - name="Bekati'" /> - <iso_639_3_entry - id="bej" - part2_code="bej" - scope="I" - type="L" - name="Beja" /> - <iso_639_3_entry - id="bek" - scope="I" - type="L" - name="Bebeli" /> - <iso_639_3_entry - id="bel" - part1_code="be" - part2_code="bel" - scope="I" - type="L" - name="Belarusian" /> - <iso_639_3_entry - id="bem" - part2_code="bem" - scope="I" - type="L" - name="Bemba (Zambia)" /> - <iso_639_3_entry - id="ben" - part1_code="bn" - part2_code="ben" - scope="I" - type="L" - name="Bengali" /> - <iso_639_3_entry - id="beo" - scope="I" - type="L" - name="Beami" /> - <iso_639_3_entry - id="bep" - scope="I" - type="L" - name="Besoa" /> - <iso_639_3_entry - id="beq" - scope="I" - type="L" - name="Beembe" /> - <iso_639_3_entry - id="bes" - scope="I" - type="L" - name="Besme" /> - <iso_639_3_entry - id="bet" - scope="I" - type="L" - name="Béte; Guiberoua" /> - <iso_639_3_entry - id="beu" - scope="I" - type="L" - name="Blagar" /> - <iso_639_3_entry - id="bev" - scope="I" - type="L" - name="Bété; Daloa" /> - <iso_639_3_entry - id="bew" - scope="I" - type="L" - name="Betawi" /> - <iso_639_3_entry - id="bex" - scope="I" - type="L" - name="Jur Modo" /> - <iso_639_3_entry - id="bey" - scope="I" - type="L" - name="Beli (Papua New Guinea)" /> - <iso_639_3_entry - id="bez" - scope="I" - type="L" - name="Bena (Tanzania)" /> - <iso_639_3_entry - id="bfa" - scope="I" - type="L" - name="Bari" /> - <iso_639_3_entry - id="bfb" - scope="I" - type="L" - name="Bareli; Pauri" /> - <iso_639_3_entry - id="bfc" - scope="I" - type="L" - name="Bai; Northern" /> - <iso_639_3_entry - id="bfd" - scope="I" - type="L" - name="Bafut" /> - <iso_639_3_entry - id="bfe" - scope="I" - type="L" - name="Betaf" /> - <iso_639_3_entry - id="bff" - scope="I" - type="L" - name="Bofi" /> - <iso_639_3_entry - id="bfg" - scope="I" - type="L" - name="Kayan; Busang" /> - <iso_639_3_entry - id="bfh" - scope="I" - type="L" - name="Blafe" /> - <iso_639_3_entry - id="bfi" - scope="I" - type="L" - name="British Sign Language" /> - <iso_639_3_entry - id="bfj" - scope="I" - type="L" - name="Bafanji" /> - <iso_639_3_entry - id="bfk" - scope="I" - type="L" - name="Ban Khor Sign Language" /> - <iso_639_3_entry - id="bfl" - scope="I" - type="L" - name="Banda-Ndélé" /> - <iso_639_3_entry - id="bfm" - scope="I" - type="L" - name="Mmen" /> - <iso_639_3_entry - id="bfn" - scope="I" - type="L" - name="Bunak" /> - <iso_639_3_entry - id="bfo" - scope="I" - type="L" - name="Birifor; Malba" /> - <iso_639_3_entry - id="bfp" - scope="I" - type="L" - name="Beba" /> - <iso_639_3_entry - id="bfq" - scope="I" - type="L" - name="Badaga" /> - <iso_639_3_entry - id="bfr" - scope="I" - type="L" - name="Bazigar" /> - <iso_639_3_entry - id="bfs" - scope="I" - type="L" - name="Bai; Southern" /> - <iso_639_3_entry - id="bft" - scope="I" - type="L" - name="Balti" /> - <iso_639_3_entry - id="bfu" - scope="I" - type="L" - name="Gahri" /> - <iso_639_3_entry - id="bfw" - scope="I" - type="L" - name="Bondo" /> - <iso_639_3_entry - id="bfx" - scope="I" - type="L" - name="Bantayanon" /> - <iso_639_3_entry - id="bfy" - scope="I" - type="L" - name="Bagheli" /> - <iso_639_3_entry - id="bfz" - scope="I" - type="L" - name="Pahari; Mahasu" /> - <iso_639_3_entry - id="bga" - scope="I" - type="L" - name="Gwamhi-Wuri" /> - <iso_639_3_entry - id="bgb" - scope="I" - type="L" - name="Bobongko" /> - <iso_639_3_entry - id="bgc" - scope="I" - type="L" - name="Haryanvi" /> - <iso_639_3_entry - id="bgd" - scope="I" - type="L" - name="Bareli; Rathwi" /> - <iso_639_3_entry - id="bge" - scope="I" - type="L" - name="Bauria" /> - <iso_639_3_entry - id="bgf" - scope="I" - type="L" - name="Bangandu" /> - <iso_639_3_entry - id="bgg" - scope="I" - type="L" - name="Bugun" /> - <iso_639_3_entry - id="bgi" - scope="I" - type="L" - name="Giangan" /> - <iso_639_3_entry - id="bgj" - scope="I" - type="L" - name="Bangolan" /> - <iso_639_3_entry - id="bgk" - scope="I" - type="L" - name="Bit" /> - <iso_639_3_entry - id="bgl" - scope="I" - type="L" - name="Bo (Laos)" /> - <iso_639_3_entry - id="bgm" - scope="I" - type="L" - name="Baga Mboteni" /> - <iso_639_3_entry - id="bgn" - scope="I" - type="L" - name="Balochi; Western" /> - <iso_639_3_entry - id="bgo" - scope="I" - type="L" - name="Baga Koga" /> - <iso_639_3_entry - id="bgp" - scope="I" - type="L" - name="Balochi; Eastern" /> - <iso_639_3_entry - id="bgq" - scope="I" - type="L" - name="Bagri" /> - <iso_639_3_entry - id="bgr" - scope="I" - type="L" - name="Chin; Bawm" /> - <iso_639_3_entry - id="bgs" - scope="I" - type="L" - name="Tagabawa" /> - <iso_639_3_entry - id="bgt" - scope="I" - type="L" - name="Bughotu" /> - <iso_639_3_entry - id="bgu" - scope="I" - type="L" - name="Mbongno" /> - <iso_639_3_entry - id="bgv" - scope="I" - type="L" - name="Warkay-Bipim" /> - <iso_639_3_entry - id="bgw" - scope="I" - type="L" - name="Bhatri" /> - <iso_639_3_entry - id="bgx" - scope="I" - type="L" - name="Turkish; Balkan Gagauz" /> - <iso_639_3_entry - id="bgy" - scope="I" - type="L" - name="Benggoi" /> - <iso_639_3_entry - id="bgz" - scope="I" - type="L" - name="Banggai" /> - <iso_639_3_entry - id="bha" - scope="I" - type="L" - name="Bharia" /> - <iso_639_3_entry - id="bhb" - scope="I" - type="L" - name="Bhili" /> - <iso_639_3_entry - id="bhc" - scope="I" - type="L" - name="Biga" /> - <iso_639_3_entry - id="bhd" - scope="I" - type="L" - name="Bhadrawahi" /> - <iso_639_3_entry - id="bhe" - scope="I" - type="L" - name="Bhaya" /> - <iso_639_3_entry - id="bhf" - scope="I" - type="L" - name="Odiai" /> - <iso_639_3_entry - id="bhg" - scope="I" - type="L" - name="Binandere" /> - <iso_639_3_entry - id="bhh" - scope="I" - type="L" - name="Bukharic" /> - <iso_639_3_entry - id="bhi" - scope="I" - type="L" - name="Bhilali" /> - <iso_639_3_entry - id="bhj" - scope="I" - type="L" - name="Bahing" /> - <iso_639_3_entry - id="bhl" - scope="I" - type="L" - name="Bimin" /> - <iso_639_3_entry - id="bhm" - scope="I" - type="L" - name="Bathari" /> - <iso_639_3_entry - id="bhn" - scope="I" - type="L" - name="Neo-Aramaic; Bohtan" /> - <iso_639_3_entry - id="bho" - part2_code="bho" - scope="I" - type="L" - name="Bhojpuri" /> - <iso_639_3_entry - id="bhp" - scope="I" - type="L" - name="Bima" /> - <iso_639_3_entry - id="bhq" - scope="I" - type="L" - name="Tukang Besi South" /> - <iso_639_3_entry - id="bhr" - scope="I" - type="L" - name="Malagasy; Bara" /> - <iso_639_3_entry - id="bhs" - scope="I" - type="L" - name="Buwal" /> - <iso_639_3_entry - id="bht" - scope="I" - type="L" - name="Bhattiyali" /> - <iso_639_3_entry - id="bhu" - scope="I" - type="L" - name="Bhunjia" /> - <iso_639_3_entry - id="bhv" - scope="I" - type="L" - name="Bahau" /> - <iso_639_3_entry - id="bhw" - scope="I" - type="L" - name="Biak" /> - <iso_639_3_entry - id="bhx" - scope="I" - type="L" - name="Bhalay" /> - <iso_639_3_entry - id="bhy" - scope="I" - type="L" - name="Bhele" /> - <iso_639_3_entry - id="bhz" - scope="I" - type="L" - name="Bada (Indonesia)" /> - <iso_639_3_entry - id="bia" - scope="I" - type="L" - name="Badimaya" /> - <iso_639_3_entry - id="bib" - scope="I" - type="L" - name="Bissa" /> - <iso_639_3_entry - id="bic" - scope="I" - type="L" - name="Bikaru" /> - <iso_639_3_entry - id="bid" - scope="I" - type="L" - name="Bidiyo" /> - <iso_639_3_entry - id="bie" - scope="I" - type="L" - name="Bepour" /> - <iso_639_3_entry - id="bif" - scope="I" - type="L" - name="Biafada" /> - <iso_639_3_entry - id="big" - scope="I" - type="L" - name="Biangai" /> - <iso_639_3_entry - id="bij" - scope="I" - type="L" - name="Vaghat-Ya-Bijim-Legeri" /> - <iso_639_3_entry - id="bik" - part2_code="bik" - scope="M" - type="L" - name="Bikol" /> - <iso_639_3_entry - id="bil" - scope="I" - type="L" - name="Bile" /> - <iso_639_3_entry - id="bim" - scope="I" - type="L" - name="Bimoba" /> - <iso_639_3_entry - id="bin" - part2_code="bin" - scope="I" - type="L" - name="Bini" /> - <iso_639_3_entry - id="bio" - scope="I" - type="L" - name="Nai" /> - <iso_639_3_entry - id="bip" - scope="I" - type="L" - name="Bila" /> - <iso_639_3_entry - id="biq" - scope="I" - type="L" - name="Bipi" /> - <iso_639_3_entry - id="bir" - scope="I" - type="L" - name="Bisorio" /> - <iso_639_3_entry - id="bis" - part1_code="bi" - part2_code="bis" - scope="I" - type="L" - name="Bislama" /> - <iso_639_3_entry - id="bit" - scope="I" - type="L" - name="Berinomo" /> - <iso_639_3_entry - id="biu" - scope="I" - type="L" - name="Biete" /> - <iso_639_3_entry - id="biv" - scope="I" - type="L" - name="Birifor; Southern" /> - <iso_639_3_entry - id="biw" - scope="I" - type="L" - name="Kol (Cameroon)" /> - <iso_639_3_entry - id="bix" - scope="I" - type="L" - name="Bijori" /> - <iso_639_3_entry - id="biy" - scope="I" - type="L" - name="Birhor" /> - <iso_639_3_entry - id="biz" - scope="I" - type="L" - name="Baloi" /> - <iso_639_3_entry - id="bja" - scope="I" - type="L" - name="Budza" /> - <iso_639_3_entry - id="bjb" - scope="I" - type="E" - name="Banggarla" /> - <iso_639_3_entry - id="bjc" - scope="I" - type="L" - name="Bariji" /> - <iso_639_3_entry - id="bjd" - scope="I" - type="L" - name="Bandjigali" /> - <iso_639_3_entry - id="bje" - scope="I" - type="L" - name="Mien; Biao-Jiao" /> - <iso_639_3_entry - id="bjf" - scope="I" - type="L" - name="Neo-Aramaic; Barzani Jewish" /> - <iso_639_3_entry - id="bjg" - scope="I" - type="L" - name="Bidyogo" /> - <iso_639_3_entry - id="bjh" - scope="I" - type="L" - name="Bahinemo" /> - <iso_639_3_entry - id="bji" - scope="I" - type="L" - name="Burji" /> - <iso_639_3_entry - id="bjj" - scope="I" - type="L" - name="Kanauji" /> - <iso_639_3_entry - id="bjk" - scope="I" - type="L" - name="Barok" /> - <iso_639_3_entry - id="bjl" - scope="I" - type="L" - name="Bulu (Papua New Guinea)" /> - <iso_639_3_entry - id="bjm" - scope="I" - type="L" - name="Bajelani" /> - <iso_639_3_entry - id="bjn" - scope="I" - type="L" - name="Banjar" /> - <iso_639_3_entry - id="bjo" - scope="I" - type="L" - name="Banda; Mid-Southern" /> - <iso_639_3_entry - id="bjr" - scope="I" - type="L" - name="Binumarien" /> - <iso_639_3_entry - id="bjs" - scope="I" - type="L" - name="Bajan" /> - <iso_639_3_entry - id="bjt" - scope="I" - type="L" - name="Balanta-Ganja" /> - <iso_639_3_entry - id="bju" - scope="I" - type="L" - name="Busuu" /> - <iso_639_3_entry - id="bjv" - scope="I" - type="L" - name="Bedjond" /> - <iso_639_3_entry - id="bjw" - scope="I" - type="L" - name="Bakwé" /> - <iso_639_3_entry - id="bjx" - scope="I" - type="L" - name="Itneg; Banao" /> - <iso_639_3_entry - id="bjy" - scope="I" - type="E" - name="Bayali" /> - <iso_639_3_entry - id="bjz" - scope="I" - type="L" - name="Baruga" /> - <iso_639_3_entry - id="bka" - scope="I" - type="L" - name="Kyak" /> - <iso_639_3_entry - id="bkc" - scope="I" - type="L" - name="Baka (Cameroon)" /> - <iso_639_3_entry - id="bkd" - scope="I" - type="L" - name="Binukid" /> - <iso_639_3_entry - id="bkf" - scope="I" - type="L" - name="Beeke" /> - <iso_639_3_entry - id="bkg" - scope="I" - type="L" - name="Buraka" /> - <iso_639_3_entry - id="bkh" - scope="I" - type="L" - name="Bakoko" /> - <iso_639_3_entry - id="bki" - scope="I" - type="L" - name="Baki" /> - <iso_639_3_entry - id="bkj" - scope="I" - type="L" - name="Pande" /> - <iso_639_3_entry - id="bkk" - scope="I" - type="L" - name="Brokskat" /> - <iso_639_3_entry - id="bkl" - scope="I" - type="L" - name="Berik" /> - <iso_639_3_entry - id="bkm" - scope="I" - type="L" - name="Kom (Cameroon)" /> - <iso_639_3_entry - id="bkn" - scope="I" - type="L" - name="Bukitan" /> - <iso_639_3_entry - id="bko" - scope="I" - type="L" - name="Kwa'" /> - <iso_639_3_entry - id="bkp" - scope="I" - type="L" - name="Boko (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="bkq" - scope="I" - type="L" - name="Bakairí" /> - <iso_639_3_entry - id="bkr" - scope="I" - type="L" - name="Bakumpai" /> - <iso_639_3_entry - id="bks" - scope="I" - type="L" - name="Sorsoganon; Northern" /> - <iso_639_3_entry - id="bkt" - scope="I" - type="L" - name="Boloki" /> - <iso_639_3_entry - id="bku" - scope="I" - type="L" - name="Buhid" /> - <iso_639_3_entry - id="bkv" - scope="I" - type="L" - name="Bekwarra" /> - <iso_639_3_entry - id="bkw" - scope="I" - type="L" - name="Bekwel" /> - <iso_639_3_entry - id="bkx" - scope="I" - type="L" - name="Baikeno" /> - <iso_639_3_entry - id="bky" - scope="I" - type="L" - name="Bokyi" /> - <iso_639_3_entry - id="bkz" - scope="I" - type="L" - name="Bungku" /> - <iso_639_3_entry - id="bla" - part2_code="bla" - scope="I" - type="L" - name="Siksika" /> - <iso_639_3_entry - id="blb" - scope="I" - type="L" - name="Bilua" /> - <iso_639_3_entry - id="blc" - scope="I" - type="L" - name="Bella Coola" /> - <iso_639_3_entry - id="bld" - scope="I" - type="L" - name="Bolango" /> - <iso_639_3_entry - id="ble" - scope="I" - type="L" - name="Balanta-Kentohe" /> - <iso_639_3_entry - id="blf" - scope="I" - type="L" - name="Buol" /> - <iso_639_3_entry - id="blg" - scope="I" - type="L" - name="Balau" /> - <iso_639_3_entry - id="blh" - scope="I" - type="L" - name="Kuwaa" /> - <iso_639_3_entry - id="bli" - scope="I" - type="L" - name="Bolia" /> - <iso_639_3_entry - id="blj" - scope="I" - type="L" - name="Bolongan" /> - <iso_639_3_entry - id="blk" - scope="I" - type="L" - name="Karen; Pa'o" /> - <iso_639_3_entry - id="bll" - scope="I" - type="E" - name="Biloxi" /> - <iso_639_3_entry - id="blm" - scope="I" - type="L" - name="Beli (Sudan)" /> - <iso_639_3_entry - id="bln" - scope="I" - type="L" - name="Bicolano; Southern Catanduanes" /> - <iso_639_3_entry - id="blo" - scope="I" - type="L" - name="Anii" /> - <iso_639_3_entry - id="blp" - scope="I" - type="L" - name="Blablanga" /> - <iso_639_3_entry - id="blq" - scope="I" - type="L" - name="Baluan-Pam" /> - <iso_639_3_entry - id="blr" - scope="I" - type="L" - name="Blang" /> - <iso_639_3_entry - id="bls" - scope="I" - type="L" - name="Balaesang" /> - <iso_639_3_entry - id="blt" - scope="I" - type="L" - name="Tai Dam" /> - <iso_639_3_entry - id="blv" - scope="I" - type="L" - name="Bolo" /> - <iso_639_3_entry - id="blw" - scope="I" - type="L" - name="Balangao" /> - <iso_639_3_entry - id="blx" - scope="I" - type="L" - name="Ayta; Mag-Indi" /> - <iso_639_3_entry - id="bly" - scope="I" - type="L" - name="Notre" /> - <iso_639_3_entry - id="blz" - scope="I" - type="L" - name="Balantak" /> - <iso_639_3_entry - id="bma" - scope="I" - type="L" - name="Lame" /> - <iso_639_3_entry - id="bmb" - scope="I" - type="L" - name="Bembe" /> - <iso_639_3_entry - id="bmc" - scope="I" - type="L" - name="Biem" /> - <iso_639_3_entry - id="bmd" - scope="I" - type="L" - name="Manduri; Baga" /> - <iso_639_3_entry - id="bme" - scope="I" - type="L" - name="Limassa" /> - <iso_639_3_entry - id="bmf" - scope="I" - type="L" - name="Bom" /> - <iso_639_3_entry - id="bmg" - scope="I" - type="L" - name="Bamwe" /> - <iso_639_3_entry - id="bmh" - scope="I" - type="L" - name="Kein" /> - <iso_639_3_entry - id="bmi" - scope="I" - type="L" - name="Bagirmi" /> - <iso_639_3_entry - id="bmj" - scope="I" - type="L" - name="Bote-Majhi" /> - <iso_639_3_entry - id="bmk" - scope="I" - type="L" - name="Ghayavi" /> - <iso_639_3_entry - id="bml" - scope="I" - type="L" - name="Bomboli" /> - <iso_639_3_entry - id="bmm" - scope="I" - type="L" - name="Malagasy; Northern Betsimisaraka" /> - <iso_639_3_entry - id="bmn" - scope="I" - type="E" - name="Bina (Papua New Guinea)" /> - <iso_639_3_entry - id="bmo" - scope="I" - type="L" - name="Bambalang" /> - <iso_639_3_entry - id="bmp" - scope="I" - type="L" - name="Bulgebi" /> - <iso_639_3_entry - id="bmq" - scope="I" - type="L" - name="Bomu" /> - <iso_639_3_entry - id="bmr" - scope="I" - type="L" - name="Muinane" /> - <iso_639_3_entry - id="bms" - scope="I" - type="L" - name="Kanuri; Bilma" /> - <iso_639_3_entry - id="bmt" - scope="I" - type="L" - name="Biao Mon" /> - <iso_639_3_entry - id="bmu" - scope="I" - type="L" - name="Somba-Siawari" /> - <iso_639_3_entry - id="bmv" - scope="I" - type="L" - name="Bum" /> - <iso_639_3_entry - id="bmw" - scope="I" - type="L" - name="Bomwali" /> - <iso_639_3_entry - id="bmx" - scope="I" - type="L" - name="Baimak" /> - <iso_639_3_entry - id="bmy" - scope="I" - type="L" - name="Bemba (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="bmz" - scope="I" - type="L" - name="Baramu" /> - <iso_639_3_entry - id="bna" - scope="I" - type="L" - name="Bonerate" /> - <iso_639_3_entry - id="bnb" - scope="I" - type="L" - name="Bookan" /> - <iso_639_3_entry - id="bnc" - scope="M" - type="L" - name="Bontok" /> - <iso_639_3_entry - id="bnd" - scope="I" - type="L" - name="Banda (Indonesia)" /> - <iso_639_3_entry - id="bne" - scope="I" - type="L" - name="Bintauna" /> - <iso_639_3_entry - id="bnf" - scope="I" - type="L" - name="Masiwang" /> - <iso_639_3_entry - id="bng" - scope="I" - type="L" - name="Benga" /> - <iso_639_3_entry - id="bni" - scope="I" - type="L" - name="Bangi" /> - <iso_639_3_entry - id="bnj" - scope="I" - type="L" - name="Tawbuid; Eastern" /> - <iso_639_3_entry - id="bnk" - scope="I" - type="L" - name="Bierebo" /> - <iso_639_3_entry - id="bnl" - scope="I" - type="L" - name="Boon" /> - <iso_639_3_entry - id="bnm" - scope="I" - type="L" - name="Batanga" /> - <iso_639_3_entry - id="bnn" - scope="I" - type="L" - name="Bunun" /> - <iso_639_3_entry - id="bno" - scope="I" - type="L" - name="Bantoanon" /> - <iso_639_3_entry - id="bnp" - scope="I" - type="L" - name="Bola" /> - <iso_639_3_entry - id="bnq" - scope="I" - type="L" - name="Bantik" /> - <iso_639_3_entry - id="bnr" - scope="I" - type="L" - name="Butmas-Tur" /> - <iso_639_3_entry - id="bns" - scope="I" - type="L" - name="Bundeli" /> - <iso_639_3_entry - id="bnu" - scope="I" - type="L" - name="Bentong" /> - <iso_639_3_entry - id="bnv" - scope="I" - type="L" - name="Bonerif" /> - <iso_639_3_entry - id="bnw" - scope="I" - type="L" - name="Bisis" /> - <iso_639_3_entry - id="bnx" - scope="I" - type="L" - name="Bangubangu" /> - <iso_639_3_entry - id="bny" - scope="I" - type="L" - name="Bintulu" /> - <iso_639_3_entry - id="bnz" - scope="I" - type="L" - name="Beezen" /> - <iso_639_3_entry - id="boa" - scope="I" - type="L" - name="Bora" /> - <iso_639_3_entry - id="bob" - scope="I" - type="L" - name="Aweer" /> - <iso_639_3_entry - id="bod" - part1_code="bo" - part2_code="tib" - scope="I" - type="L" - name="Tibetan" /> - <iso_639_3_entry - id="boe" - scope="I" - type="L" - name="Mundabli" /> - <iso_639_3_entry - id="bof" - scope="I" - type="L" - name="Bolon" /> - <iso_639_3_entry - id="bog" - scope="I" - type="L" - name="Bamako Sign Language" /> - <iso_639_3_entry - id="boh" - scope="I" - type="L" - name="Boma" /> - <iso_639_3_entry - id="boi" - scope="I" - type="E" - name="Barbareño" /> - <iso_639_3_entry - id="boj" - scope="I" - type="L" - name="Anjam" /> - <iso_639_3_entry - id="bok" - scope="I" - type="L" - name="Bonjo" /> - <iso_639_3_entry - id="bol" - scope="I" - type="L" - name="Bole" /> - <iso_639_3_entry - id="bom" - scope="I" - type="L" - name="Berom" /> - <iso_639_3_entry - id="bon" - scope="I" - type="L" - name="Bine" /> - <iso_639_3_entry - id="boo" - scope="I" - type="L" - name="Bozo; Tiemacèwè" /> - <iso_639_3_entry - id="bop" - scope="I" - type="L" - name="Bonkiman" /> - <iso_639_3_entry - id="boq" - scope="I" - type="L" - name="Bogaya" /> - <iso_639_3_entry - id="bor" - scope="I" - type="L" - name="Borôro" /> - <iso_639_3_entry - id="bos" - part1_code="bs" - part2_code="bos" - scope="I" - type="L" - name="Bosnian" /> - <iso_639_3_entry - id="bot" - scope="I" - type="L" - name="Bongo" /> - <iso_639_3_entry - id="bou" - scope="I" - type="L" - name="Bondei" /> - <iso_639_3_entry - id="bov" - scope="I" - type="L" - name="Tuwuli" /> - <iso_639_3_entry - id="bow" - scope="I" - type="E" - name="Rema" /> - <iso_639_3_entry - id="box" - scope="I" - type="L" - name="Buamu" /> - <iso_639_3_entry - id="boy" - scope="I" - type="L" - name="Bodo (Central African Republic)" /> - <iso_639_3_entry - id="boz" - scope="I" - type="L" - name="Bozo; Tiéyaxo" /> - <iso_639_3_entry - id="bpa" - scope="I" - type="L" - name="Dakaka" /> - <iso_639_3_entry - id="bpb" - scope="I" - type="E" - name="Barbacoas" /> - <iso_639_3_entry - id="bpd" - scope="I" - type="L" - name="Banda-Banda" /> - <iso_639_3_entry - id="bpg" - scope="I" - type="L" - name="Bonggo" /> - <iso_639_3_entry - id="bph" - scope="I" - type="L" - name="Botlikh" /> - <iso_639_3_entry - id="bpi" - scope="I" - type="L" - name="Bagupi" /> - <iso_639_3_entry - id="bpj" - scope="I" - type="L" - name="Binji" /> - <iso_639_3_entry - id="bpk" - scope="I" - type="L" - name="Orowe" /> - <iso_639_3_entry - id="bpl" - scope="I" - type="L" - name="Broome Pearling Lugger Pidgin" /> - <iso_639_3_entry - id="bpm" - scope="I" - type="L" - name="Biyom" /> - <iso_639_3_entry - id="bpn" - scope="I" - type="L" - name="Dzao Min" /> - <iso_639_3_entry - id="bpo" - scope="I" - type="L" - name="Anasi" /> - <iso_639_3_entry - id="bpp" - scope="I" - type="L" - name="Kaure" /> - <iso_639_3_entry - id="bpq" - scope="I" - type="L" - name="Malay; Banda" /> - <iso_639_3_entry - id="bpr" - scope="I" - type="L" - name="Blaan; Koronadal" /> - <iso_639_3_entry - id="bps" - scope="I" - type="L" - name="Blaan; Sarangani" /> - <iso_639_3_entry - id="bpt" - scope="I" - type="E" - name="Barrow Point" /> - <iso_639_3_entry - id="bpu" - scope="I" - type="L" - name="Bongu" /> - <iso_639_3_entry - id="bpv" - scope="I" - type="L" - name="Marind; Bian" /> - <iso_639_3_entry - id="bpw" - scope="I" - type="L" - name="Bo (Papua New Guinea)" /> - <iso_639_3_entry - id="bpx" - scope="I" - type="L" - name="Bareli; Palya" /> - <iso_639_3_entry - id="bpy" - scope="I" - type="L" - name="Bishnupriya" /> - <iso_639_3_entry - id="bpz" - scope="I" - type="L" - name="Bilba" /> - <iso_639_3_entry - id="bqa" - scope="I" - type="L" - name="Tchumbuli" /> - <iso_639_3_entry - id="bqb" - scope="I" - type="L" - name="Bagusa" /> - <iso_639_3_entry - id="bqc" - scope="I" - type="L" - name="Boko (Benin)" /> - <iso_639_3_entry - id="bqd" - scope="I" - type="L" - name="Bung" /> - <iso_639_3_entry - id="bqf" - scope="I" - type="E" - name="Baga Kaloum" /> - <iso_639_3_entry - id="bqg" - scope="I" - type="L" - name="Bago-Kusuntu" /> - <iso_639_3_entry - id="bqh" - scope="I" - type="L" - name="Baima" /> - <iso_639_3_entry - id="bqi" - scope="I" - type="L" - name="Bakhtiari" /> - <iso_639_3_entry - id="bqj" - scope="I" - type="L" - name="Bandial" /> - <iso_639_3_entry - id="bqk" - scope="I" - type="L" - name="Banda-Mbrès" /> - <iso_639_3_entry - id="bql" - scope="I" - type="L" - name="Bilakura" /> - <iso_639_3_entry - id="bqm" - scope="I" - type="L" - name="Wumboko" /> - <iso_639_3_entry - id="bqn" - scope="I" - type="L" - name="Bulgarian Sign Language" /> - <iso_639_3_entry - id="bqo" - scope="I" - type="L" - name="Balo" /> - <iso_639_3_entry - id="bqp" - scope="I" - type="L" - name="Busa" /> - <iso_639_3_entry - id="bqq" - scope="I" - type="L" - name="Biritai" /> - <iso_639_3_entry - id="bqr" - scope="I" - type="L" - name="Burusu" /> - <iso_639_3_entry - id="bqs" - scope="I" - type="L" - name="Bosngun" /> - <iso_639_3_entry - id="bqt" - scope="I" - type="L" - name="Bamukumbit" /> - <iso_639_3_entry - id="bqu" - scope="I" - type="L" - name="Boguru" /> - <iso_639_3_entry - id="bqv" - scope="I" - type="L" - name="Begbere-Ejar" /> - <iso_639_3_entry - id="bqw" - scope="I" - type="L" - name="Buru (Nigeria)" /> - <iso_639_3_entry - id="bqx" - scope="I" - type="L" - name="Baangi" /> - <iso_639_3_entry - id="bqy" - scope="I" - type="L" - name="Bengkala Sign Language" /> - <iso_639_3_entry - id="bqz" - scope="I" - type="L" - name="Bakaka" /> - <iso_639_3_entry - id="bra" - part2_code="bra" - scope="I" - type="L" - name="Braj" /> - <iso_639_3_entry - id="brb" - scope="I" - type="L" - name="Lave" /> - <iso_639_3_entry - id="brc" - scope="I" - type="E" - name="Creole Dutch; Berbice" /> - <iso_639_3_entry - id="brd" - scope="I" - type="L" - name="Baraamu" /> - <iso_639_3_entry - id="bre" - part1_code="br" - part2_code="bre" - scope="I" - type="L" - name="Breton" /> - <iso_639_3_entry - id="brf" - scope="I" - type="L" - name="Bera" /> - <iso_639_3_entry - id="brg" - scope="I" - type="L" - name="Baure" /> - <iso_639_3_entry - id="brh" - scope="I" - type="L" - name="Brahui" /> - <iso_639_3_entry - id="bri" - scope="I" - type="L" - name="Mokpwe" /> - <iso_639_3_entry - id="brj" - scope="I" - type="L" - name="Bieria" /> - <iso_639_3_entry - id="brk" - scope="I" - type="E" - name="Birked" /> - <iso_639_3_entry - id="brl" - scope="I" - type="L" - name="Birwa" /> - <iso_639_3_entry - id="brm" - scope="I" - type="L" - name="Barambu" /> - <iso_639_3_entry - id="brn" - scope="I" - type="L" - name="Boruca" /> - <iso_639_3_entry - id="bro" - scope="I" - type="L" - name="Brokkat" /> - <iso_639_3_entry - id="brp" - scope="I" - type="L" - name="Barapasi" /> - <iso_639_3_entry - id="brq" - scope="I" - type="L" - name="Breri" /> - <iso_639_3_entry - id="brr" - scope="I" - type="L" - name="Birao" /> - <iso_639_3_entry - id="brs" - scope="I" - type="L" - name="Baras" /> - <iso_639_3_entry - id="brt" - scope="I" - type="L" - name="Bitare" /> - <iso_639_3_entry - id="bru" - scope="I" - type="L" - name="Bru; Eastern" /> - <iso_639_3_entry - id="brv" - scope="I" - type="L" - name="Bru; Western" /> - <iso_639_3_entry - id="brw" - scope="I" - type="L" - name="Bellari" /> - <iso_639_3_entry - id="brx" - scope="I" - type="L" - name="Bodo (India)" /> - <iso_639_3_entry - id="bry" - scope="I" - type="L" - name="Burui" /> - <iso_639_3_entry - id="brz" - scope="I" - type="L" - name="Bilbil" /> - <iso_639_3_entry - id="bsa" - scope="I" - type="L" - name="Abinomn" /> - <iso_639_3_entry - id="bsb" - scope="I" - type="L" - name="Bisaya; Brunei" /> - <iso_639_3_entry - id="bsc" - scope="I" - type="L" - name="Bassari" /> - <iso_639_3_entry - id="bse" - scope="I" - type="L" - name="Wushi" /> - <iso_639_3_entry - id="bsf" - scope="I" - type="L" - name="Bauchi" /> - <iso_639_3_entry - id="bsg" - scope="I" - type="L" - name="Bashkardi" /> - <iso_639_3_entry - id="bsh" - scope="I" - type="L" - name="Kati" /> - <iso_639_3_entry - id="bsi" - scope="I" - type="L" - name="Bassossi" /> - <iso_639_3_entry - id="bsj" - scope="I" - type="L" - name="Bangwinji" /> - <iso_639_3_entry - id="bsk" - scope="I" - type="L" - name="Burushaski" /> - <iso_639_3_entry - id="bsl" - scope="I" - type="E" - name="Basa-Gumna" /> - <iso_639_3_entry - id="bsm" - scope="I" - type="L" - name="Busami" /> - <iso_639_3_entry - id="bsn" - scope="I" - type="L" - name="Barasana-Eduria" /> - <iso_639_3_entry - id="bso" - scope="I" - type="L" - name="Buso" /> - <iso_639_3_entry - id="bsp" - scope="I" - type="L" - name="Baga Sitemu" /> - <iso_639_3_entry - id="bsq" - scope="I" - type="L" - name="Bassa" /> - <iso_639_3_entry - id="bsr" - scope="I" - type="L" - name="Bassa-Kontagora" /> - <iso_639_3_entry - id="bss" - scope="I" - type="L" - name="Akoose" /> - <iso_639_3_entry - id="bst" - scope="I" - type="L" - name="Basketo" /> - <iso_639_3_entry - id="bsu" - scope="I" - type="L" - name="Bahonsuai" /> - <iso_639_3_entry - id="bsv" - scope="I" - type="E" - name="Baga Sobané" /> - <iso_639_3_entry - id="bsw" - scope="I" - type="L" - name="Baiso" /> - <iso_639_3_entry - id="bsx" - scope="I" - type="L" - name="Yangkam" /> - <iso_639_3_entry - id="bsy" - scope="I" - type="L" - name="Bisaya; Sabah" /> - <iso_639_3_entry - id="bta" - scope="I" - type="L" - name="Bata" /> - <iso_639_3_entry - id="btc" - scope="I" - type="L" - name="Bati (Cameroon)" /> - <iso_639_3_entry - id="btd" - scope="I" - type="L" - name="Batak Dairi" /> - <iso_639_3_entry - id="bte" - scope="I" - type="E" - name="Gamo-Ningi" /> - <iso_639_3_entry - id="btf" - scope="I" - type="L" - name="Birgit" /> - <iso_639_3_entry - id="btg" - scope="I" - type="L" - name="Bété; Gagnoa" /> - <iso_639_3_entry - id="bth" - scope="I" - type="L" - name="Bidayuh; Biatah" /> - <iso_639_3_entry - id="bti" - scope="I" - type="L" - name="Burate" /> - <iso_639_3_entry - id="btj" - scope="I" - type="L" - name="Malay; Bacanese" /> - <iso_639_3_entry - id="btl" - scope="I" - type="L" - name="Bhatola" /> - <iso_639_3_entry - id="btm" - scope="I" - type="L" - name="Batak Mandailing" /> - <iso_639_3_entry - id="btn" - scope="I" - type="L" - name="Ratagnon" /> - <iso_639_3_entry - id="bto" - scope="I" - type="L" - name="Bikol; Rinconada" /> - <iso_639_3_entry - id="btp" - scope="I" - type="L" - name="Budibud" /> - <iso_639_3_entry - id="btq" - scope="I" - type="L" - name="Batek" /> - <iso_639_3_entry - id="btr" - scope="I" - type="L" - name="Baetora" /> - <iso_639_3_entry - id="bts" - scope="I" - type="L" - name="Batak Simalungun" /> - <iso_639_3_entry - id="btt" - scope="I" - type="L" - name="Bete-Bendi" /> - <iso_639_3_entry - id="btu" - scope="I" - type="L" - name="Batu" /> - <iso_639_3_entry - id="btv" - scope="I" - type="L" - name="Bateri" /> - <iso_639_3_entry - id="btw" - scope="I" - type="L" - name="Butuanon" /> - <iso_639_3_entry - id="btx" - scope="I" - type="L" - name="Batak Karo" /> - <iso_639_3_entry - id="bty" - scope="I" - type="L" - name="Bobot" /> - <iso_639_3_entry - id="btz" - scope="I" - type="L" - name="Batak Alas-Kluet" /> - <iso_639_3_entry - id="bua" - part2_code="bua" - scope="M" - type="L" - name="Buriat" /> - <iso_639_3_entry - id="bub" - scope="I" - type="L" - name="Bua" /> - <iso_639_3_entry - id="buc" - scope="I" - type="L" - name="Bushi" /> - <iso_639_3_entry - id="bud" - scope="I" - type="L" - name="Ntcham" /> - <iso_639_3_entry - id="bue" - scope="I" - type="E" - name="Beothuk" /> - <iso_639_3_entry - id="buf" - scope="I" - type="L" - name="Bushoong" /> - <iso_639_3_entry - id="bug" - part2_code="bug" - scope="I" - type="L" - name="Buginese" /> - <iso_639_3_entry - id="buh" - scope="I" - type="L" - name="Bunu; Younuo" /> - <iso_639_3_entry - id="bui" - scope="I" - type="L" - name="Bongili" /> - <iso_639_3_entry - id="buj" - scope="I" - type="L" - name="Basa-Gurmana" /> - <iso_639_3_entry - id="buk" - scope="I" - type="L" - name="Bugawac" /> - <iso_639_3_entry - id="bul" - part1_code="bg" - part2_code="bul" - scope="I" - type="L" - name="Bulgarian" /> - <iso_639_3_entry - id="bum" - scope="I" - type="L" - name="Bulu (Cameroon)" /> - <iso_639_3_entry - id="bun" - scope="I" - type="L" - name="Sherbro" /> - <iso_639_3_entry - id="buo" - scope="I" - type="L" - name="Terei" /> - <iso_639_3_entry - id="bup" - scope="I" - type="L" - name="Busoa" /> - <iso_639_3_entry - id="buq" - scope="I" - type="L" - name="Brem" /> - <iso_639_3_entry - id="bus" - scope="I" - type="L" - name="Bokobaru" /> - <iso_639_3_entry - id="but" - scope="I" - type="L" - name="Bungain" /> - <iso_639_3_entry - id="buu" - scope="I" - type="L" - name="Budu" /> - <iso_639_3_entry - id="buv" - scope="I" - type="L" - name="Bun" /> - <iso_639_3_entry - id="buw" - scope="I" - type="L" - name="Bubi" /> - <iso_639_3_entry - id="bux" - scope="I" - type="L" - name="Boghom" /> - <iso_639_3_entry - id="buy" - scope="I" - type="L" - name="Bullom So" /> - <iso_639_3_entry - id="buz" - scope="I" - type="L" - name="Bukwen" /> - <iso_639_3_entry - id="bva" - scope="I" - type="L" - name="Barein" /> - <iso_639_3_entry - id="bvb" - scope="I" - type="L" - name="Bube" /> - <iso_639_3_entry - id="bvc" - scope="I" - type="L" - name="Baelelea" /> - <iso_639_3_entry - id="bvd" - scope="I" - type="L" - name="Baeggu" /> - <iso_639_3_entry - id="bve" - scope="I" - type="L" - name="Malay; Berau" /> - <iso_639_3_entry - id="bvf" - scope="I" - type="L" - name="Boor" /> - <iso_639_3_entry - id="bvg" - scope="I" - type="L" - name="Bonkeng" /> - <iso_639_3_entry - id="bvh" - scope="I" - type="L" - name="Bure" /> - <iso_639_3_entry - id="bvi" - scope="I" - type="L" - name="Belanda Viri" /> - <iso_639_3_entry - id="bvj" - scope="I" - type="L" - name="Baan" /> - <iso_639_3_entry - id="bvk" - scope="I" - type="L" - name="Bukat" /> - <iso_639_3_entry - id="bvl" - scope="I" - type="L" - name="Bolivian Sign Language" /> - <iso_639_3_entry - id="bvm" - scope="I" - type="L" - name="Bamunka" /> - <iso_639_3_entry - id="bvn" - scope="I" - type="L" - name="Buna" /> - <iso_639_3_entry - id="bvo" - scope="I" - type="L" - name="Bolgo" /> - <iso_639_3_entry - id="bvq" - scope="I" - type="L" - name="Birri" /> - <iso_639_3_entry - id="bvr" - scope="I" - type="L" - name="Burarra" /> - <iso_639_3_entry - id="bvt" - scope="I" - type="L" - name="Bati (Indonesia)" /> - <iso_639_3_entry - id="bvu" - scope="I" - type="L" - name="Malay; Bukit" /> - <iso_639_3_entry - id="bvv" - scope="I" - type="E" - name="Baniva" /> - <iso_639_3_entry - id="bvw" - scope="I" - type="L" - name="Boga" /> - <iso_639_3_entry - id="bvx" - scope="I" - type="L" - name="Dibole" /> - <iso_639_3_entry - id="bvy" - scope="I" - type="L" - name="Baybayanon" /> - <iso_639_3_entry - id="bvz" - scope="I" - type="L" - name="Bauzi" /> - <iso_639_3_entry - id="bwa" - scope="I" - type="L" - name="Bwatoo" /> - <iso_639_3_entry - id="bwb" - scope="I" - type="L" - name="Namosi-Naitasiri-Serua" /> - <iso_639_3_entry - id="bwc" - scope="I" - type="L" - name="Bwile" /> - <iso_639_3_entry - id="bwd" - scope="I" - type="L" - name="Bwaidoka" /> - <iso_639_3_entry - id="bwe" - scope="I" - type="L" - name="Karen; Bwe" /> - <iso_639_3_entry - id="bwf" - scope="I" - type="L" - name="Boselewa" /> - <iso_639_3_entry - id="bwg" - scope="I" - type="L" - name="Barwe" /> - <iso_639_3_entry - id="bwh" - scope="I" - type="L" - name="Bishuo" /> - <iso_639_3_entry - id="bwi" - scope="I" - type="L" - name="Baniwa" /> - <iso_639_3_entry - id="bwj" - scope="I" - type="L" - name="Bwamu; Láá Láá" /> - <iso_639_3_entry - id="bwk" - scope="I" - type="L" - name="Bauwaki" /> - <iso_639_3_entry - id="bwl" - scope="I" - type="L" - name="Bwela" /> - <iso_639_3_entry - id="bwm" - scope="I" - type="L" - name="Biwat" /> - <iso_639_3_entry - id="bwn" - scope="I" - type="L" - name="Bunu; Wunai" /> - <iso_639_3_entry - id="bwo" - scope="I" - type="L" - name="Boro (Ethiopia)" /> - <iso_639_3_entry - id="bwp" - scope="I" - type="L" - name="Mandobo Bawah" /> - <iso_639_3_entry - id="bwq" - scope="I" - type="L" - name="Bobo Madaré; Southern" /> - <iso_639_3_entry - id="bwr" - scope="I" - type="L" - name="Bura-Pabir" /> - <iso_639_3_entry - id="bws" - scope="I" - type="L" - name="Bomboma" /> - <iso_639_3_entry - id="bwt" - scope="I" - type="L" - name="Bafaw-Balong" /> - <iso_639_3_entry - id="bwu" - scope="I" - type="L" - name="Buli (Ghana)" /> - <iso_639_3_entry - id="bww" - scope="I" - type="L" - name="Bwa" /> - <iso_639_3_entry - id="bwx" - scope="I" - type="L" - name="Bunu; Bu-Nao" /> - <iso_639_3_entry - id="bwy" - scope="I" - type="L" - name="Bwamu; Cwi" /> - <iso_639_3_entry - id="bwz" - scope="I" - type="L" - name="Bwisi" /> - <iso_639_3_entry - id="bxa" - scope="I" - type="L" - name="Bauro" /> - <iso_639_3_entry - id="bxb" - scope="I" - type="L" - name="Bor; Belanda" /> - <iso_639_3_entry - id="bxc" - scope="I" - type="L" - name="Molengue" /> - <iso_639_3_entry - id="bxd" - scope="I" - type="L" - name="Pela" /> - <iso_639_3_entry - id="bxe" - scope="I" - type="L" - name="Birale" /> - <iso_639_3_entry - id="bxf" - scope="I" - type="L" - name="Bilur" /> - <iso_639_3_entry - id="bxg" - scope="I" - type="L" - name="Bangala" /> - <iso_639_3_entry - id="bxh" - scope="I" - type="L" - name="Buhutu" /> - <iso_639_3_entry - id="bxi" - scope="I" - type="E" - name="Pirlatapa" /> - <iso_639_3_entry - id="bxj" - scope="I" - type="L" - name="Bayungu" /> - <iso_639_3_entry - id="bxk" - scope="I" - type="L" - name="Bukusu" /> - <iso_639_3_entry - id="bxl" - scope="I" - type="L" - name="Jalkunan" /> - <iso_639_3_entry - id="bxm" - scope="I" - type="L" - name="Buriat; Mongolia" /> - <iso_639_3_entry - id="bxn" - scope="I" - type="L" - name="Burduna" /> - <iso_639_3_entry - id="bxo" - scope="I" - type="L" - name="Barikanchi" /> - <iso_639_3_entry - id="bxp" - scope="I" - type="L" - name="Bebil" /> - <iso_639_3_entry - id="bxq" - scope="I" - type="L" - name="Beele" /> - <iso_639_3_entry - id="bxr" - scope="I" - type="L" - name="Buriat; Russia" /> - <iso_639_3_entry - id="bxs" - scope="I" - type="L" - name="Busam" /> - <iso_639_3_entry - id="bxu" - scope="I" - type="L" - name="Buriat; China" /> - <iso_639_3_entry - id="bxv" - scope="I" - type="L" - name="Berakou" /> - <iso_639_3_entry - id="bxw" - scope="I" - type="L" - name="Bankagooma" /> - <iso_639_3_entry - id="bxx" - scope="I" - type="L" - name="Borna (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="bxz" - scope="I" - type="L" - name="Binahari" /> - <iso_639_3_entry - id="bya" - scope="I" - type="L" - name="Batak" /> - <iso_639_3_entry - id="byb" - scope="I" - type="L" - name="Bikya" /> - <iso_639_3_entry - id="byc" - scope="I" - type="L" - name="Ubaghara" /> - <iso_639_3_entry - id="byd" - scope="I" - type="L" - name="Benyadu'" /> - <iso_639_3_entry - id="bye" - scope="I" - type="L" - name="Pouye" /> - <iso_639_3_entry - id="byf" - scope="I" - type="L" - name="Bete" /> - <iso_639_3_entry - id="byg" - scope="I" - type="E" - name="Baygo" /> - <iso_639_3_entry - id="byh" - scope="I" - type="L" - name="Bhujel" /> - <iso_639_3_entry - id="byi" - scope="I" - type="L" - name="Buyu" /> - <iso_639_3_entry - id="byj" - scope="I" - type="L" - name="Bina (Nigeria)" /> - <iso_639_3_entry - id="byk" - scope="I" - type="L" - name="Biao" /> - <iso_639_3_entry - id="byl" - scope="I" - type="L" - name="Bayono" /> - <iso_639_3_entry - id="bym" - scope="I" - type="L" - name="Bidyara" /> - <iso_639_3_entry - id="byn" - part2_code="byn" - scope="I" - type="L" - name="Bilin" /> - <iso_639_3_entry - id="byo" - scope="I" - type="L" - name="Biyo" /> - <iso_639_3_entry - id="byp" - scope="I" - type="L" - name="Bumaji" /> - <iso_639_3_entry - id="byq" - scope="I" - type="E" - name="Basay" /> - <iso_639_3_entry - id="byr" - scope="I" - type="L" - name="Baruya" /> - <iso_639_3_entry - id="bys" - scope="I" - type="L" - name="Burak" /> - <iso_639_3_entry - id="byt" - scope="I" - type="E" - name="Berti" /> - <iso_639_3_entry - id="byv" - scope="I" - type="L" - name="Medumba" /> - <iso_639_3_entry - id="byw" - scope="I" - type="L" - name="Belhariya" /> - <iso_639_3_entry - id="byx" - scope="I" - type="L" - name="Qaqet" /> - <iso_639_3_entry - id="byy" - scope="I" - type="L" - name="Buya" /> - <iso_639_3_entry - id="byz" - scope="I" - type="L" - name="Banaro" /> - <iso_639_3_entry - id="bza" - scope="I" - type="L" - name="Bandi" /> - <iso_639_3_entry - id="bzb" - scope="I" - type="L" - name="Andio" /> - <iso_639_3_entry - id="bzc" - scope="I" - type="L" - name="Malagasy; Southern Betsimisaraka" /> - <iso_639_3_entry - id="bzd" - scope="I" - type="L" - name="Bribri" /> - <iso_639_3_entry - id="bze" - scope="I" - type="L" - name="Bozo; Jenaama" /> - <iso_639_3_entry - id="bzf" - scope="I" - type="L" - name="Boikin" /> - <iso_639_3_entry - id="bzg" - scope="I" - type="L" - name="Babuza" /> - <iso_639_3_entry - id="bzh" - scope="I" - type="L" - name="Buang; Mapos" /> - <iso_639_3_entry - id="bzi" - scope="I" - type="L" - name="Bisu" /> - <iso_639_3_entry - id="bzj" - scope="I" - type="L" - name="Kriol English; Belize" /> - <iso_639_3_entry - id="bzk" - scope="I" - type="L" - name="Creole English; Nicaragua" /> - <iso_639_3_entry - id="bzl" - scope="I" - type="L" - name="Boano (Sulawesi)" /> - <iso_639_3_entry - id="bzm" - scope="I" - type="L" - name="Bolondo" /> - <iso_639_3_entry - id="bzn" - scope="I" - type="L" - name="Boano (Maluku)" /> - <iso_639_3_entry - id="bzo" - scope="I" - type="L" - name="Bozaba" /> - <iso_639_3_entry - id="bzp" - scope="I" - type="L" - name="Kemberano" /> - <iso_639_3_entry - id="bzq" - scope="I" - type="L" - name="Buli (Indonesia)" /> - <iso_639_3_entry - id="bzr" - scope="I" - type="E" - name="Biri" /> - <iso_639_3_entry - id="bzs" - scope="I" - type="L" - name="Brazilian Sign Language" /> - <iso_639_3_entry - id="bzt" - scope="I" - type="C" - name="Brithenig" /> - <iso_639_3_entry - id="bzu" - scope="I" - type="L" - name="Burmeso" /> - <iso_639_3_entry - id="bzv" - scope="I" - type="L" - name="Bebe" /> - <iso_639_3_entry - id="bzw" - scope="I" - type="L" - name="Basa (Nigeria)" /> - <iso_639_3_entry - id="bzx" - scope="I" - type="L" - name="Bozo; Kɛlɛngaxo" /> - <iso_639_3_entry - id="bzy" - scope="I" - type="L" - name="Obanliku" /> - <iso_639_3_entry - id="bzz" - scope="I" - type="L" - name="Evant" /> - <iso_639_3_entry - id="caa" - scope="I" - type="L" - name="Chortí" /> - <iso_639_3_entry - id="cab" - scope="I" - type="L" - name="Garifuna" /> - <iso_639_3_entry - id="cac" - scope="I" - type="L" - name="Chuj" /> - <iso_639_3_entry - id="cad" - part2_code="cad" - scope="I" - type="L" - name="Caddo" /> - <iso_639_3_entry - id="cae" - scope="I" - type="L" - name="Lehar" /> - <iso_639_3_entry - id="caf" - scope="I" - type="L" - name="Carrier; Southern" /> - <iso_639_3_entry - id="cag" - scope="I" - type="L" - name="Nivaclé" /> - <iso_639_3_entry - id="cah" - scope="I" - type="L" - name="Cahuarano" /> - <iso_639_3_entry - id="caj" - scope="I" - type="E" - name="Chané" /> - <iso_639_3_entry - id="cak" - scope="I" - type="L" - name="Kaqchikel" /> - <iso_639_3_entry - id="cal" - scope="I" - type="L" - name="Carolinian" /> - <iso_639_3_entry - id="cam" - scope="I" - type="L" - name="Cemuhî" /> - <iso_639_3_entry - id="can" - scope="I" - type="L" - name="Chambri" /> - <iso_639_3_entry - id="cao" - scope="I" - type="L" - name="Chácobo" /> - <iso_639_3_entry - id="cap" - scope="I" - type="L" - name="Chipaya" /> - <iso_639_3_entry - id="caq" - scope="I" - type="L" - name="Nicobarese; Car" /> - <iso_639_3_entry - id="car" - part2_code="car" - scope="I" - type="L" - name="Carib; Galibi" /> - <iso_639_3_entry - id="cas" - scope="I" - type="L" - name="Tsimané" /> - <iso_639_3_entry - id="cat" - part1_code="ca" - part2_code="cat" - scope="I" - type="L" - name="Catalan" /> - <iso_639_3_entry - id="cav" - scope="I" - type="L" - name="Cavineña" /> - <iso_639_3_entry - id="caw" - scope="I" - type="L" - name="Callawalla" /> - <iso_639_3_entry - id="cax" - scope="I" - type="L" - name="Chiquitano" /> - <iso_639_3_entry - id="cay" - scope="I" - type="L" - name="Cayuga" /> - <iso_639_3_entry - id="caz" - scope="I" - type="E" - name="Canichana" /> - <iso_639_3_entry - id="cbb" - scope="I" - type="L" - name="Cabiyarí" /> - <iso_639_3_entry - id="cbc" - scope="I" - type="L" - name="Carapana" /> - <iso_639_3_entry - id="cbd" - scope="I" - type="L" - name="Carijona" /> - <iso_639_3_entry - id="cbe" - scope="I" - type="E" - name="Chipiajes" /> - <iso_639_3_entry - id="cbg" - scope="I" - type="L" - name="Chimila" /> - <iso_639_3_entry - id="cbh" - scope="I" - type="E" - name="Cagua" /> - <iso_639_3_entry - id="cbi" - scope="I" - type="L" - name="Chachi" /> - <iso_639_3_entry - id="cbj" - scope="I" - type="L" - name="Ede Cabe" /> - <iso_639_3_entry - id="cbk" - scope="I" - type="L" - name="Chavacano" /> - <iso_639_3_entry - id="cbl" - scope="I" - type="L" - name="Chin; Bualkhaw" /> - <iso_639_3_entry - id="cbn" - scope="I" - type="L" - name="Nyahkur" /> - <iso_639_3_entry - id="cbo" - scope="I" - type="L" - name="Izora" /> - <iso_639_3_entry - id="cbr" - scope="I" - type="L" - name="Cashibo-Cacataibo" /> - <iso_639_3_entry - id="cbs" - scope="I" - type="L" - name="Cashinahua" /> - <iso_639_3_entry - id="cbt" - scope="I" - type="L" - name="Chayahuita" /> - <iso_639_3_entry - id="cbu" - scope="I" - type="L" - name="Candoshi-Shapra" /> - <iso_639_3_entry - id="cbv" - scope="I" - type="L" - name="Cacua" /> - <iso_639_3_entry - id="cbw" - scope="I" - type="L" - name="Kinabalian" /> - <iso_639_3_entry - id="cby" - scope="I" - type="L" - name="Carabayo" /> - <iso_639_3_entry - id="cca" - scope="I" - type="E" - name="Cauca" /> - <iso_639_3_entry - id="ccc" - scope="I" - type="L" - name="Chamicuro" /> - <iso_639_3_entry - id="ccd" - scope="I" - type="L" - name="Creole; Cafundo" /> - <iso_639_3_entry - id="cce" - scope="I" - type="L" - name="Chopi" /> - <iso_639_3_entry - id="ccg" - scope="I" - type="L" - name="Daka; Samba" /> - <iso_639_3_entry - id="cch" - scope="I" - type="L" - name="Atsam" /> - <iso_639_3_entry - id="ccj" - scope="I" - type="L" - name="Kasanga" /> - <iso_639_3_entry - id="ccl" - scope="I" - type="L" - name="Cutchi-Swahili" /> - <iso_639_3_entry - id="ccm" - scope="I" - type="L" - name="Creole Malay; Malaccan" /> - <iso_639_3_entry - id="cco" - scope="I" - type="L" - name="Chinantec; Comaltepec" /> - <iso_639_3_entry - id="ccp" - scope="I" - type="L" - name="Chakma" /> - <iso_639_3_entry - id="ccq" - scope="I" - type="L" - name="Chaungtha" /> - <iso_639_3_entry - id="ccr" - scope="I" - type="E" - name="Cacaopera" /> - <iso_639_3_entry - id="cda" - scope="I" - type="L" - name="Choni" /> - <iso_639_3_entry - id="cde" - scope="I" - type="L" - name="Chenchu" /> - <iso_639_3_entry - id="cdf" - scope="I" - type="L" - name="Chiru" /> - <iso_639_3_entry - id="cdg" - scope="I" - type="L" - name="Chamari" /> - <iso_639_3_entry - id="cdh" - scope="I" - type="L" - name="Chambeali" /> - <iso_639_3_entry - id="cdi" - scope="I" - type="L" - name="Chodri" /> - <iso_639_3_entry - id="cdj" - scope="I" - type="L" - name="Churahi" /> - <iso_639_3_entry - id="cdm" - scope="I" - type="L" - name="Chepang" /> - <iso_639_3_entry - id="cdn" - scope="I" - type="L" - name="Chaudangsi" /> - <iso_639_3_entry - id="cdo" - scope="I" - type="L" - name="Chinese; Min Dong" /> - <iso_639_3_entry - id="cdr" - scope="I" - type="L" - name="Cinda-Regi-Tiyal" /> - <iso_639_3_entry - id="cds" - scope="I" - type="L" - name="Chadian Sign Language" /> - <iso_639_3_entry - id="cdy" - scope="I" - type="L" - name="Chadong" /> - <iso_639_3_entry - id="cdz" - scope="I" - type="L" - name="Koda" /> - <iso_639_3_entry - id="cea" - scope="I" - type="E" - name="Chehalis; Lower" /> - <iso_639_3_entry - id="ceb" - part2_code="ceb" - scope="I" - type="L" - name="Cebuano" /> - <iso_639_3_entry - id="ceg" - scope="I" - type="L" - name="Chamacoco" /> - <iso_639_3_entry - id="cen" - scope="I" - type="L" - name="Cen" /> - <iso_639_3_entry - id="ces" - part1_code="cs" - part2_code="cze" - scope="I" - type="L" - name="Czech" /> - <iso_639_3_entry - id="cet" - scope="I" - type="L" - name="Centúúm" /> - <iso_639_3_entry - id="cfa" - scope="I" - type="L" - name="Dijim-Bwilim" /> - <iso_639_3_entry - id="cfd" - scope="I" - type="L" - name="Cara" /> - <iso_639_3_entry - id="cfg" - scope="I" - type="L" - name="Como Karim" /> - <iso_639_3_entry - id="cfm" - scope="I" - type="L" - name="Chin; Falam" /> - <iso_639_3_entry - id="cga" - scope="I" - type="L" - name="Changriwa" /> - <iso_639_3_entry - id="cgc" - scope="I" - type="L" - name="Kagayanen" /> - <iso_639_3_entry - id="cgg" - scope="I" - type="L" - name="Chiga" /> - <iso_639_3_entry - id="cgk" - scope="I" - type="L" - name="Chocangacakha" /> - <iso_639_3_entry - id="cha" - part1_code="ch" - part2_code="cha" - scope="I" - type="L" - name="Chamorro" /> - <iso_639_3_entry - id="chb" - part2_code="chb" - scope="I" - type="E" - name="Chibcha" /> - <iso_639_3_entry - id="chc" - scope="I" - type="E" - name="Catawba" /> - <iso_639_3_entry - id="chd" - scope="I" - type="L" - name="Chontal; Highland Oaxaca" /> - <iso_639_3_entry - id="che" - part1_code="ce" - part2_code="che" - scope="I" - type="L" - name="Chechen" /> - <iso_639_3_entry - id="chf" - scope="I" - type="L" - name="Chontal; Tabasco" /> - <iso_639_3_entry - id="chg" - part2_code="chg" - scope="I" - type="E" - name="Chagatai" /> - <iso_639_3_entry - id="chh" - scope="I" - type="L" - name="Chinook" /> - <iso_639_3_entry - id="chj" - scope="I" - type="L" - name="Chinantec; Ojitlán" /> - <iso_639_3_entry - id="chk" - part2_code="chk" - scope="I" - type="L" - name="Chuukese" /> - <iso_639_3_entry - id="chl" - scope="I" - type="L" - name="Cahuilla" /> - <iso_639_3_entry - id="chm" - part2_code="chm" - scope="M" - type="L" - name="Mari (Russia)" /> - <iso_639_3_entry - id="chn" - part2_code="chn" - scope="I" - type="L" - name="Chinook jargon" /> - <iso_639_3_entry - id="cho" - part2_code="cho" - scope="I" - type="L" - name="Choctaw" /> - <iso_639_3_entry - id="chp" - part2_code="chp" - scope="I" - type="L" - name="Chipewyan" /> - <iso_639_3_entry - id="chq" - scope="I" - type="L" - name="Chinantec; Quiotepec" /> - <iso_639_3_entry - id="chr" - part2_code="chr" - scope="I" - type="L" - name="Cherokee" /> - <iso_639_3_entry - id="cht" - scope="I" - type="E" - name="Cholón" /> - <iso_639_3_entry - id="chu" - part1_code="cu" - part2_code="chu" - scope="I" - type="A" - name="Slavonic; Old" /> - <iso_639_3_entry - id="chv" - part1_code="cv" - part2_code="chv" - scope="I" - type="L" - name="Chuvash" /> - <iso_639_3_entry - id="chw" - scope="I" - type="L" - name="Chuwabu" /> - <iso_639_3_entry - id="chx" - scope="I" - type="L" - name="Chantyal" /> - <iso_639_3_entry - id="chy" - part2_code="chy" - scope="I" - type="L" - name="Cheyenne" /> - <iso_639_3_entry - id="chz" - scope="I" - type="L" - name="Chinantec; Ozumacín" /> - <iso_639_3_entry - id="cia" - scope="I" - type="L" - name="Cia-Cia" /> - <iso_639_3_entry - id="cib" - scope="I" - type="L" - name="Gbe; Ci" /> - <iso_639_3_entry - id="cic" - scope="I" - type="L" - name="Chickasaw" /> - <iso_639_3_entry - id="cid" - scope="I" - type="E" - name="Chimariko" /> - <iso_639_3_entry - id="cie" - scope="I" - type="L" - name="Cineni" /> - <iso_639_3_entry - id="cih" - scope="I" - type="L" - name="Chinali" /> - <iso_639_3_entry - id="cik" - scope="I" - type="L" - name="Kinnauri; Chitkuli" /> - <iso_639_3_entry - id="cim" - scope="I" - type="L" - name="Cimbrian" /> - <iso_639_3_entry - id="cin" - scope="I" - type="L" - name="Cinta Larga" /> - <iso_639_3_entry - id="cip" - scope="I" - type="L" - name="Chiapanec" /> - <iso_639_3_entry - id="cir" - scope="I" - type="L" - name="Tiri" /> - <iso_639_3_entry - id="ciw" - scope="I" - type="L" - name="Chippewa" /> - <iso_639_3_entry - id="ciy" - scope="I" - type="L" - name="Chaima" /> - <iso_639_3_entry - id="cja" - scope="I" - type="L" - name="Cham; Western" /> - <iso_639_3_entry - id="cje" - scope="I" - type="L" - name="Chru" /> - <iso_639_3_entry - id="cjh" - scope="I" - type="E" - name="Chehalis; Upper" /> - <iso_639_3_entry - id="cji" - scope="I" - type="L" - name="Chamalal" /> - <iso_639_3_entry - id="cjk" - scope="I" - type="L" - name="Chokwe" /> - <iso_639_3_entry - id="cjm" - scope="I" - type="L" - name="Cham; Eastern" /> - <iso_639_3_entry - id="cjn" - scope="I" - type="L" - name="Chenapian" /> - <iso_639_3_entry - id="cjo" - scope="I" - type="L" - name="Ashéninka Pajonal" /> - <iso_639_3_entry - id="cjp" - scope="I" - type="L" - name="Cabécar" /> - <iso_639_3_entry - id="cjs" - scope="I" - type="L" - name="Shor" /> - <iso_639_3_entry - id="cjv" - scope="I" - type="L" - name="Chuave" /> - <iso_639_3_entry - id="cjy" - scope="I" - type="L" - name="Chinese; Jinyu" /> - <iso_639_3_entry - id="cka" - scope="I" - type="L" - name="Chin; Khumi Awa" /> - <iso_639_3_entry - id="ckb" - scope="I" - type="L" - name="Kurdish; Central" /> - <iso_639_3_entry - id="ckh" - scope="I" - type="L" - name="Chak" /> - <iso_639_3_entry - id="ckl" - scope="I" - type="L" - name="Cibak" /> - <iso_639_3_entry - id="cko" - scope="I" - type="L" - name="Anufo" /> - <iso_639_3_entry - id="ckq" - scope="I" - type="L" - name="Kajakse" /> - <iso_639_3_entry - id="ckr" - scope="I" - type="L" - name="Kairak" /> - <iso_639_3_entry - id="cks" - scope="I" - type="L" - name="Tayo" /> - <iso_639_3_entry - id="ckt" - scope="I" - type="L" - name="Chukot" /> - <iso_639_3_entry - id="cku" - scope="I" - type="L" - name="Koasati" /> - <iso_639_3_entry - id="ckv" - scope="I" - type="L" - name="Kavalan" /> - <iso_639_3_entry - id="ckx" - scope="I" - type="L" - name="Caka" /> - <iso_639_3_entry - id="cky" - scope="I" - type="L" - name="Cakfem-Mushere" /> - <iso_639_3_entry - id="ckz" - scope="I" - type="L" - name="Cakchiquel-Quiché Mixed Language" /> - <iso_639_3_entry - id="cla" - scope="I" - type="L" - name="Ron" /> - <iso_639_3_entry - id="clc" - scope="I" - type="L" - name="Chilcotin" /> - <iso_639_3_entry - id="cld" - scope="I" - type="L" - name="Neo-Aramaic; Chaldean" /> - <iso_639_3_entry - id="cle" - scope="I" - type="L" - name="Chinantec; Lealao" /> - <iso_639_3_entry - id="clh" - scope="I" - type="L" - name="Chilisso" /> - <iso_639_3_entry - id="cli" - scope="I" - type="L" - name="Chakali" /> - <iso_639_3_entry - id="clk" - scope="I" - type="L" - name="Idu-Mishmi" /> - <iso_639_3_entry - id="cll" - scope="I" - type="L" - name="Chala" /> - <iso_639_3_entry - id="clm" - scope="I" - type="L" - name="Clallam" /> - <iso_639_3_entry - id="clo" - scope="I" - type="L" - name="Chontal; Lowland Oaxaca" /> - <iso_639_3_entry - id="clu" - scope="I" - type="L" - name="Caluyanun" /> - <iso_639_3_entry - id="clw" - scope="I" - type="L" - name="Chulym" /> - <iso_639_3_entry - id="cly" - scope="I" - type="L" - name="Chatino; Eastern Highland" /> - <iso_639_3_entry - id="cma" - scope="I" - type="L" - name="Maa" /> - <iso_639_3_entry - id="cme" - scope="I" - type="L" - name="Cerma" /> - <iso_639_3_entry - id="cmg" - scope="I" - type="H" - name="Mongolian; Classical" /> - <iso_639_3_entry - id="cmi" - scope="I" - type="L" - name="Emberá-Chamí" /> - <iso_639_3_entry - id="cml" - scope="I" - type="L" - name="Campalagian" /> - <iso_639_3_entry - id="cmm" - scope="I" - type="E" - name="Michigamea" /> - <iso_639_3_entry - id="cmn" - scope="I" - type="L" - name="Chinese; Mandarin" /> - <iso_639_3_entry - id="cmo" - scope="I" - type="L" - name="Mnong; Central" /> - <iso_639_3_entry - id="cmr" - scope="I" - type="L" - name="Chin; Mro" /> - <iso_639_3_entry - id="cms" - scope="I" - type="A" - name="Messapic" /> - <iso_639_3_entry - id="cmt" - scope="I" - type="L" - name="Camtho" /> - <iso_639_3_entry - id="cna" - scope="I" - type="L" - name="Changthang" /> - <iso_639_3_entry - id="cnb" - scope="I" - type="L" - name="Chin; Chinbon" /> - <iso_639_3_entry - id="cnc" - scope="I" - type="L" - name="Côông" /> - <iso_639_3_entry - id="cng" - scope="I" - type="L" - name="Qiang; Northern" /> - <iso_639_3_entry - id="cnh" - scope="I" - type="L" - name="Chin; Haka" /> - <iso_639_3_entry - id="cni" - scope="I" - type="L" - name="Asháninka" /> - <iso_639_3_entry - id="cnk" - scope="I" - type="L" - name="Chin; Khumi" /> - <iso_639_3_entry - id="cnl" - scope="I" - type="L" - name="Chinantec; Lalana" /> - <iso_639_3_entry - id="cno" - scope="I" - type="L" - name="Con" /> - <iso_639_3_entry - id="cns" - scope="I" - type="L" - name="Asmat; Central" /> - <iso_639_3_entry - id="cnt" - scope="I" - type="L" - name="Chinantec; Tepetotutla" /> - <iso_639_3_entry - id="cnu" - scope="I" - type="L" - name="Chenoua" /> - <iso_639_3_entry - id="cnw" - scope="I" - type="L" - name="Chin; Ngawn" /> - <iso_639_3_entry - id="cnx" - scope="I" - type="H" - name="Cornish; Middle" /> - <iso_639_3_entry - id="coa" - scope="I" - type="L" - name="Malay; Cocos Islands" /> - <iso_639_3_entry - id="cob" - scope="I" - type="E" - name="Chicomuceltec" /> - <iso_639_3_entry - id="coc" - scope="I" - type="L" - name="Cocopa" /> - <iso_639_3_entry - id="cod" - scope="I" - type="L" - name="Cocama-Cocamilla" /> - <iso_639_3_entry - id="coe" - scope="I" - type="L" - name="Koreguaje" /> - <iso_639_3_entry - id="cof" - scope="I" - type="L" - name="Colorado" /> - <iso_639_3_entry - id="cog" - scope="I" - type="L" - name="Chong" /> - <iso_639_3_entry - id="coh" - scope="I" - type="L" - name="Chonyi-Dzihana-Kauma" /> - <iso_639_3_entry - id="coj" - scope="I" - type="E" - name="Cochimi" /> - <iso_639_3_entry - id="cok" - scope="I" - type="L" - name="Cora; Santa Teresa" /> - <iso_639_3_entry - id="col" - scope="I" - type="L" - name="Columbia-Wenatchi" /> - <iso_639_3_entry - id="com" - scope="I" - type="L" - name="Comanche" /> - <iso_639_3_entry - id="con" - scope="I" - type="L" - name="Cofán" /> - <iso_639_3_entry - id="coo" - scope="I" - type="L" - name="Comox" /> - <iso_639_3_entry - id="cop" - part2_code="cop" - scope="I" - type="E" - name="Coptic" /> - <iso_639_3_entry - id="coq" - scope="I" - type="E" - name="Coquille" /> - <iso_639_3_entry - id="cor" - part1_code="kw" - part2_code="cor" - scope="I" - type="L" - name="Cornish" /> - <iso_639_3_entry - id="cos" - part1_code="co" - part2_code="cos" - scope="I" - type="L" - name="Corsican" /> - <iso_639_3_entry - id="cot" - scope="I" - type="L" - name="Caquinte" /> - <iso_639_3_entry - id="cou" - scope="I" - type="L" - name="Wamey" /> - <iso_639_3_entry - id="cov" - scope="I" - type="L" - name="Cao Miao" /> - <iso_639_3_entry - id="cow" - scope="I" - type="E" - name="Cowlitz" /> - <iso_639_3_entry - id="cox" - scope="I" - type="L" - name="Nanti" /> - <iso_639_3_entry - id="coy" - scope="I" - type="E" - name="Coyaima" /> - <iso_639_3_entry - id="coz" - scope="I" - type="L" - name="Chochotec" /> - <iso_639_3_entry - id="cpa" - scope="I" - type="L" - name="Chinantec; Palantla" /> - <iso_639_3_entry - id="cpb" - scope="I" - type="L" - name="Ashéninka; Ucayali-Yurúa" /> - <iso_639_3_entry - id="cpc" - scope="I" - type="L" - name="Ajyíninka Apurucayali" /> - <iso_639_3_entry - id="cpg" - scope="I" - type="E" - name="Greek; Cappadocian" /> - <iso_639_3_entry - id="cpi" - scope="I" - type="L" - name="Pidgin English; Chinese" /> - <iso_639_3_entry - id="cpn" - scope="I" - type="L" - name="Cherepon" /> - <iso_639_3_entry - id="cps" - scope="I" - type="L" - name="Capiznon" /> - <iso_639_3_entry - id="cpu" - scope="I" - type="L" - name="Ashéninka; Pichis" /> - <iso_639_3_entry - id="cpx" - scope="I" - type="L" - name="Chinese; Pu-Xian" /> - <iso_639_3_entry - id="cpy" - scope="I" - type="L" - name="Ashéninka; South Ucayali" /> - <iso_639_3_entry - id="cqd" - scope="I" - type="L" - name="Miao; Chuanqiandian Cluster" /> - <iso_639_3_entry - id="cqu" - scope="I" - type="L" - name="Quechua; Chilean" /> - <iso_639_3_entry - id="cra" - scope="I" - type="L" - name="Chara" /> - <iso_639_3_entry - id="crb" - scope="I" - type="E" - name="Carib; Island" /> - <iso_639_3_entry - id="crc" - scope="I" - type="L" - name="Lonwolwol" /> - <iso_639_3_entry - id="crd" - scope="I" - type="L" - name="Coeur d'Alene" /> - <iso_639_3_entry - id="cre" - part1_code="cr" - part2_code="cre" - scope="M" - type="L" - name="Cree" /> - <iso_639_3_entry - id="crf" - scope="I" - type="E" - name="Caramanta" /> - <iso_639_3_entry - id="crg" - scope="I" - type="L" - name="Michif" /> - <iso_639_3_entry - id="crh" - part2_code="crh" - scope="I" - type="L" - name="Turkish; Crimean" /> - <iso_639_3_entry - id="cri" - scope="I" - type="L" - name="Sãotomense" /> - <iso_639_3_entry - id="crj" - scope="I" - type="L" - name="Cree; Southern East" /> - <iso_639_3_entry - id="crk" - scope="I" - type="L" - name="Cree; Plains" /> - <iso_639_3_entry - id="crl" - scope="I" - type="L" - name="Cree; Northern East" /> - <iso_639_3_entry - id="crm" - scope="I" - type="L" - name="Cree; Moose" /> - <iso_639_3_entry - id="crn" - scope="I" - type="L" - name="Cora; El Nayar" /> - <iso_639_3_entry - id="cro" - scope="I" - type="L" - name="Crow" /> - <iso_639_3_entry - id="crq" - scope="I" - type="L" - name="Chorote; Iyo'wujwa" /> - <iso_639_3_entry - id="crr" - scope="I" - type="E" - name="Algonquian; Carolina" /> - <iso_639_3_entry - id="crs" - scope="I" - type="L" - name="Creole French; Seselwa" /> - <iso_639_3_entry - id="crt" - scope="I" - type="L" - name="Chorote; Iyojwa'ja" /> - <iso_639_3_entry - id="crv" - scope="I" - type="L" - name="Chaura" /> - <iso_639_3_entry - id="crw" - scope="I" - type="L" - name="Chrau" /> - <iso_639_3_entry - id="crx" - scope="I" - type="L" - name="Carrier" /> - <iso_639_3_entry - id="cry" - scope="I" - type="L" - name="Cori" /> - <iso_639_3_entry - id="crz" - scope="I" - type="E" - name="Cruzeño" /> - <iso_639_3_entry - id="csa" - scope="I" - type="L" - name="Chinantec; Chiltepec" /> - <iso_639_3_entry - id="csb" - part2_code="csb" - scope="I" - type="L" - name="Kashubian" /> - <iso_639_3_entry - id="csc" - scope="I" - type="L" - name="Catalan Sign Language" /> - <iso_639_3_entry - id="csd" - scope="I" - type="L" - name="Chiangmai Sign Language" /> - <iso_639_3_entry - id="cse" - scope="I" - type="L" - name="Czech Sign Language" /> - <iso_639_3_entry - id="csf" - scope="I" - type="L" - name="Cuba Sign Language" /> - <iso_639_3_entry - id="csg" - scope="I" - type="L" - name="Chilean Sign Language" /> - <iso_639_3_entry - id="csh" - scope="I" - type="L" - name="Chin; Asho" /> - <iso_639_3_entry - id="csi" - scope="I" - type="E" - name="Miwok; Coast" /> - <iso_639_3_entry - id="csk" - scope="I" - type="L" - name="Jola-Kasa" /> - <iso_639_3_entry - id="csl" - scope="I" - type="L" - name="Chinese Sign Language" /> - <iso_639_3_entry - id="csm" - scope="I" - type="L" - name="Miwok; Central Sierra" /> - <iso_639_3_entry - id="csn" - scope="I" - type="L" - name="Colombian Sign Language" /> - <iso_639_3_entry - id="cso" - scope="I" - type="L" - name="Chinantec; Sochiapan" /> - <iso_639_3_entry - id="csq" - scope="I" - type="L" - name="Croatia Sign Language" /> - <iso_639_3_entry - id="csr" - scope="I" - type="L" - name="Costa Rican Sign Language" /> - <iso_639_3_entry - id="css" - scope="I" - type="E" - name="Ohlone; Southern" /> - <iso_639_3_entry - id="cst" - scope="I" - type="L" - name="Ohlone; Northern" /> - <iso_639_3_entry - id="csw" - scope="I" - type="L" - name="Cree; Swampy" /> - <iso_639_3_entry - id="csy" - scope="I" - type="L" - name="Chin; Siyin" /> - <iso_639_3_entry - id="csz" - scope="I" - type="L" - name="Coos" /> - <iso_639_3_entry - id="cta" - scope="I" - type="L" - name="Chatino; Tataltepec" /> - <iso_639_3_entry - id="ctc" - scope="I" - type="L" - name="Chetco" /> - <iso_639_3_entry - id="ctd" - scope="I" - type="L" - name="Chin; Tedim" /> - <iso_639_3_entry - id="cte" - scope="I" - type="L" - name="Chinantec; Tepinapa" /> - <iso_639_3_entry - id="ctg" - scope="I" - type="L" - name="Chittagonian" /> - <iso_639_3_entry - id="ctl" - scope="I" - type="L" - name="Chinantec; Tlacoatzintepec" /> - <iso_639_3_entry - id="ctm" - scope="I" - type="E" - name="Chitimacha" /> - <iso_639_3_entry - id="ctn" - scope="I" - type="L" - name="Chhintange" /> - <iso_639_3_entry - id="cto" - scope="I" - type="L" - name="Emberá-Catío" /> - <iso_639_3_entry - id="ctp" - scope="I" - type="L" - name="Chatino; Western Highland" /> - <iso_639_3_entry - id="cts" - scope="I" - type="L" - name="Bicolano; Northern Catanduanes" /> - <iso_639_3_entry - id="ctt" - scope="I" - type="L" - name="Chetti; Wayanad" /> - <iso_639_3_entry - id="ctu" - scope="I" - type="L" - name="Chol" /> - <iso_639_3_entry - id="ctz" - scope="I" - type="L" - name="Chatino; Zacatepec" /> - <iso_639_3_entry - id="cua" - scope="I" - type="L" - name="Cua" /> - <iso_639_3_entry - id="cub" - scope="I" - type="L" - name="Cubeo" /> - <iso_639_3_entry - id="cuc" - scope="I" - type="L" - name="Chinantec; Usila" /> - <iso_639_3_entry - id="cug" - scope="I" - type="L" - name="Cung" /> - <iso_639_3_entry - id="cuh" - scope="I" - type="L" - name="Chuka" /> - <iso_639_3_entry - id="cui" - scope="I" - type="L" - name="Cuiba" /> - <iso_639_3_entry - id="cuj" - scope="I" - type="L" - name="Mashco Piro" /> - <iso_639_3_entry - id="cuk" - scope="I" - type="L" - name="Kuna; San Blas" /> - <iso_639_3_entry - id="cul" - scope="I" - type="L" - name="Culina" /> - <iso_639_3_entry - id="cum" - scope="I" - type="E" - name="Cumeral" /> - <iso_639_3_entry - id="cuo" - scope="I" - type="E" - name="Cumanagoto" /> - <iso_639_3_entry - id="cup" - scope="I" - type="E" - name="Cupeño" /> - <iso_639_3_entry - id="cuq" - scope="I" - type="L" - name="Cun" /> - <iso_639_3_entry - id="cur" - scope="I" - type="L" - name="Chhulung" /> - <iso_639_3_entry - id="cut" - scope="I" - type="L" - name="Cuicatec; Teutila" /> - <iso_639_3_entry - id="cuu" - scope="I" - type="L" - name="Tai Ya" /> - <iso_639_3_entry - id="cuv" - scope="I" - type="L" - name="Cuvok" /> - <iso_639_3_entry - id="cuw" - scope="I" - type="L" - name="Chukwa" /> - <iso_639_3_entry - id="cux" - scope="I" - type="L" - name="Cuicatec; Tepeuxila" /> - <iso_639_3_entry - id="cvg" - scope="I" - type="L" - name="Chug" /> - <iso_639_3_entry - id="cvn" - scope="I" - type="L" - name="Chinantec; Valle Nacional" /> - <iso_639_3_entry - id="cwa" - scope="I" - type="L" - name="Kabwa" /> - <iso_639_3_entry - id="cwb" - scope="I" - type="L" - name="Maindo" /> - <iso_639_3_entry - id="cwd" - scope="I" - type="L" - name="Cree; Woods" /> - <iso_639_3_entry - id="cwe" - scope="I" - type="L" - name="Kwere" /> - <iso_639_3_entry - id="cwg" - scope="I" - type="L" - name="Chewong" /> - <iso_639_3_entry - id="cwt" - scope="I" - type="L" - name="Kuwaataay" /> - <iso_639_3_entry - id="cya" - scope="I" - type="L" - name="Chatino; Nopala" /> - <iso_639_3_entry - id="cyb" - scope="I" - type="E" - name="Cayubaba" /> - <iso_639_3_entry - id="cym" - part1_code="cy" - part2_code="wel" - scope="I" - type="L" - name="Welsh" /> - <iso_639_3_entry - id="cyo" - scope="I" - type="L" - name="Cuyonon" /> - <iso_639_3_entry - id="czh" - scope="I" - type="L" - name="Chinese; Huizhou" /> - <iso_639_3_entry - id="czk" - scope="I" - type="E" - name="Knaanic" /> - <iso_639_3_entry - id="czn" - scope="I" - type="L" - name="Chatino; Zenzontepec" /> - <iso_639_3_entry - id="czo" - scope="I" - type="L" - name="Chinese; Min Zhong" /> - <iso_639_3_entry - id="czt" - scope="I" - type="L" - name="Chin; Zotung" /> - <iso_639_3_entry - id="daa" - scope="I" - type="L" - name="Dangaléat" /> - <iso_639_3_entry - id="dac" - scope="I" - type="L" - name="Dambi" /> - <iso_639_3_entry - id="dad" - scope="I" - type="L" - name="Marik" /> - <iso_639_3_entry - id="dae" - scope="I" - type="L" - name="Duupa" /> - <iso_639_3_entry - id="daf" - scope="I" - type="L" - name="Dan" /> - <iso_639_3_entry - id="dag" - scope="I" - type="L" - name="Dagbani" /> - <iso_639_3_entry - id="dah" - scope="I" - type="L" - name="Gwahatike" /> - <iso_639_3_entry - id="dai" - scope="I" - type="L" - name="Day" /> - <iso_639_3_entry - id="daj" - scope="I" - type="L" - name="Daju; Dar Fur" /> - <iso_639_3_entry - id="dak" - part2_code="dak" - scope="I" - type="L" - name="Dakota" /> - <iso_639_3_entry - id="dal" - scope="I" - type="L" - name="Dahalo" /> - <iso_639_3_entry - id="dam" - scope="I" - type="L" - name="Damakawa" /> - <iso_639_3_entry - id="dan" - part1_code="da" - part2_code="dan" - scope="I" - type="L" - name="Danish" /> - <iso_639_3_entry - id="dao" - scope="I" - type="L" - name="Chin; Daai" /> - <iso_639_3_entry - id="dap" - scope="I" - type="L" - name="Nisi (India)" /> - <iso_639_3_entry - id="daq" - scope="I" - type="L" - name="Maria; Dandami" /> - <iso_639_3_entry - id="dar" - part2_code="dar" - scope="I" - type="L" - name="Dargwa" /> - <iso_639_3_entry - id="das" - scope="I" - type="L" - name="Daho-Doo" /> - <iso_639_3_entry - id="dau" - scope="I" - type="L" - name="Daju; Dar Sila" /> - <iso_639_3_entry - id="dav" - scope="I" - type="L" - name="Taita" /> - <iso_639_3_entry - id="daw" - scope="I" - type="L" - name="Davawenyo" /> - <iso_639_3_entry - id="dax" - scope="I" - type="L" - name="Dayi" /> - <iso_639_3_entry - id="daz" - scope="I" - type="L" - name="Dao" /> - <iso_639_3_entry - id="dba" - scope="I" - type="L" - name="Bangi Me" /> - <iso_639_3_entry - id="dbb" - scope="I" - type="L" - name="Deno" /> - <iso_639_3_entry - id="dbd" - scope="I" - type="L" - name="Dadiya" /> - <iso_639_3_entry - id="dbe" - scope="I" - type="L" - name="Dabe" /> - <iso_639_3_entry - id="dbf" - scope="I" - type="L" - name="Edopi" /> - <iso_639_3_entry - id="dbg" - scope="I" - type="L" - name="Dogon; Dogul Dom" /> - <iso_639_3_entry - id="dbi" - scope="I" - type="L" - name="Doka" /> - <iso_639_3_entry - id="dbj" - scope="I" - type="L" - name="Ida'an" /> - <iso_639_3_entry - id="dbl" - scope="I" - type="L" - name="Dyirbal" /> - <iso_639_3_entry - id="dbm" - scope="I" - type="L" - name="Duguri" /> - <iso_639_3_entry - id="dbn" - scope="I" - type="L" - name="Duriankere" /> - <iso_639_3_entry - id="dbo" - scope="I" - type="L" - name="Dulbu" /> - <iso_639_3_entry - id="dbp" - scope="I" - type="L" - name="Duwai" /> - <iso_639_3_entry - id="dbq" - scope="I" - type="L" - name="Daba" /> - <iso_639_3_entry - id="dbr" - scope="I" - type="L" - name="Dabarre" /> - <iso_639_3_entry - id="dbu" - scope="I" - type="L" - name="Dogon; Bondum Dom" /> - <iso_639_3_entry - id="dbv" - scope="I" - type="L" - name="Dungu" /> - <iso_639_3_entry - id="dby" - scope="I" - type="L" - name="Dibiyaso" /> - <iso_639_3_entry - id="dcc" - scope="I" - type="L" - name="Deccan" /> - <iso_639_3_entry - id="dcr" - scope="I" - type="E" - name="Negerhollands" /> - <iso_639_3_entry - id="ddd" - scope="I" - type="L" - name="Dongotono" /> - <iso_639_3_entry - id="dde" - scope="I" - type="L" - name="Doondo" /> - <iso_639_3_entry - id="ddg" - scope="I" - type="L" - name="Fataluku" /> - <iso_639_3_entry - id="ddi" - scope="I" - type="L" - name="Goodenough; West" /> - <iso_639_3_entry - id="ddj" - scope="I" - type="L" - name="Jaru" /> - <iso_639_3_entry - id="ddn" - scope="I" - type="L" - name="Dendi (Benin)" /> - <iso_639_3_entry - id="ddo" - scope="I" - type="L" - name="Dido" /> - <iso_639_3_entry - id="dds" - scope="I" - type="L" - name="Dogon; Donno So" /> - <iso_639_3_entry - id="ddw" - scope="I" - type="L" - name="Dawera-Daweloor" /> - <iso_639_3_entry - id="dec" - scope="I" - type="L" - name="Dagik" /> - <iso_639_3_entry - id="ded" - scope="I" - type="L" - name="Dedua" /> - <iso_639_3_entry - id="dee" - scope="I" - type="L" - name="Dewoin" /> - <iso_639_3_entry - id="def" - scope="I" - type="L" - name="Dezfuli" /> - <iso_639_3_entry - id="deg" - scope="I" - type="L" - name="Degema" /> - <iso_639_3_entry - id="deh" - scope="I" - type="L" - name="Dehwari" /> - <iso_639_3_entry - id="dei" - scope="I" - type="L" - name="Demisa" /> - <iso_639_3_entry - id="dek" - scope="I" - type="L" - name="Dek" /> - <iso_639_3_entry - id="del" - part2_code="del" - scope="M" - type="L" - name="Delaware" /> - <iso_639_3_entry - id="dem" - scope="I" - type="L" - name="Dem" /> - <iso_639_3_entry - id="den" - part2_code="den" - scope="M" - type="L" - name="Slave (Athapascan)" /> - <iso_639_3_entry - id="dep" - scope="I" - type="E" - name="Delaware; Pidgin" /> - <iso_639_3_entry - id="deq" - scope="I" - type="L" - name="Dendi (Central African Republic)" /> - <iso_639_3_entry - id="der" - scope="I" - type="L" - name="Deori" /> - <iso_639_3_entry - id="des" - scope="I" - type="L" - name="Desano" /> - <iso_639_3_entry - id="deu" - part1_code="de" - part2_code="ger" - scope="I" - type="L" - name="German" /> - <iso_639_3_entry - id="dev" - scope="I" - type="L" - name="Domung" /> - <iso_639_3_entry - id="dez" - scope="I" - type="L" - name="Dengese" /> - <iso_639_3_entry - id="dga" - scope="I" - type="L" - name="Dagaare; Southern" /> - <iso_639_3_entry - id="dgb" - scope="I" - type="L" - name="Dogon; Bunoge" /> - <iso_639_3_entry - id="dgc" - scope="I" - type="L" - name="Agta; Casiguran Dumagat" /> - <iso_639_3_entry - id="dgd" - scope="I" - type="L" - name="Dagaari Dioula" /> - <iso_639_3_entry - id="dge" - scope="I" - type="L" - name="Degenan" /> - <iso_639_3_entry - id="dgg" - scope="I" - type="L" - name="Doga" /> - <iso_639_3_entry - id="dgh" - scope="I" - type="L" - name="Dghwede" /> - <iso_639_3_entry - id="dgi" - scope="I" - type="L" - name="Dagara; Northern" /> - <iso_639_3_entry - id="dgk" - scope="I" - type="L" - name="Dagba" /> - <iso_639_3_entry - id="dgn" - scope="I" - type="E" - name="Dagoman" /> - <iso_639_3_entry - id="dgo" - scope="I" - type="L" - name="Dogri (individual language)" /> - <iso_639_3_entry - id="dgr" - part2_code="dgr" - scope="I" - type="L" - name="Dogrib" /> - <iso_639_3_entry - id="dgs" - scope="I" - type="L" - name="Dogoso" /> - <iso_639_3_entry - id="dgu" - scope="I" - type="L" - name="Degaru" /> - <iso_639_3_entry - id="dgx" - scope="I" - type="L" - name="Doghoro" /> - <iso_639_3_entry - id="dgz" - scope="I" - type="L" - name="Daga" /> - <iso_639_3_entry - id="dhd" - scope="I" - type="L" - name="Dhundari" /> - <iso_639_3_entry - id="dhg" - scope="I" - type="L" - name="Dhangu" /> - <iso_639_3_entry - id="dhi" - scope="I" - type="L" - name="Dhimal" /> - <iso_639_3_entry - id="dhl" - scope="I" - type="L" - name="Dhalandji" /> - <iso_639_3_entry - id="dhm" - scope="I" - type="L" - name="Zemba" /> - <iso_639_3_entry - id="dhn" - scope="I" - type="L" - name="Dhanki" /> - <iso_639_3_entry - id="dho" - scope="I" - type="L" - name="Dhodia" /> - <iso_639_3_entry - id="dhr" - scope="I" - type="L" - name="Dhargari" /> - <iso_639_3_entry - id="dhs" - scope="I" - type="L" - name="Dhaiso" /> - <iso_639_3_entry - id="dhu" - scope="I" - type="E" - name="Dhurga" /> - <iso_639_3_entry - id="dhv" - scope="I" - type="L" - name="Dehu" /> - <iso_639_3_entry - id="dhw" - scope="I" - type="L" - name="Dhanwar (Nepal)" /> - <iso_639_3_entry - id="dia" - scope="I" - type="L" - name="Dia" /> - <iso_639_3_entry - id="dib" - scope="I" - type="L" - name="Dinka; South Central" /> - <iso_639_3_entry - id="dic" - scope="I" - type="L" - name="Dida; Lakota" /> - <iso_639_3_entry - id="did" - scope="I" - type="L" - name="Didinga" /> - <iso_639_3_entry - id="dif" - scope="I" - type="E" - name="Dieri" /> - <iso_639_3_entry - id="dig" - scope="I" - type="L" - name="Digo" /> - <iso_639_3_entry - id="dih" - scope="I" - type="L" - name="Kumiai" /> - <iso_639_3_entry - id="dii" - scope="I" - type="L" - name="Dimbong" /> - <iso_639_3_entry - id="dij" - scope="I" - type="L" - name="Dai" /> - <iso_639_3_entry - id="dik" - scope="I" - type="L" - name="Dinka; Southwestern" /> - <iso_639_3_entry - id="dil" - scope="I" - type="L" - name="Dilling" /> - <iso_639_3_entry - id="dim" - scope="I" - type="L" - name="Dime" /> - <iso_639_3_entry - id="din" - part2_code="din" - scope="M" - type="L" - name="Dinka" /> - <iso_639_3_entry - id="dio" - scope="I" - type="L" - name="Dibo" /> - <iso_639_3_entry - id="dip" - scope="I" - type="L" - name="Dinka; Northeastern" /> - <iso_639_3_entry - id="diq" - scope="I" - type="L" - name="Dimli (individual language)" /> - <iso_639_3_entry - id="dir" - scope="I" - type="L" - name="Dirim" /> - <iso_639_3_entry - id="dis" - scope="I" - type="L" - name="Dimasa" /> - <iso_639_3_entry - id="dit" - scope="I" - type="E" - name="Dirari" /> - <iso_639_3_entry - id="diu" - scope="I" - type="L" - name="Diriku" /> - <iso_639_3_entry - id="div" - part1_code="dv" - part2_code="div" - scope="I" - type="L" - name="Dhivehi" /> - <iso_639_3_entry - id="diw" - scope="I" - type="L" - name="Dinka; Northwestern" /> - <iso_639_3_entry - id="dix" - scope="I" - type="L" - name="Dixon Reef" /> - <iso_639_3_entry - id="diy" - scope="I" - type="L" - name="Diuwe" /> - <iso_639_3_entry - id="diz" - scope="I" - type="L" - name="Ding" /> - <iso_639_3_entry - id="djb" - scope="I" - type="L" - name="Djinba" /> - <iso_639_3_entry - id="djc" - scope="I" - type="L" - name="Daju; Dar Daju" /> - <iso_639_3_entry - id="djd" - scope="I" - type="L" - name="Djamindjung" /> - <iso_639_3_entry - id="dje" - scope="I" - type="L" - name="Zarma" /> - <iso_639_3_entry - id="djf" - scope="I" - type="E" - name="Djangun" /> - <iso_639_3_entry - id="dji" - scope="I" - type="L" - name="Djinang" /> - <iso_639_3_entry - id="djj" - scope="I" - type="L" - name="Djeebbana" /> - <iso_639_3_entry - id="djk" - scope="I" - type="L" - name="Eastern Maroon Creole" /> - <iso_639_3_entry - id="djl" - scope="I" - type="E" - name="Djiwarli" /> - <iso_639_3_entry - id="djm" - scope="I" - type="L" - name="Dogon; Jamsay" /> - <iso_639_3_entry - id="djn" - scope="I" - type="L" - name="Djauan" /> - <iso_639_3_entry - id="djo" - scope="I" - type="L" - name="Jangkang" /> - <iso_639_3_entry - id="djr" - scope="I" - type="L" - name="Djambarrpuyngu" /> - <iso_639_3_entry - id="dju" - scope="I" - type="L" - name="Kapriman" /> - <iso_639_3_entry - id="djw" - scope="I" - type="E" - name="Djawi" /> - <iso_639_3_entry - id="dka" - scope="I" - type="L" - name="Dakpakha" /> - <iso_639_3_entry - id="dkk" - scope="I" - type="L" - name="Dakka" /> - <iso_639_3_entry - id="dkr" - scope="I" - type="L" - name="Kuijau" /> - <iso_639_3_entry - id="dks" - scope="I" - type="L" - name="Dinka; Southeastern" /> - <iso_639_3_entry - id="dkx" - scope="I" - type="L" - name="Mazagway" /> - <iso_639_3_entry - id="dlg" - scope="I" - type="L" - name="Dolgan" /> - <iso_639_3_entry - id="dlm" - scope="I" - type="E" - name="Dalmatian" /> - <iso_639_3_entry - id="dln" - scope="I" - type="L" - name="Darlong" /> - <iso_639_3_entry - id="dma" - scope="I" - type="L" - name="Duma" /> - <iso_639_3_entry - id="dmb" - scope="I" - type="L" - name="Dogon; Mombo" /> - <iso_639_3_entry - id="dmc" - scope="I" - type="L" - name="Dimir" /> - <iso_639_3_entry - id="dme" - scope="I" - type="L" - name="Dugwor" /> - <iso_639_3_entry - id="dmg" - scope="I" - type="L" - name="Kinabatangan; Upper" /> - <iso_639_3_entry - id="dmk" - scope="I" - type="L" - name="Domaaki" /> - <iso_639_3_entry - id="dml" - scope="I" - type="L" - name="Dameli" /> - <iso_639_3_entry - id="dmm" - scope="I" - type="L" - name="Dama" /> - <iso_639_3_entry - id="dmo" - scope="I" - type="L" - name="Kemezung" /> - <iso_639_3_entry - id="dmr" - scope="I" - type="L" - name="Damar; East" /> - <iso_639_3_entry - id="dms" - scope="I" - type="L" - name="Dampelas" /> - <iso_639_3_entry - id="dmu" - scope="I" - type="L" - name="Dubu" /> - <iso_639_3_entry - id="dmv" - scope="I" - type="L" - name="Dumpas" /> - <iso_639_3_entry - id="dmx" - scope="I" - type="L" - name="Dema" /> - <iso_639_3_entry - id="dmy" - scope="I" - type="L" - name="Demta" /> - <iso_639_3_entry - id="dna" - scope="I" - type="L" - name="Dani; Upper Grand Valley" /> - <iso_639_3_entry - id="dnd" - scope="I" - type="L" - name="Daonda" /> - <iso_639_3_entry - id="dne" - scope="I" - type="L" - name="Ndendeule" /> - <iso_639_3_entry - id="dng" - scope="I" - type="L" - name="Dungan" /> - <iso_639_3_entry - id="dni" - scope="I" - type="L" - name="Dani; Lower Grand Valley" /> - <iso_639_3_entry - id="dnk" - scope="I" - type="L" - name="Dengka" /> - <iso_639_3_entry - id="dnn" - scope="I" - type="L" - name="Dzùùngoo" /> - <iso_639_3_entry - id="dnr" - scope="I" - type="L" - name="Danaru" /> - <iso_639_3_entry - id="dnt" - scope="I" - type="L" - name="Dani; Mid Grand Valley" /> - <iso_639_3_entry - id="dnu" - scope="I" - type="L" - name="Danau" /> - <iso_639_3_entry - id="dnw" - scope="I" - type="L" - name="Dani; Western" /> - <iso_639_3_entry - id="dny" - scope="I" - type="L" - name="Dení" /> - <iso_639_3_entry - id="doa" - scope="I" - type="L" - name="Dom" /> - <iso_639_3_entry - id="dob" - scope="I" - type="L" - name="Dobu" /> - <iso_639_3_entry - id="doc" - scope="I" - type="L" - name="Dong; Northern" /> - <iso_639_3_entry - id="doe" - scope="I" - type="L" - name="Doe" /> - <iso_639_3_entry - id="dof" - scope="I" - type="L" - name="Domu" /> - <iso_639_3_entry - id="doh" - scope="I" - type="L" - name="Dong" /> - <iso_639_3_entry - id="doi" - part2_code="doi" - scope="M" - type="L" - name="Dogri (macrolanguage)" /> - <iso_639_3_entry - id="dok" - scope="I" - type="L" - name="Dondo" /> - <iso_639_3_entry - id="dol" - scope="I" - type="L" - name="Doso" /> - <iso_639_3_entry - id="don" - scope="I" - type="L" - name="Toura (Papua New Guinea)" /> - <iso_639_3_entry - id="doo" - scope="I" - type="L" - name="Dongo" /> - <iso_639_3_entry - id="dop" - scope="I" - type="L" - name="Lukpa" /> - <iso_639_3_entry - id="doq" - scope="I" - type="L" - name="Dominican Sign Language" /> - <iso_639_3_entry - id="dor" - scope="I" - type="L" - name="Dori'o" /> - <iso_639_3_entry - id="dos" - scope="I" - type="L" - name="Dogosé" /> - <iso_639_3_entry - id="dot" - scope="I" - type="L" - name="Dass" /> - <iso_639_3_entry - id="dov" - scope="I" - type="L" - name="Dombe" /> - <iso_639_3_entry - id="dow" - scope="I" - type="L" - name="Doyayo" /> - <iso_639_3_entry - id="dox" - scope="I" - type="L" - name="Bussa" /> - <iso_639_3_entry - id="doy" - scope="I" - type="L" - name="Dompo" /> - <iso_639_3_entry - id="doz" - scope="I" - type="L" - name="Dorze" /> - <iso_639_3_entry - id="dpp" - scope="I" - type="L" - name="Papar" /> - <iso_639_3_entry - id="drb" - scope="I" - type="L" - name="Dair" /> - <iso_639_3_entry - id="drc" - scope="I" - type="L" - name="Minderico" /> - <iso_639_3_entry - id="drd" - scope="I" - type="L" - name="Darmiya" /> - <iso_639_3_entry - id="dre" - scope="I" - type="L" - name="Dolpo" /> - <iso_639_3_entry - id="drg" - scope="I" - type="L" - name="Rungus" /> - <iso_639_3_entry - id="dri" - scope="I" - type="L" - name="C'lela" /> - <iso_639_3_entry - id="drl" - scope="I" - type="L" - name="Darling" /> - <iso_639_3_entry - id="drn" - scope="I" - type="L" - name="Damar; West" /> - <iso_639_3_entry - id="dro" - scope="I" - type="L" - name="Melanau; Daro-Matu" /> - <iso_639_3_entry - id="drq" - scope="I" - type="E" - name="Dura" /> - <iso_639_3_entry - id="drr" - scope="I" - type="E" - name="Dororo" /> - <iso_639_3_entry - id="drs" - scope="I" - type="L" - name="Gedeo" /> - <iso_639_3_entry - id="drt" - scope="I" - type="L" - name="Drents" /> - <iso_639_3_entry - id="dru" - scope="I" - type="L" - name="Rukai" /> - <iso_639_3_entry - id="dry" - scope="I" - type="L" - name="Darai" /> - <iso_639_3_entry - id="dsb" - part2_code="dsb" - scope="I" - type="L" - name="Sorbian; Lower" /> - <iso_639_3_entry - id="dse" - scope="I" - type="L" - name="Dutch Sign Language" /> - <iso_639_3_entry - id="dsh" - scope="I" - type="L" - name="Daasanach" /> - <iso_639_3_entry - id="dsi" - scope="I" - type="L" - name="Disa" /> - <iso_639_3_entry - id="dsl" - scope="I" - type="L" - name="Danish Sign Language" /> - <iso_639_3_entry - id="dsn" - scope="I" - type="L" - name="Dusner" /> - <iso_639_3_entry - id="dso" - scope="I" - type="L" - name="Desiya" /> - <iso_639_3_entry - id="dsq" - scope="I" - type="L" - name="Tadaksahak" /> - <iso_639_3_entry - id="dta" - scope="I" - type="L" - name="Daur" /> - <iso_639_3_entry - id="dtb" - scope="I" - type="L" - name="Kadazan; Labuk-Kinabatangan" /> - <iso_639_3_entry - id="dtd" - scope="I" - type="L" - name="Ditidaht" /> - <iso_639_3_entry - id="dti" - scope="I" - type="L" - name="Dogon; Ana Tinga" /> - <iso_639_3_entry - id="dtk" - scope="I" - type="L" - name="Dogon; Tene Kan" /> - <iso_639_3_entry - id="dtm" - scope="I" - type="L" - name="Dogon; Tomo Kan" /> - <iso_639_3_entry - id="dtp" - scope="I" - type="L" - name="Dusun; Central" /> - <iso_639_3_entry - id="dtr" - scope="I" - type="L" - name="Lotud" /> - <iso_639_3_entry - id="dts" - scope="I" - type="L" - name="Dogon; Toro So" /> - <iso_639_3_entry - id="dtt" - scope="I" - type="L" - name="Dogon; Toro Tegu" /> - <iso_639_3_entry - id="dtu" - scope="I" - type="L" - name="Dogon; Tebul Ure" /> - <iso_639_3_entry - id="dua" - part2_code="dua" - scope="I" - type="L" - name="Duala" /> - <iso_639_3_entry - id="dub" - scope="I" - type="L" - name="Dubli" /> - <iso_639_3_entry - id="duc" - scope="I" - type="L" - name="Duna" /> - <iso_639_3_entry - id="dud" - scope="I" - type="L" - name="Hun-Saare" /> - <iso_639_3_entry - id="due" - scope="I" - type="L" - name="Agta; Umiray Dumaget" /> - <iso_639_3_entry - id="duf" - scope="I" - type="L" - name="Dumbea" /> - <iso_639_3_entry - id="dug" - scope="I" - type="L" - name="Duruma" /> - <iso_639_3_entry - id="duh" - scope="I" - type="L" - name="Dungra Bhil" /> - <iso_639_3_entry - id="dui" - scope="I" - type="L" - name="Dumun" /> - <iso_639_3_entry - id="duj" - scope="I" - type="L" - name="Dhuwal" /> - <iso_639_3_entry - id="duk" - scope="I" - type="L" - name="Uyajitaya" /> - <iso_639_3_entry - id="dul" - scope="I" - type="L" - name="Agta; Alabat Island" /> - <iso_639_3_entry - id="dum" - part2_code="dum" - scope="I" - type="H" - name="Dutch; Middle (ca. 1050-1350)" /> - <iso_639_3_entry - id="dun" - scope="I" - type="L" - name="Dusun Deyah" /> - <iso_639_3_entry - id="duo" - scope="I" - type="L" - name="Agta; Dupaninan" /> - <iso_639_3_entry - id="dup" - scope="I" - type="L" - name="Duano" /> - <iso_639_3_entry - id="duq" - scope="I" - type="L" - name="Dusun Malang" /> - <iso_639_3_entry - id="dur" - scope="I" - type="L" - name="Dii" /> - <iso_639_3_entry - id="dus" - scope="I" - type="L" - name="Dumi" /> - <iso_639_3_entry - id="duu" - scope="I" - type="L" - name="Drung" /> - <iso_639_3_entry - id="duv" - scope="I" - type="L" - name="Duvle" /> - <iso_639_3_entry - id="duw" - scope="I" - type="L" - name="Dusun Witu" /> - <iso_639_3_entry - id="dux" - scope="I" - type="L" - name="Duungooma" /> - <iso_639_3_entry - id="duy" - scope="I" - type="E" - name="Agta; Dicamay" /> - <iso_639_3_entry - id="duz" - scope="I" - type="E" - name="Duli" /> - <iso_639_3_entry - id="dva" - scope="I" - type="L" - name="Duau" /> - <iso_639_3_entry - id="dwa" - scope="I" - type="L" - name="Diri" /> - <iso_639_3_entry - id="dwl" - scope="I" - type="L" - name="Dogon; Walo Kumbe" /> - <iso_639_3_entry - id="dwr" - scope="I" - type="L" - name="Dawro" /> - <iso_639_3_entry - id="dws" - scope="I" - type="C" - name="Dutton World Speedwords" /> - <iso_639_3_entry - id="dww" - scope="I" - type="L" - name="Dawawa" /> - <iso_639_3_entry - id="dya" - scope="I" - type="L" - name="Dyan" /> - <iso_639_3_entry - id="dyb" - scope="I" - type="E" - name="Dyaberdyaber" /> - <iso_639_3_entry - id="dyd" - scope="I" - type="E" - name="Dyugun" /> - <iso_639_3_entry - id="dyg" - scope="I" - type="E" - name="Agta; Villa Viciosa" /> - <iso_639_3_entry - id="dyi" - scope="I" - type="L" - name="Senoufo; Djimini" /> - <iso_639_3_entry - id="dym" - scope="I" - type="L" - name="Dogon; Yanda Dom" /> - <iso_639_3_entry - id="dyn" - scope="I" - type="L" - name="Dyangadi" /> - <iso_639_3_entry - id="dyo" - scope="I" - type="L" - name="Jola-Fonyi" /> - <iso_639_3_entry - id="dyu" - part2_code="dyu" - scope="I" - type="L" - name="Dyula" /> - <iso_639_3_entry - id="dyy" - scope="I" - type="L" - name="Dyaabugay" /> - <iso_639_3_entry - id="dza" - scope="I" - type="L" - name="Tunzu" /> - <iso_639_3_entry - id="dzd" - scope="I" - type="L" - name="Daza" /> - <iso_639_3_entry - id="dzg" - scope="I" - type="L" - name="Dazaga" /> - <iso_639_3_entry - id="dzl" - scope="I" - type="L" - name="Dzalakha" /> - <iso_639_3_entry - id="dzn" - scope="I" - type="L" - name="Dzando" /> - <iso_639_3_entry - id="dzo" - part1_code="dz" - part2_code="dzo" - scope="I" - type="L" - name="Dzongkha" /> - <iso_639_3_entry - id="ebg" - scope="I" - type="L" - name="Ebughu" /> - <iso_639_3_entry - id="ebk" - scope="I" - type="L" - name="Bontok; Eastern" /> - <iso_639_3_entry - id="ebo" - scope="I" - type="L" - name="Teke-Ebo" /> - <iso_639_3_entry - id="ebr" - scope="I" - type="L" - name="Ebrié" /> - <iso_639_3_entry - id="ebu" - scope="I" - type="L" - name="Embu" /> - <iso_639_3_entry - id="ecr" - scope="I" - type="A" - name="Eteocretan" /> - <iso_639_3_entry - id="ecs" - scope="I" - type="L" - name="Ecuadorian Sign Language" /> - <iso_639_3_entry - id="ecy" - scope="I" - type="A" - name="Eteocypriot" /> - <iso_639_3_entry - id="eee" - scope="I" - type="L" - name="E" /> - <iso_639_3_entry - id="efa" - scope="I" - type="L" - name="Efai" /> - <iso_639_3_entry - id="efe" - scope="I" - type="L" - name="Efe" /> - <iso_639_3_entry - id="efi" - part2_code="efi" - scope="I" - type="L" - name="Efik" /> - <iso_639_3_entry - id="ega" - scope="I" - type="L" - name="Ega" /> - <iso_639_3_entry - id="egl" - scope="I" - type="L" - name="Emilian" /> - <iso_639_3_entry - id="ego" - scope="I" - type="L" - name="Eggon" /> - <iso_639_3_entry - id="egy" - part2_code="egy" - scope="I" - type="A" - name="Egyptian (Ancient)" /> - <iso_639_3_entry - id="ehu" - scope="I" - type="L" - name="Ehueun" /> - <iso_639_3_entry - id="eip" - scope="I" - type="L" - name="Eipomek" /> - <iso_639_3_entry - id="eit" - scope="I" - type="L" - name="Eitiep" /> - <iso_639_3_entry - id="eiv" - scope="I" - type="L" - name="Askopan" /> - <iso_639_3_entry - id="eja" - scope="I" - type="L" - name="Ejamat" /> - <iso_639_3_entry - id="eka" - part2_code="eka" - scope="I" - type="L" - name="Ekajuk" /> - <iso_639_3_entry - id="eke" - scope="I" - type="L" - name="Ekit" /> - <iso_639_3_entry - id="ekg" - scope="I" - type="L" - name="Ekari" /> - <iso_639_3_entry - id="eki" - scope="I" - type="L" - name="Eki" /> - <iso_639_3_entry - id="ekk" - scope="I" - type="L" - name="Estonian; Standard" /> - <iso_639_3_entry - id="ekl" - scope="I" - type="L" - name="Kol" /> - <iso_639_3_entry - id="ekm" - scope="I" - type="L" - name="Elip" /> - <iso_639_3_entry - id="eko" - scope="I" - type="L" - name="Koti" /> - <iso_639_3_entry - id="ekp" - scope="I" - type="L" - name="Ekpeye" /> - <iso_639_3_entry - id="ekr" - scope="I" - type="L" - name="Yace" /> - <iso_639_3_entry - id="eky" - scope="I" - type="L" - name="Kayah; Eastern" /> - <iso_639_3_entry - id="ele" - scope="I" - type="L" - name="Elepi" /> - <iso_639_3_entry - id="elh" - scope="I" - type="L" - name="El Hugeirat" /> - <iso_639_3_entry - id="eli" - scope="I" - type="E" - name="Nding" /> - <iso_639_3_entry - id="elk" - scope="I" - type="L" - name="Elkei" /> - <iso_639_3_entry - id="ell" - part1_code="el" - part2_code="gre" - scope="I" - type="L" - name="Greek; Modern (1453-)" /> - <iso_639_3_entry - id="elm" - scope="I" - type="L" - name="Eleme" /> - <iso_639_3_entry - id="elo" - scope="I" - type="L" - name="El Molo" /> - <iso_639_3_entry - id="elp" - scope="I" - type="L" - name="Elpaputih" /> - <iso_639_3_entry - id="elu" - scope="I" - type="L" - name="Elu" /> - <iso_639_3_entry - id="elx" - part2_code="elx" - scope="I" - type="A" - name="Elamite" /> - <iso_639_3_entry - id="ema" - scope="I" - type="L" - name="Emai-Iuleha-Ora" /> - <iso_639_3_entry - id="emb" - scope="I" - type="L" - name="Embaloh" /> - <iso_639_3_entry - id="eme" - scope="I" - type="L" - name="Emerillon" /> - <iso_639_3_entry - id="emg" - scope="I" - type="L" - name="Meohang; Eastern" /> - <iso_639_3_entry - id="emi" - scope="I" - type="L" - name="Mussau-Emira" /> - <iso_639_3_entry - id="emk" - scope="I" - type="L" - name="Maninkakan; Eastern" /> - <iso_639_3_entry - id="emm" - scope="I" - type="E" - name="Mamulique" /> - <iso_639_3_entry - id="emn" - scope="I" - type="L" - name="Eman" /> - <iso_639_3_entry - id="emo" - scope="I" - type="E" - name="Emok" /> - <iso_639_3_entry - id="emp" - scope="I" - type="L" - name="Emberá; Northern" /> - <iso_639_3_entry - id="ems" - scope="I" - type="L" - name="Yupik; Pacific Gulf" /> - <iso_639_3_entry - id="emu" - scope="I" - type="L" - name="Muria; Eastern" /> - <iso_639_3_entry - id="emw" - scope="I" - type="L" - name="Emplawas" /> - <iso_639_3_entry - id="emx" - scope="I" - type="L" - name="Erromintxela" /> - <iso_639_3_entry - id="emy" - scope="I" - type="E" - name="Mayan; Epigraphic" /> - <iso_639_3_entry - id="ena" - scope="I" - type="L" - name="Apali" /> - <iso_639_3_entry - id="enb" - scope="I" - type="L" - name="Markweeta" /> - <iso_639_3_entry - id="enc" - scope="I" - type="L" - name="En" /> - <iso_639_3_entry - id="end" - scope="I" - type="L" - name="Ende" /> - <iso_639_3_entry - id="enf" - scope="I" - type="L" - name="Enets; Forest" /> - <iso_639_3_entry - id="eng" - part1_code="en" - part2_code="eng" - scope="I" - type="L" - name="English" /> - <iso_639_3_entry - id="enh" - scope="I" - type="L" - name="Enets; Tundra" /> - <iso_639_3_entry - id="enm" - part2_code="enm" - scope="I" - type="H" - name="English; Middle (1100-1500)" /> - <iso_639_3_entry - id="enn" - scope="I" - type="L" - name="Engenni" /> - <iso_639_3_entry - id="eno" - scope="I" - type="L" - name="Enggano" /> - <iso_639_3_entry - id="enq" - scope="I" - type="L" - name="Enga" /> - <iso_639_3_entry - id="enr" - scope="I" - type="L" - name="Emumu" /> - <iso_639_3_entry - id="enu" - scope="I" - type="L" - name="Enu" /> - <iso_639_3_entry - id="env" - scope="I" - type="L" - name="Enwan (Edu State)" /> - <iso_639_3_entry - id="enw" - scope="I" - type="L" - name="Enwan (Akwa Ibom State)" /> - <iso_639_3_entry - id="eot" - scope="I" - type="L" - name="Beti (Côte d'Ivoire)" /> - <iso_639_3_entry - id="epi" - scope="I" - type="L" - name="Epie" /> - <iso_639_3_entry - id="epo" - part1_code="eo" - part2_code="epo" - scope="I" - type="C" - name="Esperanto" /> - <iso_639_3_entry - id="era" - scope="I" - type="L" - name="Eravallan" /> - <iso_639_3_entry - id="erg" - scope="I" - type="L" - name="Sie" /> - <iso_639_3_entry - id="erh" - scope="I" - type="L" - name="Eruwa" /> - <iso_639_3_entry - id="eri" - scope="I" - type="L" - name="Ogea" /> - <iso_639_3_entry - id="erk" - scope="I" - type="L" - name="Efate; South" /> - <iso_639_3_entry - id="ero" - scope="I" - type="L" - name="Horpa" /> - <iso_639_3_entry - id="err" - scope="I" - type="E" - name="Erre" /> - <iso_639_3_entry - id="ers" - scope="I" - type="L" - name="Ersu" /> - <iso_639_3_entry - id="ert" - scope="I" - type="L" - name="Eritai" /> - <iso_639_3_entry - id="erw" - scope="I" - type="L" - name="Erokwanas" /> - <iso_639_3_entry - id="ese" - scope="I" - type="L" - name="Ese Ejja" /> - <iso_639_3_entry - id="esh" - scope="I" - type="L" - name="Eshtehardi" /> - <iso_639_3_entry - id="esi" - scope="I" - type="L" - name="Inupiatun; North Alaskan" /> - <iso_639_3_entry - id="esk" - scope="I" - type="L" - name="Inupiatun; Northwest Alaska" /> - <iso_639_3_entry - id="esl" - scope="I" - type="L" - name="Egypt Sign Language" /> - <iso_639_3_entry - id="esm" - scope="I" - type="E" - name="Esuma" /> - <iso_639_3_entry - id="esn" - scope="I" - type="L" - name="Salvadoran Sign Language" /> - <iso_639_3_entry - id="eso" - scope="I" - type="L" - name="Estonian Sign Language" /> - <iso_639_3_entry - id="esq" - scope="I" - type="E" - name="Esselen" /> - <iso_639_3_entry - id="ess" - scope="I" - type="L" - name="Yupik; Central Siberian" /> - <iso_639_3_entry - id="est" - part1_code="et" - part2_code="est" - scope="M" - type="L" - name="Estonian" /> - <iso_639_3_entry - id="esu" - scope="I" - type="L" - name="Yupik; Central" /> - <iso_639_3_entry - id="etb" - scope="I" - type="L" - name="Etebi" /> - <iso_639_3_entry - id="etc" - scope="I" - type="E" - name="Etchemin" /> - <iso_639_3_entry - id="eth" - scope="I" - type="L" - name="Ethiopian Sign Language" /> - <iso_639_3_entry - id="etn" - scope="I" - type="L" - name="Eton (Vanuatu)" /> - <iso_639_3_entry - id="eto" - scope="I" - type="L" - name="Eton (Cameroon)" /> - <iso_639_3_entry - id="etr" - scope="I" - type="L" - name="Edolo" /> - <iso_639_3_entry - id="ets" - scope="I" - type="L" - name="Yekhee" /> - <iso_639_3_entry - id="ett" - scope="I" - type="A" - name="Etruscan" /> - <iso_639_3_entry - id="etu" - scope="I" - type="L" - name="Ejagham" /> - <iso_639_3_entry - id="etx" - scope="I" - type="L" - name="Eten" /> - <iso_639_3_entry - id="etz" - scope="I" - type="L" - name="Semimi" /> - <iso_639_3_entry - id="eus" - part1_code="eu" - part2_code="baq" - scope="I" - type="L" - name="Basque" /> - <iso_639_3_entry - id="eve" - scope="I" - type="L" - name="Even" /> - <iso_639_3_entry - id="evh" - scope="I" - type="L" - name="Uvbie" /> - <iso_639_3_entry - id="evn" - scope="I" - type="L" - name="Evenki" /> - <iso_639_3_entry - id="ewe" - part1_code="ee" - part2_code="ewe" - scope="I" - type="L" - name="Ewe" /> - <iso_639_3_entry - id="ewo" - part2_code="ewo" - scope="I" - type="L" - name="Ewondo" /> - <iso_639_3_entry - id="ext" - scope="I" - type="L" - name="Extremaduran" /> - <iso_639_3_entry - id="eya" - scope="I" - type="E" - name="Eyak" /> - <iso_639_3_entry - id="eyo" - scope="I" - type="L" - name="Keiyo" /> - <iso_639_3_entry - id="eze" - scope="I" - type="L" - name="Uzekwe" /> - <iso_639_3_entry - id="faa" - scope="I" - type="L" - name="Fasu" /> - <iso_639_3_entry - id="fab" - scope="I" - type="L" - name="Fa D'ambu" /> - <iso_639_3_entry - id="fad" - scope="I" - type="L" - name="Wagi" /> - <iso_639_3_entry - id="faf" - scope="I" - type="L" - name="Fagani" /> - <iso_639_3_entry - id="fag" - scope="I" - type="L" - name="Finongan" /> - <iso_639_3_entry - id="fah" - scope="I" - type="L" - name="Fali; Baissa" /> - <iso_639_3_entry - id="fai" - scope="I" - type="L" - name="Faiwol" /> - <iso_639_3_entry - id="faj" - scope="I" - type="L" - name="Faita" /> - <iso_639_3_entry - id="fak" - scope="I" - type="L" - name="Fang (Cameroon)" /> - <iso_639_3_entry - id="fal" - scope="I" - type="L" - name="Fali; South" /> - <iso_639_3_entry - id="fam" - scope="I" - type="L" - name="Fam" /> - <iso_639_3_entry - id="fan" - part2_code="fan" - scope="I" - type="L" - name="Fang (Equatorial Guinea)" /> - <iso_639_3_entry - id="fao" - part1_code="fo" - part2_code="fao" - scope="I" - type="L" - name="Faroese" /> - <iso_639_3_entry - id="fap" - scope="I" - type="L" - name="Palor" /> - <iso_639_3_entry - id="far" - scope="I" - type="L" - name="Fataleka" /> - <iso_639_3_entry - id="fas" - part1_code="fa" - part2_code="per" - scope="M" - type="L" - name="Persian" /> - <iso_639_3_entry - id="fat" - part2_code="fat" - scope="I" - type="L" - name="Fanti" /> - <iso_639_3_entry - id="fau" - scope="I" - type="L" - name="Fayu" /> - <iso_639_3_entry - id="fax" - scope="I" - type="L" - name="Fala" /> - <iso_639_3_entry - id="fay" - scope="I" - type="L" - name="Fars; Southwestern" /> - <iso_639_3_entry - id="faz" - scope="I" - type="L" - name="Fars; Northwestern" /> - <iso_639_3_entry - id="fbl" - scope="I" - type="L" - name="Bikol; West Albay" /> - <iso_639_3_entry - id="fcs" - scope="I" - type="L" - name="Quebec Sign Language" /> - <iso_639_3_entry - id="fer" - scope="I" - type="L" - name="Feroge" /> - <iso_639_3_entry - id="ffi" - scope="I" - type="L" - name="Foia Foia" /> - <iso_639_3_entry - id="ffm" - scope="I" - type="L" - name="Fulfulde; Maasina" /> - <iso_639_3_entry - id="fgr" - scope="I" - type="L" - name="Fongoro" /> - <iso_639_3_entry - id="fia" - scope="I" - type="L" - name="Nobiin" /> - <iso_639_3_entry - id="fie" - scope="I" - type="L" - name="Fyer" /> - <iso_639_3_entry - id="fij" - part1_code="fj" - part2_code="fij" - scope="I" - type="L" - name="Fijian" /> - <iso_639_3_entry - id="fil" - part2_code="fil" - scope="I" - type="L" - name="Filipino" /> - <iso_639_3_entry - id="fin" - part1_code="fi" - part2_code="fin" - scope="I" - type="L" - name="Finnish" /> - <iso_639_3_entry - id="fip" - scope="I" - type="L" - name="Fipa" /> - <iso_639_3_entry - id="fir" - scope="I" - type="L" - name="Firan" /> - <iso_639_3_entry - id="fit" - scope="I" - type="L" - name="Finnish; Tornedalen" /> - <iso_639_3_entry - id="fiw" - scope="I" - type="L" - name="Fiwaga" /> - <iso_639_3_entry - id="fkv" - scope="I" - type="L" - name="Finnish; Kven" /> - <iso_639_3_entry - id="fla" - scope="I" - type="L" - name="Kalispel-Pend d'Oreille" /> - <iso_639_3_entry - id="flh" - scope="I" - type="L" - name="Foau" /> - <iso_639_3_entry - id="fli" - scope="I" - type="L" - name="Fali" /> - <iso_639_3_entry - id="fll" - scope="I" - type="L" - name="Fali; North" /> - <iso_639_3_entry - id="fln" - scope="I" - type="E" - name="Flinders Island" /> - <iso_639_3_entry - id="flr" - scope="I" - type="L" - name="Fuliiru" /> - <iso_639_3_entry - id="fly" - scope="I" - type="L" - name="Tsotsitaal" /> - <iso_639_3_entry - id="fmp" - scope="I" - type="L" - name="Fe'fe'" /> - <iso_639_3_entry - id="fmu" - scope="I" - type="L" - name="Muria; Far Western" /> - <iso_639_3_entry - id="fng" - scope="I" - type="L" - name="Fanagalo" /> - <iso_639_3_entry - id="fni" - scope="I" - type="L" - name="Fania" /> - <iso_639_3_entry - id="fod" - scope="I" - type="L" - name="Foodo" /> - <iso_639_3_entry - id="foi" - scope="I" - type="L" - name="Foi" /> - <iso_639_3_entry - id="fom" - scope="I" - type="L" - name="Foma" /> - <iso_639_3_entry - id="fon" - part2_code="fon" - scope="I" - type="L" - name="Fon" /> - <iso_639_3_entry - id="for" - scope="I" - type="L" - name="Fore" /> - <iso_639_3_entry - id="fos" - scope="I" - type="E" - name="Siraya" /> - <iso_639_3_entry - id="fpe" - scope="I" - type="L" - name="Creole English; Fernando Po" /> - <iso_639_3_entry - id="fqs" - scope="I" - type="L" - name="Fas" /> - <iso_639_3_entry - id="fra" - part1_code="fr" - part2_code="fre" - scope="I" - type="L" - name="French" /> - <iso_639_3_entry - id="frc" - scope="I" - type="L" - name="French; Cajun" /> - <iso_639_3_entry - id="frd" - scope="I" - type="L" - name="Fordata" /> - <iso_639_3_entry - id="frk" - scope="I" - type="E" - name="Frankish" /> - <iso_639_3_entry - id="frm" - part2_code="frm" - scope="I" - type="H" - name="French; Middle (ca. 1400-1600)" /> - <iso_639_3_entry - id="fro" - part2_code="fro" - scope="I" - type="H" - name="French; Old (842-ca. 1400)" /> - <iso_639_3_entry - id="frp" - scope="I" - type="L" - name="Arpitan" /> - <iso_639_3_entry - id="frq" - scope="I" - type="L" - name="Forak" /> - <iso_639_3_entry - id="frr" - part2_code="frr" - scope="I" - type="L" - name="Frisian; Northern" /> - <iso_639_3_entry - id="frs" - part2_code="frs" - scope="I" - type="L" - name="Frisian; Eastern" /> - <iso_639_3_entry - id="frt" - scope="I" - type="L" - name="Fortsenal" /> - <iso_639_3_entry - id="fry" - part1_code="fy" - part2_code="fry" - scope="I" - type="L" - name="Frisian; Western" /> - <iso_639_3_entry - id="fse" - scope="I" - type="L" - name="Finnish Sign Language" /> - <iso_639_3_entry - id="fsl" - scope="I" - type="L" - name="French Sign Language" /> - <iso_639_3_entry - id="fss" - scope="I" - type="L" - name="Finland-Swedish Sign Language" /> - <iso_639_3_entry - id="fub" - scope="I" - type="L" - name="Fulfulde; Adamawa" /> - <iso_639_3_entry - id="fuc" - scope="I" - type="L" - name="Pulaar" /> - <iso_639_3_entry - id="fud" - scope="I" - type="L" - name="Futuna; East" /> - <iso_639_3_entry - id="fue" - scope="I" - type="L" - name="Fulfulde; Borgu" /> - <iso_639_3_entry - id="fuf" - scope="I" - type="L" - name="Pular" /> - <iso_639_3_entry - id="fuh" - scope="I" - type="L" - name="Fulfulde; Western Niger" /> - <iso_639_3_entry - id="fui" - scope="I" - type="L" - name="Fulfulde; Bagirmi" /> - <iso_639_3_entry - id="fuj" - scope="I" - type="L" - name="Ko" /> - <iso_639_3_entry - id="ful" - part1_code="ff" - part2_code="ful" - scope="M" - type="L" - name="Fulah" /> - <iso_639_3_entry - id="fum" - scope="I" - type="L" - name="Fum" /> - <iso_639_3_entry - id="fun" - scope="I" - type="L" - name="Fulniô" /> - <iso_639_3_entry - id="fuq" - scope="I" - type="L" - name="Fulfulde; Central-Eastern Niger" /> - <iso_639_3_entry - id="fur" - part2_code="fur" - scope="I" - type="L" - name="Friulian" /> - <iso_639_3_entry - id="fut" - scope="I" - type="L" - name="Futuna-Aniwa" /> - <iso_639_3_entry - id="fuu" - scope="I" - type="L" - name="Furu" /> - <iso_639_3_entry - id="fuv" - scope="I" - type="L" - name="Fulfulde; Nigerian" /> - <iso_639_3_entry - id="fuy" - scope="I" - type="L" - name="Fuyug" /> - <iso_639_3_entry - id="fvr" - scope="I" - type="L" - name="Fur" /> - <iso_639_3_entry - id="fwa" - scope="I" - type="L" - name="Fwâi" /> - <iso_639_3_entry - id="fwe" - scope="I" - type="L" - name="Fwe" /> - <iso_639_3_entry - id="gaa" - part2_code="gaa" - scope="I" - type="L" - name="Ga" /> - <iso_639_3_entry - id="gab" - scope="I" - type="L" - name="Gabri" /> - <iso_639_3_entry - id="gac" - scope="I" - type="L" - name="Great Andamanese; Mixed" /> - <iso_639_3_entry - id="gad" - scope="I" - type="L" - name="Gaddang" /> - <iso_639_3_entry - id="gae" - scope="I" - type="L" - name="Guarequena" /> - <iso_639_3_entry - id="gaf" - scope="I" - type="L" - name="Gende" /> - <iso_639_3_entry - id="gag" - scope="I" - type="L" - name="Gagauz" /> - <iso_639_3_entry - id="gah" - scope="I" - type="L" - name="Alekano" /> - <iso_639_3_entry - id="gai" - scope="I" - type="L" - name="Borei" /> - <iso_639_3_entry - id="gaj" - scope="I" - type="L" - name="Gadsup" /> - <iso_639_3_entry - id="gak" - scope="I" - type="L" - name="Gamkonora" /> - <iso_639_3_entry - id="gal" - scope="I" - type="L" - name="Galoli" /> - <iso_639_3_entry - id="gam" - scope="I" - type="L" - name="Kandawo" /> - <iso_639_3_entry - id="gan" - scope="I" - type="L" - name="Chinese; Gan" /> - <iso_639_3_entry - id="gao" - scope="I" - type="L" - name="Gants" /> - <iso_639_3_entry - id="gap" - scope="I" - type="L" - name="Gal" /> - <iso_639_3_entry - id="gaq" - scope="I" - type="L" - name="Gata'" /> - <iso_639_3_entry - id="gar" - scope="I" - type="L" - name="Galeya" /> - <iso_639_3_entry - id="gas" - scope="I" - type="L" - name="Garasia; Adiwasi" /> - <iso_639_3_entry - id="gat" - scope="I" - type="L" - name="Kenati" /> - <iso_639_3_entry - id="gau" - scope="I" - type="L" - name="Gadaba; Mudhili" /> - <iso_639_3_entry - id="gaw" - scope="I" - type="L" - name="Nobonob" /> - <iso_639_3_entry - id="gax" - scope="I" - type="L" - name="Oromo; Borana-Arsi-Guji" /> - <iso_639_3_entry - id="gay" - part2_code="gay" - scope="I" - type="L" - name="Gayo" /> - <iso_639_3_entry - id="gaz" - scope="I" - type="L" - name="Oromo; West Central" /> - <iso_639_3_entry - id="gba" - part2_code="gba" - scope="M" - type="L" - name="Gbaya (Central African Republic)" /> - <iso_639_3_entry - id="gbb" - scope="I" - type="L" - name="Kaytetye" /> - <iso_639_3_entry - id="gbc" - scope="I" - type="L" - name="Garawa" /> - <iso_639_3_entry - id="gbd" - scope="I" - type="L" - name="Karadjeri" /> - <iso_639_3_entry - id="gbe" - scope="I" - type="L" - name="Niksek" /> - <iso_639_3_entry - id="gbf" - scope="I" - type="L" - name="Gaikundi" /> - <iso_639_3_entry - id="gbg" - scope="I" - type="L" - name="Gbanziri" /> - <iso_639_3_entry - id="gbh" - scope="I" - type="L" - name="Gbe; Defi" /> - <iso_639_3_entry - id="gbi" - scope="I" - type="L" - name="Galela" /> - <iso_639_3_entry - id="gbj" - scope="I" - type="L" - name="Gadaba; Bodo" /> - <iso_639_3_entry - id="gbk" - scope="I" - type="L" - name="Gaddi" /> - <iso_639_3_entry - id="gbl" - scope="I" - type="L" - name="Gamit" /> - <iso_639_3_entry - id="gbm" - scope="I" - type="L" - name="Garhwali" /> - <iso_639_3_entry - id="gbn" - scope="I" - type="L" - name="Mo'da" /> - <iso_639_3_entry - id="gbo" - scope="I" - type="L" - name="Grebo; Northern" /> - <iso_639_3_entry - id="gbp" - scope="I" - type="L" - name="Gbaya-Bossangoa" /> - <iso_639_3_entry - id="gbq" - scope="I" - type="L" - name="Gbaya-Bozoum" /> - <iso_639_3_entry - id="gbr" - scope="I" - type="L" - name="Gbagyi" /> - <iso_639_3_entry - id="gbs" - scope="I" - type="L" - name="Gbe; Gbesi" /> - <iso_639_3_entry - id="gbu" - scope="I" - type="L" - name="Gagadu" /> - <iso_639_3_entry - id="gbv" - scope="I" - type="L" - name="Gbanu" /> - <iso_639_3_entry - id="gbx" - scope="I" - type="L" - name="Gbe; Eastern Xwla" /> - <iso_639_3_entry - id="gby" - scope="I" - type="L" - name="Gbari" /> - <iso_639_3_entry - id="gbz" - scope="I" - type="L" - name="Dari; Zoroastrian" /> - <iso_639_3_entry - id="gcc" - scope="I" - type="L" - name="Mali" /> - <iso_639_3_entry - id="gcd" - scope="I" - type="E" - name="Ganggalida" /> - <iso_639_3_entry - id="gce" - scope="I" - type="E" - name="Galice" /> - <iso_639_3_entry - id="gcf" - scope="I" - type="L" - name="Creole French; Guadeloupean" /> - <iso_639_3_entry - id="gcl" - scope="I" - type="L" - name="Creole English; Grenadian" /> - <iso_639_3_entry - id="gcn" - scope="I" - type="L" - name="Gaina" /> - <iso_639_3_entry - id="gcr" - scope="I" - type="L" - name="Creole French; Guianese" /> - <iso_639_3_entry - id="gct" - scope="I" - type="L" - name="German; Colonia Tovar" /> - <iso_639_3_entry - id="gda" - scope="I" - type="L" - name="Lohar; Gade" /> - <iso_639_3_entry - id="gdb" - scope="I" - type="L" - name="Gadaba; Pottangi Ollar" /> - <iso_639_3_entry - id="gdc" - scope="I" - type="E" - name="Gugu Badhun" /> - <iso_639_3_entry - id="gdd" - scope="I" - type="L" - name="Gedaged" /> - <iso_639_3_entry - id="gde" - scope="I" - type="L" - name="Gude" /> - <iso_639_3_entry - id="gdf" - scope="I" - type="L" - name="Guduf-Gava" /> - <iso_639_3_entry - id="gdg" - scope="I" - type="L" - name="Ga'dang" /> - <iso_639_3_entry - id="gdh" - scope="I" - type="L" - name="Gadjerawang" /> - <iso_639_3_entry - id="gdi" - scope="I" - type="L" - name="Gundi" /> - <iso_639_3_entry - id="gdj" - scope="I" - type="L" - name="Gurdjar" /> - <iso_639_3_entry - id="gdk" - scope="I" - type="L" - name="Gadang" /> - <iso_639_3_entry - id="gdl" - scope="I" - type="L" - name="Dirasha" /> - <iso_639_3_entry - id="gdm" - scope="I" - type="L" - name="Laal" /> - <iso_639_3_entry - id="gdn" - scope="I" - type="L" - name="Umanakaina" /> - <iso_639_3_entry - id="gdo" - scope="I" - type="L" - name="Ghodoberi" /> - <iso_639_3_entry - id="gdq" - scope="I" - type="L" - name="Mehri" /> - <iso_639_3_entry - id="gdr" - scope="I" - type="L" - name="Wipi" /> - <iso_639_3_entry - id="gdu" - scope="I" - type="L" - name="Gudu" /> - <iso_639_3_entry - id="gdx" - scope="I" - type="L" - name="Godwari" /> - <iso_639_3_entry - id="gea" - scope="I" - type="L" - name="Geruma" /> - <iso_639_3_entry - id="geb" - scope="I" - type="L" - name="Kire" /> - <iso_639_3_entry - id="gec" - scope="I" - type="L" - name="Grebo; Gboloo" /> - <iso_639_3_entry - id="ged" - scope="I" - type="L" - name="Gade" /> - <iso_639_3_entry - id="geg" - scope="I" - type="L" - name="Gengle" /> - <iso_639_3_entry - id="geh" - scope="I" - type="L" - name="German; Hutterite" /> - <iso_639_3_entry - id="gei" - scope="I" - type="L" - name="Gebe" /> - <iso_639_3_entry - id="gej" - scope="I" - type="L" - name="Gen" /> - <iso_639_3_entry - id="gek" - scope="I" - type="L" - name="Yiwom" /> - <iso_639_3_entry - id="gel" - scope="I" - type="L" - name="ut-Ma'in" /> - <iso_639_3_entry - id="geq" - scope="I" - type="L" - name="Geme" /> - <iso_639_3_entry - id="ges" - scope="I" - type="L" - name="Geser-Gorom" /> - <iso_639_3_entry - id="gew" - scope="I" - type="L" - name="Gera" /> - <iso_639_3_entry - id="gex" - scope="I" - type="L" - name="Garre" /> - <iso_639_3_entry - id="gey" - scope="I" - type="L" - name="Enya" /> - <iso_639_3_entry - id="gez" - part2_code="gez" - scope="I" - type="A" - name="Geez" /> - <iso_639_3_entry - id="gfk" - scope="I" - type="L" - name="Patpatar" /> - <iso_639_3_entry - id="gft" - scope="I" - type="E" - name="Gafat" /> - <iso_639_3_entry - id="gga" - scope="I" - type="L" - name="Gao" /> - <iso_639_3_entry - id="ggb" - scope="I" - type="L" - name="Gbii" /> - <iso_639_3_entry - id="ggd" - scope="I" - type="E" - name="Gugadj" /> - <iso_639_3_entry - id="gge" - scope="I" - type="L" - name="Guragone" /> - <iso_639_3_entry - id="ggg" - scope="I" - type="L" - name="Gurgula" /> - <iso_639_3_entry - id="ggk" - scope="I" - type="E" - name="Kungarakany" /> - <iso_639_3_entry - id="ggl" - scope="I" - type="L" - name="Ganglau" /> - <iso_639_3_entry - id="ggn" - scope="I" - type="L" - name="Gurung; Eastern" /> - <iso_639_3_entry - id="ggo" - scope="I" - type="L" - name="Gondi; Southern" /> - <iso_639_3_entry - id="ggr" - scope="I" - type="E" - name="Aghu Tharnggalu" /> - <iso_639_3_entry - id="ggt" - scope="I" - type="L" - name="Gitua" /> - <iso_639_3_entry - id="ggu" - scope="I" - type="L" - name="Gagu" /> - <iso_639_3_entry - id="ggw" - scope="I" - type="L" - name="Gogodala" /> - <iso_639_3_entry - id="gha" - scope="I" - type="L" - name="Ghadamès" /> - <iso_639_3_entry - id="ghc" - scope="I" - type="E" - name="Gaelic; Hiberno-Scottish" /> - <iso_639_3_entry - id="ghe" - scope="I" - type="L" - name="Ghale; Southern" /> - <iso_639_3_entry - id="ghh" - scope="I" - type="L" - name="Ghale; Northern" /> - <iso_639_3_entry - id="ghk" - scope="I" - type="L" - name="Karen; Geko" /> - <iso_639_3_entry - id="ghl" - scope="I" - type="L" - name="Ghulfan" /> - <iso_639_3_entry - id="ghn" - scope="I" - type="L" - name="Ghanongga" /> - <iso_639_3_entry - id="gho" - scope="I" - type="E" - name="Ghomara" /> - <iso_639_3_entry - id="ghr" - scope="I" - type="L" - name="Ghera" /> - <iso_639_3_entry - id="ghs" - scope="I" - type="L" - name="Guhu-Samane" /> - <iso_639_3_entry - id="ght" - scope="I" - type="L" - name="Ghale; Kutang" /> - <iso_639_3_entry - id="gia" - scope="I" - type="L" - name="Kitja" /> - <iso_639_3_entry - id="gib" - scope="I" - type="L" - name="Gibanawa" /> - <iso_639_3_entry - id="gic" - scope="I" - type="L" - name="Gail" /> - <iso_639_3_entry - id="gid" - scope="I" - type="L" - name="Gidar" /> - <iso_639_3_entry - id="gig" - scope="I" - type="L" - name="Goaria" /> - <iso_639_3_entry - id="gil" - part2_code="gil" - scope="I" - type="L" - name="Gilbertese" /> - <iso_639_3_entry - id="gim" - scope="I" - type="L" - name="Gimi (Eastern Highlands)" /> - <iso_639_3_entry - id="gin" - scope="I" - type="L" - name="Hinukh" /> - <iso_639_3_entry - id="gio" - scope="I" - type="L" - name="Gelao" /> - <iso_639_3_entry - id="gip" - scope="I" - type="L" - name="Gimi (West New Britain)" /> - <iso_639_3_entry - id="giq" - scope="I" - type="L" - name="Gelao; Green" /> - <iso_639_3_entry - id="gir" - scope="I" - type="L" - name="Gelao; Red" /> - <iso_639_3_entry - id="gis" - scope="I" - type="L" - name="Giziga; North" /> - <iso_639_3_entry - id="git" - scope="I" - type="L" - name="Gitxsan" /> - <iso_639_3_entry - id="giw" - scope="I" - type="L" - name="Gelao; White" /> - <iso_639_3_entry - id="gix" - scope="I" - type="L" - name="Gilima" /> - <iso_639_3_entry - id="giy" - scope="I" - type="L" - name="Giyug" /> - <iso_639_3_entry - id="giz" - scope="I" - type="L" - name="Giziga; South" /> - <iso_639_3_entry - id="gji" - scope="I" - type="L" - name="Geji" /> - <iso_639_3_entry - id="gjk" - scope="I" - type="L" - name="Koli; Kachi" /> - <iso_639_3_entry - id="gjn" - scope="I" - type="L" - name="Gonja" /> - <iso_639_3_entry - id="gju" - scope="I" - type="L" - name="Gujari" /> - <iso_639_3_entry - id="gka" - scope="I" - type="L" - name="Guya" /> - <iso_639_3_entry - id="gke" - scope="I" - type="L" - name="Ndai" /> - <iso_639_3_entry - id="gkn" - scope="I" - type="L" - name="Gokana" /> - <iso_639_3_entry - id="gkp" - scope="I" - type="L" - name="Kpelle; Guinea" /> - <iso_639_3_entry - id="gla" - part1_code="gd" - part2_code="gla" - scope="I" - type="L" - name="Gaelic; Scottish" /> - <iso_639_3_entry - id="glc" - scope="I" - type="L" - name="Bon Gula" /> - <iso_639_3_entry - id="gld" - scope="I" - type="L" - name="Nanai" /> - <iso_639_3_entry - id="gle" - part1_code="ga" - part2_code="gle" - scope="I" - type="L" - name="Irish" /> - <iso_639_3_entry - id="glg" - part1_code="gl" - part2_code="glg" - scope="I" - type="L" - name="Galician" /> - <iso_639_3_entry - id="glh" - scope="I" - type="L" - name="Pashayi; Northwest" /> - <iso_639_3_entry - id="gli" - scope="I" - type="E" - name="Guliguli" /> - <iso_639_3_entry - id="glj" - scope="I" - type="L" - name="Gula Iro" /> - <iso_639_3_entry - id="glk" - scope="I" - type="L" - name="Gilaki" /> - <iso_639_3_entry - id="glo" - scope="I" - type="L" - name="Galambu" /> - <iso_639_3_entry - id="glr" - scope="I" - type="L" - name="Glaro-Twabo" /> - <iso_639_3_entry - id="glu" - scope="I" - type="L" - name="Gula (Chad)" /> - <iso_639_3_entry - id="glv" - part1_code="gv" - part2_code="glv" - scope="I" - type="L" - name="Manx" /> - <iso_639_3_entry - id="glw" - scope="I" - type="L" - name="Glavda" /> - <iso_639_3_entry - id="gly" - scope="I" - type="E" - name="Gule" /> - <iso_639_3_entry - id="gma" - scope="I" - type="E" - name="Gambera" /> - <iso_639_3_entry - id="gmb" - scope="I" - type="L" - name="Gula'alaa" /> - <iso_639_3_entry - id="gmd" - scope="I" - type="L" - name="Mághdì" /> - <iso_639_3_entry - id="gmh" - part2_code="gmh" - scope="I" - type="H" - name="German; Middle High (ca. 1050-1500)" /> - <iso_639_3_entry - id="gml" - scope="I" - type="H" - name="German; Middle Low" /> - <iso_639_3_entry - id="gmm" - scope="I" - type="L" - name="Gbaya-Mbodomo" /> - <iso_639_3_entry - id="gmn" - scope="I" - type="L" - name="Gimnime" /> - <iso_639_3_entry - id="gmu" - scope="I" - type="L" - name="Gumalu" /> - <iso_639_3_entry - id="gmv" - scope="I" - type="L" - name="Gamo" /> - <iso_639_3_entry - id="gmx" - scope="I" - type="L" - name="Magoma" /> - <iso_639_3_entry - id="gmy" - scope="I" - type="A" - name="Greek; Mycenaean" /> - <iso_639_3_entry - id="gna" - scope="I" - type="L" - name="Kaansa" /> - <iso_639_3_entry - id="gnb" - scope="I" - type="L" - name="Gangte" /> - <iso_639_3_entry - id="gnc" - scope="I" - type="E" - name="Guanche" /> - <iso_639_3_entry - id="gnd" - scope="I" - type="L" - name="Zulgo-Gemzek" /> - <iso_639_3_entry - id="gne" - scope="I" - type="L" - name="Ganang" /> - <iso_639_3_entry - id="gng" - scope="I" - type="L" - name="Ngangam" /> - <iso_639_3_entry - id="gnh" - scope="I" - type="L" - name="Lere" /> - <iso_639_3_entry - id="gni" - scope="I" - type="L" - name="Gooniyandi" /> - <iso_639_3_entry - id="gnk" - scope="I" - type="L" - name="//Gana" /> - <iso_639_3_entry - id="gnl" - scope="I" - type="E" - name="Gangulu" /> - <iso_639_3_entry - id="gnm" - scope="I" - type="L" - name="Ginuman" /> - <iso_639_3_entry - id="gnn" - scope="I" - type="L" - name="Gumatj" /> - <iso_639_3_entry - id="gno" - scope="I" - type="L" - name="Gondi; Northern" /> - <iso_639_3_entry - id="gnq" - scope="I" - type="L" - name="Gana" /> - <iso_639_3_entry - id="gnr" - scope="I" - type="E" - name="Gureng Gureng" /> - <iso_639_3_entry - id="gnt" - scope="I" - type="L" - name="Guntai" /> - <iso_639_3_entry - id="gnu" - scope="I" - type="L" - name="Gnau" /> - <iso_639_3_entry - id="gnw" - scope="I" - type="L" - name="Guaraní; Western Bolivian" /> - <iso_639_3_entry - id="gnz" - scope="I" - type="L" - name="Ganzi" /> - <iso_639_3_entry - id="goa" - scope="I" - type="L" - name="Guro" /> - <iso_639_3_entry - id="gob" - scope="I" - type="L" - name="Playero" /> - <iso_639_3_entry - id="goc" - scope="I" - type="L" - name="Gorakor" /> - <iso_639_3_entry - id="god" - scope="I" - type="L" - name="Godié" /> - <iso_639_3_entry - id="goe" - scope="I" - type="L" - name="Gongduk" /> - <iso_639_3_entry - id="gof" - scope="I" - type="L" - name="Gofa" /> - <iso_639_3_entry - id="gog" - scope="I" - type="L" - name="Gogo" /> - <iso_639_3_entry - id="goh" - part2_code="goh" - scope="I" - type="H" - name="German; Old High (ca. 750-1050)" /> - <iso_639_3_entry - id="goi" - scope="I" - type="L" - name="Gobasi" /> - <iso_639_3_entry - id="goj" - scope="I" - type="L" - name="Gowlan" /> - <iso_639_3_entry - id="gok" - scope="I" - type="L" - name="Gowli" /> - <iso_639_3_entry - id="gol" - scope="I" - type="L" - name="Gola" /> - <iso_639_3_entry - id="gom" - scope="I" - type="L" - name="Konkani; Goan" /> - <iso_639_3_entry - id="gon" - part2_code="gon" - scope="M" - type="L" - name="Gondi" /> - <iso_639_3_entry - id="goo" - scope="I" - type="L" - name="Gone Dau" /> - <iso_639_3_entry - id="gop" - scope="I" - type="L" - name="Yeretuar" /> - <iso_639_3_entry - id="goq" - scope="I" - type="L" - name="Gorap" /> - <iso_639_3_entry - id="gor" - part2_code="gor" - scope="I" - type="L" - name="Gorontalo" /> - <iso_639_3_entry - id="gos" - scope="I" - type="L" - name="Gronings" /> - <iso_639_3_entry - id="got" - part2_code="got" - scope="I" - type="A" - name="Gothic" /> - <iso_639_3_entry - id="gou" - scope="I" - type="L" - name="Gavar" /> - <iso_639_3_entry - id="gow" - scope="I" - type="L" - name="Gorowa" /> - <iso_639_3_entry - id="gox" - scope="I" - type="L" - name="Gobu" /> - <iso_639_3_entry - id="goy" - scope="I" - type="L" - name="Goundo" /> - <iso_639_3_entry - id="goz" - scope="I" - type="L" - name="Gozarkhani" /> - <iso_639_3_entry - id="gpa" - scope="I" - type="L" - name="Gupa-Abawa" /> - <iso_639_3_entry - id="gpn" - scope="I" - type="L" - name="Taiap" /> - <iso_639_3_entry - id="gqa" - scope="I" - type="L" - name="Ga'anda" /> - <iso_639_3_entry - id="gqi" - scope="I" - type="L" - name="Guiqiong" /> - <iso_639_3_entry - id="gqn" - scope="I" - type="E" - name="Guana (Brazil)" /> - <iso_639_3_entry - id="gqr" - scope="I" - type="L" - name="Gor" /> - <iso_639_3_entry - id="gra" - scope="I" - type="L" - name="Garasia; Rajput" /> - <iso_639_3_entry - id="grb" - part2_code="grb" - scope="M" - type="L" - name="Grebo" /> - <iso_639_3_entry - id="grc" - part2_code="grc" - scope="I" - type="H" - name="Greek; Ancient (to 1453)" /> - <iso_639_3_entry - id="grd" - scope="I" - type="L" - name="Guruntum-Mbaaru" /> - <iso_639_3_entry - id="grg" - scope="I" - type="L" - name="Madi" /> - <iso_639_3_entry - id="grh" - scope="I" - type="L" - name="Gbiri-Niragu" /> - <iso_639_3_entry - id="gri" - scope="I" - type="L" - name="Ghari" /> - <iso_639_3_entry - id="grj" - scope="I" - type="L" - name="Grebo; Southern" /> - <iso_639_3_entry - id="grm" - scope="I" - type="L" - name="Kota Marudu Talantang" /> - <iso_639_3_entry - id="grn" - part1_code="gn" - part2_code="grn" - scope="M" - type="L" - name="Guarani" /> - <iso_639_3_entry - id="gro" - scope="I" - type="L" - name="Groma" /> - <iso_639_3_entry - id="grq" - scope="I" - type="L" - name="Gorovu" /> - <iso_639_3_entry - id="grr" - scope="I" - type="L" - name="Taznatit" /> - <iso_639_3_entry - id="grs" - scope="I" - type="L" - name="Gresi" /> - <iso_639_3_entry - id="grt" - scope="I" - type="L" - name="Garo" /> - <iso_639_3_entry - id="gru" - scope="I" - type="L" - name="Kistane" /> - <iso_639_3_entry - id="grv" - scope="I" - type="L" - name="Grebo; Central" /> - <iso_639_3_entry - id="grw" - scope="I" - type="L" - name="Gweda" /> - <iso_639_3_entry - id="grx" - scope="I" - type="L" - name="Guriaso" /> - <iso_639_3_entry - id="gry" - scope="I" - type="L" - name="Grebo; Barclayville" /> - <iso_639_3_entry - id="grz" - scope="I" - type="L" - name="Guramalum" /> - <iso_639_3_entry - id="gse" - scope="I" - type="L" - name="Ghanaian Sign Language" /> - <iso_639_3_entry - id="gsg" - scope="I" - type="L" - name="German Sign Language" /> - <iso_639_3_entry - id="gsl" - scope="I" - type="L" - name="Gusilay" /> - <iso_639_3_entry - id="gsm" - scope="I" - type="L" - name="Guatemalan Sign Language" /> - <iso_639_3_entry - id="gsn" - scope="I" - type="L" - name="Gusan" /> - <iso_639_3_entry - id="gso" - scope="I" - type="L" - name="Gbaya; Southwest" /> - <iso_639_3_entry - id="gsp" - scope="I" - type="L" - name="Wasembo" /> - <iso_639_3_entry - id="gss" - scope="I" - type="L" - name="Greek Sign Language" /> - <iso_639_3_entry - id="gsw" - part2_code="gsw" - scope="I" - type="L" - name="German; Swiss" /> - <iso_639_3_entry - id="gta" - scope="I" - type="L" - name="Guató" /> - <iso_639_3_entry - id="gti" - scope="I" - type="L" - name="Gbati-ri" /> - <iso_639_3_entry - id="gua" - scope="I" - type="L" - name="Shiki" /> - <iso_639_3_entry - id="gub" - scope="I" - type="L" - name="Guajajára" /> - <iso_639_3_entry - id="guc" - scope="I" - type="L" - name="Wayuu" /> - <iso_639_3_entry - id="gud" - scope="I" - type="L" - name="Dida; Yocoboué" /> - <iso_639_3_entry - id="gue" - scope="I" - type="L" - name="Gurinji" /> - <iso_639_3_entry - id="guf" - scope="I" - type="L" - name="Gupapuyngu" /> - <iso_639_3_entry - id="gug" - scope="I" - type="L" - name="Guaraní; Paraguayan" /> - <iso_639_3_entry - id="guh" - scope="I" - type="L" - name="Guahibo" /> - <iso_639_3_entry - id="gui" - scope="I" - type="L" - name="Guaraní; Eastern Bolivian" /> - <iso_639_3_entry - id="guj" - part1_code="gu" - part2_code="guj" - scope="I" - type="L" - name="Gujarati" /> - <iso_639_3_entry - id="guk" - scope="I" - type="L" - name="Gumuz" /> - <iso_639_3_entry - id="gul" - scope="I" - type="L" - name="Creole English; Sea Island" /> - <iso_639_3_entry - id="gum" - scope="I" - type="L" - name="Guambiano" /> - <iso_639_3_entry - id="gun" - scope="I" - type="L" - name="Guaraní; Mbyá" /> - <iso_639_3_entry - id="guo" - scope="I" - type="L" - name="Guayabero" /> - <iso_639_3_entry - id="gup" - scope="I" - type="L" - name="Gunwinggu" /> - <iso_639_3_entry - id="guq" - scope="I" - type="L" - name="Aché" /> - <iso_639_3_entry - id="gur" - scope="I" - type="L" - name="Farefare" /> - <iso_639_3_entry - id="gus" - scope="I" - type="L" - name="Guinean Sign Language" /> - <iso_639_3_entry - id="gut" - scope="I" - type="L" - name="Maléku Jaíka" /> - <iso_639_3_entry - id="guu" - scope="I" - type="L" - name="Yanomamö" /> - <iso_639_3_entry - id="guv" - scope="I" - type="E" - name="Gey" /> - <iso_639_3_entry - id="guw" - scope="I" - type="L" - name="Gun" /> - <iso_639_3_entry - id="gux" - scope="I" - type="L" - name="Gourmanchéma" /> - <iso_639_3_entry - id="guz" - scope="I" - type="L" - name="Gusii" /> - <iso_639_3_entry - id="gva" - scope="I" - type="L" - name="Guana (Paraguay)" /> - <iso_639_3_entry - id="gvc" - scope="I" - type="L" - name="Guanano" /> - <iso_639_3_entry - id="gve" - scope="I" - type="L" - name="Duwet" /> - <iso_639_3_entry - id="gvf" - scope="I" - type="L" - name="Golin" /> - <iso_639_3_entry - id="gvj" - scope="I" - type="L" - name="Guajá" /> - <iso_639_3_entry - id="gvl" - scope="I" - type="L" - name="Gulay" /> - <iso_639_3_entry - id="gvm" - scope="I" - type="L" - name="Gurmana" /> - <iso_639_3_entry - id="gvn" - scope="I" - type="L" - name="Kuku-Yalanji" /> - <iso_639_3_entry - id="gvo" - scope="I" - type="L" - name="Gavião Do Jiparaná" /> - <iso_639_3_entry - id="gvp" - scope="I" - type="L" - name="Gavião; Pará" /> - <iso_639_3_entry - id="gvr" - scope="I" - type="L" - name="Gurung; Western" /> - <iso_639_3_entry - id="gvs" - scope="I" - type="L" - name="Gumawana" /> - <iso_639_3_entry - id="gvy" - scope="I" - type="E" - name="Guyani" /> - <iso_639_3_entry - id="gwa" - scope="I" - type="L" - name="Mbato" /> - <iso_639_3_entry - id="gwb" - scope="I" - type="L" - name="Gwa" /> - <iso_639_3_entry - id="gwc" - scope="I" - type="L" - name="Kalami" /> - <iso_639_3_entry - id="gwd" - scope="I" - type="L" - name="Gawwada" /> - <iso_639_3_entry - id="gwe" - scope="I" - type="L" - name="Gweno" /> - <iso_639_3_entry - id="gwf" - scope="I" - type="L" - name="Gowro" /> - <iso_639_3_entry - id="gwg" - scope="I" - type="L" - name="Moo" /> - <iso_639_3_entry - id="gwi" - part2_code="gwi" - scope="I" - type="L" - name="Gwichʼin" /> - <iso_639_3_entry - id="gwj" - scope="I" - type="L" - name="/Gwi" /> - <iso_639_3_entry - id="gwn" - scope="I" - type="L" - name="Gwandara" /> - <iso_639_3_entry - id="gwr" - scope="I" - type="L" - name="Gwere" /> - <iso_639_3_entry - id="gwt" - scope="I" - type="L" - name="Gawar-Bati" /> - <iso_639_3_entry - id="gwu" - scope="I" - type="E" - name="Guwamu" /> - <iso_639_3_entry - id="gww" - scope="I" - type="L" - name="Kwini" /> - <iso_639_3_entry - id="gwx" - scope="I" - type="L" - name="Gua" /> - <iso_639_3_entry - id="gxx" - scope="I" - type="L" - name="Wè Southern" /> - <iso_639_3_entry - id="gya" - scope="I" - type="L" - name="Gbaya; Northwest" /> - <iso_639_3_entry - id="gyb" - scope="I" - type="L" - name="Garus" /> - <iso_639_3_entry - id="gyd" - scope="I" - type="L" - name="Kayardild" /> - <iso_639_3_entry - id="gye" - scope="I" - type="L" - name="Gyem" /> - <iso_639_3_entry - id="gyf" - scope="I" - type="E" - name="Gungabula" /> - <iso_639_3_entry - id="gyg" - scope="I" - type="L" - name="Gbayi" /> - <iso_639_3_entry - id="gyi" - scope="I" - type="L" - name="Gyele" /> - <iso_639_3_entry - id="gyl" - scope="I" - type="L" - name="Gayil" /> - <iso_639_3_entry - id="gym" - scope="I" - type="L" - name="Ngäbere" /> - <iso_639_3_entry - id="gyn" - scope="I" - type="L" - name="Creole English; Guyanese" /> - <iso_639_3_entry - id="gyr" - scope="I" - type="L" - name="Guarayu" /> - <iso_639_3_entry - id="gyy" - scope="I" - type="E" - name="Gunya" /> - <iso_639_3_entry - id="gza" - scope="I" - type="L" - name="Ganza" /> - <iso_639_3_entry - id="gzi" - scope="I" - type="L" - name="Gazi" /> - <iso_639_3_entry - id="gzn" - scope="I" - type="L" - name="Gane" /> - <iso_639_3_entry - id="haa" - scope="I" - type="L" - name="Han" /> - <iso_639_3_entry - id="hab" - scope="I" - type="L" - name="Hanoi Sign Language" /> - <iso_639_3_entry - id="hac" - scope="I" - type="L" - name="Gurani" /> - <iso_639_3_entry - id="had" - scope="I" - type="L" - name="Hatam" /> - <iso_639_3_entry - id="hae" - scope="I" - type="L" - name="Oromo; Eastern" /> - <iso_639_3_entry - id="haf" - scope="I" - type="L" - name="Haiphong Sign Language" /> - <iso_639_3_entry - id="hag" - scope="I" - type="L" - name="Hanga" /> - <iso_639_3_entry - id="hah" - scope="I" - type="L" - name="Hahon" /> - <iso_639_3_entry - id="hai" - part2_code="hai" - scope="M" - type="L" - name="Haida" /> - <iso_639_3_entry - id="haj" - scope="I" - type="L" - name="Hajong" /> - <iso_639_3_entry - id="hak" - scope="I" - type="L" - name="Chinese; Hakka" /> - <iso_639_3_entry - id="hal" - scope="I" - type="L" - name="Halang" /> - <iso_639_3_entry - id="ham" - scope="I" - type="L" - name="Hewa" /> - <iso_639_3_entry - id="han" - scope="I" - type="L" - name="Hangaza" /> - <iso_639_3_entry - id="hao" - scope="I" - type="L" - name="Hakö" /> - <iso_639_3_entry - id="hap" - scope="I" - type="L" - name="Hupla" /> - <iso_639_3_entry - id="haq" - scope="I" - type="L" - name="Ha" /> - <iso_639_3_entry - id="har" - scope="I" - type="L" - name="Harari" /> - <iso_639_3_entry - id="has" - scope="I" - type="L" - name="Haisla" /> - <iso_639_3_entry - id="hat" - part1_code="ht" - part2_code="hat" - scope="I" - type="L" - name="Creole; Haitian" /> - <iso_639_3_entry - id="hau" - part1_code="ha" - part2_code="hau" - scope="I" - type="L" - name="Hausa" /> - <iso_639_3_entry - id="hav" - scope="I" - type="L" - name="Havu" /> - <iso_639_3_entry - id="haw" - part2_code="haw" - scope="I" - type="L" - name="Hawaiian" /> - <iso_639_3_entry - id="hax" - scope="I" - type="L" - name="Haida; Southern" /> - <iso_639_3_entry - id="hay" - scope="I" - type="L" - name="Haya" /> - <iso_639_3_entry - id="haz" - scope="I" - type="L" - name="Hazaragi" /> - <iso_639_3_entry - id="hba" - scope="I" - type="L" - name="Hamba" /> - <iso_639_3_entry - id="hbb" - scope="I" - type="L" - name="Huba" /> - <iso_639_3_entry - id="hbn" - scope="I" - type="L" - name="Heiban" /> - <iso_639_3_entry - id="hbo" - scope="I" - type="H" - name="Hebrew; Ancient" /> - <iso_639_3_entry - id="hbs" - part1_code="sh" - scope="M" - type="L" - name="Serbo-Croatian" /> - <iso_639_3_entry - id="hbu" - scope="I" - type="L" - name="Habu" /> - <iso_639_3_entry - id="hca" - scope="I" - type="L" - name="Creole Hindi; Andaman" /> - <iso_639_3_entry - id="hch" - scope="I" - type="L" - name="Huichol" /> - <iso_639_3_entry - id="hdn" - scope="I" - type="L" - name="Haida; Northern" /> - <iso_639_3_entry - id="hds" - scope="I" - type="L" - name="Honduras Sign Language" /> - <iso_639_3_entry - id="hdy" - scope="I" - type="L" - name="Hadiyya" /> - <iso_639_3_entry - id="hea" - scope="I" - type="L" - name="Miao; Northern Qiandong" /> - <iso_639_3_entry - id="heb" - part1_code="he" - part2_code="heb" - scope="I" - type="L" - name="Hebrew" /> - <iso_639_3_entry - id="hed" - scope="I" - type="L" - name="Herdé" /> - <iso_639_3_entry - id="heg" - scope="I" - type="L" - name="Helong" /> - <iso_639_3_entry - id="heh" - scope="I" - type="L" - name="Hehe" /> - <iso_639_3_entry - id="hei" - scope="I" - type="L" - name="Heiltsuk" /> - <iso_639_3_entry - id="hem" - scope="I" - type="L" - name="Hemba" /> - <iso_639_3_entry - id="her" - part1_code="hz" - part2_code="her" - scope="I" - type="L" - name="Herero" /> - <iso_639_3_entry - id="hgm" - scope="I" - type="L" - name="Hai//om" /> - <iso_639_3_entry - id="hgw" - scope="I" - type="L" - name="Haigwai" /> - <iso_639_3_entry - id="hhi" - scope="I" - type="L" - name="Hoia Hoia" /> - <iso_639_3_entry - id="hhr" - scope="I" - type="L" - name="Kerak" /> - <iso_639_3_entry - id="hhy" - scope="I" - type="L" - name="Hoyahoya" /> - <iso_639_3_entry - id="hia" - scope="I" - type="L" - name="Lamang" /> - <iso_639_3_entry - id="hib" - scope="I" - type="E" - name="Hibito" /> - <iso_639_3_entry - id="hid" - scope="I" - type="L" - name="Hidatsa" /> - <iso_639_3_entry - id="hif" - scope="I" - type="L" - name="Hindi; Fiji" /> - <iso_639_3_entry - id="hig" - scope="I" - type="L" - name="Kamwe" /> - <iso_639_3_entry - id="hih" - scope="I" - type="L" - name="Pamosu" /> - <iso_639_3_entry - id="hii" - scope="I" - type="L" - name="Hinduri" /> - <iso_639_3_entry - id="hij" - scope="I" - type="L" - name="Hijuk" /> - <iso_639_3_entry - id="hik" - scope="I" - type="L" - name="Seit-Kaitetu" /> - <iso_639_3_entry - id="hil" - part2_code="hil" - scope="I" - type="L" - name="Hiligaynon" /> - <iso_639_3_entry - id="hin" - part1_code="hi" - part2_code="hin" - scope="I" - type="L" - name="Hindi" /> - <iso_639_3_entry - id="hio" - scope="I" - type="L" - name="Tsoa" /> - <iso_639_3_entry - id="hir" - scope="I" - type="L" - name="Himarimã" /> - <iso_639_3_entry - id="hit" - part2_code="hit" - scope="I" - type="A" - name="Hittite" /> - <iso_639_3_entry - id="hiw" - scope="I" - type="L" - name="Hiw" /> - <iso_639_3_entry - id="hix" - scope="I" - type="L" - name="Hixkaryána" /> - <iso_639_3_entry - id="hji" - scope="I" - type="L" - name="Haji" /> - <iso_639_3_entry - id="hka" - scope="I" - type="L" - name="Kahe" /> - <iso_639_3_entry - id="hke" - scope="I" - type="L" - name="Hunde" /> - <iso_639_3_entry - id="hkk" - scope="I" - type="L" - name="Hunjara-Kaina Ke" /> - <iso_639_3_entry - id="hks" - scope="I" - type="L" - name="Hong Kong Sign Language" /> - <iso_639_3_entry - id="hla" - scope="I" - type="L" - name="Halia" /> - <iso_639_3_entry - id="hlb" - scope="I" - type="L" - name="Halbi" /> - <iso_639_3_entry - id="hld" - scope="I" - type="L" - name="Halang Doan" /> - <iso_639_3_entry - id="hle" - scope="I" - type="L" - name="Hlersu" /> - <iso_639_3_entry - id="hlt" - scope="I" - type="L" - name="Nga La" /> - <iso_639_3_entry - id="hlu" - scope="I" - type="A" - name="Luwian; Hieroglyphic" /> - <iso_639_3_entry - id="hma" - scope="I" - type="L" - name="Miao; Southern Mashan" /> - <iso_639_3_entry - id="hmb" - scope="I" - type="L" - name="Songhay; Humburi Senni" /> - <iso_639_3_entry - id="hmc" - scope="I" - type="L" - name="Miao; Central Huishui" /> - <iso_639_3_entry - id="hmd" - scope="I" - type="L" - name="Miao; Large Flowery" /> - <iso_639_3_entry - id="hme" - scope="I" - type="L" - name="Miao; Eastern Huishui" /> - <iso_639_3_entry - id="hmf" - scope="I" - type="L" - name="Hmong Don" /> - <iso_639_3_entry - id="hmg" - scope="I" - type="L" - name="Hmong; Southwestern Guiyang" /> - <iso_639_3_entry - id="hmh" - scope="I" - type="L" - name="Miao; Southwestern Huishui" /> - <iso_639_3_entry - id="hmi" - scope="I" - type="L" - name="Miao; Northern Huishui" /> - <iso_639_3_entry - id="hmj" - scope="I" - type="L" - name="Ge" /> - <iso_639_3_entry - id="hmk" - scope="I" - type="E" - name="Maek" /> - <iso_639_3_entry - id="hml" - scope="I" - type="L" - name="Miao; Luopohe" /> - <iso_639_3_entry - id="hmm" - scope="I" - type="L" - name="Miao; Central Mashan" /> - <iso_639_3_entry - id="hmn" - part2_code="hmn" - scope="M" - type="L" - name="Hmong" /> - <iso_639_3_entry - id="hmo" - part1_code="ho" - part2_code="hmo" - scope="I" - type="L" - name="Hiri Motu" /> - <iso_639_3_entry - id="hmp" - scope="I" - type="L" - name="Miao; Northern Mashan" /> - <iso_639_3_entry - id="hmq" - scope="I" - type="L" - name="Miao; Eastern Qiandong" /> - <iso_639_3_entry - id="hmr" - scope="I" - type="L" - name="Hmar" /> - <iso_639_3_entry - id="hms" - scope="I" - type="L" - name="Miao; Southern Qiandong" /> - <iso_639_3_entry - id="hmt" - scope="I" - type="L" - name="Hamtai" /> - <iso_639_3_entry - id="hmu" - scope="I" - type="L" - name="Hamap" /> - <iso_639_3_entry - id="hmv" - scope="I" - type="L" - name="Hmong Dô" /> - <iso_639_3_entry - id="hmw" - scope="I" - type="L" - name="Miao; Western Mashan" /> - <iso_639_3_entry - id="hmy" - scope="I" - type="L" - name="Miao; Southern Guiyang" /> - <iso_639_3_entry - id="hmz" - scope="I" - type="L" - name="Miao; Sinicized" /> - <iso_639_3_entry - id="hna" - scope="I" - type="L" - name="Mina (Cameroon)" /> - <iso_639_3_entry - id="hnd" - scope="I" - type="L" - name="Hindko; Southern" /> - <iso_639_3_entry - id="hne" - scope="I" - type="L" - name="Chhattisgarhi" /> - <iso_639_3_entry - id="hnh" - scope="I" - type="L" - name="//Ani" /> - <iso_639_3_entry - id="hni" - scope="I" - type="L" - name="Hani" /> - <iso_639_3_entry - id="hnj" - scope="I" - type="L" - name="Hmong Njua" /> - <iso_639_3_entry - id="hnn" - scope="I" - type="L" - name="Hanunoo" /> - <iso_639_3_entry - id="hno" - scope="I" - type="L" - name="Hindko; Northern" /> - <iso_639_3_entry - id="hns" - scope="I" - type="L" - name="Hindustani; Caribbean" /> - <iso_639_3_entry - id="hnu" - scope="I" - type="L" - name="Hung" /> - <iso_639_3_entry - id="hoa" - scope="I" - type="L" - name="Hoava" /> - <iso_639_3_entry - id="hob" - scope="I" - type="L" - name="Mari (Madang Province)" /> - <iso_639_3_entry - id="hoc" - scope="I" - type="L" - name="Ho" /> - <iso_639_3_entry - id="hod" - scope="I" - type="E" - name="Holma" /> - <iso_639_3_entry - id="hoe" - scope="I" - type="L" - name="Horom" /> - <iso_639_3_entry - id="hoh" - scope="I" - type="L" - name="Hobyót" /> - <iso_639_3_entry - id="hoi" - scope="I" - type="L" - name="Holikachuk" /> - <iso_639_3_entry - id="hoj" - scope="I" - type="L" - name="Hadothi" /> - <iso_639_3_entry - id="hol" - scope="I" - type="L" - name="Holu" /> - <iso_639_3_entry - id="hom" - scope="I" - type="E" - name="Homa" /> - <iso_639_3_entry - id="hoo" - scope="I" - type="L" - name="Holoholo" /> - <iso_639_3_entry - id="hop" - scope="I" - type="L" - name="Hopi" /> - <iso_639_3_entry - id="hor" - scope="I" - type="E" - name="Horo" /> - <iso_639_3_entry - id="hos" - scope="I" - type="L" - name="Ho Chi Minh City Sign Language" /> - <iso_639_3_entry - id="hot" - scope="I" - type="L" - name="Hote" /> - <iso_639_3_entry - id="hov" - scope="I" - type="L" - name="Hovongan" /> - <iso_639_3_entry - id="how" - scope="I" - type="L" - name="Honi" /> - <iso_639_3_entry - id="hoy" - scope="I" - type="L" - name="Holiya" /> - <iso_639_3_entry - id="hoz" - scope="I" - type="L" - name="Hozo" /> - <iso_639_3_entry - id="hpo" - scope="I" - type="L" - name="Hpon" /> - <iso_639_3_entry - id="hps" - scope="I" - type="L" - name="Hawai'i Pidgin Sign Language" /> - <iso_639_3_entry - id="hra" - scope="I" - type="L" - name="Hrangkhol" /> - <iso_639_3_entry - id="hre" - scope="I" - type="L" - name="Hre" /> - <iso_639_3_entry - id="hrk" - scope="I" - type="L" - name="Haruku" /> - <iso_639_3_entry - id="hrm" - scope="I" - type="L" - name="Miao; Horned" /> - <iso_639_3_entry - id="hro" - scope="I" - type="L" - name="Haroi" /> - <iso_639_3_entry - id="hrr" - scope="I" - type="L" - name="Horuru" /> - <iso_639_3_entry - id="hrt" - scope="I" - type="L" - name="Hértevin" /> - <iso_639_3_entry - id="hru" - scope="I" - type="L" - name="Hruso" /> - <iso_639_3_entry - id="hrv" - part1_code="hr" - part2_code="hrv" - scope="I" - type="L" - name="Croatian" /> - <iso_639_3_entry - id="hrx" - scope="I" - type="L" - name="Hunsrik" /> - <iso_639_3_entry - id="hrz" - scope="I" - type="L" - name="Harzani" /> - <iso_639_3_entry - id="hsb" - part2_code="hsb" - scope="I" - type="L" - name="Sorbian; Upper" /> - <iso_639_3_entry - id="hsh" - scope="I" - type="L" - name="Hungarian Sign Language" /> - <iso_639_3_entry - id="hsl" - scope="I" - type="L" - name="Hausa Sign Language" /> - <iso_639_3_entry - id="hsn" - scope="I" - type="L" - name="Chinese; Xiang" /> - <iso_639_3_entry - id="hss" - scope="I" - type="L" - name="Harsusi" /> - <iso_639_3_entry - id="hti" - scope="I" - type="L" - name="Hoti" /> - <iso_639_3_entry - id="hto" - scope="I" - type="L" - name="Huitoto; Minica" /> - <iso_639_3_entry - id="hts" - scope="I" - type="L" - name="Hadza" /> - <iso_639_3_entry - id="htu" - scope="I" - type="L" - name="Hitu" /> - <iso_639_3_entry - id="htx" - scope="I" - type="A" - name="Hittite; Middle" /> - <iso_639_3_entry - id="hub" - scope="I" - type="L" - name="Huambisa" /> - <iso_639_3_entry - id="huc" - scope="I" - type="L" - name="=/Hua" /> - <iso_639_3_entry - id="hud" - scope="I" - type="L" - name="Huaulu" /> - <iso_639_3_entry - id="hue" - scope="I" - type="L" - name="Huave; San Francisco Del Mar" /> - <iso_639_3_entry - id="huf" - scope="I" - type="L" - name="Humene" /> - <iso_639_3_entry - id="hug" - scope="I" - type="L" - name="Huachipaeri" /> - <iso_639_3_entry - id="huh" - scope="I" - type="L" - name="Huilliche" /> - <iso_639_3_entry - id="hui" - scope="I" - type="L" - name="Huli" /> - <iso_639_3_entry - id="huj" - scope="I" - type="L" - name="Miao; Northern Guiyang" /> - <iso_639_3_entry - id="huk" - scope="I" - type="L" - name="Hulung" /> - <iso_639_3_entry - id="hul" - scope="I" - type="L" - name="Hula" /> - <iso_639_3_entry - id="hum" - scope="I" - type="L" - name="Hungana" /> - <iso_639_3_entry - id="hun" - part1_code="hu" - part2_code="hun" - scope="I" - type="L" - name="Hungarian" /> - <iso_639_3_entry - id="huo" - scope="I" - type="L" - name="Hu" /> - <iso_639_3_entry - id="hup" - part2_code="hup" - scope="I" - type="L" - name="Hupa" /> - <iso_639_3_entry - id="huq" - scope="I" - type="L" - name="Tsat" /> - <iso_639_3_entry - id="hur" - scope="I" - type="L" - name="Halkomelem" /> - <iso_639_3_entry - id="hus" - scope="I" - type="L" - name="Huastec" /> - <iso_639_3_entry - id="hut" - scope="I" - type="L" - name="Humla" /> - <iso_639_3_entry - id="huu" - scope="I" - type="L" - name="Huitoto; Murui" /> - <iso_639_3_entry - id="huv" - scope="I" - type="L" - name="Huave; San Mateo Del Mar" /> - <iso_639_3_entry - id="huw" - scope="I" - type="E" - name="Hukumina" /> - <iso_639_3_entry - id="hux" - scope="I" - type="L" - name="Huitoto; Nüpode" /> - <iso_639_3_entry - id="huy" - scope="I" - type="L" - name="Hulaulá" /> - <iso_639_3_entry - id="huz" - scope="I" - type="L" - name="Hunzib" /> - <iso_639_3_entry - id="hvc" - scope="I" - type="L" - name="Haitian Vodoun Culture Language" /> - <iso_639_3_entry - id="hve" - scope="I" - type="L" - name="Huave; San Dionisio Del Mar" /> - <iso_639_3_entry - id="hvk" - scope="I" - type="L" - name="Haveke" /> - <iso_639_3_entry - id="hvn" - scope="I" - type="L" - name="Sabu" /> - <iso_639_3_entry - id="hvv" - scope="I" - type="L" - name="Huave; Santa María Del Mar" /> - <iso_639_3_entry - id="hwa" - scope="I" - type="L" - name="Wané" /> - <iso_639_3_entry - id="hwc" - scope="I" - type="L" - name="Creole English; Hawai'i" /> - <iso_639_3_entry - id="hwo" - scope="I" - type="L" - name="Hwana" /> - <iso_639_3_entry - id="hya" - scope="I" - type="L" - name="Hya" /> - <iso_639_3_entry - id="hye" - part1_code="hy" - part2_code="arm" - scope="I" - type="L" - name="Armenian" /> - <iso_639_3_entry - id="iai" - scope="I" - type="L" - name="Iaai" /> - <iso_639_3_entry - id="ian" - scope="I" - type="L" - name="Iatmul" /> - <iso_639_3_entry - id="iap" - scope="I" - type="L" - name="Iapama" /> - <iso_639_3_entry - id="iar" - scope="I" - type="L" - name="Purari" /> - <iso_639_3_entry - id="iba" - part2_code="iba" - scope="I" - type="L" - name="Iban" /> - <iso_639_3_entry - id="ibb" - scope="I" - type="L" - name="Ibibio" /> - <iso_639_3_entry - id="ibd" - scope="I" - type="L" - name="Iwaidja" /> - <iso_639_3_entry - id="ibe" - scope="I" - type="L" - name="Akpes" /> - <iso_639_3_entry - id="ibg" - scope="I" - type="L" - name="Ibanag" /> - <iso_639_3_entry - id="ibi" - scope="I" - type="L" - name="Ibilo" /> - <iso_639_3_entry - id="ibl" - scope="I" - type="L" - name="Ibaloi" /> - <iso_639_3_entry - id="ibm" - scope="I" - type="L" - name="Agoi" /> - <iso_639_3_entry - id="ibn" - scope="I" - type="L" - name="Ibino" /> - <iso_639_3_entry - id="ibo" - part1_code="ig" - part2_code="ibo" - scope="I" - type="L" - name="Igbo" /> - <iso_639_3_entry - id="ibr" - scope="I" - type="L" - name="Ibuoro" /> - <iso_639_3_entry - id="ibu" - scope="I" - type="L" - name="Ibu" /> - <iso_639_3_entry - id="iby" - scope="I" - type="L" - name="Ibani" /> - <iso_639_3_entry - id="ica" - scope="I" - type="L" - name="Ede Ica" /> - <iso_639_3_entry - id="ich" - scope="I" - type="L" - name="Etkywan" /> - <iso_639_3_entry - id="icl" - scope="I" - type="L" - name="Icelandic Sign Language" /> - <iso_639_3_entry - id="icr" - scope="I" - type="L" - name="Creole English; Islander" /> - <iso_639_3_entry - id="ida" - scope="I" - type="L" - name="Idakho-Isukha-Tiriki" /> - <iso_639_3_entry - id="idb" - scope="I" - type="L" - name="Indo-Portuguese" /> - <iso_639_3_entry - id="idc" - scope="I" - type="L" - name="Idon" /> - <iso_639_3_entry - id="idd" - scope="I" - type="L" - name="Ede Idaca" /> - <iso_639_3_entry - id="ide" - scope="I" - type="L" - name="Idere" /> - <iso_639_3_entry - id="idi" - scope="I" - type="L" - name="Idi" /> - <iso_639_3_entry - id="ido" - part1_code="io" - part2_code="ido" - scope="I" - type="C" - name="Ido" /> - <iso_639_3_entry - id="idr" - scope="I" - type="L" - name="Indri" /> - <iso_639_3_entry - id="ids" - scope="I" - type="L" - name="Idesa" /> - <iso_639_3_entry - id="idt" - scope="I" - type="L" - name="Idaté" /> - <iso_639_3_entry - id="idu" - scope="I" - type="L" - name="Idoma" /> - <iso_639_3_entry - id="ifa" - scope="I" - type="L" - name="Ifugao; Amganad" /> - <iso_639_3_entry - id="ifb" - scope="I" - type="L" - name="Ifugao; Batad" /> - <iso_639_3_entry - id="ife" - scope="I" - type="L" - name="Ifè" /> - <iso_639_3_entry - id="iff" - scope="I" - type="E" - name="Ifo" /> - <iso_639_3_entry - id="ifk" - scope="I" - type="L" - name="Ifugao; Tuwali" /> - <iso_639_3_entry - id="ifm" - scope="I" - type="L" - name="Teke-Fuumu" /> - <iso_639_3_entry - id="ifu" - scope="I" - type="L" - name="Ifugao; Mayoyao" /> - <iso_639_3_entry - id="ify" - scope="I" - type="L" - name="Kallahan; Keley-I" /> - <iso_639_3_entry - id="igb" - scope="I" - type="L" - name="Ebira" /> - <iso_639_3_entry - id="ige" - scope="I" - type="L" - name="Igede" /> - <iso_639_3_entry - id="igg" - scope="I" - type="L" - name="Igana" /> - <iso_639_3_entry - id="igl" - scope="I" - type="L" - name="Igala" /> - <iso_639_3_entry - id="igm" - scope="I" - type="L" - name="Kanggape" /> - <iso_639_3_entry - id="ign" - scope="I" - type="L" - name="Ignaciano" /> - <iso_639_3_entry - id="igo" - scope="I" - type="L" - name="Isebe" /> - <iso_639_3_entry - id="igs" - scope="I" - type="C" - name="Interglossa" /> - <iso_639_3_entry - id="igw" - scope="I" - type="L" - name="Igwe" /> - <iso_639_3_entry - id="ihb" - scope="I" - type="L" - name="Iha Based Pidgin" /> - <iso_639_3_entry - id="ihi" - scope="I" - type="L" - name="Ihievbe" /> - <iso_639_3_entry - id="ihp" - scope="I" - type="L" - name="Iha" /> - <iso_639_3_entry - id="iii" - part1_code="ii" - part2_code="iii" - scope="I" - type="L" - name="Yi; Sichuan" /> - <iso_639_3_entry - id="ijc" - scope="I" - type="L" - name="Izon" /> - <iso_639_3_entry - id="ije" - scope="I" - type="L" - name="Biseni" /> - <iso_639_3_entry - id="ijj" - scope="I" - type="L" - name="Ede Ije" /> - <iso_639_3_entry - id="ijn" - scope="I" - type="L" - name="Kalabari" /> - <iso_639_3_entry - id="ijs" - scope="I" - type="L" - name="Ijo; Southeast" /> - <iso_639_3_entry - id="ike" - scope="I" - type="L" - name="Inuktitut; Eastern Canadian" /> - <iso_639_3_entry - id="iki" - scope="I" - type="L" - name="Iko" /> - <iso_639_3_entry - id="ikk" - scope="I" - type="L" - name="Ika" /> - <iso_639_3_entry - id="ikl" - scope="I" - type="L" - name="Ikulu" /> - <iso_639_3_entry - id="iko" - scope="I" - type="L" - name="Olulumo-Ikom" /> - <iso_639_3_entry - id="ikp" - scope="I" - type="L" - name="Ikpeshi" /> - <iso_639_3_entry - id="ikt" - scope="I" - type="L" - name="Inuktitut; Western Canadian" /> - <iso_639_3_entry - id="iku" - part1_code="iu" - part2_code="iku" - scope="M" - type="L" - name="Inuktitut" /> - <iso_639_3_entry - id="ikv" - scope="I" - type="L" - name="Iku-Gora-Ankwa" /> - <iso_639_3_entry - id="ikw" - scope="I" - type="L" - name="Ikwere" /> - <iso_639_3_entry - id="ikx" - scope="I" - type="L" - name="Ik" /> - <iso_639_3_entry - id="ikz" - scope="I" - type="L" - name="Ikizu" /> - <iso_639_3_entry - id="ila" - scope="I" - type="L" - name="Ile Ape" /> - <iso_639_3_entry - id="ilb" - scope="I" - type="L" - name="Ila" /> - <iso_639_3_entry - id="ile" - part1_code="ie" - part2_code="ile" - scope="I" - type="C" - name="Interlingue" /> - <iso_639_3_entry - id="ilg" - scope="I" - type="E" - name="Garig-Ilgar" /> - <iso_639_3_entry - id="ili" - scope="I" - type="L" - name="Ili Turki" /> - <iso_639_3_entry - id="ilk" - scope="I" - type="L" - name="Ilongot" /> - <iso_639_3_entry - id="ill" - scope="I" - type="L" - name="Iranun" /> - <iso_639_3_entry - id="ilo" - part2_code="ilo" - scope="I" - type="L" - name="Iloko" /> - <iso_639_3_entry - id="ils" - scope="I" - type="L" - name="International Sign" /> - <iso_639_3_entry - id="ilu" - scope="I" - type="L" - name="Ili'uun" /> - <iso_639_3_entry - id="ilv" - scope="I" - type="L" - name="Ilue" /> - <iso_639_3_entry - id="ilw" - scope="I" - type="L" - name="Talur" /> - <iso_639_3_entry - id="ima" - scope="I" - type="L" - name="Malasar; Mala" /> - <iso_639_3_entry - id="ime" - scope="I" - type="L" - name="Imeraguen" /> - <iso_639_3_entry - id="imi" - scope="I" - type="L" - name="Anamgura" /> - <iso_639_3_entry - id="iml" - scope="I" - type="E" - name="Miluk" /> - <iso_639_3_entry - id="imn" - scope="I" - type="L" - name="Imonda" /> - <iso_639_3_entry - id="imo" - scope="I" - type="L" - name="Imbongu" /> - <iso_639_3_entry - id="imr" - scope="I" - type="L" - name="Imroing" /> - <iso_639_3_entry - id="ims" - scope="I" - type="A" - name="Marsian" /> - <iso_639_3_entry - id="imy" - scope="I" - type="A" - name="Milyan" /> - <iso_639_3_entry - id="ina" - part1_code="ia" - part2_code="ina" - scope="I" - type="C" - name="Interlingua (International Auxiliary Language Association)" /> - <iso_639_3_entry - id="inb" - scope="I" - type="L" - name="Inga" /> - <iso_639_3_entry - id="ind" - part1_code="id" - part2_code="ind" - scope="I" - type="L" - name="Indonesian" /> - <iso_639_3_entry - id="ing" - scope="I" - type="L" - name="Degexit'an" /> - <iso_639_3_entry - id="inh" - part2_code="inh" - scope="I" - type="L" - name="Ingush" /> - <iso_639_3_entry - id="inj" - scope="I" - type="L" - name="Inga; Jungle" /> - <iso_639_3_entry - id="inl" - scope="I" - type="L" - name="Indonesian Sign Language" /> - <iso_639_3_entry - id="inm" - scope="I" - type="A" - name="Minaean" /> - <iso_639_3_entry - id="inn" - scope="I" - type="L" - name="Isinai" /> - <iso_639_3_entry - id="ino" - scope="I" - type="L" - name="Inoke-Yate" /> - <iso_639_3_entry - id="inp" - scope="I" - type="L" - name="Iñapari" /> - <iso_639_3_entry - id="ins" - scope="I" - type="L" - name="Indian Sign Language" /> - <iso_639_3_entry - id="int" - scope="I" - type="L" - name="Intha" /> - <iso_639_3_entry - id="inz" - scope="I" - type="E" - name="Ineseño" /> - <iso_639_3_entry - id="ior" - scope="I" - type="L" - name="Inor" /> - <iso_639_3_entry - id="iou" - scope="I" - type="L" - name="Tuma-Irumu" /> - <iso_639_3_entry - id="iow" - scope="I" - type="E" - name="Iowa-Oto" /> - <iso_639_3_entry - id="ipi" - scope="I" - type="L" - name="Ipili" /> - <iso_639_3_entry - id="ipk" - part1_code="ik" - part2_code="ipk" - scope="M" - type="L" - name="Inupiaq" /> - <iso_639_3_entry - id="ipo" - scope="I" - type="L" - name="Ipiko" /> - <iso_639_3_entry - id="iqu" - scope="I" - type="L" - name="Iquito" /> - <iso_639_3_entry - id="ire" - scope="I" - type="L" - name="Iresim" /> - <iso_639_3_entry - id="irh" - scope="I" - type="L" - name="Irarutu" /> - <iso_639_3_entry - id="iri" - scope="I" - type="L" - name="Irigwe" /> - <iso_639_3_entry - id="irk" - scope="I" - type="L" - name="Iraqw" /> - <iso_639_3_entry - id="irn" - scope="I" - type="L" - name="Irántxe" /> - <iso_639_3_entry - id="irr" - scope="I" - type="L" - name="Ir" /> - <iso_639_3_entry - id="iru" - scope="I" - type="L" - name="Irula" /> - <iso_639_3_entry - id="irx" - scope="I" - type="L" - name="Kamberau" /> - <iso_639_3_entry - id="iry" - scope="I" - type="L" - name="Iraya" /> - <iso_639_3_entry - id="isa" - scope="I" - type="L" - name="Isabi" /> - <iso_639_3_entry - id="isc" - scope="I" - type="L" - name="Isconahua" /> - <iso_639_3_entry - id="isd" - scope="I" - type="L" - name="Isnag" /> - <iso_639_3_entry - id="ise" - scope="I" - type="L" - name="Italian Sign Language" /> - <iso_639_3_entry - id="isg" - scope="I" - type="L" - name="Irish Sign Language" /> - <iso_639_3_entry - id="ish" - scope="I" - type="L" - name="Esan" /> - <iso_639_3_entry - id="isi" - scope="I" - type="L" - name="Nkem-Nkum" /> - <iso_639_3_entry - id="isk" - scope="I" - type="L" - name="Ishkashimi" /> - <iso_639_3_entry - id="isl" - part1_code="is" - part2_code="ice" - scope="I" - type="L" - name="Icelandic" /> - <iso_639_3_entry - id="ism" - scope="I" - type="L" - name="Masimasi" /> - <iso_639_3_entry - id="isn" - scope="I" - type="L" - name="Isanzu" /> - <iso_639_3_entry - id="iso" - scope="I" - type="L" - name="Isoko" /> - <iso_639_3_entry - id="isr" - scope="I" - type="L" - name="Israeli Sign Language" /> - <iso_639_3_entry - id="ist" - scope="I" - type="L" - name="Istriot" /> - <iso_639_3_entry - id="isu" - scope="I" - type="L" - name="Isu (Menchum Division)" /> - <iso_639_3_entry - id="ita" - part1_code="it" - part2_code="ita" - scope="I" - type="L" - name="Italian" /> - <iso_639_3_entry - id="itb" - scope="I" - type="L" - name="Itneg; Binongan" /> - <iso_639_3_entry - id="ite" - scope="I" - type="E" - name="Itene" /> - <iso_639_3_entry - id="iti" - scope="I" - type="L" - name="Itneg; Inlaod" /> - <iso_639_3_entry - id="itk" - scope="I" - type="L" - name="Judeo-Italian" /> - <iso_639_3_entry - id="itl" - scope="I" - type="L" - name="Itelmen" /> - <iso_639_3_entry - id="itm" - scope="I" - type="L" - name="Itu Mbon Uzo" /> - <iso_639_3_entry - id="ito" - scope="I" - type="L" - name="Itonama" /> - <iso_639_3_entry - id="itr" - scope="I" - type="L" - name="Iteri" /> - <iso_639_3_entry - id="its" - scope="I" - type="L" - name="Isekiri" /> - <iso_639_3_entry - id="itt" - scope="I" - type="L" - name="Itneg; Maeng" /> - <iso_639_3_entry - id="itv" - scope="I" - type="L" - name="Itawit" /> - <iso_639_3_entry - id="itw" - scope="I" - type="L" - name="Ito" /> - <iso_639_3_entry - id="itx" - scope="I" - type="L" - name="Itik" /> - <iso_639_3_entry - id="ity" - scope="I" - type="L" - name="Itneg; Moyadan" /> - <iso_639_3_entry - id="itz" - scope="I" - type="L" - name="Itzá" /> - <iso_639_3_entry - id="ium" - scope="I" - type="L" - name="Mien; Iu" /> - <iso_639_3_entry - id="ivb" - scope="I" - type="L" - name="Ibatan" /> - <iso_639_3_entry - id="ivv" - scope="I" - type="L" - name="Ivatan" /> - <iso_639_3_entry - id="iwk" - scope="I" - type="L" - name="I-Wak" /> - <iso_639_3_entry - id="iwm" - scope="I" - type="L" - name="Iwam" /> - <iso_639_3_entry - id="iwo" - scope="I" - type="L" - name="Iwur" /> - <iso_639_3_entry - id="iws" - scope="I" - type="L" - name="Iwam; Sepik" /> - <iso_639_3_entry - id="ixc" - scope="I" - type="L" - name="Ixcatec" /> - <iso_639_3_entry - id="ixl" - scope="I" - type="L" - name="Ixil" /> - <iso_639_3_entry - id="iya" - scope="I" - type="L" - name="Iyayu" /> - <iso_639_3_entry - id="iyo" - scope="I" - type="L" - name="Mesaka" /> - <iso_639_3_entry - id="iyx" - scope="I" - type="L" - name="Yaka (Congo)" /> - <iso_639_3_entry - id="izh" - scope="I" - type="L" - name="Ingrian" /> - <iso_639_3_entry - id="izi" - scope="I" - type="L" - name="Izi-Ezaa-Ikwo-Mgbo" /> - <iso_639_3_entry - id="izr" - scope="I" - type="L" - name="Izere" /> - <iso_639_3_entry - id="jaa" - scope="I" - type="L" - name="Jamamadí" /> - <iso_639_3_entry - id="jab" - scope="I" - type="L" - name="Hyam" /> - <iso_639_3_entry - id="jac" - scope="I" - type="L" - name="Popti'" /> - <iso_639_3_entry - id="jad" - scope="I" - type="L" - name="Jahanka" /> - <iso_639_3_entry - id="jae" - scope="I" - type="L" - name="Yabem" /> - <iso_639_3_entry - id="jaf" - scope="I" - type="L" - name="Jara" /> - <iso_639_3_entry - id="jah" - scope="I" - type="L" - name="Jah Hut" /> - <iso_639_3_entry - id="jaj" - scope="I" - type="L" - name="Zazao" /> - <iso_639_3_entry - id="jak" - scope="I" - type="L" - name="Jakun" /> - <iso_639_3_entry - id="jal" - scope="I" - type="L" - name="Yalahatan" /> - <iso_639_3_entry - id="jam" - scope="I" - type="L" - name="Creole English; Jamaican" /> - <iso_639_3_entry - id="jao" - scope="I" - type="L" - name="Yanyuwa" /> - <iso_639_3_entry - id="jaq" - scope="I" - type="L" - name="Yaqay" /> - <iso_639_3_entry - id="jar" - scope="I" - type="L" - name="Jarawa (Nigeria)" /> - <iso_639_3_entry - id="jas" - scope="I" - type="L" - name="Javanese; New Caledonian" /> - <iso_639_3_entry - id="jat" - scope="I" - type="L" - name="Jakati" /> - <iso_639_3_entry - id="jau" - scope="I" - type="L" - name="Yaur" /> - <iso_639_3_entry - id="jav" - part1_code="jv" - part2_code="jav" - scope="I" - type="L" - name="Javanese" /> - <iso_639_3_entry - id="jax" - scope="I" - type="L" - name="Malay; Jambi" /> - <iso_639_3_entry - id="jay" - scope="I" - type="L" - name="Yan-nhangu" /> - <iso_639_3_entry - id="jaz" - scope="I" - type="L" - name="Jawe" /> - <iso_639_3_entry - id="jbe" - scope="I" - type="L" - name="Judeo-Berber" /> - <iso_639_3_entry - id="jbj" - scope="I" - type="L" - name="Arandai" /> - <iso_639_3_entry - id="jbn" - scope="I" - type="L" - name="Nafusi" /> - <iso_639_3_entry - id="jbo" - part2_code="jbo" - scope="I" - type="C" - name="Lojban" /> - <iso_639_3_entry - id="jbr" - scope="I" - type="L" - name="Jofotek-Bromnya" /> - <iso_639_3_entry - id="jbt" - scope="I" - type="L" - name="Jabutí" /> - <iso_639_3_entry - id="jbu" - scope="I" - type="L" - name="Jukun Takum" /> - <iso_639_3_entry - id="jcs" - scope="I" - type="L" - name="Jamaican Country Sign Language" /> - <iso_639_3_entry - id="jct" - scope="I" - type="L" - name="Krymchak" /> - <iso_639_3_entry - id="jda" - scope="I" - type="L" - name="Jad" /> - <iso_639_3_entry - id="jdg" - scope="I" - type="L" - name="Jadgali" /> - <iso_639_3_entry - id="jdt" - scope="I" - type="L" - name="Judeo-Tat" /> - <iso_639_3_entry - id="jeb" - scope="I" - type="L" - name="Jebero" /> - <iso_639_3_entry - id="jee" - scope="I" - type="L" - name="Jerung" /> - <iso_639_3_entry - id="jeg" - scope="I" - type="L" - name="Jeng" /> - <iso_639_3_entry - id="jeh" - scope="I" - type="L" - name="Jeh" /> - <iso_639_3_entry - id="jei" - scope="I" - type="L" - name="Yei" /> - <iso_639_3_entry - id="jek" - scope="I" - type="L" - name="Jeri Kuo" /> - <iso_639_3_entry - id="jel" - scope="I" - type="L" - name="Yelmek" /> - <iso_639_3_entry - id="jen" - scope="I" - type="L" - name="Dza" /> - <iso_639_3_entry - id="jer" - scope="I" - type="L" - name="Jere" /> - <iso_639_3_entry - id="jet" - scope="I" - type="L" - name="Manem" /> - <iso_639_3_entry - id="jeu" - scope="I" - type="L" - name="Jonkor Bourmataguil" /> - <iso_639_3_entry - id="jgb" - scope="I" - type="E" - name="Ngbee" /> - <iso_639_3_entry - id="jge" - scope="I" - type="L" - name="Judeo-Georgian" /> - <iso_639_3_entry - id="jgo" - scope="I" - type="L" - name="Ngomba" /> - <iso_639_3_entry - id="jhi" - scope="I" - type="L" - name="Jehai" /> - <iso_639_3_entry - id="jhs" - scope="I" - type="L" - name="Jhankot Sign Language" /> - <iso_639_3_entry - id="jia" - scope="I" - type="L" - name="Jina" /> - <iso_639_3_entry - id="jib" - scope="I" - type="L" - name="Jibu" /> - <iso_639_3_entry - id="jic" - scope="I" - type="L" - name="Tol" /> - <iso_639_3_entry - id="jid" - scope="I" - type="L" - name="Bu" /> - <iso_639_3_entry - id="jie" - scope="I" - type="L" - name="Jilbe" /> - <iso_639_3_entry - id="jig" - scope="I" - type="L" - name="Djingili" /> - <iso_639_3_entry - id="jih" - scope="I" - type="L" - name="Shangzhai" /> - <iso_639_3_entry - id="jii" - scope="I" - type="L" - name="Jiiddu" /> - <iso_639_3_entry - id="jil" - scope="I" - type="L" - name="Jilim" /> - <iso_639_3_entry - id="jim" - scope="I" - type="L" - name="Jimi (Cameroon)" /> - <iso_639_3_entry - id="jio" - scope="I" - type="L" - name="Jiamao" /> - <iso_639_3_entry - id="jiq" - scope="I" - type="L" - name="Guanyinqiao" /> - <iso_639_3_entry - id="jit" - scope="I" - type="L" - name="Jita" /> - <iso_639_3_entry - id="jiu" - scope="I" - type="L" - name="Jinuo; Youle" /> - <iso_639_3_entry - id="jiv" - scope="I" - type="L" - name="Shuar" /> - <iso_639_3_entry - id="jiy" - scope="I" - type="L" - name="Jinuo; Buyuan" /> - <iso_639_3_entry - id="jko" - scope="I" - type="L" - name="Kubo" /> - <iso_639_3_entry - id="jku" - scope="I" - type="L" - name="Labir" /> - <iso_639_3_entry - id="jle" - scope="I" - type="L" - name="Ngile" /> - <iso_639_3_entry - id="jls" - scope="I" - type="L" - name="Jamaican Sign Language" /> - <iso_639_3_entry - id="jma" - scope="I" - type="L" - name="Dima" /> - <iso_639_3_entry - id="jmb" - scope="I" - type="L" - name="Zumbun" /> - <iso_639_3_entry - id="jmc" - scope="I" - type="L" - name="Machame" /> - <iso_639_3_entry - id="jmd" - scope="I" - type="L" - name="Yamdena" /> - <iso_639_3_entry - id="jmi" - scope="I" - type="L" - name="Jimi (Nigeria)" /> - <iso_639_3_entry - id="jml" - scope="I" - type="L" - name="Jumli" /> - <iso_639_3_entry - id="jmn" - scope="I" - type="L" - name="Naga; Makuri" /> - <iso_639_3_entry - id="jmr" - scope="I" - type="L" - name="Kamara" /> - <iso_639_3_entry - id="jms" - scope="I" - type="L" - name="Mashi (Nigeria)" /> - <iso_639_3_entry - id="jmx" - scope="I" - type="L" - name="Mixtec; Western Juxtlahuaca" /> - <iso_639_3_entry - id="jna" - scope="I" - type="L" - name="Jangshung" /> - <iso_639_3_entry - id="jnd" - scope="I" - type="L" - name="Jandavra" /> - <iso_639_3_entry - id="jng" - scope="I" - type="E" - name="Yangman" /> - <iso_639_3_entry - id="jni" - scope="I" - type="L" - name="Janji" /> - <iso_639_3_entry - id="jnj" - scope="I" - type="L" - name="Yemsa" /> - <iso_639_3_entry - id="jnl" - scope="I" - type="L" - name="Rawat" /> - <iso_639_3_entry - id="jns" - scope="I" - type="L" - name="Jaunsari" /> - <iso_639_3_entry - id="job" - scope="I" - type="L" - name="Joba" /> - <iso_639_3_entry - id="jod" - scope="I" - type="L" - name="Wojenaka" /> - <iso_639_3_entry - id="jor" - scope="I" - type="E" - name="Jorá" /> - <iso_639_3_entry - id="jos" - scope="I" - type="L" - name="Jordanian Sign Language" /> - <iso_639_3_entry - id="jow" - scope="I" - type="L" - name="Jowulu" /> - <iso_639_3_entry - id="jpa" - scope="I" - type="H" - name="Aramaic; Jewish Palestinian" /> - <iso_639_3_entry - id="jpn" - part1_code="ja" - part2_code="jpn" - scope="I" - type="L" - name="Japanese" /> - <iso_639_3_entry - id="jpr" - part2_code="jpr" - scope="I" - type="L" - name="Judeo-Persian" /> - <iso_639_3_entry - id="jqr" - scope="I" - type="L" - name="Jaqaru" /> - <iso_639_3_entry - id="jra" - scope="I" - type="L" - name="Jarai" /> - <iso_639_3_entry - id="jrb" - part2_code="jrb" - scope="M" - type="L" - name="Judeo-Arabic" /> - <iso_639_3_entry - id="jrr" - scope="I" - type="L" - name="Jiru" /> - <iso_639_3_entry - id="jrt" - scope="I" - type="L" - name="Jorto" /> - <iso_639_3_entry - id="jru" - scope="I" - type="L" - name="Japrería" /> - <iso_639_3_entry - id="jsl" - scope="I" - type="L" - name="Japanese Sign Language" /> - <iso_639_3_entry - id="jua" - scope="I" - type="L" - name="Júma" /> - <iso_639_3_entry - id="jub" - scope="I" - type="L" - name="Wannu" /> - <iso_639_3_entry - id="juc" - scope="I" - type="E" - name="Jurchen" /> - <iso_639_3_entry - id="jud" - scope="I" - type="L" - name="Worodougou" /> - <iso_639_3_entry - id="juh" - scope="I" - type="L" - name="Hõne" /> - <iso_639_3_entry - id="juk" - scope="I" - type="L" - name="Wapan" /> - <iso_639_3_entry - id="jul" - scope="I" - type="L" - name="Jirel" /> - <iso_639_3_entry - id="jum" - scope="I" - type="L" - name="Jumjum" /> - <iso_639_3_entry - id="jun" - scope="I" - type="L" - name="Juang" /> - <iso_639_3_entry - id="juo" - scope="I" - type="L" - name="Jiba" /> - <iso_639_3_entry - id="jup" - scope="I" - type="L" - name="Hupdë" /> - <iso_639_3_entry - id="jur" - scope="I" - type="L" - name="Jurúna" /> - <iso_639_3_entry - id="jus" - scope="I" - type="L" - name="Jumla Sign Language" /> - <iso_639_3_entry - id="jut" - scope="I" - type="L" - name="Jutish" /> - <iso_639_3_entry - id="juu" - scope="I" - type="L" - name="Ju" /> - <iso_639_3_entry - id="juw" - scope="I" - type="L" - name="Wãpha" /> - <iso_639_3_entry - id="juy" - scope="I" - type="L" - name="Juray" /> - <iso_639_3_entry - id="jvd" - scope="I" - type="E" - name="Javindo" /> - <iso_639_3_entry - id="jvn" - scope="I" - type="L" - name="Javanese; Caribbean" /> - <iso_639_3_entry - id="jwi" - scope="I" - type="L" - name="Jwira-Pepesa" /> - <iso_639_3_entry - id="jya" - scope="I" - type="L" - name="Jiarong" /> - <iso_639_3_entry - id="jye" - scope="I" - type="L" - name="Arabic; Judeo-Yemeni" /> - <iso_639_3_entry - id="jyy" - scope="I" - type="L" - name="Jaya" /> - <iso_639_3_entry - id="kaa" - part2_code="kaa" - scope="I" - type="L" - name="Kara-Kalpak" /> - <iso_639_3_entry - id="kab" - part2_code="kab" - scope="I" - type="L" - name="Kabyle" /> - <iso_639_3_entry - id="kac" - part2_code="kac" - scope="I" - type="L" - name="Kachin" /> - <iso_639_3_entry - id="kad" - scope="I" - type="L" - name="Kadara" /> - <iso_639_3_entry - id="kae" - scope="I" - type="E" - name="Ketangalan" /> - <iso_639_3_entry - id="kaf" - scope="I" - type="L" - name="Katso" /> - <iso_639_3_entry - id="kag" - scope="I" - type="L" - name="Kajaman" /> - <iso_639_3_entry - id="kah" - scope="I" - type="L" - name="Kara (Central African Republic)" /> - <iso_639_3_entry - id="kai" - scope="I" - type="L" - name="Karekare" /> - <iso_639_3_entry - id="kaj" - scope="I" - type="L" - name="Jju" /> - <iso_639_3_entry - id="kak" - scope="I" - type="L" - name="Kallahan; Kayapa" /> - <iso_639_3_entry - id="kal" - part1_code="kl" - part2_code="kal" - scope="I" - type="L" - name="Kalaallisut" /> - <iso_639_3_entry - id="kam" - part2_code="kam" - scope="I" - type="L" - name="Kamba (Kenya)" /> - <iso_639_3_entry - id="kan" - part1_code="kn" - part2_code="kan" - scope="I" - type="L" - name="Kannada" /> - <iso_639_3_entry - id="kao" - scope="I" - type="L" - name="Xaasongaxango" /> - <iso_639_3_entry - id="kap" - scope="I" - type="L" - name="Bezhta" /> - <iso_639_3_entry - id="kaq" - scope="I" - type="L" - name="Capanahua" /> - <iso_639_3_entry - id="kas" - part1_code="ks" - part2_code="kas" - scope="I" - type="L" - name="Kashmiri" /> - <iso_639_3_entry - id="kat" - part1_code="ka" - part2_code="geo" - scope="I" - type="L" - name="Georgian" /> - <iso_639_3_entry - id="kau" - part1_code="kr" - part2_code="kau" - scope="M" - type="L" - name="Kanuri" /> - <iso_639_3_entry - id="kav" - scope="I" - type="L" - name="Katukína" /> - <iso_639_3_entry - id="kaw" - part2_code="kaw" - scope="I" - type="A" - name="Kawi" /> - <iso_639_3_entry - id="kax" - scope="I" - type="L" - name="Kao" /> - <iso_639_3_entry - id="kay" - scope="I" - type="L" - name="Kamayurá" /> - <iso_639_3_entry - id="kaz" - part1_code="kk" - part2_code="kaz" - scope="I" - type="L" - name="Kazakh" /> - <iso_639_3_entry - id="kba" - scope="I" - type="E" - name="Kalarko" /> - <iso_639_3_entry - id="kbb" - scope="I" - type="E" - name="Kaxuiâna" /> - <iso_639_3_entry - id="kbc" - scope="I" - type="L" - name="Kadiwéu" /> - <iso_639_3_entry - id="kbd" - part2_code="kbd" - scope="I" - type="L" - name="Kabardian" /> - <iso_639_3_entry - id="kbe" - scope="I" - type="L" - name="Kanju" /> - <iso_639_3_entry - id="kbf" - scope="I" - type="E" - name="Kakauhua" /> - <iso_639_3_entry - id="kbg" - scope="I" - type="L" - name="Khamba" /> - <iso_639_3_entry - id="kbh" - scope="I" - type="L" - name="Camsá" /> - <iso_639_3_entry - id="kbi" - scope="I" - type="L" - name="Kaptiau" /> - <iso_639_3_entry - id="kbj" - scope="I" - type="L" - name="Kari" /> - <iso_639_3_entry - id="kbk" - scope="I" - type="L" - name="Koiari; Grass" /> - <iso_639_3_entry - id="kbl" - scope="I" - type="L" - name="Kanembu" /> - <iso_639_3_entry - id="kbm" - scope="I" - type="L" - name="Iwal" /> - <iso_639_3_entry - id="kbn" - scope="I" - type="L" - name="Kare (Central African Republic)" /> - <iso_639_3_entry - id="kbo" - scope="I" - type="L" - name="Keliko" /> - <iso_639_3_entry - id="kbp" - scope="I" - type="L" - name="Kabiyè" /> - <iso_639_3_entry - id="kbq" - scope="I" - type="L" - name="Kamano" /> - <iso_639_3_entry - id="kbr" - scope="I" - type="L" - name="Kafa" /> - <iso_639_3_entry - id="kbs" - scope="I" - type="L" - name="Kande" /> - <iso_639_3_entry - id="kbt" - scope="I" - type="L" - name="Abadi" /> - <iso_639_3_entry - id="kbu" - scope="I" - type="L" - name="Kabutra" /> - <iso_639_3_entry - id="kbv" - scope="I" - type="L" - name="Dera (Indonesia)" /> - <iso_639_3_entry - id="kbw" - scope="I" - type="L" - name="Kaiep" /> - <iso_639_3_entry - id="kbx" - scope="I" - type="L" - name="Ap Ma" /> - <iso_639_3_entry - id="kby" - scope="I" - type="L" - name="Kanuri; Manga" /> - <iso_639_3_entry - id="kbz" - scope="I" - type="L" - name="Duhwa" /> - <iso_639_3_entry - id="kca" - scope="I" - type="L" - name="Khanty" /> - <iso_639_3_entry - id="kcb" - scope="I" - type="L" - name="Kawacha" /> - <iso_639_3_entry - id="kcc" - scope="I" - type="L" - name="Lubila" /> - <iso_639_3_entry - id="kcd" - scope="I" - type="L" - name="Kanum; Ngkâlmpw" /> - <iso_639_3_entry - id="kce" - scope="I" - type="L" - name="Kaivi" /> - <iso_639_3_entry - id="kcf" - scope="I" - type="L" - name="Ukaan" /> - <iso_639_3_entry - id="kcg" - scope="I" - type="L" - name="Tyap" /> - <iso_639_3_entry - id="kch" - scope="I" - type="L" - name="Vono" /> - <iso_639_3_entry - id="kci" - scope="I" - type="L" - name="Kamantan" /> - <iso_639_3_entry - id="kcj" - scope="I" - type="L" - name="Kobiana" /> - <iso_639_3_entry - id="kck" - scope="I" - type="L" - name="Kalanga" /> - <iso_639_3_entry - id="kcl" - scope="I" - type="L" - name="Kela (Papua New Guinea)" /> - <iso_639_3_entry - id="kcm" - scope="I" - type="L" - name="Gula (Central African Republic)" /> - <iso_639_3_entry - id="kcn" - scope="I" - type="L" - name="Nubi" /> - <iso_639_3_entry - id="kco" - scope="I" - type="L" - name="Kinalakna" /> - <iso_639_3_entry - id="kcp" - scope="I" - type="L" - name="Kanga" /> - <iso_639_3_entry - id="kcq" - scope="I" - type="L" - name="Kamo" /> - <iso_639_3_entry - id="kcr" - scope="I" - type="L" - name="Katla" /> - <iso_639_3_entry - id="kcs" - scope="I" - type="L" - name="Koenoem" /> - <iso_639_3_entry - id="kct" - scope="I" - type="L" - name="Kaian" /> - <iso_639_3_entry - id="kcu" - scope="I" - type="L" - name="Kami (Tanzania)" /> - <iso_639_3_entry - id="kcv" - scope="I" - type="L" - name="Kete" /> - <iso_639_3_entry - id="kcw" - scope="I" - type="L" - name="Kabwari" /> - <iso_639_3_entry - id="kcx" - scope="I" - type="L" - name="Kachama-Ganjule" /> - <iso_639_3_entry - id="kcy" - scope="I" - type="L" - name="Korandje" /> - <iso_639_3_entry - id="kcz" - scope="I" - type="L" - name="Konongo" /> - <iso_639_3_entry - id="kda" - scope="I" - type="E" - name="Worimi" /> - <iso_639_3_entry - id="kdc" - scope="I" - type="L" - name="Kutu" /> - <iso_639_3_entry - id="kdd" - scope="I" - type="L" - name="Yankunytjatjara" /> - <iso_639_3_entry - id="kde" - scope="I" - type="L" - name="Makonde" /> - <iso_639_3_entry - id="kdf" - scope="I" - type="L" - name="Mamusi" /> - <iso_639_3_entry - id="kdg" - scope="I" - type="L" - name="Seba" /> - <iso_639_3_entry - id="kdh" - scope="I" - type="L" - name="Tem" /> - <iso_639_3_entry - id="kdi" - scope="I" - type="L" - name="Kumam" /> - <iso_639_3_entry - id="kdj" - scope="I" - type="L" - name="Karamojong" /> - <iso_639_3_entry - id="kdk" - scope="I" - type="L" - name="Numee" /> - <iso_639_3_entry - id="kdl" - scope="I" - type="L" - name="Tsikimba" /> - <iso_639_3_entry - id="kdm" - scope="I" - type="L" - name="Kagoma" /> - <iso_639_3_entry - id="kdn" - scope="I" - type="L" - name="Kunda" /> - <iso_639_3_entry - id="kdp" - scope="I" - type="L" - name="Kaningdon-Nindem" /> - <iso_639_3_entry - id="kdq" - scope="I" - type="L" - name="Koch" /> - <iso_639_3_entry - id="kdr" - scope="I" - type="L" - name="Karaim" /> - <iso_639_3_entry - id="kdt" - scope="I" - type="L" - name="Kuy" /> - <iso_639_3_entry - id="kdu" - scope="I" - type="L" - name="Kadaru" /> - <iso_639_3_entry - id="kdv" - scope="I" - type="L" - name="Kado" /> - <iso_639_3_entry - id="kdw" - scope="I" - type="L" - name="Koneraw" /> - <iso_639_3_entry - id="kdx" - scope="I" - type="L" - name="Kam" /> - <iso_639_3_entry - id="kdy" - scope="I" - type="L" - name="Keder" /> - <iso_639_3_entry - id="kdz" - scope="I" - type="L" - name="Kwaja" /> - <iso_639_3_entry - id="kea" - scope="I" - type="L" - name="Kabuverdianu" /> - <iso_639_3_entry - id="keb" - scope="I" - type="L" - name="Kélé" /> - <iso_639_3_entry - id="kec" - scope="I" - type="L" - name="Keiga" /> - <iso_639_3_entry - id="ked" - scope="I" - type="L" - name="Kerewe" /> - <iso_639_3_entry - id="kee" - scope="I" - type="L" - name="Keres; Eastern" /> - <iso_639_3_entry - id="kef" - scope="I" - type="L" - name="Kpessi" /> - <iso_639_3_entry - id="keg" - scope="I" - type="L" - name="Tese" /> - <iso_639_3_entry - id="keh" - scope="I" - type="L" - name="Keak" /> - <iso_639_3_entry - id="kei" - scope="I" - type="L" - name="Kei" /> - <iso_639_3_entry - id="kej" - scope="I" - type="L" - name="Kadar" /> - <iso_639_3_entry - id="kek" - scope="I" - type="L" - name="Kekchí" /> - <iso_639_3_entry - id="kel" - scope="I" - type="L" - name="Kela (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="kem" - scope="I" - type="L" - name="Kemak" /> - <iso_639_3_entry - id="ken" - scope="I" - type="L" - name="Kenyang" /> - <iso_639_3_entry - id="keo" - scope="I" - type="L" - name="Kakwa" /> - <iso_639_3_entry - id="kep" - scope="I" - type="L" - name="Kaikadi" /> - <iso_639_3_entry - id="keq" - scope="I" - type="L" - name="Kamar" /> - <iso_639_3_entry - id="ker" - scope="I" - type="L" - name="Kera" /> - <iso_639_3_entry - id="kes" - scope="I" - type="L" - name="Kugbo" /> - <iso_639_3_entry - id="ket" - scope="I" - type="L" - name="Ket" /> - <iso_639_3_entry - id="keu" - scope="I" - type="L" - name="Akebu" /> - <iso_639_3_entry - id="kev" - scope="I" - type="L" - name="Kanikkaran" /> - <iso_639_3_entry - id="kew" - scope="I" - type="L" - name="Kewa; West" /> - <iso_639_3_entry - id="kex" - scope="I" - type="L" - name="Kukna" /> - <iso_639_3_entry - id="key" - scope="I" - type="L" - name="Kupia" /> - <iso_639_3_entry - id="kez" - scope="I" - type="L" - name="Kukele" /> - <iso_639_3_entry - id="kfa" - scope="I" - type="L" - name="Kodava" /> - <iso_639_3_entry - id="kfb" - scope="I" - type="L" - name="Kolami; Northwestern" /> - <iso_639_3_entry - id="kfc" - scope="I" - type="L" - name="Konda-Dora" /> - <iso_639_3_entry - id="kfd" - scope="I" - type="L" - name="Koraga; Korra" /> - <iso_639_3_entry - id="kfe" - scope="I" - type="L" - name="Kota (India)" /> - <iso_639_3_entry - id="kff" - scope="I" - type="L" - name="Koya" /> - <iso_639_3_entry - id="kfg" - scope="I" - type="L" - name="Kudiya" /> - <iso_639_3_entry - id="kfh" - scope="I" - type="L" - name="Kurichiya" /> - <iso_639_3_entry - id="kfi" - scope="I" - type="L" - name="Kurumba; Kannada" /> - <iso_639_3_entry - id="kfj" - scope="I" - type="L" - name="Kemiehua" /> - <iso_639_3_entry - id="kfk" - scope="I" - type="L" - name="Kinnauri" /> - <iso_639_3_entry - id="kfl" - scope="I" - type="L" - name="Kung" /> - <iso_639_3_entry - id="kfm" - scope="I" - type="L" - name="Khunsari" /> - <iso_639_3_entry - id="kfn" - scope="I" - type="L" - name="Kuk" /> - <iso_639_3_entry - id="kfo" - scope="I" - type="L" - name="Koro (Côte d'Ivoire)" /> - <iso_639_3_entry - id="kfp" - scope="I" - type="L" - name="Korwa" /> - <iso_639_3_entry - id="kfq" - scope="I" - type="L" - name="Korku" /> - <iso_639_3_entry - id="kfr" - scope="I" - type="L" - name="Kachchi" /> - <iso_639_3_entry - id="kfs" - scope="I" - type="L" - name="Bilaspuri" /> - <iso_639_3_entry - id="kft" - scope="I" - type="L" - name="Kanjari" /> - <iso_639_3_entry - id="kfu" - scope="I" - type="L" - name="Katkari" /> - <iso_639_3_entry - id="kfv" - scope="I" - type="L" - name="Kurmukar" /> - <iso_639_3_entry - id="kfw" - scope="I" - type="L" - name="Naga; Kharam" /> - <iso_639_3_entry - id="kfx" - scope="I" - type="L" - name="Pahari; Kullu" /> - <iso_639_3_entry - id="kfy" - scope="I" - type="L" - name="Kumaoni" /> - <iso_639_3_entry - id="kfz" - scope="I" - type="L" - name="Koromfé" /> - <iso_639_3_entry - id="kga" - scope="I" - type="L" - name="Koyaga" /> - <iso_639_3_entry - id="kgb" - scope="I" - type="L" - name="Kawe" /> - <iso_639_3_entry - id="kgc" - scope="I" - type="L" - name="Kasseng" /> - <iso_639_3_entry - id="kgd" - scope="I" - type="L" - name="Kataang" /> - <iso_639_3_entry - id="kge" - scope="I" - type="L" - name="Komering" /> - <iso_639_3_entry - id="kgf" - scope="I" - type="L" - name="Kube" /> - <iso_639_3_entry - id="kgg" - scope="I" - type="L" - name="Kusunda" /> - <iso_639_3_entry - id="kgh" - scope="I" - type="L" - name="Kalinga; Upper Tanudan" /> - <iso_639_3_entry - id="kgi" - scope="I" - type="L" - name="Selangor Sign Language" /> - <iso_639_3_entry - id="kgj" - scope="I" - type="L" - name="Kham; Gamale" /> - <iso_639_3_entry - id="kgk" - scope="I" - type="L" - name="Kaiwá" /> - <iso_639_3_entry - id="kgl" - scope="I" - type="E" - name="Kunggari" /> - <iso_639_3_entry - id="kgm" - scope="I" - type="E" - name="Karipúna" /> - <iso_639_3_entry - id="kgn" - scope="I" - type="L" - name="Karingani" /> - <iso_639_3_entry - id="kgo" - scope="I" - type="L" - name="Krongo" /> - <iso_639_3_entry - id="kgp" - scope="I" - type="L" - name="Kaingang" /> - <iso_639_3_entry - id="kgq" - scope="I" - type="L" - name="Kamoro" /> - <iso_639_3_entry - id="kgr" - scope="I" - type="L" - name="Abun" /> - <iso_639_3_entry - id="kgs" - scope="I" - type="L" - name="Kumbainggar" /> - <iso_639_3_entry - id="kgt" - scope="I" - type="L" - name="Somyev" /> - <iso_639_3_entry - id="kgu" - scope="I" - type="L" - name="Kobol" /> - <iso_639_3_entry - id="kgv" - scope="I" - type="L" - name="Karas" /> - <iso_639_3_entry - id="kgw" - scope="I" - type="L" - name="Karon Dori" /> - <iso_639_3_entry - id="kgx" - scope="I" - type="L" - name="Kamaru" /> - <iso_639_3_entry - id="kgy" - scope="I" - type="L" - name="Kyerung" /> - <iso_639_3_entry - id="kha" - part2_code="kha" - scope="I" - type="L" - name="Khasi" /> - <iso_639_3_entry - id="khb" - scope="I" - type="L" - name="Lü" /> - <iso_639_3_entry - id="khc" - scope="I" - type="L" - name="Tukang Besi North" /> - <iso_639_3_entry - id="khd" - scope="I" - type="L" - name="Kanum; Bädi" /> - <iso_639_3_entry - id="khe" - scope="I" - type="L" - name="Korowai" /> - <iso_639_3_entry - id="khf" - scope="I" - type="L" - name="Khuen" /> - <iso_639_3_entry - id="khg" - scope="I" - type="L" - name="Tibetan; Khams" /> - <iso_639_3_entry - id="khh" - scope="I" - type="L" - name="Kehu" /> - <iso_639_3_entry - id="khj" - scope="I" - type="L" - name="Kuturmi" /> - <iso_639_3_entry - id="khk" - scope="I" - type="L" - name="Mongolian; Halh" /> - <iso_639_3_entry - id="khl" - scope="I" - type="L" - name="Lusi" /> - <iso_639_3_entry - id="khm" - part1_code="km" - part2_code="khm" - scope="I" - type="L" - name="Khmer; Central" /> - <iso_639_3_entry - id="khn" - scope="I" - type="L" - name="Khandesi" /> - <iso_639_3_entry - id="kho" - part2_code="kho" - scope="I" - type="A" - name="Khotanese" /> - <iso_639_3_entry - id="khp" - scope="I" - type="L" - name="Kapori" /> - <iso_639_3_entry - id="khq" - scope="I" - type="L" - name="Songhay; Koyra Chiini" /> - <iso_639_3_entry - id="khr" - scope="I" - type="L" - name="Kharia" /> - <iso_639_3_entry - id="khs" - scope="I" - type="L" - name="Kasua" /> - <iso_639_3_entry - id="kht" - scope="I" - type="L" - name="Khamti" /> - <iso_639_3_entry - id="khu" - scope="I" - type="L" - name="Nkhumbi" /> - <iso_639_3_entry - id="khv" - scope="I" - type="L" - name="Khvarshi" /> - <iso_639_3_entry - id="khw" - scope="I" - type="L" - name="Khowar" /> - <iso_639_3_entry - id="khx" - scope="I" - type="L" - name="Kanu" /> - <iso_639_3_entry - id="khy" - scope="I" - type="L" - name="Kele (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="khz" - scope="I" - type="L" - name="Keapara" /> - <iso_639_3_entry - id="kia" - scope="I" - type="L" - name="Kim" /> - <iso_639_3_entry - id="kib" - scope="I" - type="L" - name="Koalib" /> - <iso_639_3_entry - id="kic" - scope="I" - type="L" - name="Kickapoo" /> - <iso_639_3_entry - id="kid" - scope="I" - type="L" - name="Koshin" /> - <iso_639_3_entry - id="kie" - scope="I" - type="L" - name="Kibet" /> - <iso_639_3_entry - id="kif" - scope="I" - type="L" - name="Kham; Eastern Parbate" /> - <iso_639_3_entry - id="kig" - scope="I" - type="L" - name="Kimaama" /> - <iso_639_3_entry - id="kih" - scope="I" - type="L" - name="Kilmeri" /> - <iso_639_3_entry - id="kii" - scope="I" - type="E" - name="Kitsai" /> - <iso_639_3_entry - id="kij" - scope="I" - type="L" - name="Kilivila" /> - <iso_639_3_entry - id="kik" - part1_code="ki" - part2_code="kik" - scope="I" - type="L" - name="Kikuyu" /> - <iso_639_3_entry - id="kil" - scope="I" - type="L" - name="Kariya" /> - <iso_639_3_entry - id="kim" - scope="I" - type="L" - name="Karagas" /> - <iso_639_3_entry - id="kin" - part1_code="rw" - part2_code="kin" - scope="I" - type="L" - name="Kinyarwanda" /> - <iso_639_3_entry - id="kio" - scope="I" - type="L" - name="Kiowa" /> - <iso_639_3_entry - id="kip" - scope="I" - type="L" - name="Kham; Sheshi" /> - <iso_639_3_entry - id="kiq" - scope="I" - type="L" - name="Kosadle" /> - <iso_639_3_entry - id="kir" - part1_code="ky" - part2_code="kir" - scope="I" - type="L" - name="Kirghiz" /> - <iso_639_3_entry - id="kis" - scope="I" - type="L" - name="Kis" /> - <iso_639_3_entry - id="kit" - scope="I" - type="L" - name="Agob" /> - <iso_639_3_entry - id="kiu" - scope="I" - type="L" - name="Kirmanjki (individual language)" /> - <iso_639_3_entry - id="kiv" - scope="I" - type="L" - name="Kimbu" /> - <iso_639_3_entry - id="kiw" - scope="I" - type="L" - name="Kiwai; Northeast" /> - <iso_639_3_entry - id="kix" - scope="I" - type="L" - name="Naga; Khiamniungan" /> - <iso_639_3_entry - id="kiy" - scope="I" - type="L" - name="Kirikiri" /> - <iso_639_3_entry - id="kiz" - scope="I" - type="L" - name="Kisi" /> - <iso_639_3_entry - id="kja" - scope="I" - type="L" - name="Mlap" /> - <iso_639_3_entry - id="kjb" - scope="I" - type="L" - name="Q'anjob'al" /> - <iso_639_3_entry - id="kjc" - scope="I" - type="L" - name="Konjo; Coastal" /> - <iso_639_3_entry - id="kjd" - scope="I" - type="L" - name="Kiwai; Southern" /> - <iso_639_3_entry - id="kje" - scope="I" - type="L" - name="Kisar" /> - <iso_639_3_entry - id="kjf" - scope="I" - type="L" - name="Khalaj" /> - <iso_639_3_entry - id="kjg" - scope="I" - type="L" - name="Khmu" /> - <iso_639_3_entry - id="kjh" - scope="I" - type="L" - name="Khakas" /> - <iso_639_3_entry - id="kji" - scope="I" - type="L" - name="Zabana" /> - <iso_639_3_entry - id="kjj" - scope="I" - type="L" - name="Khinalugh" /> - <iso_639_3_entry - id="kjk" - scope="I" - type="L" - name="Konjo; Highland" /> - <iso_639_3_entry - id="kjl" - scope="I" - type="L" - name="Kham; Western Parbate" /> - <iso_639_3_entry - id="kjm" - scope="I" - type="L" - name="Kháng" /> - <iso_639_3_entry - id="kjn" - scope="I" - type="L" - name="Kunjen" /> - <iso_639_3_entry - id="kjo" - scope="I" - type="L" - name="Kinnauri; Harijan" /> - <iso_639_3_entry - id="kjp" - scope="I" - type="L" - name="Karen; Pwo Eastern" /> - <iso_639_3_entry - id="kjq" - scope="I" - type="L" - name="Keres; Western" /> - <iso_639_3_entry - id="kjr" - scope="I" - type="L" - name="Kurudu" /> - <iso_639_3_entry - id="kjs" - scope="I" - type="L" - name="Kewa; East" /> - <iso_639_3_entry - id="kjt" - scope="I" - type="L" - name="Karen; Phrae Pwo" /> - <iso_639_3_entry - id="kju" - scope="I" - type="L" - name="Kashaya" /> - <iso_639_3_entry - id="kjx" - scope="I" - type="L" - name="Ramopa" /> - <iso_639_3_entry - id="kjy" - scope="I" - type="L" - name="Erave" /> - <iso_639_3_entry - id="kjz" - scope="I" - type="L" - name="Bumthangkha" /> - <iso_639_3_entry - id="kka" - scope="I" - type="L" - name="Kakanda" /> - <iso_639_3_entry - id="kkb" - scope="I" - type="L" - name="Kwerisa" /> - <iso_639_3_entry - id="kkc" - scope="I" - type="L" - name="Odoodee" /> - <iso_639_3_entry - id="kkd" - scope="I" - type="L" - name="Kinuku" /> - <iso_639_3_entry - id="kke" - scope="I" - type="L" - name="Kakabe" /> - <iso_639_3_entry - id="kkf" - scope="I" - type="L" - name="Monpa; Kalaktang" /> - <iso_639_3_entry - id="kkg" - scope="I" - type="L" - name="Kalinga; Mabaka Valley" /> - <iso_639_3_entry - id="kkh" - scope="I" - type="L" - name="Khün" /> - <iso_639_3_entry - id="kki" - scope="I" - type="L" - name="Kagulu" /> - <iso_639_3_entry - id="kkj" - scope="I" - type="L" - name="Kako" /> - <iso_639_3_entry - id="kkk" - scope="I" - type="L" - name="Kokota" /> - <iso_639_3_entry - id="kkl" - scope="I" - type="L" - name="Yale; Kosarek" /> - <iso_639_3_entry - id="kkm" - scope="I" - type="L" - name="Kiong" /> - <iso_639_3_entry - id="kkn" - scope="I" - type="L" - name="Kon Keu" /> - <iso_639_3_entry - id="kko" - scope="I" - type="L" - name="Karko" /> - <iso_639_3_entry - id="kkp" - scope="I" - type="L" - name="Gugubera" /> - <iso_639_3_entry - id="kkq" - scope="I" - type="L" - name="Kaiku" /> - <iso_639_3_entry - id="kkr" - scope="I" - type="L" - name="Kir-Balar" /> - <iso_639_3_entry - id="kks" - scope="I" - type="L" - name="Giiwo" /> - <iso_639_3_entry - id="kkt" - scope="I" - type="L" - name="Koi" /> - <iso_639_3_entry - id="kku" - scope="I" - type="L" - name="Tumi" /> - <iso_639_3_entry - id="kkv" - scope="I" - type="L" - name="Kangean" /> - <iso_639_3_entry - id="kkw" - scope="I" - type="L" - name="Teke-Kukuya" /> - <iso_639_3_entry - id="kkx" - scope="I" - type="L" - name="Kohin" /> - <iso_639_3_entry - id="kky" - scope="I" - type="L" - name="Guguyimidjir" /> - <iso_639_3_entry - id="kkz" - scope="I" - type="L" - name="Kaska" /> - <iso_639_3_entry - id="kla" - scope="I" - type="E" - name="Klamath-Modoc" /> - <iso_639_3_entry - id="klb" - scope="I" - type="L" - name="Kiliwa" /> - <iso_639_3_entry - id="klc" - scope="I" - type="L" - name="Kolbila" /> - <iso_639_3_entry - id="kld" - scope="I" - type="L" - name="Gamilaraay" /> - <iso_639_3_entry - id="kle" - scope="I" - type="L" - name="Kulung (Nepal)" /> - <iso_639_3_entry - id="klf" - scope="I" - type="L" - name="Kendeje" /> - <iso_639_3_entry - id="klg" - scope="I" - type="L" - name="Tagakaulo" /> - <iso_639_3_entry - id="klh" - scope="I" - type="L" - name="Weliki" /> - <iso_639_3_entry - id="kli" - scope="I" - type="L" - name="Kalumpang" /> - <iso_639_3_entry - id="klj" - scope="I" - type="L" - name="Khalaj; Turkic" /> - <iso_639_3_entry - id="klk" - scope="I" - type="L" - name="Kono (Nigeria)" /> - <iso_639_3_entry - id="kll" - scope="I" - type="L" - name="Kalagan; Kagan" /> - <iso_639_3_entry - id="klm" - scope="I" - type="L" - name="Migum" /> - <iso_639_3_entry - id="kln" - scope="M" - type="L" - name="Kalenjin" /> - <iso_639_3_entry - id="klo" - scope="I" - type="L" - name="Kapya" /> - <iso_639_3_entry - id="klp" - scope="I" - type="L" - name="Kamasa" /> - <iso_639_3_entry - id="klq" - scope="I" - type="L" - name="Rumu" /> - <iso_639_3_entry - id="klr" - scope="I" - type="L" - name="Khaling" /> - <iso_639_3_entry - id="kls" - scope="I" - type="L" - name="Kalasha" /> - <iso_639_3_entry - id="klt" - scope="I" - type="L" - name="Nukna" /> - <iso_639_3_entry - id="klu" - scope="I" - type="L" - name="Klao" /> - <iso_639_3_entry - id="klv" - scope="I" - type="L" - name="Maskelynes" /> - <iso_639_3_entry - id="klw" - scope="I" - type="L" - name="Lindu" /> - <iso_639_3_entry - id="klx" - scope="I" - type="L" - name="Koluwawa" /> - <iso_639_3_entry - id="kly" - scope="I" - type="L" - name="Kalao" /> - <iso_639_3_entry - id="klz" - scope="I" - type="L" - name="Kabola" /> - <iso_639_3_entry - id="kma" - scope="I" - type="L" - name="Konni" /> - <iso_639_3_entry - id="kmb" - part2_code="kmb" - scope="I" - type="L" - name="Kimbundu" /> - <iso_639_3_entry - id="kmc" - scope="I" - type="L" - name="Dong; Southern" /> - <iso_639_3_entry - id="kmd" - scope="I" - type="L" - name="Kalinga; Majukayang" /> - <iso_639_3_entry - id="kme" - scope="I" - type="L" - name="Bakole" /> - <iso_639_3_entry - id="kmf" - scope="I" - type="L" - name="Kare (Papua New Guinea)" /> - <iso_639_3_entry - id="kmg" - scope="I" - type="L" - name="Kâte" /> - <iso_639_3_entry - id="kmh" - scope="I" - type="L" - name="Kalam" /> - <iso_639_3_entry - id="kmi" - scope="I" - type="L" - name="Kami (Nigeria)" /> - <iso_639_3_entry - id="kmj" - scope="I" - type="L" - name="Kumarbhag Paharia" /> - <iso_639_3_entry - id="kmk" - scope="I" - type="L" - name="Kalinga; Limos" /> - <iso_639_3_entry - id="kml" - scope="I" - type="L" - name="Kalinga; Lower Tanudan" /> - <iso_639_3_entry - id="kmm" - scope="I" - type="L" - name="Kom (India)" /> - <iso_639_3_entry - id="kmn" - scope="I" - type="L" - name="Awtuw" /> - <iso_639_3_entry - id="kmo" - scope="I" - type="L" - name="Kwoma" /> - <iso_639_3_entry - id="kmp" - scope="I" - type="L" - name="Gimme" /> - <iso_639_3_entry - id="kmq" - scope="I" - type="L" - name="Kwama" /> - <iso_639_3_entry - id="kmr" - scope="I" - type="L" - name="Kurdish; Northern" /> - <iso_639_3_entry - id="kms" - scope="I" - type="L" - name="Kamasau" /> - <iso_639_3_entry - id="kmt" - scope="I" - type="L" - name="Kemtuik" /> - <iso_639_3_entry - id="kmu" - scope="I" - type="L" - name="Kanite" /> - <iso_639_3_entry - id="kmv" - scope="I" - type="L" - name="Creole French; Karipúna" /> - <iso_639_3_entry - id="kmw" - scope="I" - type="L" - name="Komo (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="kmx" - scope="I" - type="L" - name="Waboda" /> - <iso_639_3_entry - id="kmy" - scope="I" - type="L" - name="Koma" /> - <iso_639_3_entry - id="kmz" - scope="I" - type="L" - name="Khorasani Turkish" /> - <iso_639_3_entry - id="kna" - scope="I" - type="L" - name="Dera (Nigeria)" /> - <iso_639_3_entry - id="knb" - scope="I" - type="L" - name="Kalinga; Lubuagan" /> - <iso_639_3_entry - id="knc" - scope="I" - type="L" - name="Kanuri; Central" /> - <iso_639_3_entry - id="knd" - scope="I" - type="L" - name="Konda" /> - <iso_639_3_entry - id="kne" - scope="I" - type="L" - name="Kankanaey" /> - <iso_639_3_entry - id="knf" - scope="I" - type="L" - name="Mankanya" /> - <iso_639_3_entry - id="kng" - scope="I" - type="L" - name="Koongo" /> - <iso_639_3_entry - id="kni" - scope="I" - type="L" - name="Kanufi" /> - <iso_639_3_entry - id="knj" - scope="I" - type="L" - name="Kanjobal; Western" /> - <iso_639_3_entry - id="knk" - scope="I" - type="L" - name="Kuranko" /> - <iso_639_3_entry - id="knl" - scope="I" - type="L" - name="Keninjal" /> - <iso_639_3_entry - id="knm" - scope="I" - type="L" - name="Kanamarí" /> - <iso_639_3_entry - id="knn" - scope="I" - type="L" - name="Konkani (individual language)" /> - <iso_639_3_entry - id="kno" - scope="I" - type="L" - name="Kono (Sierra Leone)" /> - <iso_639_3_entry - id="knp" - scope="I" - type="L" - name="Kwanja" /> - <iso_639_3_entry - id="knq" - scope="I" - type="L" - name="Kintaq" /> - <iso_639_3_entry - id="knr" - scope="I" - type="L" - name="Kaningra" /> - <iso_639_3_entry - id="kns" - scope="I" - type="L" - name="Kensiu" /> - <iso_639_3_entry - id="knt" - scope="I" - type="L" - name="Katukína; Panoan" /> - <iso_639_3_entry - id="knu" - scope="I" - type="L" - name="Kono (Guinea)" /> - <iso_639_3_entry - id="knv" - scope="I" - type="L" - name="Tabo" /> - <iso_639_3_entry - id="knw" - scope="I" - type="L" - name="Kung-Ekoka" /> - <iso_639_3_entry - id="knx" - scope="I" - type="L" - name="Kendayan" /> - <iso_639_3_entry - id="kny" - scope="I" - type="L" - name="Kanyok" /> - <iso_639_3_entry - id="knz" - scope="I" - type="L" - name="Kalamsé" /> - <iso_639_3_entry - id="koa" - scope="I" - type="L" - name="Konomala" /> - <iso_639_3_entry - id="koc" - scope="I" - type="E" - name="Kpati" /> - <iso_639_3_entry - id="kod" - scope="I" - type="L" - name="Kodi" /> - <iso_639_3_entry - id="koe" - scope="I" - type="L" - name="Kacipo-Balesi" /> - <iso_639_3_entry - id="kof" - scope="I" - type="E" - name="Kubi" /> - <iso_639_3_entry - id="kog" - scope="I" - type="L" - name="Cogui" /> - <iso_639_3_entry - id="koh" - scope="I" - type="L" - name="Koyo" /> - <iso_639_3_entry - id="koi" - scope="I" - type="L" - name="Komi-Permyak" /> - <iso_639_3_entry - id="koj" - scope="I" - type="L" - name="Sara Dunjo" /> - <iso_639_3_entry - id="kok" - part2_code="kok" - scope="M" - type="L" - name="Konkani (macrolanguage)" /> - <iso_639_3_entry - id="kol" - scope="I" - type="L" - name="Kol (Papua New Guinea)" /> - <iso_639_3_entry - id="kom" - part1_code="kv" - part2_code="kom" - scope="M" - type="L" - name="Komi" /> - <iso_639_3_entry - id="kon" - part1_code="kg" - part2_code="kon" - scope="M" - type="L" - name="Kongo" /> - <iso_639_3_entry - id="koo" - scope="I" - type="L" - name="Konzo" /> - <iso_639_3_entry - id="kop" - scope="I" - type="L" - name="Waube" /> - <iso_639_3_entry - id="koq" - scope="I" - type="L" - name="Kota (Gabon)" /> - <iso_639_3_entry - id="kor" - part1_code="ko" - part2_code="kor" - scope="I" - type="L" - name="Korean" /> - <iso_639_3_entry - id="kos" - part2_code="kos" - scope="I" - type="L" - name="Kosraean" /> - <iso_639_3_entry - id="kot" - scope="I" - type="L" - name="Lagwan" /> - <iso_639_3_entry - id="kou" - scope="I" - type="L" - name="Koke" /> - <iso_639_3_entry - id="kov" - scope="I" - type="L" - name="Kudu-Camo" /> - <iso_639_3_entry - id="kow" - scope="I" - type="L" - name="Kugama" /> - <iso_639_3_entry - id="kox" - scope="I" - type="E" - name="Coxima" /> - <iso_639_3_entry - id="koy" - scope="I" - type="L" - name="Koyukon" /> - <iso_639_3_entry - id="koz" - scope="I" - type="L" - name="Korak" /> - <iso_639_3_entry - id="kpa" - scope="I" - type="L" - name="Kutto" /> - <iso_639_3_entry - id="kpb" - scope="I" - type="L" - name="Kurumba; Mullu" /> - <iso_639_3_entry - id="kpc" - scope="I" - type="L" - name="Curripaco" /> - <iso_639_3_entry - id="kpd" - scope="I" - type="L" - name="Koba" /> - <iso_639_3_entry - id="kpe" - part2_code="kpe" - scope="M" - type="L" - name="Kpelle" /> - <iso_639_3_entry - id="kpf" - scope="I" - type="L" - name="Komba" /> - <iso_639_3_entry - id="kpg" - scope="I" - type="L" - name="Kapingamarangi" /> - <iso_639_3_entry - id="kph" - scope="I" - type="L" - name="Kplang" /> - <iso_639_3_entry - id="kpi" - scope="I" - type="L" - name="Kofei" /> - <iso_639_3_entry - id="kpj" - scope="I" - type="L" - name="Karajá" /> - <iso_639_3_entry - id="kpk" - scope="I" - type="L" - name="Kpan" /> - <iso_639_3_entry - id="kpl" - scope="I" - type="L" - name="Kpala" /> - <iso_639_3_entry - id="kpm" - scope="I" - type="L" - name="Koho" /> - <iso_639_3_entry - id="kpn" - scope="I" - type="E" - name="Kepkiriwát" /> - <iso_639_3_entry - id="kpo" - scope="I" - type="L" - name="Ikposo" /> - <iso_639_3_entry - id="kpp" - scope="I" - type="L" - name="Karen; Paku" /> - <iso_639_3_entry - id="kpq" - scope="I" - type="L" - name="Korupun-Sela" /> - <iso_639_3_entry - id="kpr" - scope="I" - type="L" - name="Korafe-Yegha" /> - <iso_639_3_entry - id="kps" - scope="I" - type="L" - name="Tehit" /> - <iso_639_3_entry - id="kpt" - scope="I" - type="L" - name="Karata" /> - <iso_639_3_entry - id="kpu" - scope="I" - type="L" - name="Kafoa" /> - <iso_639_3_entry - id="kpv" - scope="I" - type="L" - name="Komi-Zyrian" /> - <iso_639_3_entry - id="kpw" - scope="I" - type="L" - name="Kobon" /> - <iso_639_3_entry - id="kpx" - scope="I" - type="L" - name="Koiali; Mountain" /> - <iso_639_3_entry - id="kpy" - scope="I" - type="L" - name="Koryak" /> - <iso_639_3_entry - id="kpz" - scope="I" - type="L" - name="Kupsabiny" /> - <iso_639_3_entry - id="kqa" - scope="I" - type="L" - name="Mum" /> - <iso_639_3_entry - id="kqb" - scope="I" - type="L" - name="Kovai" /> - <iso_639_3_entry - id="kqc" - scope="I" - type="L" - name="Doromu-Koki" /> - <iso_639_3_entry - id="kqd" - scope="I" - type="L" - name="Koy Sanjaq Surat" /> - <iso_639_3_entry - id="kqe" - scope="I" - type="L" - name="Kalagan" /> - <iso_639_3_entry - id="kqf" - scope="I" - type="L" - name="Kakabai" /> - <iso_639_3_entry - id="kqg" - scope="I" - type="L" - name="Khe" /> - <iso_639_3_entry - id="kqh" - scope="I" - type="L" - name="Kisankasa" /> - <iso_639_3_entry - id="kqi" - scope="I" - type="L" - name="Koitabu" /> - <iso_639_3_entry - id="kqj" - scope="I" - type="L" - name="Koromira" /> - <iso_639_3_entry - id="kqk" - scope="I" - type="L" - name="Gbe; Kotafon" /> - <iso_639_3_entry - id="kql" - scope="I" - type="L" - name="Kyenele" /> - <iso_639_3_entry - id="kqm" - scope="I" - type="L" - name="Khisa" /> - <iso_639_3_entry - id="kqn" - scope="I" - type="L" - name="Kaonde" /> - <iso_639_3_entry - id="kqo" - scope="I" - type="L" - name="Krahn; Eastern" /> - <iso_639_3_entry - id="kqp" - scope="I" - type="L" - name="Kimré" /> - <iso_639_3_entry - id="kqq" - scope="I" - type="L" - name="Krenak" /> - <iso_639_3_entry - id="kqr" - scope="I" - type="L" - name="Kimaragang" /> - <iso_639_3_entry - id="kqs" - scope="I" - type="L" - name="Kissi; Northern" /> - <iso_639_3_entry - id="kqt" - scope="I" - type="L" - name="Kadazan; Klias River" /> - <iso_639_3_entry - id="kqu" - scope="I" - type="E" - name="Seroa" /> - <iso_639_3_entry - id="kqv" - scope="I" - type="L" - name="Okolod" /> - <iso_639_3_entry - id="kqw" - scope="I" - type="L" - name="Kandas" /> - <iso_639_3_entry - id="kqx" - scope="I" - type="L" - name="Mser" /> - <iso_639_3_entry - id="kqy" - scope="I" - type="L" - name="Koorete" /> - <iso_639_3_entry - id="kqz" - scope="I" - type="E" - name="Korana" /> - <iso_639_3_entry - id="kra" - scope="I" - type="L" - name="Kumhali" /> - <iso_639_3_entry - id="krb" - scope="I" - type="E" - name="Karkin" /> - <iso_639_3_entry - id="krc" - part2_code="krc" - scope="I" - type="L" - name="Karachay-Balkar" /> - <iso_639_3_entry - id="krd" - scope="I" - type="L" - name="Kairui-Midiki" /> - <iso_639_3_entry - id="kre" - scope="I" - type="L" - name="Panará" /> - <iso_639_3_entry - id="krf" - scope="I" - type="L" - name="Koro (Vanuatu)" /> - <iso_639_3_entry - id="krh" - scope="I" - type="L" - name="Kurama" /> - <iso_639_3_entry - id="kri" - scope="I" - type="L" - name="Krio" /> - <iso_639_3_entry - id="krj" - scope="I" - type="L" - name="Kinaray-A" /> - <iso_639_3_entry - id="krk" - scope="I" - type="E" - name="Kerek" /> - <iso_639_3_entry - id="krl" - part2_code="krl" - scope="I" - type="L" - name="Karelian" /> - <iso_639_3_entry - id="krm" - scope="I" - type="L" - name="Krim" /> - <iso_639_3_entry - id="krn" - scope="I" - type="L" - name="Sapo" /> - <iso_639_3_entry - id="krp" - scope="I" - type="L" - name="Korop" /> - <iso_639_3_entry - id="krr" - scope="I" - type="L" - name="Kru'ng 2" /> - <iso_639_3_entry - id="krs" - scope="I" - type="L" - name="Gbaya (Sudan)" /> - <iso_639_3_entry - id="krt" - scope="I" - type="L" - name="Kanuri; Tumari" /> - <iso_639_3_entry - id="kru" - part2_code="kru" - scope="I" - type="L" - name="Kurukh" /> - <iso_639_3_entry - id="krv" - scope="I" - type="L" - name="Kavet" /> - <iso_639_3_entry - id="krw" - scope="I" - type="L" - name="Krahn; Western" /> - <iso_639_3_entry - id="krx" - scope="I" - type="L" - name="Karon" /> - <iso_639_3_entry - id="kry" - scope="I" - type="L" - name="Kryts" /> - <iso_639_3_entry - id="krz" - scope="I" - type="L" - name="Kanum; Sota" /> - <iso_639_3_entry - id="ksa" - scope="I" - type="L" - name="Shuwa-Zamani" /> - <iso_639_3_entry - id="ksb" - scope="I" - type="L" - name="Shambala" /> - <iso_639_3_entry - id="ksc" - scope="I" - type="L" - name="Kalinga; Southern" /> - <iso_639_3_entry - id="ksd" - scope="I" - type="L" - name="Kuanua" /> - <iso_639_3_entry - id="kse" - scope="I" - type="L" - name="Kuni" /> - <iso_639_3_entry - id="ksf" - scope="I" - type="L" - name="Bafia" /> - <iso_639_3_entry - id="ksg" - scope="I" - type="L" - name="Kusaghe" /> - <iso_639_3_entry - id="ksh" - scope="I" - type="L" - name="Kölsch" /> - <iso_639_3_entry - id="ksi" - scope="I" - type="L" - name="Krisa" /> - <iso_639_3_entry - id="ksj" - scope="I" - type="L" - name="Uare" /> - <iso_639_3_entry - id="ksk" - scope="I" - type="L" - name="Kansa" /> - <iso_639_3_entry - id="ksl" - scope="I" - type="L" - name="Kumalu" /> - <iso_639_3_entry - id="ksm" - scope="I" - type="L" - name="Kumba" /> - <iso_639_3_entry - id="ksn" - scope="I" - type="L" - name="Kasiguranin" /> - <iso_639_3_entry - id="kso" - scope="I" - type="L" - name="Kofa" /> - <iso_639_3_entry - id="ksp" - scope="I" - type="L" - name="Kaba" /> - <iso_639_3_entry - id="ksq" - scope="I" - type="L" - name="Kwaami" /> - <iso_639_3_entry - id="ksr" - scope="I" - type="L" - name="Borong" /> - <iso_639_3_entry - id="kss" - scope="I" - type="L" - name="Kisi; Southern" /> - <iso_639_3_entry - id="kst" - scope="I" - type="L" - name="Winyé" /> - <iso_639_3_entry - id="ksu" - scope="I" - type="L" - name="Khamyang" /> - <iso_639_3_entry - id="ksv" - scope="I" - type="L" - name="Kusu" /> - <iso_639_3_entry - id="ksw" - scope="I" - type="L" - name="Karen; S'gaw" /> - <iso_639_3_entry - id="ksx" - scope="I" - type="L" - name="Kedang" /> - <iso_639_3_entry - id="ksy" - scope="I" - type="L" - name="Kharia Thar" /> - <iso_639_3_entry - id="ksz" - scope="I" - type="L" - name="Kodaku" /> - <iso_639_3_entry - id="kta" - scope="I" - type="L" - name="Katua" /> - <iso_639_3_entry - id="ktb" - scope="I" - type="L" - name="Kambaata" /> - <iso_639_3_entry - id="ktc" - scope="I" - type="L" - name="Kholok" /> - <iso_639_3_entry - id="ktd" - scope="I" - type="L" - name="Kokata" /> - <iso_639_3_entry - id="kte" - scope="I" - type="L" - name="Nubri" /> - <iso_639_3_entry - id="ktf" - scope="I" - type="L" - name="Kwami" /> - <iso_639_3_entry - id="ktg" - scope="I" - type="E" - name="Kalkutung" /> - <iso_639_3_entry - id="kth" - scope="I" - type="L" - name="Karanga" /> - <iso_639_3_entry - id="kti" - scope="I" - type="L" - name="Muyu; North" /> - <iso_639_3_entry - id="ktj" - scope="I" - type="L" - name="Krumen; Plapo" /> - <iso_639_3_entry - id="ktk" - scope="I" - type="E" - name="Kaniet" /> - <iso_639_3_entry - id="ktl" - scope="I" - type="L" - name="Koroshi" /> - <iso_639_3_entry - id="ktm" - scope="I" - type="L" - name="Kurti" /> - <iso_639_3_entry - id="ktn" - scope="I" - type="L" - name="Karitiâna" /> - <iso_639_3_entry - id="kto" - scope="I" - type="L" - name="Kuot" /> - <iso_639_3_entry - id="ktp" - scope="I" - type="L" - name="Kaduo" /> - <iso_639_3_entry - id="ktq" - scope="I" - type="E" - name="Katabaga" /> - <iso_639_3_entry - id="ktr" - scope="I" - type="L" - name="Kota Marudu Tinagas" /> - <iso_639_3_entry - id="kts" - scope="I" - type="L" - name="Muyu; South" /> - <iso_639_3_entry - id="ktt" - scope="I" - type="L" - name="Ketum" /> - <iso_639_3_entry - id="ktu" - scope="I" - type="L" - name="Kituba (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="ktv" - scope="I" - type="L" - name="Katu; Eastern" /> - <iso_639_3_entry - id="ktw" - scope="I" - type="E" - name="Kato" /> - <iso_639_3_entry - id="ktx" - scope="I" - type="L" - name="Kaxararí" /> - <iso_639_3_entry - id="kty" - scope="I" - type="L" - name="Kango (Bas-Uélé District)" /> - <iso_639_3_entry - id="ktz" - scope="I" - type="L" - name="Ju/'hoan" /> - <iso_639_3_entry - id="kua" - part1_code="kj" - part2_code="kua" - scope="I" - type="L" - name="Kuanyama" /> - <iso_639_3_entry - id="kub" - scope="I" - type="L" - name="Kutep" /> - <iso_639_3_entry - id="kuc" - scope="I" - type="L" - name="Kwinsu" /> - <iso_639_3_entry - id="kud" - scope="I" - type="L" - name="'Auhelawa" /> - <iso_639_3_entry - id="kue" - scope="I" - type="L" - name="Kuman" /> - <iso_639_3_entry - id="kuf" - scope="I" - type="L" - name="Katu; Western" /> - <iso_639_3_entry - id="kug" - scope="I" - type="L" - name="Kupa" /> - <iso_639_3_entry - id="kuh" - scope="I" - type="L" - name="Kushi" /> - <iso_639_3_entry - id="kui" - scope="I" - type="L" - name="Kuikúro-Kalapálo" /> - <iso_639_3_entry - id="kuj" - scope="I" - type="L" - name="Kuria" /> - <iso_639_3_entry - id="kuk" - scope="I" - type="L" - name="Kepo'" /> - <iso_639_3_entry - id="kul" - scope="I" - type="L" - name="Kulere" /> - <iso_639_3_entry - id="kum" - part2_code="kum" - scope="I" - type="L" - name="Kumyk" /> - <iso_639_3_entry - id="kun" - scope="I" - type="L" - name="Kunama" /> - <iso_639_3_entry - id="kuo" - scope="I" - type="L" - name="Kumukio" /> - <iso_639_3_entry - id="kup" - scope="I" - type="L" - name="Kunimaipa" /> - <iso_639_3_entry - id="kuq" - scope="I" - type="L" - name="Karipuna" /> - <iso_639_3_entry - id="kur" - part1_code="ku" - part2_code="kur" - scope="M" - type="L" - name="Kurdish" /> - <iso_639_3_entry - id="kus" - scope="I" - type="L" - name="Kusaal" /> - <iso_639_3_entry - id="kut" - part2_code="kut" - scope="I" - type="L" - name="Kutenai" /> - <iso_639_3_entry - id="kuu" - scope="I" - type="L" - name="Kuskokwim; Upper" /> - <iso_639_3_entry - id="kuv" - scope="I" - type="L" - name="Kur" /> - <iso_639_3_entry - id="kuw" - scope="I" - type="L" - name="Kpagua" /> - <iso_639_3_entry - id="kux" - scope="I" - type="L" - name="Kukatja" /> - <iso_639_3_entry - id="kuy" - scope="I" - type="L" - name="Kuuku-Ya'u" /> - <iso_639_3_entry - id="kuz" - scope="I" - type="E" - name="Kunza" /> - <iso_639_3_entry - id="kva" - scope="I" - type="L" - name="Bagvalal" /> - <iso_639_3_entry - id="kvb" - scope="I" - type="L" - name="Kubu" /> - <iso_639_3_entry - id="kvc" - scope="I" - type="L" - name="Kove" /> - <iso_639_3_entry - id="kvd" - scope="I" - type="L" - name="Kui (Indonesia)" /> - <iso_639_3_entry - id="kve" - scope="I" - type="L" - name="Kalabakan" /> - <iso_639_3_entry - id="kvf" - scope="I" - type="L" - name="Kabalai" /> - <iso_639_3_entry - id="kvg" - scope="I" - type="L" - name="Kuni-Boazi" /> - <iso_639_3_entry - id="kvh" - scope="I" - type="L" - name="Komodo" /> - <iso_639_3_entry - id="kvi" - scope="I" - type="L" - name="Kwang" /> - <iso_639_3_entry - id="kvj" - scope="I" - type="L" - name="Psikye" /> - <iso_639_3_entry - id="kvk" - scope="I" - type="L" - name="Korean Sign Language" /> - <iso_639_3_entry - id="kvl" - scope="I" - type="L" - name="Karen; Brek" /> - <iso_639_3_entry - id="kvm" - scope="I" - type="L" - name="Kendem" /> - <iso_639_3_entry - id="kvn" - scope="I" - type="L" - name="Kuna; Border" /> - <iso_639_3_entry - id="kvo" - scope="I" - type="L" - name="Dobel" /> - <iso_639_3_entry - id="kvp" - scope="I" - type="L" - name="Kompane" /> - <iso_639_3_entry - id="kvq" - scope="I" - type="L" - name="Karen; Geba" /> - <iso_639_3_entry - id="kvr" - scope="I" - type="L" - name="Kerinci" /> - <iso_639_3_entry - id="kvs" - scope="I" - type="L" - name="Kunggara" /> - <iso_639_3_entry - id="kvt" - scope="I" - type="L" - name="Karen; Lahta" /> - <iso_639_3_entry - id="kvu" - scope="I" - type="L" - name="Karen; Yinbaw" /> - <iso_639_3_entry - id="kvv" - scope="I" - type="L" - name="Kola" /> - <iso_639_3_entry - id="kvw" - scope="I" - type="L" - name="Wersing" /> - <iso_639_3_entry - id="kvx" - scope="I" - type="L" - name="Koli; Parkari" /> - <iso_639_3_entry - id="kvy" - scope="I" - type="L" - name="Karen; Yintale" /> - <iso_639_3_entry - id="kvz" - scope="I" - type="L" - name="Tsakwambo" /> - <iso_639_3_entry - id="kwa" - scope="I" - type="L" - name="Dâw" /> - <iso_639_3_entry - id="kwb" - scope="I" - type="L" - name="Kwa" /> - <iso_639_3_entry - id="kwc" - scope="I" - type="L" - name="Likwala" /> - <iso_639_3_entry - id="kwd" - scope="I" - type="L" - name="Kwaio" /> - <iso_639_3_entry - id="kwe" - scope="I" - type="L" - name="Kwerba" /> - <iso_639_3_entry - id="kwf" - scope="I" - type="L" - name="Kwara'ae" /> - <iso_639_3_entry - id="kwg" - scope="I" - type="L" - name="Sara Kaba Deme" /> - <iso_639_3_entry - id="kwh" - scope="I" - type="L" - name="Kowiai" /> - <iso_639_3_entry - id="kwi" - scope="I" - type="L" - name="Awa-Cuaiquer" /> - <iso_639_3_entry - id="kwj" - scope="I" - type="L" - name="Kwanga" /> - <iso_639_3_entry - id="kwk" - scope="I" - type="L" - name="Kwakiutl" /> - <iso_639_3_entry - id="kwl" - scope="I" - type="L" - name="Kofyar" /> - <iso_639_3_entry - id="kwm" - scope="I" - type="L" - name="Kwambi" /> - <iso_639_3_entry - id="kwn" - scope="I" - type="L" - name="Kwangali" /> - <iso_639_3_entry - id="kwo" - scope="I" - type="L" - name="Kwomtari" /> - <iso_639_3_entry - id="kwp" - scope="I" - type="L" - name="Kodia" /> - <iso_639_3_entry - id="kwq" - scope="I" - type="L" - name="Kwak" /> - <iso_639_3_entry - id="kwr" - scope="I" - type="L" - name="Kwer" /> - <iso_639_3_entry - id="kws" - scope="I" - type="L" - name="Kwese" /> - <iso_639_3_entry - id="kwt" - scope="I" - type="L" - name="Kwesten" /> - <iso_639_3_entry - id="kwu" - scope="I" - type="L" - name="Kwakum" /> - <iso_639_3_entry - id="kwv" - scope="I" - type="L" - name="Sara Kaba Náà" /> - <iso_639_3_entry - id="kww" - scope="I" - type="L" - name="Kwinti" /> - <iso_639_3_entry - id="kwx" - scope="I" - type="L" - name="Khirwar" /> - <iso_639_3_entry - id="kwy" - scope="I" - type="L" - name="Kongo; San Salvador" /> - <iso_639_3_entry - id="kwz" - scope="I" - type="E" - name="Kwadi" /> - <iso_639_3_entry - id="kxa" - scope="I" - type="L" - name="Kairiru" /> - <iso_639_3_entry - id="kxb" - scope="I" - type="L" - name="Krobu" /> - <iso_639_3_entry - id="kxc" - scope="I" - type="L" - name="Konso" /> - <iso_639_3_entry - id="kxd" - scope="I" - type="L" - name="Brunei" /> - <iso_639_3_entry - id="kxe" - scope="I" - type="L" - name="Kakihum" /> - <iso_639_3_entry - id="kxf" - scope="I" - type="L" - name="Karen; Manumanaw" /> - <iso_639_3_entry - id="kxh" - scope="I" - type="L" - name="Karo (Ethiopia)" /> - <iso_639_3_entry - id="kxi" - scope="I" - type="L" - name="Murut; Keningau" /> - <iso_639_3_entry - id="kxj" - scope="I" - type="L" - name="Kulfa" /> - <iso_639_3_entry - id="kxk" - scope="I" - type="L" - name="Karen; Zayein" /> - <iso_639_3_entry - id="kxl" - scope="I" - type="L" - name="Kurux; Nepali" /> - <iso_639_3_entry - id="kxm" - scope="I" - type="L" - name="Khmer; Northern" /> - <iso_639_3_entry - id="kxn" - scope="I" - type="L" - name="Melanau; Kanowit-Tanjong" /> - <iso_639_3_entry - id="kxo" - scope="I" - type="E" - name="Kanoé" /> - <iso_639_3_entry - id="kxp" - scope="I" - type="L" - name="Koli; Wadiyara" /> - <iso_639_3_entry - id="kxq" - scope="I" - type="L" - name="Kanum; Smärky" /> - <iso_639_3_entry - id="kxr" - scope="I" - type="L" - name="Koro (Papua New Guinea)" /> - <iso_639_3_entry - id="kxs" - scope="I" - type="L" - name="Kangjia" /> - <iso_639_3_entry - id="kxt" - scope="I" - type="L" - name="Koiwat" /> - <iso_639_3_entry - id="kxu" - scope="I" - type="L" - name="Kui (India)" /> - <iso_639_3_entry - id="kxv" - scope="I" - type="L" - name="Kuvi" /> - <iso_639_3_entry - id="kxw" - scope="I" - type="L" - name="Konai" /> - <iso_639_3_entry - id="kxx" - scope="I" - type="L" - name="Likuba" /> - <iso_639_3_entry - id="kxy" - scope="I" - type="L" - name="Kayong" /> - <iso_639_3_entry - id="kxz" - scope="I" - type="L" - name="Kerewo" /> - <iso_639_3_entry - id="kya" - scope="I" - type="L" - name="Kwaya" /> - <iso_639_3_entry - id="kyb" - scope="I" - type="L" - name="Kalinga; Butbut" /> - <iso_639_3_entry - id="kyc" - scope="I" - type="L" - name="Kyaka" /> - <iso_639_3_entry - id="kyd" - scope="I" - type="L" - name="Karey" /> - <iso_639_3_entry - id="kye" - scope="I" - type="L" - name="Krache" /> - <iso_639_3_entry - id="kyf" - scope="I" - type="L" - name="Kouya" /> - <iso_639_3_entry - id="kyg" - scope="I" - type="L" - name="Keyagana" /> - <iso_639_3_entry - id="kyh" - scope="I" - type="L" - name="Karok" /> - <iso_639_3_entry - id="kyi" - scope="I" - type="L" - name="Kiput" /> - <iso_639_3_entry - id="kyj" - scope="I" - type="L" - name="Karao" /> - <iso_639_3_entry - id="kyk" - scope="I" - type="L" - name="Kamayo" /> - <iso_639_3_entry - id="kyl" - scope="I" - type="L" - name="Kalapuya" /> - <iso_639_3_entry - id="kym" - scope="I" - type="L" - name="Kpatili" /> - <iso_639_3_entry - id="kyn" - scope="I" - type="L" - name="Binukidnon; Northern" /> - <iso_639_3_entry - id="kyo" - scope="I" - type="L" - name="Kelon" /> - <iso_639_3_entry - id="kyp" - scope="I" - type="L" - name="Kang" /> - <iso_639_3_entry - id="kyq" - scope="I" - type="L" - name="Kenga" /> - <iso_639_3_entry - id="kyr" - scope="I" - type="L" - name="Kuruáya" /> - <iso_639_3_entry - id="kys" - scope="I" - type="L" - name="Kayan; Baram" /> - <iso_639_3_entry - id="kyt" - scope="I" - type="L" - name="Kayagar" /> - <iso_639_3_entry - id="kyu" - scope="I" - type="L" - name="Kayah; Western" /> - <iso_639_3_entry - id="kyv" - scope="I" - type="L" - name="Kayort" /> - <iso_639_3_entry - id="kyw" - scope="I" - type="L" - name="Kudmali" /> - <iso_639_3_entry - id="kyx" - scope="I" - type="L" - name="Rapoisi" /> - <iso_639_3_entry - id="kyy" - scope="I" - type="L" - name="Kambaira" /> - <iso_639_3_entry - id="kyz" - scope="I" - type="L" - name="Kayabí" /> - <iso_639_3_entry - id="kza" - scope="I" - type="L" - name="Karaboro; Western" /> - <iso_639_3_entry - id="kzb" - scope="I" - type="L" - name="Kaibobo" /> - <iso_639_3_entry - id="kzc" - scope="I" - type="L" - name="Kulango; Bondoukou" /> - <iso_639_3_entry - id="kzd" - scope="I" - type="L" - name="Kadai" /> - <iso_639_3_entry - id="kze" - scope="I" - type="L" - name="Kosena" /> - <iso_639_3_entry - id="kzf" - scope="I" - type="L" - name="Kaili; Da'a" /> - <iso_639_3_entry - id="kzg" - scope="I" - type="L" - name="Kikai" /> - <iso_639_3_entry - id="kzh" - scope="I" - type="L" - name="Kenuzi-Dongola" /> - <iso_639_3_entry - id="kzi" - scope="I" - type="L" - name="Kelabit" /> - <iso_639_3_entry - id="kzj" - scope="I" - type="L" - name="Kadazan; Coastal" /> - <iso_639_3_entry - id="kzk" - scope="I" - type="E" - name="Kazukuru" /> - <iso_639_3_entry - id="kzl" - scope="I" - type="L" - name="Kayeli" /> - <iso_639_3_entry - id="kzm" - scope="I" - type="L" - name="Kais" /> - <iso_639_3_entry - id="kzn" - scope="I" - type="L" - name="Kokola" /> - <iso_639_3_entry - id="kzo" - scope="I" - type="L" - name="Kaningi" /> - <iso_639_3_entry - id="kzp" - scope="I" - type="L" - name="Kaidipang" /> - <iso_639_3_entry - id="kzq" - scope="I" - type="L" - name="Kaike" /> - <iso_639_3_entry - id="kzr" - scope="I" - type="L" - name="Karang" /> - <iso_639_3_entry - id="kzs" - scope="I" - type="L" - name="Dusun; Sugut" /> - <iso_639_3_entry - id="kzt" - scope="I" - type="L" - name="Dusun; Tambunan" /> - <iso_639_3_entry - id="kzu" - scope="I" - type="L" - name="Kayupulau" /> - <iso_639_3_entry - id="kzv" - scope="I" - type="L" - name="Komyandaret" /> - <iso_639_3_entry - id="kzw" - scope="I" - type="E" - name="Karirí-Xocó" /> - <iso_639_3_entry - id="kzx" - scope="I" - type="L" - name="Kamarian" /> - <iso_639_3_entry - id="kzy" - scope="I" - type="L" - name="Kango (Tshopo District)" /> - <iso_639_3_entry - id="kzz" - scope="I" - type="L" - name="Kalabra" /> - <iso_639_3_entry - id="laa" - scope="I" - type="L" - name="Subanen; Southern" /> - <iso_639_3_entry - id="lab" - scope="I" - type="A" - name="Linear A" /> - <iso_639_3_entry - id="lac" - scope="I" - type="L" - name="Lacandon" /> - <iso_639_3_entry - id="lad" - part2_code="lad" - scope="I" - type="L" - name="Ladino" /> - <iso_639_3_entry - id="lae" - scope="I" - type="L" - name="Pattani" /> - <iso_639_3_entry - id="laf" - scope="I" - type="L" - name="Lafofa" /> - <iso_639_3_entry - id="lag" - scope="I" - type="L" - name="Langi" /> - <iso_639_3_entry - id="lah" - part2_code="lah" - scope="M" - type="L" - name="Lahnda" /> - <iso_639_3_entry - id="lai" - scope="I" - type="L" - name="Lambya" /> - <iso_639_3_entry - id="laj" - scope="I" - type="L" - name="Lango (Uganda)" /> - <iso_639_3_entry - id="lak" - scope="I" - type="L" - name="Laka (Nigeria)" /> - <iso_639_3_entry - id="lal" - scope="I" - type="L" - name="Lalia" /> - <iso_639_3_entry - id="lam" - part2_code="lam" - scope="I" - type="L" - name="Lamba" /> - <iso_639_3_entry - id="lan" - scope="I" - type="L" - name="Laru" /> - <iso_639_3_entry - id="lao" - part1_code="lo" - part2_code="lao" - scope="I" - type="L" - name="Lao" /> - <iso_639_3_entry - id="lap" - scope="I" - type="L" - name="Laka (Chad)" /> - <iso_639_3_entry - id="laq" - scope="I" - type="L" - name="Qabiao" /> - <iso_639_3_entry - id="lar" - scope="I" - type="L" - name="Larteh" /> - <iso_639_3_entry - id="las" - scope="I" - type="L" - name="Lama (Togo)" /> - <iso_639_3_entry - id="lat" - part1_code="la" - part2_code="lat" - scope="I" - type="A" - name="Latin" /> - <iso_639_3_entry - id="lau" - scope="I" - type="L" - name="Laba" /> - <iso_639_3_entry - id="lav" - part1_code="lv" - part2_code="lav" - scope="M" - type="L" - name="Latvian" /> - <iso_639_3_entry - id="law" - scope="I" - type="L" - name="Lauje" /> - <iso_639_3_entry - id="lax" - scope="I" - type="L" - name="Tiwa" /> - <iso_639_3_entry - id="lay" - scope="I" - type="L" - name="Lama (Myanmar)" /> - <iso_639_3_entry - id="laz" - scope="I" - type="E" - name="Aribwatsa" /> - <iso_639_3_entry - id="lba" - scope="I" - type="L" - name="Lui" /> - <iso_639_3_entry - id="lbb" - scope="I" - type="L" - name="Label" /> - <iso_639_3_entry - id="lbc" - scope="I" - type="L" - name="Lakkia" /> - <iso_639_3_entry - id="lbe" - scope="I" - type="L" - name="Lak" /> - <iso_639_3_entry - id="lbf" - scope="I" - type="L" - name="Tinani" /> - <iso_639_3_entry - id="lbg" - scope="I" - type="L" - name="Laopang" /> - <iso_639_3_entry - id="lbi" - scope="I" - type="L" - name="La'bi" /> - <iso_639_3_entry - id="lbj" - scope="I" - type="L" - name="Ladakhi" /> - <iso_639_3_entry - id="lbk" - scope="I" - type="L" - name="Bontok; Central" /> - <iso_639_3_entry - id="lbl" - scope="I" - type="L" - name="Bikol; Libon" /> - <iso_639_3_entry - id="lbm" - scope="I" - type="L" - name="Lodhi" /> - <iso_639_3_entry - id="lbn" - scope="I" - type="L" - name="Lamet" /> - <iso_639_3_entry - id="lbo" - scope="I" - type="L" - name="Laven" /> - <iso_639_3_entry - id="lbq" - scope="I" - type="L" - name="Wampar" /> - <iso_639_3_entry - id="lbr" - scope="I" - type="L" - name="Lorung; Northern" /> - <iso_639_3_entry - id="lbs" - scope="I" - type="L" - name="Libyan Sign Language" /> - <iso_639_3_entry - id="lbt" - scope="I" - type="L" - name="Lachi" /> - <iso_639_3_entry - id="lbu" - scope="I" - type="L" - name="Labu" /> - <iso_639_3_entry - id="lbv" - scope="I" - type="L" - name="Lavatbura-Lamusong" /> - <iso_639_3_entry - id="lbw" - scope="I" - type="L" - name="Tolaki" /> - <iso_639_3_entry - id="lbx" - scope="I" - type="L" - name="Lawangan" /> - <iso_639_3_entry - id="lby" - scope="I" - type="E" - name="Lamu-Lamu" /> - <iso_639_3_entry - id="lbz" - scope="I" - type="L" - name="Lardil" /> - <iso_639_3_entry - id="lcc" - scope="I" - type="L" - name="Legenyem" /> - <iso_639_3_entry - id="lcd" - scope="I" - type="L" - name="Lola" /> - <iso_639_3_entry - id="lce" - scope="I" - type="L" - name="Loncong" /> - <iso_639_3_entry - id="lcf" - scope="I" - type="L" - name="Lubu" /> - <iso_639_3_entry - id="lch" - scope="I" - type="L" - name="Luchazi" /> - <iso_639_3_entry - id="lcl" - scope="I" - type="L" - name="Lisela" /> - <iso_639_3_entry - id="lcm" - scope="I" - type="L" - name="Tungag" /> - <iso_639_3_entry - id="lcp" - scope="I" - type="L" - name="Lawa; Western" /> - <iso_639_3_entry - id="lcq" - scope="I" - type="L" - name="Luhu" /> - <iso_639_3_entry - id="lcs" - scope="I" - type="L" - name="Lisabata-Nuniali" /> - <iso_639_3_entry - id="ldb" - scope="I" - type="L" - name="Idun" /> - <iso_639_3_entry - id="ldd" - scope="I" - type="L" - name="Luri" /> - <iso_639_3_entry - id="ldg" - scope="I" - type="L" - name="Lenyima" /> - <iso_639_3_entry - id="ldh" - scope="I" - type="L" - name="Lamja-Dengsa-Tola" /> - <iso_639_3_entry - id="ldi" - scope="I" - type="L" - name="Laari" /> - <iso_639_3_entry - id="ldj" - scope="I" - type="L" - name="Lemoro" /> - <iso_639_3_entry - id="ldk" - scope="I" - type="L" - name="Leelau" /> - <iso_639_3_entry - id="ldl" - scope="I" - type="L" - name="Kaan" /> - <iso_639_3_entry - id="ldm" - scope="I" - type="L" - name="Landoma" /> - <iso_639_3_entry - id="ldn" - scope="I" - type="C" - name="Láadan" /> - <iso_639_3_entry - id="ldo" - scope="I" - type="L" - name="Loo" /> - <iso_639_3_entry - id="ldp" - scope="I" - type="L" - name="Tso" /> - <iso_639_3_entry - id="ldq" - scope="I" - type="L" - name="Lufu" /> - <iso_639_3_entry - id="lea" - scope="I" - type="L" - name="Lega-Shabunda" /> - <iso_639_3_entry - id="leb" - scope="I" - type="L" - name="Lala-Bisa" /> - <iso_639_3_entry - id="lec" - scope="I" - type="L" - name="Leco" /> - <iso_639_3_entry - id="led" - scope="I" - type="L" - name="Lendu" /> - <iso_639_3_entry - id="lee" - scope="I" - type="L" - name="Lyélé" /> - <iso_639_3_entry - id="lef" - scope="I" - type="L" - name="Lelemi" /> - <iso_639_3_entry - id="leg" - scope="I" - type="L" - name="Lengua" /> - <iso_639_3_entry - id="leh" - scope="I" - type="L" - name="Lenje" /> - <iso_639_3_entry - id="lei" - scope="I" - type="L" - name="Lemio" /> - <iso_639_3_entry - id="lej" - scope="I" - type="L" - name="Lengola" /> - <iso_639_3_entry - id="lek" - scope="I" - type="L" - name="Leipon" /> - <iso_639_3_entry - id="lel" - scope="I" - type="L" - name="Lele (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="lem" - scope="I" - type="L" - name="Nomaande" /> - <iso_639_3_entry - id="len" - scope="I" - type="E" - name="Lenca" /> - <iso_639_3_entry - id="leo" - scope="I" - type="L" - name="Leti (Cameroon)" /> - <iso_639_3_entry - id="lep" - scope="I" - type="L" - name="Lepcha" /> - <iso_639_3_entry - id="leq" - scope="I" - type="L" - name="Lembena" /> - <iso_639_3_entry - id="ler" - scope="I" - type="L" - name="Lenkau" /> - <iso_639_3_entry - id="les" - scope="I" - type="L" - name="Lese" /> - <iso_639_3_entry - id="let" - scope="I" - type="L" - name="Lesing-Gelimi" /> - <iso_639_3_entry - id="leu" - scope="I" - type="L" - name="Kara (Papua New Guinea)" /> - <iso_639_3_entry - id="lev" - scope="I" - type="L" - name="Lamma" /> - <iso_639_3_entry - id="lew" - scope="I" - type="L" - name="Kaili; Ledo" /> - <iso_639_3_entry - id="lex" - scope="I" - type="L" - name="Luang" /> - <iso_639_3_entry - id="ley" - scope="I" - type="L" - name="Lemolang" /> - <iso_639_3_entry - id="lez" - part2_code="lez" - scope="I" - type="L" - name="Lezghian" /> - <iso_639_3_entry - id="lfa" - scope="I" - type="L" - name="Lefa" /> - <iso_639_3_entry - id="lfn" - scope="I" - type="C" - name="Lingua Franca Nova" /> - <iso_639_3_entry - id="lga" - scope="I" - type="L" - name="Lungga" /> - <iso_639_3_entry - id="lgb" - scope="I" - type="L" - name="Laghu" /> - <iso_639_3_entry - id="lgg" - scope="I" - type="L" - name="Lugbara" /> - <iso_639_3_entry - id="lgh" - scope="I" - type="L" - name="Laghuu" /> - <iso_639_3_entry - id="lgi" - scope="I" - type="L" - name="Lengilu" /> - <iso_639_3_entry - id="lgk" - scope="I" - type="L" - name="Lingarak" /> - <iso_639_3_entry - id="lgl" - scope="I" - type="L" - name="Wala" /> - <iso_639_3_entry - id="lgm" - scope="I" - type="L" - name="Lega-Mwenga" /> - <iso_639_3_entry - id="lgn" - scope="I" - type="L" - name="Opuuo" /> - <iso_639_3_entry - id="lgq" - scope="I" - type="L" - name="Logba" /> - <iso_639_3_entry - id="lgr" - scope="I" - type="L" - name="Lengo" /> - <iso_639_3_entry - id="lgt" - scope="I" - type="L" - name="Pahi" /> - <iso_639_3_entry - id="lgu" - scope="I" - type="L" - name="Longgu" /> - <iso_639_3_entry - id="lgz" - scope="I" - type="L" - name="Ligenza" /> - <iso_639_3_entry - id="lha" - scope="I" - type="L" - name="Laha (Viet Nam)" /> - <iso_639_3_entry - id="lhh" - scope="I" - type="L" - name="Laha (Indonesia)" /> - <iso_639_3_entry - id="lhi" - scope="I" - type="L" - name="Lahu Shi" /> - <iso_639_3_entry - id="lhl" - scope="I" - type="L" - name="Lohar; Lahul" /> - <iso_639_3_entry - id="lhm" - scope="I" - type="L" - name="Lhomi" /> - <iso_639_3_entry - id="lhn" - scope="I" - type="L" - name="Lahanan" /> - <iso_639_3_entry - id="lhp" - scope="I" - type="L" - name="Lhokpu" /> - <iso_639_3_entry - id="lhs" - scope="I" - type="E" - name="Mlahsö" /> - <iso_639_3_entry - id="lht" - scope="I" - type="L" - name="Lo-Toga" /> - <iso_639_3_entry - id="lhu" - scope="I" - type="L" - name="Lahu" /> - <iso_639_3_entry - id="lia" - scope="I" - type="L" - name="Limba; West-Central" /> - <iso_639_3_entry - id="lib" - scope="I" - type="L" - name="Likum" /> - <iso_639_3_entry - id="lic" - scope="I" - type="L" - name="Hlai" /> - <iso_639_3_entry - id="lid" - scope="I" - type="L" - name="Nyindrou" /> - <iso_639_3_entry - id="lie" - scope="I" - type="L" - name="Likila" /> - <iso_639_3_entry - id="lif" - scope="I" - type="L" - name="Limbu" /> - <iso_639_3_entry - id="lig" - scope="I" - type="L" - name="Ligbi" /> - <iso_639_3_entry - id="lih" - scope="I" - type="L" - name="Lihir" /> - <iso_639_3_entry - id="lii" - scope="I" - type="L" - name="Lingkhim" /> - <iso_639_3_entry - id="lij" - scope="I" - type="L" - name="Ligurian" /> - <iso_639_3_entry - id="lik" - scope="I" - type="L" - name="Lika" /> - <iso_639_3_entry - id="lil" - scope="I" - type="L" - name="Lillooet" /> - <iso_639_3_entry - id="lim" - part1_code="li" - part2_code="lim" - scope="I" - type="L" - name="Limburgan" /> - <iso_639_3_entry - id="lin" - part1_code="ln" - part2_code="lin" - scope="I" - type="L" - name="Lingala" /> - <iso_639_3_entry - id="lio" - scope="I" - type="L" - name="Liki" /> - <iso_639_3_entry - id="lip" - scope="I" - type="L" - name="Sekpele" /> - <iso_639_3_entry - id="liq" - scope="I" - type="L" - name="Libido" /> - <iso_639_3_entry - id="lir" - scope="I" - type="L" - name="English; Liberian" /> - <iso_639_3_entry - id="lis" - scope="I" - type="L" - name="Lisu" /> - <iso_639_3_entry - id="lit" - part1_code="lt" - part2_code="lit" - scope="I" - type="L" - name="Lithuanian" /> - <iso_639_3_entry - id="liu" - scope="I" - type="L" - name="Logorik" /> - <iso_639_3_entry - id="liv" - scope="I" - type="L" - name="Liv" /> - <iso_639_3_entry - id="liw" - scope="I" - type="L" - name="Col" /> - <iso_639_3_entry - id="lix" - scope="I" - type="L" - name="Liabuku" /> - <iso_639_3_entry - id="liy" - scope="I" - type="L" - name="Banda-Bambari" /> - <iso_639_3_entry - id="liz" - scope="I" - type="L" - name="Libinza" /> - <iso_639_3_entry - id="lje" - scope="I" - type="L" - name="Rampi" /> - <iso_639_3_entry - id="lji" - scope="I" - type="L" - name="Laiyolo" /> - <iso_639_3_entry - id="ljl" - scope="I" - type="L" - name="Li'o" /> - <iso_639_3_entry - id="ljp" - scope="I" - type="L" - name="Lampung Api" /> - <iso_639_3_entry - id="lka" - scope="I" - type="L" - name="Lakalei" /> - <iso_639_3_entry - id="lkb" - scope="I" - type="L" - name="Kabras" /> - <iso_639_3_entry - id="lkc" - scope="I" - type="L" - name="Kucong" /> - <iso_639_3_entry - id="lkd" - scope="I" - type="L" - name="Lakondê" /> - <iso_639_3_entry - id="lke" - scope="I" - type="L" - name="Kenyi" /> - <iso_639_3_entry - id="lkh" - scope="I" - type="L" - name="Lakha" /> - <iso_639_3_entry - id="lki" - scope="I" - type="L" - name="Laki" /> - <iso_639_3_entry - id="lkj" - scope="I" - type="L" - name="Remun" /> - <iso_639_3_entry - id="lkl" - scope="I" - type="L" - name="Laeko-Libuat" /> - <iso_639_3_entry - id="lkn" - scope="I" - type="L" - name="Lakon" /> - <iso_639_3_entry - id="lko" - scope="I" - type="L" - name="Khayo" /> - <iso_639_3_entry - id="lkr" - scope="I" - type="L" - name="Päri" /> - <iso_639_3_entry - id="lks" - scope="I" - type="L" - name="Kisa" /> - <iso_639_3_entry - id="lkt" - scope="I" - type="L" - name="Lakota" /> - <iso_639_3_entry - id="lky" - scope="I" - type="L" - name="Lokoya" /> - <iso_639_3_entry - id="lla" - scope="I" - type="L" - name="Lala-Roba" /> - <iso_639_3_entry - id="llb" - scope="I" - type="L" - name="Lolo" /> - <iso_639_3_entry - id="llc" - scope="I" - type="L" - name="Lele (Guinea)" /> - <iso_639_3_entry - id="lld" - scope="I" - type="L" - name="Ladin" /> - <iso_639_3_entry - id="lle" - scope="I" - type="L" - name="Lele (Papua New Guinea)" /> - <iso_639_3_entry - id="llf" - scope="I" - type="E" - name="Hermit" /> - <iso_639_3_entry - id="llg" - scope="I" - type="L" - name="Lole" /> - <iso_639_3_entry - id="llh" - scope="I" - type="L" - name="Lamu" /> - <iso_639_3_entry - id="lli" - scope="I" - type="L" - name="Teke-Laali" /> - <iso_639_3_entry - id="llk" - scope="I" - type="E" - name="Lelak" /> - <iso_639_3_entry - id="lll" - scope="I" - type="L" - name="Lilau" /> - <iso_639_3_entry - id="llm" - scope="I" - type="L" - name="Lasalimu" /> - <iso_639_3_entry - id="lln" - scope="I" - type="L" - name="Lele (Chad)" /> - <iso_639_3_entry - id="llo" - scope="I" - type="L" - name="Khlor" /> - <iso_639_3_entry - id="llp" - scope="I" - type="L" - name="Efate; North" /> - <iso_639_3_entry - id="llq" - scope="I" - type="L" - name="Lolak" /> - <iso_639_3_entry - id="lls" - scope="I" - type="L" - name="Lithuanian Sign Language" /> - <iso_639_3_entry - id="llu" - scope="I" - type="L" - name="Lau" /> - <iso_639_3_entry - id="llx" - scope="I" - type="L" - name="Lauan" /> - <iso_639_3_entry - id="lma" - scope="I" - type="L" - name="Limba; East" /> - <iso_639_3_entry - id="lmb" - scope="I" - type="L" - name="Merei" /> - <iso_639_3_entry - id="lmc" - scope="I" - type="E" - name="Limilngan" /> - <iso_639_3_entry - id="lmd" - scope="I" - type="L" - name="Lumun" /> - <iso_639_3_entry - id="lme" - scope="I" - type="L" - name="Pévé" /> - <iso_639_3_entry - id="lmf" - scope="I" - type="L" - name="Lembata; South" /> - <iso_639_3_entry - id="lmg" - scope="I" - type="L" - name="Lamogai" /> - <iso_639_3_entry - id="lmh" - scope="I" - type="L" - name="Lambichhong" /> - <iso_639_3_entry - id="lmi" - scope="I" - type="L" - name="Lombi" /> - <iso_639_3_entry - id="lmj" - scope="I" - type="L" - name="Lembata; West" /> - <iso_639_3_entry - id="lmk" - scope="I" - type="L" - name="Lamkang" /> - <iso_639_3_entry - id="lml" - scope="I" - type="L" - name="Hano" /> - <iso_639_3_entry - id="lmm" - scope="I" - type="L" - name="Lamam" /> - <iso_639_3_entry - id="lmn" - scope="I" - type="L" - name="Lambadi" /> - <iso_639_3_entry - id="lmo" - scope="I" - type="L" - name="Lombard" /> - <iso_639_3_entry - id="lmp" - scope="I" - type="L" - name="Limbum" /> - <iso_639_3_entry - id="lmq" - scope="I" - type="L" - name="Lamatuka" /> - <iso_639_3_entry - id="lmr" - scope="I" - type="L" - name="Lamalera" /> - <iso_639_3_entry - id="lmu" - scope="I" - type="L" - name="Lamenu" /> - <iso_639_3_entry - id="lmv" - scope="I" - type="L" - name="Lomaiviti" /> - <iso_639_3_entry - id="lmw" - scope="I" - type="L" - name="Miwok; Lake" /> - <iso_639_3_entry - id="lmx" - scope="I" - type="L" - name="Laimbue" /> - <iso_639_3_entry - id="lmy" - scope="I" - type="L" - name="Lamboya" /> - <iso_639_3_entry - id="lmz" - scope="I" - type="E" - name="Lumbee" /> - <iso_639_3_entry - id="lna" - scope="I" - type="L" - name="Langbashe" /> - <iso_639_3_entry - id="lnb" - scope="I" - type="L" - name="Mbalanhu" /> - <iso_639_3_entry - id="lnd" - scope="I" - type="L" - name="Lundayeh" /> - <iso_639_3_entry - id="lng" - scope="I" - type="A" - name="Langobardic" /> - <iso_639_3_entry - id="lnh" - scope="I" - type="L" - name="Lanoh" /> - <iso_639_3_entry - id="lni" - scope="I" - type="L" - name="Daantanai'" /> - <iso_639_3_entry - id="lnj" - scope="I" - type="E" - name="Leningitij" /> - <iso_639_3_entry - id="lnl" - scope="I" - type="L" - name="Banda; South Central" /> - <iso_639_3_entry - id="lnm" - scope="I" - type="L" - name="Langam" /> - <iso_639_3_entry - id="lnn" - scope="I" - type="L" - name="Lorediakarkar" /> - <iso_639_3_entry - id="lno" - scope="I" - type="L" - name="Lango (Sudan)" /> - <iso_639_3_entry - id="lns" - scope="I" - type="L" - name="Lamnso'" /> - <iso_639_3_entry - id="lnu" - scope="I" - type="L" - name="Longuda" /> - <iso_639_3_entry - id="lnz" - scope="I" - type="L" - name="Lonzo" /> - <iso_639_3_entry - id="loa" - scope="I" - type="L" - name="Loloda" /> - <iso_639_3_entry - id="lob" - scope="I" - type="L" - name="Lobi" /> - <iso_639_3_entry - id="loc" - scope="I" - type="L" - name="Inonhan" /> - <iso_639_3_entry - id="loe" - scope="I" - type="L" - name="Coastal" /> - <iso_639_3_entry - id="lof" - scope="I" - type="L" - name="Logol" /> - <iso_639_3_entry - id="log" - scope="I" - type="L" - name="Logo" /> - <iso_639_3_entry - id="loh" - scope="I" - type="L" - name="Narim" /> - <iso_639_3_entry - id="loi" - scope="I" - type="L" - name="Loma (Côte d'Ivoire)" /> - <iso_639_3_entry - id="loj" - scope="I" - type="L" - name="Lou" /> - <iso_639_3_entry - id="lok" - scope="I" - type="L" - name="Loko" /> - <iso_639_3_entry - id="lol" - part2_code="lol" - scope="I" - type="L" - name="Mongo" /> - <iso_639_3_entry - id="lom" - scope="I" - type="L" - name="Loma (Liberia)" /> - <iso_639_3_entry - id="lon" - scope="I" - type="L" - name="Lomwe; Malawi" /> - <iso_639_3_entry - id="loo" - scope="I" - type="L" - name="Lombo" /> - <iso_639_3_entry - id="lop" - scope="I" - type="L" - name="Lopa" /> - <iso_639_3_entry - id="loq" - scope="I" - type="L" - name="Lobala" /> - <iso_639_3_entry - id="lor" - scope="I" - type="L" - name="Téén" /> - <iso_639_3_entry - id="los" - scope="I" - type="L" - name="Loniu" /> - <iso_639_3_entry - id="lot" - scope="I" - type="L" - name="Otuho" /> - <iso_639_3_entry - id="lou" - scope="I" - type="L" - name="Creole French; Louisiana" /> - <iso_639_3_entry - id="lov" - scope="I" - type="L" - name="Lopi" /> - <iso_639_3_entry - id="low" - scope="I" - type="L" - name="Lobu; Tampias" /> - <iso_639_3_entry - id="lox" - scope="I" - type="L" - name="Loun" /> - <iso_639_3_entry - id="loy" - scope="I" - type="L" - name="Lowa" /> - <iso_639_3_entry - id="loz" - part2_code="loz" - scope="I" - type="L" - name="Lozi" /> - <iso_639_3_entry - id="lpa" - scope="I" - type="L" - name="Lelepa" /> - <iso_639_3_entry - id="lpe" - scope="I" - type="L" - name="Lepki" /> - <iso_639_3_entry - id="lpn" - scope="I" - type="L" - name="Naga; Long Phuri" /> - <iso_639_3_entry - id="lpo" - scope="I" - type="L" - name="Lipo" /> - <iso_639_3_entry - id="lpx" - scope="I" - type="L" - name="Lopit" /> - <iso_639_3_entry - id="lra" - scope="I" - type="L" - name="Rara Bakati'" /> - <iso_639_3_entry - id="lrc" - scope="I" - type="L" - name="Luri; Northern" /> - <iso_639_3_entry - id="lre" - scope="I" - type="E" - name="Laurentian" /> - <iso_639_3_entry - id="lrg" - scope="I" - type="E" - name="Laragia" /> - <iso_639_3_entry - id="lri" - scope="I" - type="L" - name="Marachi" /> - <iso_639_3_entry - id="lrk" - scope="I" - type="L" - name="Loarki" /> - <iso_639_3_entry - id="lrl" - scope="I" - type="L" - name="Lari" /> - <iso_639_3_entry - id="lrm" - scope="I" - type="L" - name="Marama" /> - <iso_639_3_entry - id="lrn" - scope="I" - type="L" - name="Lorang" /> - <iso_639_3_entry - id="lro" - scope="I" - type="L" - name="Laro" /> - <iso_639_3_entry - id="lrr" - scope="I" - type="L" - name="Lorung; Southern" /> - <iso_639_3_entry - id="lrt" - scope="I" - type="L" - name="Malay; Larantuka" /> - <iso_639_3_entry - id="lrv" - scope="I" - type="L" - name="Larevat" /> - <iso_639_3_entry - id="lrz" - scope="I" - type="L" - name="Lemerig" /> - <iso_639_3_entry - id="lsa" - scope="I" - type="L" - name="Lasgerdi" /> - <iso_639_3_entry - id="lsd" - scope="I" - type="L" - name="Lishana Deni" /> - <iso_639_3_entry - id="lse" - scope="I" - type="L" - name="Lusengo" /> - <iso_639_3_entry - id="lsg" - scope="I" - type="L" - name="Lyons Sign Language" /> - <iso_639_3_entry - id="lsh" - scope="I" - type="L" - name="Lish" /> - <iso_639_3_entry - id="lsi" - scope="I" - type="L" - name="Lashi" /> - <iso_639_3_entry - id="lsl" - scope="I" - type="L" - name="Latvian Sign Language" /> - <iso_639_3_entry - id="lsm" - scope="I" - type="L" - name="Saamia" /> - <iso_639_3_entry - id="lso" - scope="I" - type="L" - name="Laos Sign Language" /> - <iso_639_3_entry - id="lsp" - scope="I" - type="L" - name="Panamanian Sign Language" /> - <iso_639_3_entry - id="lsr" - scope="I" - type="L" - name="Aruop" /> - <iso_639_3_entry - id="lss" - scope="I" - type="L" - name="Lasi" /> - <iso_639_3_entry - id="lst" - scope="I" - type="L" - name="Trinidad and Tobago Sign Language" /> - <iso_639_3_entry - id="lsy" - scope="I" - type="L" - name="Mauritian Sign Language" /> - <iso_639_3_entry - id="ltc" - scope="I" - type="H" - name="Chinese; Late Middle" /> - <iso_639_3_entry - id="ltg" - scope="I" - type="L" - name="Latgalian" /> - <iso_639_3_entry - id="lti" - scope="I" - type="L" - name="Leti (Indonesia)" /> - <iso_639_3_entry - id="ltn" - scope="I" - type="L" - name="Latundê" /> - <iso_639_3_entry - id="lto" - scope="I" - type="L" - name="Tsotso" /> - <iso_639_3_entry - id="lts" - scope="I" - type="L" - name="Tachoni" /> - <iso_639_3_entry - id="ltu" - scope="I" - type="L" - name="Latu" /> - <iso_639_3_entry - id="ltz" - part1_code="lb" - part2_code="ltz" - scope="I" - type="L" - name="Luxembourgish" /> - <iso_639_3_entry - id="lua" - part2_code="lua" - scope="I" - type="L" - name="Luba-Lulua" /> - <iso_639_3_entry - id="lub" - part1_code="lu" - part2_code="lub" - scope="I" - type="L" - name="Luba-Katanga" /> - <iso_639_3_entry - id="luc" - scope="I" - type="L" - name="Aringa" /> - <iso_639_3_entry - id="lud" - scope="I" - type="L" - name="Ludian" /> - <iso_639_3_entry - id="lue" - scope="I" - type="L" - name="Luvale" /> - <iso_639_3_entry - id="luf" - scope="I" - type="L" - name="Laua" /> - <iso_639_3_entry - id="lug" - part1_code="lg" - part2_code="lug" - scope="I" - type="L" - name="Ganda" /> - <iso_639_3_entry - id="lui" - part2_code="lui" - scope="I" - type="L" - name="Luiseno" /> - <iso_639_3_entry - id="luj" - scope="I" - type="L" - name="Luna" /> - <iso_639_3_entry - id="luk" - scope="I" - type="L" - name="Lunanakha" /> - <iso_639_3_entry - id="lul" - scope="I" - type="L" - name="Olu'bo" /> - <iso_639_3_entry - id="lum" - scope="I" - type="L" - name="Luimbi" /> - <iso_639_3_entry - id="lun" - part2_code="lun" - scope="I" - type="L" - name="Lunda" /> - <iso_639_3_entry - id="luo" - part2_code="luo" - scope="I" - type="L" - name="Luo (Kenya and Tanzania)" /> - <iso_639_3_entry - id="lup" - scope="I" - type="L" - name="Lumbu" /> - <iso_639_3_entry - id="luq" - scope="I" - type="L" - name="Lucumi" /> - <iso_639_3_entry - id="lur" - scope="I" - type="L" - name="Laura" /> - <iso_639_3_entry - id="lus" - part2_code="lus" - scope="I" - type="L" - name="Lushai" /> - <iso_639_3_entry - id="lut" - scope="I" - type="L" - name="Lushootseed" /> - <iso_639_3_entry - id="luu" - scope="I" - type="L" - name="Lumba-Yakkha" /> - <iso_639_3_entry - id="luv" - scope="I" - type="L" - name="Luwati" /> - <iso_639_3_entry - id="luw" - scope="I" - type="L" - name="Luo (Cameroon)" /> - <iso_639_3_entry - id="luy" - scope="M" - type="L" - name="Luyia" /> - <iso_639_3_entry - id="luz" - scope="I" - type="L" - name="Luri; Southern" /> - <iso_639_3_entry - id="lva" - scope="I" - type="L" - name="Maku'a" /> - <iso_639_3_entry - id="lvk" - scope="I" - type="L" - name="Lavukaleve" /> - <iso_639_3_entry - id="lvs" - scope="I" - type="L" - name="Latvian; Standard" /> - <iso_639_3_entry - id="lvu" - scope="I" - type="L" - name="Levuka" /> - <iso_639_3_entry - id="lwa" - scope="I" - type="L" - name="Lwalu" /> - <iso_639_3_entry - id="lwe" - scope="I" - type="L" - name="Lewo Eleng" /> - <iso_639_3_entry - id="lwg" - scope="I" - type="L" - name="Wanga" /> - <iso_639_3_entry - id="lwh" - scope="I" - type="L" - name="Lachi; White" /> - <iso_639_3_entry - id="lwl" - scope="I" - type="L" - name="Lawa; Eastern" /> - <iso_639_3_entry - id="lwm" - scope="I" - type="L" - name="Laomian" /> - <iso_639_3_entry - id="lwo" - scope="I" - type="L" - name="Luwo" /> - <iso_639_3_entry - id="lwt" - scope="I" - type="L" - name="Lewotobi" /> - <iso_639_3_entry - id="lww" - scope="I" - type="L" - name="Lewo" /> - <iso_639_3_entry - id="lya" - scope="I" - type="L" - name="Layakha" /> - <iso_639_3_entry - id="lyg" - scope="I" - type="L" - name="Lyngngam" /> - <iso_639_3_entry - id="lyn" - scope="I" - type="L" - name="Luyana" /> - <iso_639_3_entry - id="lzh" - scope="I" - type="H" - name="Chinese; Literary" /> - <iso_639_3_entry - id="lzl" - scope="I" - type="L" - name="Litzlitz" /> - <iso_639_3_entry - id="lzn" - scope="I" - type="L" - name="Naga; Leinong" /> - <iso_639_3_entry - id="lzz" - scope="I" - type="L" - name="Laz" /> - <iso_639_3_entry - id="maa" - scope="I" - type="L" - name="Mazatec; San Jerónimo Tecóatl" /> - <iso_639_3_entry - id="mab" - scope="I" - type="L" - name="Mixtec; Yutanduchi" /> - <iso_639_3_entry - id="mad" - part2_code="mad" - scope="I" - type="L" - name="Madurese" /> - <iso_639_3_entry - id="mae" - scope="I" - type="L" - name="Bo-Rukul" /> - <iso_639_3_entry - id="maf" - scope="I" - type="L" - name="Mafa" /> - <iso_639_3_entry - id="mag" - part2_code="mag" - scope="I" - type="L" - name="Magahi" /> - <iso_639_3_entry - id="mah" - part1_code="mh" - part2_code="mah" - scope="I" - type="L" - name="Marshallese" /> - <iso_639_3_entry - id="mai" - part2_code="mai" - scope="I" - type="L" - name="Maithili" /> - <iso_639_3_entry - id="maj" - scope="I" - type="L" - name="Mazatec; Jalapa De Díaz" /> - <iso_639_3_entry - id="mak" - part2_code="mak" - scope="I" - type="L" - name="Makasar" /> - <iso_639_3_entry - id="mal" - part1_code="ml" - part2_code="mal" - scope="I" - type="L" - name="Malayalam" /> - <iso_639_3_entry - id="mam" - scope="I" - type="L" - name="Mam" /> - <iso_639_3_entry - id="man" - part2_code="man" - scope="M" - type="L" - name="Mandingo" /> - <iso_639_3_entry - id="maq" - scope="I" - type="L" - name="Mazatec; Chiquihuitlán" /> - <iso_639_3_entry - id="mar" - part1_code="mr" - part2_code="mar" - scope="I" - type="L" - name="Marathi" /> - <iso_639_3_entry - id="mas" - part2_code="mas" - scope="I" - type="L" - name="Masai" /> - <iso_639_3_entry - id="mat" - scope="I" - type="L" - name="Matlatzinca; San Francisco" /> - <iso_639_3_entry - id="mau" - scope="I" - type="L" - name="Mazatec; Huautla" /> - <iso_639_3_entry - id="mav" - scope="I" - type="L" - name="Sateré-Mawé" /> - <iso_639_3_entry - id="maw" - scope="I" - type="L" - name="Mampruli" /> - <iso_639_3_entry - id="max" - scope="I" - type="L" - name="Malay; North Moluccan" /> - <iso_639_3_entry - id="maz" - scope="I" - type="L" - name="Mazahua; Central" /> - <iso_639_3_entry - id="mba" - scope="I" - type="L" - name="Higaonon" /> - <iso_639_3_entry - id="mbb" - scope="I" - type="L" - name="Manobo; Western Bukidnon" /> - <iso_639_3_entry - id="mbc" - scope="I" - type="L" - name="Macushi" /> - <iso_639_3_entry - id="mbd" - scope="I" - type="L" - name="Manobo; Dibabawon" /> - <iso_639_3_entry - id="mbe" - scope="I" - type="E" - name="Molale" /> - <iso_639_3_entry - id="mbf" - scope="I" - type="L" - name="Malay; Baba" /> - <iso_639_3_entry - id="mbh" - scope="I" - type="L" - name="Mangseng" /> - <iso_639_3_entry - id="mbi" - scope="I" - type="L" - name="Manobo; Ilianen" /> - <iso_639_3_entry - id="mbj" - scope="I" - type="L" - name="Nadëb" /> - <iso_639_3_entry - id="mbk" - scope="I" - type="L" - name="Malol" /> - <iso_639_3_entry - id="mbl" - scope="I" - type="L" - name="Maxakalí" /> - <iso_639_3_entry - id="mbm" - scope="I" - type="L" - name="Ombamba" /> - <iso_639_3_entry - id="mbn" - scope="I" - type="L" - name="Macaguán" /> - <iso_639_3_entry - id="mbo" - scope="I" - type="L" - name="Mbo (Cameroon)" /> - <iso_639_3_entry - id="mbp" - scope="I" - type="L" - name="Malayo" /> - <iso_639_3_entry - id="mbq" - scope="I" - type="L" - name="Maisin" /> - <iso_639_3_entry - id="mbr" - scope="I" - type="L" - name="Nukak Makú" /> - <iso_639_3_entry - id="mbs" - scope="I" - type="L" - name="Manobo; Sarangani" /> - <iso_639_3_entry - id="mbt" - scope="I" - type="L" - name="Manobo; Matigsalug" /> - <iso_639_3_entry - id="mbu" - scope="I" - type="L" - name="Mbula-Bwazza" /> - <iso_639_3_entry - id="mbv" - scope="I" - type="L" - name="Mbulungish" /> - <iso_639_3_entry - id="mbw" - scope="I" - type="L" - name="Maring" /> - <iso_639_3_entry - id="mbx" - scope="I" - type="L" - name="Mari (East Sepik Province)" /> - <iso_639_3_entry - id="mby" - scope="I" - type="L" - name="Memoni" /> - <iso_639_3_entry - id="mbz" - scope="I" - type="L" - name="Mixtec; Amoltepec" /> - <iso_639_3_entry - id="mca" - scope="I" - type="L" - name="Maca" /> - <iso_639_3_entry - id="mcb" - scope="I" - type="L" - name="Machiguenga" /> - <iso_639_3_entry - id="mcc" - scope="I" - type="L" - name="Bitur" /> - <iso_639_3_entry - id="mcd" - scope="I" - type="L" - name="Sharanahua" /> - <iso_639_3_entry - id="mce" - scope="I" - type="L" - name="Mixtec; Itundujia" /> - <iso_639_3_entry - id="mcf" - scope="I" - type="L" - name="Matsés" /> - <iso_639_3_entry - id="mcg" - scope="I" - type="L" - name="Mapoyo" /> - <iso_639_3_entry - id="mch" - scope="I" - type="L" - name="Maquiritari" /> - <iso_639_3_entry - id="mci" - scope="I" - type="L" - name="Mese" /> - <iso_639_3_entry - id="mcj" - scope="I" - type="L" - name="Mvanip" /> - <iso_639_3_entry - id="mck" - scope="I" - type="L" - name="Mbunda" /> - <iso_639_3_entry - id="mcl" - scope="I" - type="E" - name="Macaguaje" /> - <iso_639_3_entry - id="mcm" - scope="I" - type="L" - name="Creole Portuguese; Malaccan" /> - <iso_639_3_entry - id="mcn" - scope="I" - type="L" - name="Masana" /> - <iso_639_3_entry - id="mco" - scope="I" - type="L" - name="Mixe; Coatlán" /> - <iso_639_3_entry - id="mcp" - scope="I" - type="L" - name="Makaa" /> - <iso_639_3_entry - id="mcq" - scope="I" - type="L" - name="Ese" /> - <iso_639_3_entry - id="mcr" - scope="I" - type="L" - name="Menya" /> - <iso_639_3_entry - id="mcs" - scope="I" - type="L" - name="Mambai" /> - <iso_639_3_entry - id="mct" - scope="I" - type="L" - name="Mengisa" /> - <iso_639_3_entry - id="mcu" - scope="I" - type="L" - name="Mambila; Cameroon" /> - <iso_639_3_entry - id="mcv" - scope="I" - type="L" - name="Minanibai" /> - <iso_639_3_entry - id="mcw" - scope="I" - type="L" - name="Mawa (Chad)" /> - <iso_639_3_entry - id="mcx" - scope="I" - type="L" - name="Mpiemo" /> - <iso_639_3_entry - id="mcy" - scope="I" - type="L" - name="Watut; South" /> - <iso_639_3_entry - id="mcz" - scope="I" - type="L" - name="Mawan" /> - <iso_639_3_entry - id="mda" - scope="I" - type="L" - name="Mada (Nigeria)" /> - <iso_639_3_entry - id="mdb" - scope="I" - type="L" - name="Morigi" /> - <iso_639_3_entry - id="mdc" - scope="I" - type="L" - name="Male (Papua New Guinea)" /> - <iso_639_3_entry - id="mdd" - scope="I" - type="L" - name="Mbum" /> - <iso_639_3_entry - id="mde" - scope="I" - type="L" - name="Maba (Chad)" /> - <iso_639_3_entry - id="mdf" - part2_code="mdf" - scope="I" - type="L" - name="Moksha" /> - <iso_639_3_entry - id="mdg" - scope="I" - type="L" - name="Massalat" /> - <iso_639_3_entry - id="mdh" - scope="I" - type="L" - name="Maguindanaon" /> - <iso_639_3_entry - id="mdi" - scope="I" - type="L" - name="Mamvu" /> - <iso_639_3_entry - id="mdj" - scope="I" - type="L" - name="Mangbetu" /> - <iso_639_3_entry - id="mdk" - scope="I" - type="L" - name="Mangbutu" /> - <iso_639_3_entry - id="mdl" - scope="I" - type="L" - name="Maltese Sign Language" /> - <iso_639_3_entry - id="mdm" - scope="I" - type="L" - name="Mayogo" /> - <iso_639_3_entry - id="mdn" - scope="I" - type="L" - name="Mbati" /> - <iso_639_3_entry - id="mdp" - scope="I" - type="L" - name="Mbala" /> - <iso_639_3_entry - id="mdq" - scope="I" - type="L" - name="Mbole" /> - <iso_639_3_entry - id="mdr" - part2_code="mdr" - scope="I" - type="L" - name="Mandar" /> - <iso_639_3_entry - id="mds" - scope="I" - type="L" - name="Maria (Papua New Guinea)" /> - <iso_639_3_entry - id="mdt" - scope="I" - type="L" - name="Mbere" /> - <iso_639_3_entry - id="mdu" - scope="I" - type="L" - name="Mboko" /> - <iso_639_3_entry - id="mdv" - scope="I" - type="L" - name="Mixtec; Santa Lucía Monteverde" /> - <iso_639_3_entry - id="mdw" - scope="I" - type="L" - name="Mbosi" /> - <iso_639_3_entry - id="mdx" - scope="I" - type="L" - name="Dizin" /> - <iso_639_3_entry - id="mdy" - scope="I" - type="L" - name="Male (Ethiopia)" /> - <iso_639_3_entry - id="mdz" - scope="I" - type="L" - name="Suruí Do Pará" /> - <iso_639_3_entry - id="mea" - scope="I" - type="L" - name="Menka" /> - <iso_639_3_entry - id="meb" - scope="I" - type="L" - name="Ikobi-Mena" /> - <iso_639_3_entry - id="mec" - scope="I" - type="L" - name="Mara" /> - <iso_639_3_entry - id="med" - scope="I" - type="L" - name="Melpa" /> - <iso_639_3_entry - id="mee" - scope="I" - type="L" - name="Mengen" /> - <iso_639_3_entry - id="mef" - scope="I" - type="L" - name="Megam" /> - <iso_639_3_entry - id="meg" - scope="I" - type="L" - name="Mea" /> - <iso_639_3_entry - id="meh" - scope="I" - type="L" - name="Mixtec; Southwestern Tlaxiaco" /> - <iso_639_3_entry - id="mei" - scope="I" - type="L" - name="Midob" /> - <iso_639_3_entry - id="mej" - scope="I" - type="L" - name="Meyah" /> - <iso_639_3_entry - id="mek" - scope="I" - type="L" - name="Mekeo" /> - <iso_639_3_entry - id="mel" - scope="I" - type="L" - name="Melanau; Central" /> - <iso_639_3_entry - id="mem" - scope="I" - type="E" - name="Mangala" /> - <iso_639_3_entry - id="men" - part2_code="men" - scope="I" - type="L" - name="Mende (Sierra Leone)" /> - <iso_639_3_entry - id="meo" - scope="I" - type="L" - name="Malay; Kedah" /> - <iso_639_3_entry - id="mep" - scope="I" - type="L" - name="Miriwung" /> - <iso_639_3_entry - id="meq" - scope="I" - type="L" - name="Merey" /> - <iso_639_3_entry - id="mer" - scope="I" - type="L" - name="Meru" /> - <iso_639_3_entry - id="mes" - scope="I" - type="L" - name="Masmaje" /> - <iso_639_3_entry - id="met" - scope="I" - type="L" - name="Mato" /> - <iso_639_3_entry - id="meu" - scope="I" - type="L" - name="Motu" /> - <iso_639_3_entry - id="mev" - scope="I" - type="L" - name="Mann" /> - <iso_639_3_entry - id="mew" - scope="I" - type="L" - name="Maaka" /> - <iso_639_3_entry - id="mey" - scope="I" - type="L" - name="Hassaniyya" /> - <iso_639_3_entry - id="mez" - scope="I" - type="L" - name="Menominee" /> - <iso_639_3_entry - id="mfa" - scope="I" - type="L" - name="Malay; Pattani" /> - <iso_639_3_entry - id="mfb" - scope="I" - type="L" - name="Bangka" /> - <iso_639_3_entry - id="mfc" - scope="I" - type="L" - name="Mba" /> - <iso_639_3_entry - id="mfd" - scope="I" - type="L" - name="Mendankwe-Nkwen" /> - <iso_639_3_entry - id="mfe" - scope="I" - type="L" - name="Morisyen" /> - <iso_639_3_entry - id="mff" - scope="I" - type="L" - name="Naki" /> - <iso_639_3_entry - id="mfg" - scope="I" - type="L" - name="Mixifore" /> - <iso_639_3_entry - id="mfh" - scope="I" - type="L" - name="Matal" /> - <iso_639_3_entry - id="mfi" - scope="I" - type="L" - name="Wandala" /> - <iso_639_3_entry - id="mfj" - scope="I" - type="L" - name="Mefele" /> - <iso_639_3_entry - id="mfk" - scope="I" - type="L" - name="Mofu; North" /> - <iso_639_3_entry - id="mfl" - scope="I" - type="L" - name="Putai" /> - <iso_639_3_entry - id="mfm" - scope="I" - type="L" - name="Marghi South" /> - <iso_639_3_entry - id="mfn" - scope="I" - type="L" - name="Mbembe; Cross River" /> - <iso_639_3_entry - id="mfo" - scope="I" - type="L" - name="Mbe" /> - <iso_639_3_entry - id="mfp" - scope="I" - type="L" - name="Malay; Makassar" /> - <iso_639_3_entry - id="mfq" - scope="I" - type="L" - name="Moba" /> - <iso_639_3_entry - id="mfr" - scope="I" - type="L" - name="Marithiel" /> - <iso_639_3_entry - id="mfs" - scope="I" - type="L" - name="Mexican Sign Language" /> - <iso_639_3_entry - id="mft" - scope="I" - type="L" - name="Mokerang" /> - <iso_639_3_entry - id="mfu" - scope="I" - type="L" - name="Mbwela" /> - <iso_639_3_entry - id="mfv" - scope="I" - type="L" - name="Mandjak" /> - <iso_639_3_entry - id="mfw" - scope="I" - type="E" - name="Mulaha" /> - <iso_639_3_entry - id="mfx" - scope="I" - type="L" - name="Melo" /> - <iso_639_3_entry - id="mfy" - scope="I" - type="L" - name="Mayo" /> - <iso_639_3_entry - id="mfz" - scope="I" - type="L" - name="Mabaan" /> - <iso_639_3_entry - id="mga" - part2_code="mga" - scope="I" - type="H" - name="Irish; Middle (900-1200)" /> - <iso_639_3_entry - id="mgb" - scope="I" - type="L" - name="Mararit" /> - <iso_639_3_entry - id="mgc" - scope="I" - type="L" - name="Morokodo" /> - <iso_639_3_entry - id="mgd" - scope="I" - type="L" - name="Moru" /> - <iso_639_3_entry - id="mge" - scope="I" - type="L" - name="Mango" /> - <iso_639_3_entry - id="mgf" - scope="I" - type="L" - name="Maklew" /> - <iso_639_3_entry - id="mgg" - scope="I" - type="L" - name="Mpongmpong" /> - <iso_639_3_entry - id="mgh" - scope="I" - type="L" - name="Makhuwa-Meetto" /> - <iso_639_3_entry - id="mgi" - scope="I" - type="L" - name="Lijili" /> - <iso_639_3_entry - id="mgj" - scope="I" - type="L" - name="Abureni" /> - <iso_639_3_entry - id="mgk" - scope="I" - type="L" - name="Mawes" /> - <iso_639_3_entry - id="mgl" - scope="I" - type="L" - name="Maleu-Kilenge" /> - <iso_639_3_entry - id="mgm" - scope="I" - type="L" - name="Mambae" /> - <iso_639_3_entry - id="mgn" - scope="I" - type="L" - name="Mbangi" /> - <iso_639_3_entry - id="mgo" - scope="I" - type="L" - name="Meta'" /> - <iso_639_3_entry - id="mgp" - scope="I" - type="L" - name="Magar; Eastern" /> - <iso_639_3_entry - id="mgq" - scope="I" - type="L" - name="Malila" /> - <iso_639_3_entry - id="mgr" - scope="I" - type="L" - name="Mambwe-Lungu" /> - <iso_639_3_entry - id="mgs" - scope="I" - type="L" - name="Manda (Tanzania)" /> - <iso_639_3_entry - id="mgt" - scope="I" - type="L" - name="Mongol" /> - <iso_639_3_entry - id="mgu" - scope="I" - type="L" - name="Mailu" /> - <iso_639_3_entry - id="mgv" - scope="I" - type="L" - name="Matengo" /> - <iso_639_3_entry - id="mgw" - scope="I" - type="L" - name="Matumbi" /> - <iso_639_3_entry - id="mgx" - scope="I" - type="L" - name="Omati" /> - <iso_639_3_entry - id="mgy" - scope="I" - type="L" - name="Mbunga" /> - <iso_639_3_entry - id="mgz" - scope="I" - type="L" - name="Mbugwe" /> - <iso_639_3_entry - id="mha" - scope="I" - type="L" - name="Manda (India)" /> - <iso_639_3_entry - id="mhb" - scope="I" - type="L" - name="Mahongwe" /> - <iso_639_3_entry - id="mhc" - scope="I" - type="L" - name="Mocho" /> - <iso_639_3_entry - id="mhd" - scope="I" - type="L" - name="Mbugu" /> - <iso_639_3_entry - id="mhe" - scope="I" - type="L" - name="Besisi" /> - <iso_639_3_entry - id="mhf" - scope="I" - type="L" - name="Mamaa" /> - <iso_639_3_entry - id="mhg" - scope="I" - type="L" - name="Margu" /> - <iso_639_3_entry - id="mhh" - scope="I" - type="L" - name="Maskoy Pidgin" /> - <iso_639_3_entry - id="mhi" - scope="I" - type="L" - name="Ma'di" /> - <iso_639_3_entry - id="mhj" - scope="I" - type="L" - name="Mogholi" /> - <iso_639_3_entry - id="mhk" - scope="I" - type="L" - name="Mungaka" /> - <iso_639_3_entry - id="mhl" - scope="I" - type="L" - name="Mauwake" /> - <iso_639_3_entry - id="mhm" - scope="I" - type="L" - name="Makhuwa-Moniga" /> - <iso_639_3_entry - id="mhn" - scope="I" - type="L" - name="Mócheno" /> - <iso_639_3_entry - id="mho" - scope="I" - type="L" - name="Mashi (Zambia)" /> - <iso_639_3_entry - id="mhp" - scope="I" - type="L" - name="Malay; Balinese" /> - <iso_639_3_entry - id="mhq" - scope="I" - type="L" - name="Mandan" /> - <iso_639_3_entry - id="mhr" - scope="I" - type="L" - name="Mari; Eastern" /> - <iso_639_3_entry - id="mhs" - scope="I" - type="L" - name="Buru (Indonesia)" /> - <iso_639_3_entry - id="mht" - scope="I" - type="L" - name="Mandahuaca" /> - <iso_639_3_entry - id="mhu" - scope="I" - type="L" - name="Deng; Darang" /> - <iso_639_3_entry - id="mhw" - scope="I" - type="L" - name="Mbukushu" /> - <iso_639_3_entry - id="mhx" - scope="I" - type="L" - name="Maru" /> - <iso_639_3_entry - id="mhy" - scope="I" - type="L" - name="Ma'anyan" /> - <iso_639_3_entry - id="mhz" - scope="I" - type="L" - name="Mor (Mor Islands)" /> - <iso_639_3_entry - id="mia" - scope="I" - type="L" - name="Miami" /> - <iso_639_3_entry - id="mib" - scope="I" - type="L" - name="Mixtec; Atatláhuca" /> - <iso_639_3_entry - id="mic" - part2_code="mic" - scope="I" - type="L" - name="Mi'kmaq" /> - <iso_639_3_entry - id="mid" - scope="I" - type="L" - name="Mandaic" /> - <iso_639_3_entry - id="mie" - scope="I" - type="L" - name="Mixtec; Ocotepec" /> - <iso_639_3_entry - id="mif" - scope="I" - type="L" - name="Mofu-Gudur" /> - <iso_639_3_entry - id="mig" - scope="I" - type="L" - name="Mixtec; San Miguel El Grande" /> - <iso_639_3_entry - id="mih" - scope="I" - type="L" - name="Mixtec; Chayuco" /> - <iso_639_3_entry - id="mii" - scope="I" - type="L" - name="Mixtec; Chigmecatitlán" /> - <iso_639_3_entry - id="mij" - scope="I" - type="L" - name="Abar" /> - <iso_639_3_entry - id="mik" - scope="I" - type="L" - name="Mikasuki" /> - <iso_639_3_entry - id="mil" - scope="I" - type="L" - name="Mixtec; Peñoles" /> - <iso_639_3_entry - id="mim" - scope="I" - type="L" - name="Mixtec; Alacatlatzala" /> - <iso_639_3_entry - id="min" - part2_code="min" - scope="I" - type="L" - name="Minangkabau" /> - <iso_639_3_entry - id="mio" - scope="I" - type="L" - name="Mixtec; Pinotepa Nacional" /> - <iso_639_3_entry - id="mip" - scope="I" - type="L" - name="Mixtec; Apasco-Apoala" /> - <iso_639_3_entry - id="miq" - scope="I" - type="L" - name="Mískito" /> - <iso_639_3_entry - id="mir" - scope="I" - type="L" - name="Mixe; Isthmus" /> - <iso_639_3_entry - id="mis" - part2_code="mis" - scope="S" - type="S" - name="Uncoded languages" /> - <iso_639_3_entry - id="mit" - scope="I" - type="L" - name="Mixtec; Southern Puebla" /> - <iso_639_3_entry - id="miu" - scope="I" - type="L" - name="Mixtec; Cacaloxtepec" /> - <iso_639_3_entry - id="miw" - scope="I" - type="L" - name="Akoye" /> - <iso_639_3_entry - id="mix" - scope="I" - type="L" - name="Mixtec; Mixtepec" /> - <iso_639_3_entry - id="miy" - scope="I" - type="L" - name="Mixtec; Ayutla" /> - <iso_639_3_entry - id="miz" - scope="I" - type="L" - name="Mixtec; Coatzospan" /> - <iso_639_3_entry - id="mjc" - scope="I" - type="L" - name="Mixtec; San Juan Colorado" /> - <iso_639_3_entry - id="mjd" - scope="I" - type="L" - name="Maidu; Northwest" /> - <iso_639_3_entry - id="mje" - scope="I" - type="E" - name="Muskum" /> - <iso_639_3_entry - id="mjg" - scope="I" - type="L" - name="Tu" /> - <iso_639_3_entry - id="mjh" - scope="I" - type="L" - name="Mwera (Nyasa)" /> - <iso_639_3_entry - id="mji" - scope="I" - type="L" - name="Kim Mun" /> - <iso_639_3_entry - id="mjj" - scope="I" - type="L" - name="Mawak" /> - <iso_639_3_entry - id="mjk" - scope="I" - type="L" - name="Matukar" /> - <iso_639_3_entry - id="mjl" - scope="I" - type="L" - name="Mandeali" /> - <iso_639_3_entry - id="mjm" - scope="I" - type="L" - name="Medebur" /> - <iso_639_3_entry - id="mjn" - scope="I" - type="L" - name="Ma (Papua New Guinea)" /> - <iso_639_3_entry - id="mjo" - scope="I" - type="L" - name="Malankuravan" /> - <iso_639_3_entry - id="mjp" - scope="I" - type="L" - name="Malapandaram" /> - <iso_639_3_entry - id="mjq" - scope="I" - type="E" - name="Malaryan" /> - <iso_639_3_entry - id="mjr" - scope="I" - type="L" - name="Malavedan" /> - <iso_639_3_entry - id="mjs" - scope="I" - type="L" - name="Miship" /> - <iso_639_3_entry - id="mjt" - scope="I" - type="L" - name="Sauria Paharia" /> - <iso_639_3_entry - id="mju" - scope="I" - type="L" - name="Manna-Dora" /> - <iso_639_3_entry - id="mjv" - scope="I" - type="L" - name="Mannan" /> - <iso_639_3_entry - id="mjw" - scope="I" - type="L" - name="Karbi" /> - <iso_639_3_entry - id="mjx" - scope="I" - type="L" - name="Mahali" /> - <iso_639_3_entry - id="mjy" - scope="I" - type="E" - name="Mahican" /> - <iso_639_3_entry - id="mjz" - scope="I" - type="L" - name="Majhi" /> - <iso_639_3_entry - id="mka" - scope="I" - type="L" - name="Mbre" /> - <iso_639_3_entry - id="mkb" - scope="I" - type="L" - name="Mal Paharia" /> - <iso_639_3_entry - id="mkc" - scope="I" - type="L" - name="Siliput" /> - <iso_639_3_entry - id="mkd" - part1_code="mk" - part2_code="mac" - scope="I" - type="L" - name="Macedonian" /> - <iso_639_3_entry - id="mke" - scope="I" - type="L" - name="Mawchi" /> - <iso_639_3_entry - id="mkf" - scope="I" - type="L" - name="Miya" /> - <iso_639_3_entry - id="mkg" - scope="I" - type="L" - name="Mak (China)" /> - <iso_639_3_entry - id="mki" - scope="I" - type="L" - name="Dhatki" /> - <iso_639_3_entry - id="mkj" - scope="I" - type="L" - name="Mokilese" /> - <iso_639_3_entry - id="mkk" - scope="I" - type="L" - name="Byep" /> - <iso_639_3_entry - id="mkl" - scope="I" - type="L" - name="Mokole" /> - <iso_639_3_entry - id="mkm" - scope="I" - type="L" - name="Moklen" /> - <iso_639_3_entry - id="mkn" - scope="I" - type="L" - name="Malay; Kupang" /> - <iso_639_3_entry - id="mko" - scope="I" - type="L" - name="Mingang Doso" /> - <iso_639_3_entry - id="mkp" - scope="I" - type="L" - name="Moikodi" /> - <iso_639_3_entry - id="mkq" - scope="I" - type="E" - name="Miwok; Bay" /> - <iso_639_3_entry - id="mkr" - scope="I" - type="L" - name="Malas" /> - <iso_639_3_entry - id="mks" - scope="I" - type="L" - name="Mixtec; Silacayoapan" /> - <iso_639_3_entry - id="mkt" - scope="I" - type="L" - name="Vamale" /> - <iso_639_3_entry - id="mku" - scope="I" - type="L" - name="Maninka; Konyanka" /> - <iso_639_3_entry - id="mkv" - scope="I" - type="L" - name="Mafea" /> - <iso_639_3_entry - id="mkw" - scope="I" - type="L" - name="Kituba (Congo)" /> - <iso_639_3_entry - id="mkx" - scope="I" - type="L" - name="Manobo; Kinamiging" /> - <iso_639_3_entry - id="mky" - scope="I" - type="L" - name="Makian; East" /> - <iso_639_3_entry - id="mkz" - scope="I" - type="L" - name="Makasae" /> - <iso_639_3_entry - id="mla" - scope="I" - type="L" - name="Malo" /> - <iso_639_3_entry - id="mlb" - scope="I" - type="L" - name="Mbule" /> - <iso_639_3_entry - id="mlc" - scope="I" - type="L" - name="Cao Lan" /> - <iso_639_3_entry - id="mld" - scope="I" - type="L" - name="Malakhel" /> - <iso_639_3_entry - id="mle" - scope="I" - type="L" - name="Manambu" /> - <iso_639_3_entry - id="mlf" - scope="I" - type="L" - name="Mal" /> - <iso_639_3_entry - id="mlg" - part1_code="mg" - part2_code="mlg" - scope="M" - type="L" - name="Malagasy" /> - <iso_639_3_entry - id="mlh" - scope="I" - type="L" - name="Mape" /> - <iso_639_3_entry - id="mli" - scope="I" - type="L" - name="Malimpung" /> - <iso_639_3_entry - id="mlj" - scope="I" - type="L" - name="Miltu" /> - <iso_639_3_entry - id="mlk" - scope="I" - type="L" - name="Ilwana" /> - <iso_639_3_entry - id="mll" - scope="I" - type="L" - name="Malua Bay" /> - <iso_639_3_entry - id="mlm" - scope="I" - type="L" - name="Mulam" /> - <iso_639_3_entry - id="mln" - scope="I" - type="L" - name="Malango" /> - <iso_639_3_entry - id="mlo" - scope="I" - type="L" - name="Mlomp" /> - <iso_639_3_entry - id="mlp" - scope="I" - type="L" - name="Bargam" /> - <iso_639_3_entry - id="mlq" - scope="I" - type="L" - name="Maninkakan; Western" /> - <iso_639_3_entry - id="mlr" - scope="I" - type="L" - name="Vame" /> - <iso_639_3_entry - id="mls" - scope="I" - type="L" - name="Masalit" /> - <iso_639_3_entry - id="mlt" - part1_code="mt" - part2_code="mlt" - scope="I" - type="L" - name="Maltese" /> - <iso_639_3_entry - id="mlu" - scope="I" - type="L" - name="To'abaita" /> - <iso_639_3_entry - id="mlv" - scope="I" - type="L" - name="Motlav" /> - <iso_639_3_entry - id="mlw" - scope="I" - type="L" - name="Moloko" /> - <iso_639_3_entry - id="mlx" - scope="I" - type="L" - name="Malfaxal" /> - <iso_639_3_entry - id="mlz" - scope="I" - type="L" - name="Malaynon" /> - <iso_639_3_entry - id="mma" - scope="I" - type="L" - name="Mama" /> - <iso_639_3_entry - id="mmb" - scope="I" - type="L" - name="Momina" /> - <iso_639_3_entry - id="mmc" - scope="I" - type="L" - name="Mazahua; Michoacán" /> - <iso_639_3_entry - id="mmd" - scope="I" - type="L" - name="Maonan" /> - <iso_639_3_entry - id="mme" - scope="I" - type="L" - name="Mae" /> - <iso_639_3_entry - id="mmf" - scope="I" - type="L" - name="Mundat" /> - <iso_639_3_entry - id="mmg" - scope="I" - type="L" - name="Ambrym; North" /> - <iso_639_3_entry - id="mmh" - scope="I" - type="L" - name="Mehináku" /> - <iso_639_3_entry - id="mmi" - scope="I" - type="L" - name="Musar" /> - <iso_639_3_entry - id="mmj" - scope="I" - type="L" - name="Majhwar" /> - <iso_639_3_entry - id="mmk" - scope="I" - type="L" - name="Mukha-Dora" /> - <iso_639_3_entry - id="mml" - scope="I" - type="L" - name="Man Met" /> - <iso_639_3_entry - id="mmm" - scope="I" - type="L" - name="Maii" /> - <iso_639_3_entry - id="mmn" - scope="I" - type="L" - name="Mamanwa" /> - <iso_639_3_entry - id="mmo" - scope="I" - type="L" - name="Buang; Mangga" /> - <iso_639_3_entry - id="mmp" - scope="I" - type="L" - name="Siawi" /> - <iso_639_3_entry - id="mmq" - scope="I" - type="L" - name="Musak" /> - <iso_639_3_entry - id="mmr" - scope="I" - type="L" - name="Miao; Western Xiangxi" /> - <iso_639_3_entry - id="mmt" - scope="I" - type="L" - name="Malalamai" /> - <iso_639_3_entry - id="mmu" - scope="I" - type="L" - name="Mmaala" /> - <iso_639_3_entry - id="mmv" - scope="I" - type="E" - name="Miriti" /> - <iso_639_3_entry - id="mmw" - scope="I" - type="L" - name="Emae" /> - <iso_639_3_entry - id="mmx" - scope="I" - type="L" - name="Madak" /> - <iso_639_3_entry - id="mmy" - scope="I" - type="L" - name="Migaama" /> - <iso_639_3_entry - id="mmz" - scope="I" - type="L" - name="Mabaale" /> - <iso_639_3_entry - id="mna" - scope="I" - type="L" - name="Mbula" /> - <iso_639_3_entry - id="mnb" - scope="I" - type="L" - name="Muna" /> - <iso_639_3_entry - id="mnc" - part2_code="mnc" - scope="I" - type="L" - name="Manchu" /> - <iso_639_3_entry - id="mnd" - scope="I" - type="L" - name="Mondé" /> - <iso_639_3_entry - id="mne" - scope="I" - type="L" - name="Naba" /> - <iso_639_3_entry - id="mnf" - scope="I" - type="L" - name="Mundani" /> - <iso_639_3_entry - id="mng" - scope="I" - type="L" - name="Mnong; Eastern" /> - <iso_639_3_entry - id="mnh" - scope="I" - type="L" - name="Mono (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="mni" - part2_code="mni" - scope="I" - type="L" - name="Manipuri" /> - <iso_639_3_entry - id="mnj" - scope="I" - type="L" - name="Munji" /> - <iso_639_3_entry - id="mnk" - scope="I" - type="L" - name="Mandinka" /> - <iso_639_3_entry - id="mnl" - scope="I" - type="L" - name="Tiale" /> - <iso_639_3_entry - id="mnm" - scope="I" - type="L" - name="Mapena" /> - <iso_639_3_entry - id="mnn" - scope="I" - type="L" - name="Mnong; Southern" /> - <iso_639_3_entry - id="mnp" - scope="I" - type="L" - name="Chinese; Min Bei" /> - <iso_639_3_entry - id="mnq" - scope="I" - type="L" - name="Minriq" /> - <iso_639_3_entry - id="mnr" - scope="I" - type="L" - name="Mono (USA)" /> - <iso_639_3_entry - id="mns" - scope="I" - type="L" - name="Mansi" /> - <iso_639_3_entry - id="mnt" - scope="I" - type="E" - name="Maykulan" /> - <iso_639_3_entry - id="mnu" - scope="I" - type="L" - name="Mer" /> - <iso_639_3_entry - id="mnv" - scope="I" - type="L" - name="Rennell-Bellona" /> - <iso_639_3_entry - id="mnw" - scope="I" - type="L" - name="Mon" /> - <iso_639_3_entry - id="mnx" - scope="I" - type="L" - name="Manikion" /> - <iso_639_3_entry - id="mny" - scope="I" - type="L" - name="Manyawa" /> - <iso_639_3_entry - id="mnz" - scope="I" - type="L" - name="Moni" /> - <iso_639_3_entry - id="moa" - scope="I" - type="L" - name="Mwan" /> - <iso_639_3_entry - id="moc" - scope="I" - type="L" - name="Mocoví" /> - <iso_639_3_entry - id="mod" - scope="I" - type="E" - name="Mobilian" /> - <iso_639_3_entry - id="moe" - scope="I" - type="L" - name="Montagnais" /> - <iso_639_3_entry - id="mog" - scope="I" - type="L" - name="Mongondow" /> - <iso_639_3_entry - id="moh" - part2_code="moh" - scope="I" - type="L" - name="Mohawk" /> - <iso_639_3_entry - id="moi" - scope="I" - type="L" - name="Mboi" /> - <iso_639_3_entry - id="moj" - scope="I" - type="L" - name="Monzombo" /> - <iso_639_3_entry - id="mok" - scope="I" - type="L" - name="Morori" /> - <iso_639_3_entry - id="mom" - scope="I" - type="E" - name="Mangue" /> - <iso_639_3_entry - id="mon" - part1_code="mn" - part2_code="mon" - scope="M" - type="L" - name="Mongolian" /> - <iso_639_3_entry - id="moo" - scope="I" - type="L" - name="Monom" /> - <iso_639_3_entry - id="mop" - scope="I" - type="L" - name="Mopán Maya" /> - <iso_639_3_entry - id="moq" - scope="I" - type="L" - name="Mor (Bomberai Peninsula)" /> - <iso_639_3_entry - id="mor" - scope="I" - type="L" - name="Moro" /> - <iso_639_3_entry - id="mos" - part2_code="mos" - scope="I" - type="L" - name="Mossi" /> - <iso_639_3_entry - id="mot" - scope="I" - type="L" - name="Barí" /> - <iso_639_3_entry - id="mou" - scope="I" - type="L" - name="Mogum" /> - <iso_639_3_entry - id="mov" - scope="I" - type="L" - name="Mohave" /> - <iso_639_3_entry - id="mow" - scope="I" - type="L" - name="Moi (Congo)" /> - <iso_639_3_entry - id="mox" - scope="I" - type="L" - name="Molima" /> - <iso_639_3_entry - id="moy" - scope="I" - type="L" - name="Shekkacho" /> - <iso_639_3_entry - id="moz" - scope="I" - type="L" - name="Mukulu" /> - <iso_639_3_entry - id="mpa" - scope="I" - type="L" - name="Mpoto" /> - <iso_639_3_entry - id="mpb" - scope="I" - type="L" - name="Mullukmulluk" /> - <iso_639_3_entry - id="mpc" - scope="I" - type="L" - name="Mangarayi" /> - <iso_639_3_entry - id="mpd" - scope="I" - type="L" - name="Machinere" /> - <iso_639_3_entry - id="mpe" - scope="I" - type="L" - name="Majang" /> - <iso_639_3_entry - id="mpg" - scope="I" - type="L" - name="Marba" /> - <iso_639_3_entry - id="mph" - scope="I" - type="L" - name="Maung" /> - <iso_639_3_entry - id="mpi" - scope="I" - type="L" - name="Mpade" /> - <iso_639_3_entry - id="mpj" - scope="I" - type="L" - name="Martu Wangka" /> - <iso_639_3_entry - id="mpk" - scope="I" - type="L" - name="Mbara (Chad)" /> - <iso_639_3_entry - id="mpl" - scope="I" - type="L" - name="Watut; Middle" /> - <iso_639_3_entry - id="mpm" - scope="I" - type="L" - name="Mixtec; Yosondúa" /> - <iso_639_3_entry - id="mpn" - scope="I" - type="L" - name="Mindiri" /> - <iso_639_3_entry - id="mpo" - scope="I" - type="L" - name="Miu" /> - <iso_639_3_entry - id="mpp" - scope="I" - type="L" - name="Migabac" /> - <iso_639_3_entry - id="mpq" - scope="I" - type="L" - name="Matís" /> - <iso_639_3_entry - id="mpr" - scope="I" - type="L" - name="Vangunu" /> - <iso_639_3_entry - id="mps" - scope="I" - type="L" - name="Dadibi" /> - <iso_639_3_entry - id="mpt" - scope="I" - type="L" - name="Mian" /> - <iso_639_3_entry - id="mpu" - scope="I" - type="L" - name="Makuráp" /> - <iso_639_3_entry - id="mpv" - scope="I" - type="L" - name="Mungkip" /> - <iso_639_3_entry - id="mpw" - scope="I" - type="L" - name="Mapidian" /> - <iso_639_3_entry - id="mpx" - scope="I" - type="L" - name="Misima-Paneati" /> - <iso_639_3_entry - id="mpy" - scope="I" - type="L" - name="Mapia" /> - <iso_639_3_entry - id="mpz" - scope="I" - type="L" - name="Mpi" /> - <iso_639_3_entry - id="mqa" - scope="I" - type="L" - name="Maba (Indonesia)" /> - <iso_639_3_entry - id="mqb" - scope="I" - type="L" - name="Mbuko" /> - <iso_639_3_entry - id="mqc" - scope="I" - type="L" - name="Mangole" /> - <iso_639_3_entry - id="mqe" - scope="I" - type="L" - name="Matepi" /> - <iso_639_3_entry - id="mqf" - scope="I" - type="L" - name="Momuna" /> - <iso_639_3_entry - id="mqg" - scope="I" - type="L" - name="Malay; Kota Bangun Kutai" /> - <iso_639_3_entry - id="mqh" - scope="I" - type="L" - name="Mixtec; Tlazoyaltepec" /> - <iso_639_3_entry - id="mqi" - scope="I" - type="L" - name="Mariri" /> - <iso_639_3_entry - id="mqj" - scope="I" - type="L" - name="Mamasa" /> - <iso_639_3_entry - id="mqk" - scope="I" - type="L" - name="Manobo; Rajah Kabunsuwan" /> - <iso_639_3_entry - id="mql" - scope="I" - type="L" - name="Mbelime" /> - <iso_639_3_entry - id="mqm" - scope="I" - type="L" - name="Marquesan; South" /> - <iso_639_3_entry - id="mqn" - scope="I" - type="L" - name="Moronene" /> - <iso_639_3_entry - id="mqo" - scope="I" - type="L" - name="Modole" /> - <iso_639_3_entry - id="mqp" - scope="I" - type="L" - name="Manipa" /> - <iso_639_3_entry - id="mqq" - scope="I" - type="L" - name="Minokok" /> - <iso_639_3_entry - id="mqr" - scope="I" - type="L" - name="Mander" /> - <iso_639_3_entry - id="mqs" - scope="I" - type="L" - name="Makian; West" /> - <iso_639_3_entry - id="mqt" - scope="I" - type="L" - name="Mok" /> - <iso_639_3_entry - id="mqu" - scope="I" - type="L" - name="Mandari" /> - <iso_639_3_entry - id="mqv" - scope="I" - type="L" - name="Mosimo" /> - <iso_639_3_entry - id="mqw" - scope="I" - type="L" - name="Murupi" /> - <iso_639_3_entry - id="mqx" - scope="I" - type="L" - name="Mamuju" /> - <iso_639_3_entry - id="mqy" - scope="I" - type="L" - name="Manggarai" /> - <iso_639_3_entry - id="mqz" - scope="I" - type="L" - name="Malasanga" /> - <iso_639_3_entry - id="mra" - scope="I" - type="L" - name="Mlabri" /> - <iso_639_3_entry - id="mrb" - scope="I" - type="L" - name="Marino" /> - <iso_639_3_entry - id="mrc" - scope="I" - type="L" - name="Maricopa" /> - <iso_639_3_entry - id="mrd" - scope="I" - type="L" - name="Magar; Western" /> - <iso_639_3_entry - id="mre" - scope="I" - type="E" - name="Martha's Vineyard Sign Language" /> - <iso_639_3_entry - id="mrf" - scope="I" - type="L" - name="Elseng" /> - <iso_639_3_entry - id="mrg" - scope="I" - type="L" - name="Mising" /> - <iso_639_3_entry - id="mrh" - scope="I" - type="L" - name="Chin; Mara" /> - <iso_639_3_entry - id="mri" - part1_code="mi" - part2_code="mao" - scope="I" - type="L" - name="Maori" /> - <iso_639_3_entry - id="mrj" - scope="I" - type="L" - name="Mari; Western" /> - <iso_639_3_entry - id="mrk" - scope="I" - type="L" - name="Hmwaveke" /> - <iso_639_3_entry - id="mrl" - scope="I" - type="L" - name="Mortlockese" /> - <iso_639_3_entry - id="mrm" - scope="I" - type="L" - name="Merlav" /> - <iso_639_3_entry - id="mrn" - scope="I" - type="L" - name="Cheke Holo" /> - <iso_639_3_entry - id="mro" - scope="I" - type="L" - name="Mru" /> - <iso_639_3_entry - id="mrp" - scope="I" - type="L" - name="Morouas" /> - <iso_639_3_entry - id="mrq" - scope="I" - type="L" - name="Marquesan; North" /> - <iso_639_3_entry - id="mrr" - scope="I" - type="L" - name="Maria (India)" /> - <iso_639_3_entry - id="mrs" - scope="I" - type="L" - name="Maragus" /> - <iso_639_3_entry - id="mrt" - scope="I" - type="L" - name="Marghi Central" /> - <iso_639_3_entry - id="mru" - scope="I" - type="L" - name="Mono (Cameroon)" /> - <iso_639_3_entry - id="mrv" - scope="I" - type="L" - name="Mangareva" /> - <iso_639_3_entry - id="mrw" - scope="I" - type="L" - name="Maranao" /> - <iso_639_3_entry - id="mrx" - scope="I" - type="L" - name="Maremgi" /> - <iso_639_3_entry - id="mry" - scope="I" - type="L" - name="Mandaya" /> - <iso_639_3_entry - id="mrz" - scope="I" - type="L" - name="Marind" /> - <iso_639_3_entry - id="msa" - part1_code="ms" - part2_code="may" - scope="M" - type="L" - name="Malay (macrolanguage)" /> - <iso_639_3_entry - id="msb" - scope="I" - type="L" - name="Masbatenyo" /> - <iso_639_3_entry - id="msc" - scope="I" - type="L" - name="Maninka; Sankaran" /> - <iso_639_3_entry - id="msd" - scope="I" - type="L" - name="Yucatec Maya Sign Language" /> - <iso_639_3_entry - id="mse" - scope="I" - type="L" - name="Musey" /> - <iso_639_3_entry - id="msf" - scope="I" - type="L" - name="Mekwei" /> - <iso_639_3_entry - id="msg" - scope="I" - type="L" - name="Moraid" /> - <iso_639_3_entry - id="msh" - scope="I" - type="L" - name="Malagasy; Masikoro" /> - <iso_639_3_entry - id="msi" - scope="I" - type="L" - name="Malay; Sabah" /> - <iso_639_3_entry - id="msj" - scope="I" - type="L" - name="Ma (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="msk" - scope="I" - type="L" - name="Mansaka" /> - <iso_639_3_entry - id="msl" - scope="I" - type="L" - name="Molof" /> - <iso_639_3_entry - id="msm" - scope="I" - type="L" - name="Manobo; Agusan" /> - <iso_639_3_entry - id="msn" - scope="I" - type="L" - name="Vurës" /> - <iso_639_3_entry - id="mso" - scope="I" - type="L" - name="Mombum" /> - <iso_639_3_entry - id="msp" - scope="I" - type="E" - name="Maritsauá" /> - <iso_639_3_entry - id="msq" - scope="I" - type="L" - name="Caac" /> - <iso_639_3_entry - id="msr" - scope="I" - type="L" - name="Mongolian Sign Language" /> - <iso_639_3_entry - id="mss" - scope="I" - type="L" - name="Masela; West" /> - <iso_639_3_entry - id="msu" - scope="I" - type="L" - name="Musom" /> - <iso_639_3_entry - id="msv" - scope="I" - type="L" - name="Maslam" /> - <iso_639_3_entry - id="msw" - scope="I" - type="L" - name="Mansoanka" /> - <iso_639_3_entry - id="msx" - scope="I" - type="L" - name="Moresada" /> - <iso_639_3_entry - id="msy" - scope="I" - type="L" - name="Aruamu" /> - <iso_639_3_entry - id="msz" - scope="I" - type="L" - name="Momare" /> - <iso_639_3_entry - id="mta" - scope="I" - type="L" - name="Manobo; Cotabato" /> - <iso_639_3_entry - id="mtb" - scope="I" - type="L" - name="Anyin Morofo" /> - <iso_639_3_entry - id="mtc" - scope="I" - type="L" - name="Munit" /> - <iso_639_3_entry - id="mtd" - scope="I" - type="L" - name="Mualang" /> - <iso_639_3_entry - id="mte" - scope="I" - type="L" - name="Mono (Solomon Islands)" /> - <iso_639_3_entry - id="mtf" - scope="I" - type="L" - name="Murik (Papua New Guinea)" /> - <iso_639_3_entry - id="mtg" - scope="I" - type="L" - name="Una" /> - <iso_639_3_entry - id="mth" - scope="I" - type="L" - name="Munggui" /> - <iso_639_3_entry - id="mti" - scope="I" - type="L" - name="Maiwa (Papua New Guinea)" /> - <iso_639_3_entry - id="mtj" - scope="I" - type="L" - name="Moskona" /> - <iso_639_3_entry - id="mtk" - scope="I" - type="L" - name="Mbe'" /> - <iso_639_3_entry - id="mtl" - scope="I" - type="L" - name="Montol" /> - <iso_639_3_entry - id="mtm" - scope="I" - type="E" - name="Mator" /> - <iso_639_3_entry - id="mtn" - scope="I" - type="E" - name="Matagalpa" /> - <iso_639_3_entry - id="mto" - scope="I" - type="L" - name="Mixe; Totontepec" /> - <iso_639_3_entry - id="mtp" - scope="I" - type="L" - name="Wichí Lhamtés Nocten" /> - <iso_639_3_entry - id="mtq" - scope="I" - type="L" - name="Muong" /> - <iso_639_3_entry - id="mtr" - scope="I" - type="L" - name="Mewari" /> - <iso_639_3_entry - id="mts" - scope="I" - type="L" - name="Yora" /> - <iso_639_3_entry - id="mtt" - scope="I" - type="L" - name="Mota" /> - <iso_639_3_entry - id="mtu" - scope="I" - type="L" - name="Mixtec; Tututepec" /> - <iso_639_3_entry - id="mtv" - scope="I" - type="L" - name="Asaro'o" /> - <iso_639_3_entry - id="mtw" - scope="I" - type="L" - name="Binukidnon; Southern" /> - <iso_639_3_entry - id="mtx" - scope="I" - type="L" - name="Mixtec; Tidaá" /> - <iso_639_3_entry - id="mty" - scope="I" - type="L" - name="Nabi" /> - <iso_639_3_entry - id="mua" - scope="I" - type="L" - name="Mundang" /> - <iso_639_3_entry - id="mub" - scope="I" - type="L" - name="Mubi" /> - <iso_639_3_entry - id="muc" - scope="I" - type="L" - name="Mbu'" /> - <iso_639_3_entry - id="mud" - scope="I" - type="L" - name="Aleut; Mednyj" /> - <iso_639_3_entry - id="mue" - scope="I" - type="L" - name="Media Lengua" /> - <iso_639_3_entry - id="mug" - scope="I" - type="L" - name="Musgu" /> - <iso_639_3_entry - id="muh" - scope="I" - type="L" - name="Mündü" /> - <iso_639_3_entry - id="mui" - scope="I" - type="L" - name="Musi" /> - <iso_639_3_entry - id="muj" - scope="I" - type="L" - name="Mabire" /> - <iso_639_3_entry - id="muk" - scope="I" - type="L" - name="Mugom" /> - <iso_639_3_entry - id="mul" - part2_code="mul" - scope="S" - type="S" - name="Multiple languages" /> - <iso_639_3_entry - id="mum" - scope="I" - type="L" - name="Maiwala" /> - <iso_639_3_entry - id="muo" - scope="I" - type="L" - name="Nyong" /> - <iso_639_3_entry - id="mup" - scope="I" - type="L" - name="Malvi" /> - <iso_639_3_entry - id="muq" - scope="I" - type="L" - name="Miao; Eastern Xiangxi" /> - <iso_639_3_entry - id="mur" - scope="I" - type="L" - name="Murle" /> - <iso_639_3_entry - id="mus" - part2_code="mus" - scope="I" - type="L" - name="Creek" /> - <iso_639_3_entry - id="mut" - scope="I" - type="L" - name="Muria; Western" /> - <iso_639_3_entry - id="muu" - scope="I" - type="L" - name="Yaaku" /> - <iso_639_3_entry - id="muv" - scope="I" - type="L" - name="Muthuvan" /> - <iso_639_3_entry - id="mux" - scope="I" - type="L" - name="Bo-Ung" /> - <iso_639_3_entry - id="muy" - scope="I" - type="L" - name="Muyang" /> - <iso_639_3_entry - id="muz" - scope="I" - type="L" - name="Mursi" /> - <iso_639_3_entry - id="mva" - scope="I" - type="L" - name="Manam" /> - <iso_639_3_entry - id="mvb" - scope="I" - type="E" - name="Mattole" /> - <iso_639_3_entry - id="mvd" - scope="I" - type="L" - name="Mamboru" /> - <iso_639_3_entry - id="mve" - scope="I" - type="L" - name="Marwari (Pakistan)" /> - <iso_639_3_entry - id="mvf" - scope="I" - type="L" - name="Mongolian; Peripheral" /> - <iso_639_3_entry - id="mvg" - scope="I" - type="L" - name="Mixtec; Yucuañe" /> - <iso_639_3_entry - id="mvh" - scope="I" - type="L" - name="Mire" /> - <iso_639_3_entry - id="mvi" - scope="I" - type="L" - name="Miyako" /> - <iso_639_3_entry - id="mvk" - scope="I" - type="L" - name="Mekmek" /> - <iso_639_3_entry - id="mvl" - scope="I" - type="E" - name="Mbara (Australia)" /> - <iso_639_3_entry - id="mvm" - scope="I" - type="L" - name="Muya" /> - <iso_639_3_entry - id="mvn" - scope="I" - type="L" - name="Minaveha" /> - <iso_639_3_entry - id="mvo" - scope="I" - type="L" - name="Marovo" /> - <iso_639_3_entry - id="mvp" - scope="I" - type="L" - name="Duri" /> - <iso_639_3_entry - id="mvq" - scope="I" - type="L" - name="Moere" /> - <iso_639_3_entry - id="mvr" - scope="I" - type="L" - name="Marau" /> - <iso_639_3_entry - id="mvs" - scope="I" - type="L" - name="Massep" /> - <iso_639_3_entry - id="mvt" - scope="I" - type="L" - name="Mpotovoro" /> - <iso_639_3_entry - id="mvu" - scope="I" - type="L" - name="Marfa" /> - <iso_639_3_entry - id="mvv" - scope="I" - type="L" - name="Murut; Tagal" /> - <iso_639_3_entry - id="mvw" - scope="I" - type="L" - name="Machinga" /> - <iso_639_3_entry - id="mvx" - scope="I" - type="L" - name="Meoswar" /> - <iso_639_3_entry - id="mvy" - scope="I" - type="L" - name="Kohistani; Indus" /> - <iso_639_3_entry - id="mvz" - scope="I" - type="L" - name="Mesqan" /> - <iso_639_3_entry - id="mwa" - scope="I" - type="L" - name="Mwatebu" /> - <iso_639_3_entry - id="mwb" - scope="I" - type="L" - name="Juwal" /> - <iso_639_3_entry - id="mwc" - scope="I" - type="L" - name="Are" /> - <iso_639_3_entry - id="mwd" - scope="I" - type="L" - name="Mudbura" /> - <iso_639_3_entry - id="mwe" - scope="I" - type="L" - name="Mwera (Chimwera)" /> - <iso_639_3_entry - id="mwf" - scope="I" - type="L" - name="Murrinh-Patha" /> - <iso_639_3_entry - id="mwg" - scope="I" - type="L" - name="Aiklep" /> - <iso_639_3_entry - id="mwh" - scope="I" - type="L" - name="Mouk-Aria" /> - <iso_639_3_entry - id="mwi" - scope="I" - type="L" - name="Labo" /> - <iso_639_3_entry - id="mwj" - scope="I" - type="L" - name="Maligo" /> - <iso_639_3_entry - id="mwk" - scope="I" - type="L" - name="Maninkakan; Kita" /> - <iso_639_3_entry - id="mwl" - part2_code="mwl" - scope="I" - type="L" - name="Mirandese" /> - <iso_639_3_entry - id="mwm" - scope="I" - type="L" - name="Sar" /> - <iso_639_3_entry - id="mwn" - scope="I" - type="L" - name="Nyamwanga" /> - <iso_639_3_entry - id="mwo" - scope="I" - type="L" - name="Maewo; Central" /> - <iso_639_3_entry - id="mwp" - scope="I" - type="L" - name="Kala Lagaw Ya" /> - <iso_639_3_entry - id="mwq" - scope="I" - type="L" - name="Chin; Mün" /> - <iso_639_3_entry - id="mwr" - part2_code="mwr" - scope="M" - type="L" - name="Marwari" /> - <iso_639_3_entry - id="mws" - scope="I" - type="L" - name="Mwimbi-Muthambi" /> - <iso_639_3_entry - id="mwt" - scope="I" - type="L" - name="Moken" /> - <iso_639_3_entry - id="mwu" - scope="I" - type="E" - name="Mittu" /> - <iso_639_3_entry - id="mwv" - scope="I" - type="L" - name="Mentawai" /> - <iso_639_3_entry - id="mww" - scope="I" - type="L" - name="Hmong Daw" /> - <iso_639_3_entry - id="mwx" - scope="I" - type="L" - name="Mediak" /> - <iso_639_3_entry - id="mwy" - scope="I" - type="L" - name="Mosiro" /> - <iso_639_3_entry - id="mwz" - scope="I" - type="L" - name="Moingi" /> - <iso_639_3_entry - id="mxa" - scope="I" - type="L" - name="Mixtec; Northwest Oaxaca" /> - <iso_639_3_entry - id="mxb" - scope="I" - type="L" - name="Mixtec; Tezoatlán" /> - <iso_639_3_entry - id="mxc" - scope="I" - type="L" - name="Manyika" /> - <iso_639_3_entry - id="mxd" - scope="I" - type="L" - name="Modang" /> - <iso_639_3_entry - id="mxe" - scope="I" - type="L" - name="Mele-Fila" /> - <iso_639_3_entry - id="mxf" - scope="I" - type="L" - name="Malgbe" /> - <iso_639_3_entry - id="mxg" - scope="I" - type="L" - name="Mbangala" /> - <iso_639_3_entry - id="mxh" - scope="I" - type="L" - name="Mvuba" /> - <iso_639_3_entry - id="mxi" - scope="I" - type="E" - name="Mozarabic" /> - <iso_639_3_entry - id="mxj" - scope="I" - type="L" - name="Deng; Geman" /> - <iso_639_3_entry - id="mxk" - scope="I" - type="L" - name="Monumbo" /> - <iso_639_3_entry - id="mxl" - scope="I" - type="L" - name="Gbe; Maxi" /> - <iso_639_3_entry - id="mxm" - scope="I" - type="L" - name="Meramera" /> - <iso_639_3_entry - id="mxn" - scope="I" - type="L" - name="Moi (Indonesia)" /> - <iso_639_3_entry - id="mxo" - scope="I" - type="L" - name="Mbowe" /> - <iso_639_3_entry - id="mxp" - scope="I" - type="L" - name="Mixe; Tlahuitoltepec" /> - <iso_639_3_entry - id="mxq" - scope="I" - type="L" - name="Mixe; Juquila" /> - <iso_639_3_entry - id="mxr" - scope="I" - type="L" - name="Murik (Malaysia)" /> - <iso_639_3_entry - id="mxs" - scope="I" - type="L" - name="Mixtec; Huitepec" /> - <iso_639_3_entry - id="mxt" - scope="I" - type="L" - name="Mixtec; Jamiltepec" /> - <iso_639_3_entry - id="mxu" - scope="I" - type="L" - name="Mada (Cameroon)" /> - <iso_639_3_entry - id="mxv" - scope="I" - type="L" - name="Mixtec; Metlatónoc" /> - <iso_639_3_entry - id="mxw" - scope="I" - type="L" - name="Namo" /> - <iso_639_3_entry - id="mxx" - scope="I" - type="L" - name="Mahou" /> - <iso_639_3_entry - id="mxy" - scope="I" - type="L" - name="Mixtec; Southeastern Nochixtlán" /> - <iso_639_3_entry - id="mxz" - scope="I" - type="L" - name="Masela; Central" /> - <iso_639_3_entry - id="mya" - part1_code="my" - part2_code="bur" - scope="I" - type="L" - name="Burmese" /> - <iso_639_3_entry - id="myb" - scope="I" - type="L" - name="Mbay" /> - <iso_639_3_entry - id="myc" - scope="I" - type="L" - name="Mayeka" /> - <iso_639_3_entry - id="myd" - scope="I" - type="L" - name="Maramba" /> - <iso_639_3_entry - id="mye" - scope="I" - type="L" - name="Myene" /> - <iso_639_3_entry - id="myf" - scope="I" - type="L" - name="Bambassi" /> - <iso_639_3_entry - id="myg" - scope="I" - type="L" - name="Manta" /> - <iso_639_3_entry - id="myh" - scope="I" - type="L" - name="Makah" /> - <iso_639_3_entry - id="myi" - scope="I" - type="L" - name="Mina (India)" /> - <iso_639_3_entry - id="myj" - scope="I" - type="L" - name="Mangayat" /> - <iso_639_3_entry - id="myk" - scope="I" - type="L" - name="Senoufo; Mamara" /> - <iso_639_3_entry - id="myl" - scope="I" - type="L" - name="Moma" /> - <iso_639_3_entry - id="mym" - scope="I" - type="L" - name="Me'en" /> - <iso_639_3_entry - id="myo" - scope="I" - type="L" - name="Anfillo" /> - <iso_639_3_entry - id="myp" - scope="I" - type="L" - name="Pirahã" /> - <iso_639_3_entry - id="myq" - scope="I" - type="L" - name="Maninka; Forest" /> - <iso_639_3_entry - id="myr" - scope="I" - type="L" - name="Muniche" /> - <iso_639_3_entry - id="mys" - scope="I" - type="E" - name="Mesmes" /> - <iso_639_3_entry - id="myu" - scope="I" - type="L" - name="Mundurukú" /> - <iso_639_3_entry - id="myv" - part2_code="myv" - scope="I" - type="L" - name="Erzya" /> - <iso_639_3_entry - id="myw" - scope="I" - type="L" - name="Muyuw" /> - <iso_639_3_entry - id="myx" - scope="I" - type="L" - name="Masaaba" /> - <iso_639_3_entry - id="myy" - scope="I" - type="L" - name="Macuna" /> - <iso_639_3_entry - id="myz" - scope="I" - type="H" - name="Mandaic; Classical" /> - <iso_639_3_entry - id="mza" - scope="I" - type="L" - name="Mixtec; Santa María Zacatepec" /> - <iso_639_3_entry - id="mzb" - scope="I" - type="L" - name="Tumzabt" /> - <iso_639_3_entry - id="mzc" - scope="I" - type="L" - name="Madagascar Sign Language" /> - <iso_639_3_entry - id="mzd" - scope="I" - type="L" - name="Malimba" /> - <iso_639_3_entry - id="mze" - scope="I" - type="L" - name="Morawa" /> - <iso_639_3_entry - id="mzg" - scope="I" - type="L" - name="Monastic Sign Language" /> - <iso_639_3_entry - id="mzh" - scope="I" - type="L" - name="Wichí Lhamtés Güisnay" /> - <iso_639_3_entry - id="mzi" - scope="I" - type="L" - name="Mazatec; Ixcatlán" /> - <iso_639_3_entry - id="mzj" - scope="I" - type="L" - name="Manya" /> - <iso_639_3_entry - id="mzk" - scope="I" - type="L" - name="Mambila; Nigeria" /> - <iso_639_3_entry - id="mzl" - scope="I" - type="L" - name="Mixe; Mazatlán" /> - <iso_639_3_entry - id="mzm" - scope="I" - type="L" - name="Mumuye" /> - <iso_639_3_entry - id="mzn" - scope="I" - type="L" - name="Mazanderani" /> - <iso_639_3_entry - id="mzo" - scope="I" - type="E" - name="Matipuhy" /> - <iso_639_3_entry - id="mzp" - scope="I" - type="L" - name="Movima" /> - <iso_639_3_entry - id="mzq" - scope="I" - type="L" - name="Mori Atas" /> - <iso_639_3_entry - id="mzr" - scope="I" - type="L" - name="Marúbo" /> - <iso_639_3_entry - id="mzs" - scope="I" - type="L" - name="Macanese" /> - <iso_639_3_entry - id="mzt" - scope="I" - type="L" - name="Mintil" /> - <iso_639_3_entry - id="mzu" - scope="I" - type="L" - name="Inapang" /> - <iso_639_3_entry - id="mzv" - scope="I" - type="L" - name="Manza" /> - <iso_639_3_entry - id="mzw" - scope="I" - type="L" - name="Deg" /> - <iso_639_3_entry - id="mzx" - scope="I" - type="L" - name="Mawayana" /> - <iso_639_3_entry - id="mzy" - scope="I" - type="L" - name="Mozambican Sign Language" /> - <iso_639_3_entry - id="mzz" - scope="I" - type="L" - name="Maiadomu" /> - <iso_639_3_entry - id="naa" - scope="I" - type="L" - name="Namla" /> - <iso_639_3_entry - id="nab" - scope="I" - type="L" - name="Nambikuára; Southern" /> - <iso_639_3_entry - id="nac" - scope="I" - type="L" - name="Narak" /> - <iso_639_3_entry - id="nad" - scope="I" - type="L" - name="Nijadali" /> - <iso_639_3_entry - id="nae" - scope="I" - type="L" - name="Naka'ela" /> - <iso_639_3_entry - id="naf" - scope="I" - type="L" - name="Nabak" /> - <iso_639_3_entry - id="nag" - scope="I" - type="L" - name="Naga Pidgin" /> - <iso_639_3_entry - id="naj" - scope="I" - type="L" - name="Nalu" /> - <iso_639_3_entry - id="nak" - scope="I" - type="L" - name="Nakanai" /> - <iso_639_3_entry - id="nal" - scope="I" - type="L" - name="Nalik" /> - <iso_639_3_entry - id="nam" - scope="I" - type="L" - name="Nangikurrunggurr" /> - <iso_639_3_entry - id="nan" - scope="I" - type="L" - name="Chinese; Min Nan" /> - <iso_639_3_entry - id="nao" - scope="I" - type="L" - name="Naaba" /> - <iso_639_3_entry - id="nap" - part2_code="nap" - scope="I" - type="L" - name="Neapolitan" /> - <iso_639_3_entry - id="naq" - scope="I" - type="L" - name="Nama (Namibia)" /> - <iso_639_3_entry - id="nar" - scope="I" - type="L" - name="Iguta" /> - <iso_639_3_entry - id="nas" - scope="I" - type="L" - name="Naasioi" /> - <iso_639_3_entry - id="nat" - scope="I" - type="L" - name="Hungworo" /> - <iso_639_3_entry - id="nau" - part1_code="na" - part2_code="nau" - scope="I" - type="L" - name="Nauru" /> - <iso_639_3_entry - id="nav" - part1_code="nv" - part2_code="nav" - scope="I" - type="L" - name="Navajo" /> - <iso_639_3_entry - id="naw" - scope="I" - type="L" - name="Nawuri" /> - <iso_639_3_entry - id="nax" - scope="I" - type="L" - name="Nakwi" /> - <iso_639_3_entry - id="nay" - scope="I" - type="E" - name="Narrinyeri" /> - <iso_639_3_entry - id="naz" - scope="I" - type="L" - name="Nahuatl; Coatepec" /> - <iso_639_3_entry - id="nba" - scope="I" - type="L" - name="Nyemba" /> - <iso_639_3_entry - id="nbb" - scope="I" - type="L" - name="Ndoe" /> - <iso_639_3_entry - id="nbc" - scope="I" - type="L" - name="Naga; Chang" /> - <iso_639_3_entry - id="nbd" - scope="I" - type="L" - name="Ngbinda" /> - <iso_639_3_entry - id="nbe" - scope="I" - type="L" - name="Naga; Konyak" /> - <iso_639_3_entry - id="nbg" - scope="I" - type="L" - name="Nagarchal" /> - <iso_639_3_entry - id="nbh" - scope="I" - type="L" - name="Ngamo" /> - <iso_639_3_entry - id="nbi" - scope="I" - type="L" - name="Naga; Mao" /> - <iso_639_3_entry - id="nbj" - scope="I" - type="L" - name="Ngarinman" /> - <iso_639_3_entry - id="nbk" - scope="I" - type="L" - name="Nake" /> - <iso_639_3_entry - id="nbl" - part1_code="nr" - part2_code="nbl" - scope="I" - type="L" - name="Ndebele; South" /> - <iso_639_3_entry - id="nbm" - scope="I" - type="L" - name="Ngbaka Ma'bo" /> - <iso_639_3_entry - id="nbn" - scope="I" - type="L" - name="Kuri" /> - <iso_639_3_entry - id="nbo" - scope="I" - type="L" - name="Nkukoli" /> - <iso_639_3_entry - id="nbp" - scope="I" - type="L" - name="Nnam" /> - <iso_639_3_entry - id="nbq" - scope="I" - type="L" - name="Nggem" /> - <iso_639_3_entry - id="nbr" - scope="I" - type="L" - name="Numana-Nunku-Gbantu-Numbu" /> - <iso_639_3_entry - id="nbs" - scope="I" - type="L" - name="Namibian Sign Language" /> - <iso_639_3_entry - id="nbt" - scope="I" - type="L" - name="Na" /> - <iso_639_3_entry - id="nbu" - scope="I" - type="L" - name="Naga; Rongmei" /> - <iso_639_3_entry - id="nbv" - scope="I" - type="L" - name="Ngamambo" /> - <iso_639_3_entry - id="nbw" - scope="I" - type="L" - name="Ngbandi; Southern" /> - <iso_639_3_entry - id="nbx" - scope="I" - type="E" - name="Ngura" /> - <iso_639_3_entry - id="nby" - scope="I" - type="L" - name="Ningera" /> - <iso_639_3_entry - id="nca" - scope="I" - type="L" - name="Iyo" /> - <iso_639_3_entry - id="ncb" - scope="I" - type="L" - name="Nicobarese; Central" /> - <iso_639_3_entry - id="ncc" - scope="I" - type="L" - name="Ponam" /> - <iso_639_3_entry - id="ncd" - scope="I" - type="L" - name="Nachering" /> - <iso_639_3_entry - id="nce" - scope="I" - type="L" - name="Yale" /> - <iso_639_3_entry - id="ncf" - scope="I" - type="L" - name="Notsi" /> - <iso_639_3_entry - id="ncg" - scope="I" - type="L" - name="Nisga'a" /> - <iso_639_3_entry - id="nch" - scope="I" - type="L" - name="Nahuatl; Central Huasteca" /> - <iso_639_3_entry - id="nci" - scope="I" - type="H" - name="Nahuatl; Classical" /> - <iso_639_3_entry - id="ncj" - scope="I" - type="L" - name="Nahuatl; Northern Puebla" /> - <iso_639_3_entry - id="nck" - scope="I" - type="L" - name="Nakara" /> - <iso_639_3_entry - id="ncl" - scope="I" - type="L" - name="Nahuatl; Michoacán" /> - <iso_639_3_entry - id="ncm" - scope="I" - type="L" - name="Nambo" /> - <iso_639_3_entry - id="ncn" - scope="I" - type="L" - name="Nauna" /> - <iso_639_3_entry - id="nco" - scope="I" - type="L" - name="Sibe" /> - <iso_639_3_entry - id="ncp" - scope="I" - type="L" - name="Ndaktup" /> - <iso_639_3_entry - id="ncr" - scope="I" - type="L" - name="Ncane" /> - <iso_639_3_entry - id="ncs" - scope="I" - type="L" - name="Nicaraguan Sign Language" /> - <iso_639_3_entry - id="nct" - scope="I" - type="L" - name="Naga; Chothe" /> - <iso_639_3_entry - id="ncu" - scope="I" - type="L" - name="Chumburung" /> - <iso_639_3_entry - id="ncx" - scope="I" - type="L" - name="Nahuatl; Central Puebla" /> - <iso_639_3_entry - id="ncz" - scope="I" - type="E" - name="Natchez" /> - <iso_639_3_entry - id="nda" - scope="I" - type="L" - name="Ndasa" /> - <iso_639_3_entry - id="ndb" - scope="I" - type="L" - name="Kenswei Nsei" /> - <iso_639_3_entry - id="ndc" - scope="I" - type="L" - name="Ndau" /> - <iso_639_3_entry - id="ndd" - scope="I" - type="L" - name="Nde-Nsele-Nta" /> - <iso_639_3_entry - id="nde" - part1_code="nd" - part2_code="nde" - scope="I" - type="L" - name="Ndebele; North" /> - <iso_639_3_entry - id="ndf" - scope="I" - type="E" - name="Nadruvian" /> - <iso_639_3_entry - id="ndg" - scope="I" - type="L" - name="Ndengereko" /> - <iso_639_3_entry - id="ndh" - scope="I" - type="L" - name="Ndali" /> - <iso_639_3_entry - id="ndi" - scope="I" - type="L" - name="Samba Leko" /> - <iso_639_3_entry - id="ndj" - scope="I" - type="L" - name="Ndamba" /> - <iso_639_3_entry - id="ndk" - scope="I" - type="L" - name="Ndaka" /> - <iso_639_3_entry - id="ndl" - scope="I" - type="L" - name="Ndolo" /> - <iso_639_3_entry - id="ndm" - scope="I" - type="L" - name="Ndam" /> - <iso_639_3_entry - id="ndn" - scope="I" - type="L" - name="Ngundi" /> - <iso_639_3_entry - id="ndo" - part1_code="ng" - part2_code="ndo" - scope="I" - type="L" - name="Ndonga" /> - <iso_639_3_entry - id="ndp" - scope="I" - type="L" - name="Ndo" /> - <iso_639_3_entry - id="ndq" - scope="I" - type="L" - name="Ndombe" /> - <iso_639_3_entry - id="ndr" - scope="I" - type="L" - name="Ndoola" /> - <iso_639_3_entry - id="nds" - part2_code="nds" - scope="I" - type="L" - name="German; Low" /> - <iso_639_3_entry - id="ndt" - scope="I" - type="L" - name="Ndunga" /> - <iso_639_3_entry - id="ndu" - scope="I" - type="L" - name="Dugun" /> - <iso_639_3_entry - id="ndv" - scope="I" - type="L" - name="Ndut" /> - <iso_639_3_entry - id="ndw" - scope="I" - type="L" - name="Ndobo" /> - <iso_639_3_entry - id="ndx" - scope="I" - type="L" - name="Nduga" /> - <iso_639_3_entry - id="ndy" - scope="I" - type="L" - name="Lutos" /> - <iso_639_3_entry - id="ndz" - scope="I" - type="L" - name="Ndogo" /> - <iso_639_3_entry - id="nea" - scope="I" - type="L" - name="Ngad'a; Eastern" /> - <iso_639_3_entry - id="neb" - scope="I" - type="L" - name="Toura (Côte d'Ivoire)" /> - <iso_639_3_entry - id="nec" - scope="I" - type="L" - name="Nedebang" /> - <iso_639_3_entry - id="ned" - scope="I" - type="L" - name="Nde-Gbite" /> - <iso_639_3_entry - id="nee" - scope="I" - type="L" - name="Nêlêmwa-Nixumwak" /> - <iso_639_3_entry - id="nef" - scope="I" - type="L" - name="Nefamese" /> - <iso_639_3_entry - id="neg" - scope="I" - type="L" - name="Negidal" /> - <iso_639_3_entry - id="neh" - scope="I" - type="L" - name="Nyenkha" /> - <iso_639_3_entry - id="nei" - scope="I" - type="A" - name="Hittite; Neo-" /> - <iso_639_3_entry - id="nej" - scope="I" - type="L" - name="Neko" /> - <iso_639_3_entry - id="nek" - scope="I" - type="L" - name="Neku" /> - <iso_639_3_entry - id="nem" - scope="I" - type="L" - name="Nemi" /> - <iso_639_3_entry - id="nen" - scope="I" - type="L" - name="Nengone" /> - <iso_639_3_entry - id="neo" - scope="I" - type="L" - name="Ná-Meo" /> - <iso_639_3_entry - id="nep" - part1_code="ne" - part2_code="nep" - scope="I" - type="L" - name="Nepali" /> - <iso_639_3_entry - id="neq" - scope="I" - type="L" - name="Mixe; North Central" /> - <iso_639_3_entry - id="ner" - scope="I" - type="L" - name="Yahadian" /> - <iso_639_3_entry - id="nes" - scope="I" - type="L" - name="Kinnauri; Bhoti" /> - <iso_639_3_entry - id="net" - scope="I" - type="L" - name="Nete" /> - <iso_639_3_entry - id="nev" - scope="I" - type="L" - name="Nyaheun" /> - <iso_639_3_entry - id="new" - part2_code="new" - scope="I" - type="L" - name="Bhasa; Nepal" /> - <iso_639_3_entry - id="nex" - scope="I" - type="L" - name="Neme" /> - <iso_639_3_entry - id="ney" - scope="I" - type="L" - name="Neyo" /> - <iso_639_3_entry - id="nez" - scope="I" - type="L" - name="Nez Perce" /> - <iso_639_3_entry - id="nfa" - scope="I" - type="L" - name="Dhao" /> - <iso_639_3_entry - id="nfd" - scope="I" - type="L" - name="Ahwai" /> - <iso_639_3_entry - id="nfl" - scope="I" - type="L" - name="Ayiwo" /> - <iso_639_3_entry - id="nfr" - scope="I" - type="L" - name="Nafaanra" /> - <iso_639_3_entry - id="nfu" - scope="I" - type="L" - name="Mfumte" /> - <iso_639_3_entry - id="nga" - scope="I" - type="L" - name="Ngbaka" /> - <iso_639_3_entry - id="ngb" - scope="I" - type="L" - name="Ngbandi; Northern" /> - <iso_639_3_entry - id="ngc" - scope="I" - type="L" - name="Ngombe (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="ngd" - scope="I" - type="L" - name="Ngando (Central African Republic)" /> - <iso_639_3_entry - id="nge" - scope="I" - type="L" - name="Ngemba" /> - <iso_639_3_entry - id="ngg" - scope="I" - type="L" - name="Ngbaka Manza" /> - <iso_639_3_entry - id="ngh" - scope="I" - type="L" - name="N/u" /> - <iso_639_3_entry - id="ngi" - scope="I" - type="L" - name="Ngizim" /> - <iso_639_3_entry - id="ngj" - scope="I" - type="L" - name="Ngie" /> - <iso_639_3_entry - id="ngk" - scope="I" - type="L" - name="Ngalkbun" /> - <iso_639_3_entry - id="ngl" - scope="I" - type="L" - name="Lomwe" /> - <iso_639_3_entry - id="ngm" - scope="I" - type="L" - name="Ngatik Men's Creole" /> - <iso_639_3_entry - id="ngn" - scope="I" - type="L" - name="Ngwo" /> - <iso_639_3_entry - id="ngo" - scope="I" - type="L" - name="Ngoni" /> - <iso_639_3_entry - id="ngp" - scope="I" - type="L" - name="Ngulu" /> - <iso_639_3_entry - id="ngq" - scope="I" - type="L" - name="Ngurimi" /> - <iso_639_3_entry - id="ngr" - scope="I" - type="L" - name="Nanggu" /> - <iso_639_3_entry - id="ngs" - scope="I" - type="L" - name="Gvoko" /> - <iso_639_3_entry - id="ngt" - scope="I" - type="L" - name="Ngeq" /> - <iso_639_3_entry - id="ngu" - scope="I" - type="L" - name="Nahuatl; Guerrero" /> - <iso_639_3_entry - id="ngv" - scope="I" - type="E" - name="Nagumi" /> - <iso_639_3_entry - id="ngw" - scope="I" - type="L" - name="Ngwaba" /> - <iso_639_3_entry - id="ngx" - scope="I" - type="L" - name="Nggwahyi" /> - <iso_639_3_entry - id="ngy" - scope="I" - type="L" - name="Tibea" /> - <iso_639_3_entry - id="ngz" - scope="I" - type="L" - name="Ngungwel" /> - <iso_639_3_entry - id="nha" - scope="I" - type="L" - name="Nhanda" /> - <iso_639_3_entry - id="nhb" - scope="I" - type="L" - name="Beng" /> - <iso_639_3_entry - id="nhc" - scope="I" - type="E" - name="Nahuatl; Tabasco" /> - <iso_639_3_entry - id="nhd" - scope="I" - type="L" - name="Guaraní; Ava" /> - <iso_639_3_entry - id="nhe" - scope="I" - type="L" - name="Nahuatl; Eastern Huasteca" /> - <iso_639_3_entry - id="nhf" - scope="I" - type="L" - name="Nhuwala" /> - <iso_639_3_entry - id="nhg" - scope="I" - type="L" - name="Nahuatl; Tetelcingo" /> - <iso_639_3_entry - id="nhh" - scope="I" - type="L" - name="Nahari" /> - <iso_639_3_entry - id="nhi" - scope="I" - type="L" - name="Nahuatl; Zacatlán-Ahuacatlán-Tepetzintla" /> - <iso_639_3_entry - id="nhk" - scope="I" - type="L" - name="Nahuatl; Isthmus-Cosoleacaque" /> - <iso_639_3_entry - id="nhm" - scope="I" - type="L" - name="Nahuatl; Morelos" /> - <iso_639_3_entry - id="nhn" - scope="I" - type="L" - name="Nahuatl; Central" /> - <iso_639_3_entry - id="nho" - scope="I" - type="L" - name="Takuu" /> - <iso_639_3_entry - id="nhp" - scope="I" - type="L" - name="Nahuatl; Isthmus-Pajapan" /> - <iso_639_3_entry - id="nhq" - scope="I" - type="L" - name="Nahuatl; Huaxcaleca" /> - <iso_639_3_entry - id="nhr" - scope="I" - type="L" - name="Naro" /> - <iso_639_3_entry - id="nht" - scope="I" - type="L" - name="Nahuatl; Ometepec" /> - <iso_639_3_entry - id="nhu" - scope="I" - type="L" - name="Noone" /> - <iso_639_3_entry - id="nhv" - scope="I" - type="L" - name="Nahuatl; Temascaltepec" /> - <iso_639_3_entry - id="nhw" - scope="I" - type="L" - name="Nahuatl; Western Huasteca" /> - <iso_639_3_entry - id="nhx" - scope="I" - type="L" - name="Nahuatl; Isthmus-Mecayapan" /> - <iso_639_3_entry - id="nhy" - scope="I" - type="L" - name="Nahuatl; Northern Oaxaca" /> - <iso_639_3_entry - id="nhz" - scope="I" - type="L" - name="Nahuatl; Santa María La Alta" /> - <iso_639_3_entry - id="nia" - part2_code="nia" - scope="I" - type="L" - name="Nias" /> - <iso_639_3_entry - id="nib" - scope="I" - type="L" - name="Nakame" /> - <iso_639_3_entry - id="nid" - scope="I" - type="E" - name="Ngandi" /> - <iso_639_3_entry - id="nie" - scope="I" - type="L" - name="Niellim" /> - <iso_639_3_entry - id="nif" - scope="I" - type="L" - name="Nek" /> - <iso_639_3_entry - id="nig" - scope="I" - type="E" - name="Ngalakan" /> - <iso_639_3_entry - id="nih" - scope="I" - type="L" - name="Nyiha (Tanzania)" /> - <iso_639_3_entry - id="nii" - scope="I" - type="L" - name="Nii" /> - <iso_639_3_entry - id="nij" - scope="I" - type="L" - name="Ngaju" /> - <iso_639_3_entry - id="nik" - scope="I" - type="L" - name="Nicobarese; Southern" /> - <iso_639_3_entry - id="nil" - scope="I" - type="L" - name="Nila" /> - <iso_639_3_entry - id="nim" - scope="I" - type="L" - name="Nilamba" /> - <iso_639_3_entry - id="nin" - scope="I" - type="L" - name="Ninzo" /> - <iso_639_3_entry - id="nio" - scope="I" - type="L" - name="Nganasan" /> - <iso_639_3_entry - id="niq" - scope="I" - type="L" - name="Nandi" /> - <iso_639_3_entry - id="nir" - scope="I" - type="L" - name="Nimboran" /> - <iso_639_3_entry - id="nis" - scope="I" - type="L" - name="Nimi" /> - <iso_639_3_entry - id="nit" - scope="I" - type="L" - name="Kolami; Southeastern" /> - <iso_639_3_entry - id="niu" - part2_code="niu" - scope="I" - type="L" - name="Niuean" /> - <iso_639_3_entry - id="niv" - scope="I" - type="L" - name="Gilyak" /> - <iso_639_3_entry - id="niw" - scope="I" - type="L" - name="Nimo" /> - <iso_639_3_entry - id="nix" - scope="I" - type="L" - name="Hema" /> - <iso_639_3_entry - id="niy" - scope="I" - type="L" - name="Ngiti" /> - <iso_639_3_entry - id="niz" - scope="I" - type="L" - name="Ningil" /> - <iso_639_3_entry - id="nja" - scope="I" - type="L" - name="Nzanyi" /> - <iso_639_3_entry - id="njb" - scope="I" - type="L" - name="Naga; Nocte" /> - <iso_639_3_entry - id="njd" - scope="I" - type="L" - name="Ndonde Hamba" /> - <iso_639_3_entry - id="njh" - scope="I" - type="L" - name="Naga; Lotha" /> - <iso_639_3_entry - id="nji" - scope="I" - type="L" - name="Gudanji" /> - <iso_639_3_entry - id="njj" - scope="I" - type="L" - name="Njen" /> - <iso_639_3_entry - id="njl" - scope="I" - type="L" - name="Njalgulgule" /> - <iso_639_3_entry - id="njm" - scope="I" - type="L" - name="Naga; Angami" /> - <iso_639_3_entry - id="njn" - scope="I" - type="L" - name="Naga; Liangmai" /> - <iso_639_3_entry - id="njo" - scope="I" - type="L" - name="Naga; Ao" /> - <iso_639_3_entry - id="njr" - scope="I" - type="L" - name="Njerep" /> - <iso_639_3_entry - id="njs" - scope="I" - type="L" - name="Nisa" /> - <iso_639_3_entry - id="njt" - scope="I" - type="L" - name="Ndyuka-Trio Pidgin" /> - <iso_639_3_entry - id="nju" - scope="I" - type="L" - name="Ngadjunmaya" /> - <iso_639_3_entry - id="njx" - scope="I" - type="L" - name="Kunyi" /> - <iso_639_3_entry - id="njy" - scope="I" - type="L" - name="Njyem" /> - <iso_639_3_entry - id="nka" - scope="I" - type="L" - name="Nkoya" /> - <iso_639_3_entry - id="nkb" - scope="I" - type="L" - name="Naga; Khoibu" /> - <iso_639_3_entry - id="nkc" - scope="I" - type="L" - name="Nkongho" /> - <iso_639_3_entry - id="nkd" - scope="I" - type="L" - name="Koireng" /> - <iso_639_3_entry - id="nke" - scope="I" - type="L" - name="Duke" /> - <iso_639_3_entry - id="nkf" - scope="I" - type="L" - name="Naga; Inpui" /> - <iso_639_3_entry - id="nkg" - scope="I" - type="L" - name="Nekgini" /> - <iso_639_3_entry - id="nkh" - scope="I" - type="L" - name="Naga; Khezha" /> - <iso_639_3_entry - id="nki" - scope="I" - type="L" - name="Naga; Thangal" /> - <iso_639_3_entry - id="nkj" - scope="I" - type="L" - name="Nakai" /> - <iso_639_3_entry - id="nkk" - scope="I" - type="L" - name="Nokuku" /> - <iso_639_3_entry - id="nkm" - scope="I" - type="L" - name="Namat" /> - <iso_639_3_entry - id="nkn" - scope="I" - type="L" - name="Nkangala" /> - <iso_639_3_entry - id="nko" - scope="I" - type="L" - name="Nkonya" /> - <iso_639_3_entry - id="nkp" - scope="I" - type="E" - name="Niuatoputapu" /> - <iso_639_3_entry - id="nkq" - scope="I" - type="L" - name="Nkami" /> - <iso_639_3_entry - id="nkr" - scope="I" - type="L" - name="Nukuoro" /> - <iso_639_3_entry - id="nks" - scope="I" - type="L" - name="Asmat; North" /> - <iso_639_3_entry - id="nkt" - scope="I" - type="L" - name="Nyika (Tanzania)" /> - <iso_639_3_entry - id="nku" - scope="I" - type="L" - name="Kulango; Bouna" /> - <iso_639_3_entry - id="nkv" - scope="I" - type="L" - name="Nyika (Malawi and Zambia)" /> - <iso_639_3_entry - id="nkw" - scope="I" - type="L" - name="Nkutu" /> - <iso_639_3_entry - id="nkx" - scope="I" - type="L" - name="Nkoroo" /> - <iso_639_3_entry - id="nkz" - scope="I" - type="L" - name="Nkari" /> - <iso_639_3_entry - id="nla" - scope="I" - type="L" - name="Ngombale" /> - <iso_639_3_entry - id="nlc" - scope="I" - type="L" - name="Nalca" /> - <iso_639_3_entry - id="nld" - part1_code="nl" - part2_code="dut" - scope="I" - type="L" - name="Dutch" /> - <iso_639_3_entry - id="nle" - scope="I" - type="L" - name="Nyala; East" /> - <iso_639_3_entry - id="nlg" - scope="I" - type="L" - name="Gela" /> - <iso_639_3_entry - id="nli" - scope="I" - type="L" - name="Grangali" /> - <iso_639_3_entry - id="nlj" - scope="I" - type="L" - name="Nyali" /> - <iso_639_3_entry - id="nlk" - scope="I" - type="L" - name="Yali; Ninia" /> - <iso_639_3_entry - id="nll" - scope="I" - type="L" - name="Nihali" /> - <iso_639_3_entry - id="nln" - scope="I" - type="L" - name="Nahuatl; Durango" /> - <iso_639_3_entry - id="nlo" - scope="I" - type="L" - name="Ngul" /> - <iso_639_3_entry - id="nlr" - scope="I" - type="L" - name="Ngarla" /> - <iso_639_3_entry - id="nlu" - scope="I" - type="L" - name="Nchumbulu" /> - <iso_639_3_entry - id="nlv" - scope="I" - type="L" - name="Nahuatl; Orizaba" /> - <iso_639_3_entry - id="nlx" - scope="I" - type="L" - name="Nahali" /> - <iso_639_3_entry - id="nly" - scope="I" - type="L" - name="Nyamal" /> - <iso_639_3_entry - id="nlz" - scope="I" - type="L" - name="Nalögo" /> - <iso_639_3_entry - id="nma" - scope="I" - type="L" - name="Naga; Maram" /> - <iso_639_3_entry - id="nmb" - scope="I" - type="L" - name="Nambas; Big" /> - <iso_639_3_entry - id="nmc" - scope="I" - type="L" - name="Ngam" /> - <iso_639_3_entry - id="nmd" - scope="I" - type="L" - name="Ndumu" /> - <iso_639_3_entry - id="nme" - scope="I" - type="L" - name="Naga; Mzieme" /> - <iso_639_3_entry - id="nmf" - scope="I" - type="L" - name="Naga; Tangkhul" /> - <iso_639_3_entry - id="nmg" - scope="I" - type="L" - name="Kwasio" /> - <iso_639_3_entry - id="nmh" - scope="I" - type="L" - name="Naga; Monsang" /> - <iso_639_3_entry - id="nmi" - scope="I" - type="L" - name="Nyam" /> - <iso_639_3_entry - id="nmj" - scope="I" - type="L" - name="Ngombe (Central African Republic)" /> - <iso_639_3_entry - id="nmk" - scope="I" - type="L" - name="Namakura" /> - <iso_639_3_entry - id="nml" - scope="I" - type="L" - name="Ndemli" /> - <iso_639_3_entry - id="nmm" - scope="I" - type="L" - name="Manangba" /> - <iso_639_3_entry - id="nmn" - scope="I" - type="L" - name="!Xóõ" /> - <iso_639_3_entry - id="nmo" - scope="I" - type="L" - name="Naga; Moyon" /> - <iso_639_3_entry - id="nmp" - scope="I" - type="E" - name="Nimanbur" /> - <iso_639_3_entry - id="nmq" - scope="I" - type="L" - name="Nambya" /> - <iso_639_3_entry - id="nmr" - scope="I" - type="E" - name="Nimbari" /> - <iso_639_3_entry - id="nms" - scope="I" - type="L" - name="Letemboi" /> - <iso_639_3_entry - id="nmt" - scope="I" - type="L" - name="Namonuito" /> - <iso_639_3_entry - id="nmu" - scope="I" - type="L" - name="Maidu; Northeast" /> - <iso_639_3_entry - id="nmv" - scope="I" - type="E" - name="Ngamini" /> - <iso_639_3_entry - id="nmw" - scope="I" - type="L" - name="Nimoa" /> - <iso_639_3_entry - id="nmx" - scope="I" - type="L" - name="Nama (Papua New Guinea)" /> - <iso_639_3_entry - id="nmy" - scope="I" - type="L" - name="Namuyi" /> - <iso_639_3_entry - id="nmz" - scope="I" - type="L" - name="Nawdm" /> - <iso_639_3_entry - id="nna" - scope="I" - type="L" - name="Nyangumarta" /> - <iso_639_3_entry - id="nnb" - scope="I" - type="L" - name="Nande" /> - <iso_639_3_entry - id="nnc" - scope="I" - type="L" - name="Nancere" /> - <iso_639_3_entry - id="nnd" - scope="I" - type="L" - name="Ambae; West" /> - <iso_639_3_entry - id="nne" - scope="I" - type="L" - name="Ngandyera" /> - <iso_639_3_entry - id="nnf" - scope="I" - type="L" - name="Ngaing" /> - <iso_639_3_entry - id="nng" - scope="I" - type="L" - name="Naga; Maring" /> - <iso_639_3_entry - id="nnh" - scope="I" - type="L" - name="Ngiemboon" /> - <iso_639_3_entry - id="nni" - scope="I" - type="L" - name="Nuaulu; North" /> - <iso_639_3_entry - id="nnj" - scope="I" - type="L" - name="Nyangatom" /> - <iso_639_3_entry - id="nnk" - scope="I" - type="L" - name="Nankina" /> - <iso_639_3_entry - id="nnl" - scope="I" - type="L" - name="Naga; Northern Rengma" /> - <iso_639_3_entry - id="nnm" - scope="I" - type="L" - name="Namia" /> - <iso_639_3_entry - id="nnn" - scope="I" - type="L" - name="Ngete" /> - <iso_639_3_entry - id="nno" - part1_code="nn" - part2_code="nno" - scope="I" - type="L" - name="Norwegian Nynorsk" /> - <iso_639_3_entry - id="nnp" - scope="I" - type="L" - name="Naga; Wancho" /> - <iso_639_3_entry - id="nnq" - scope="I" - type="L" - name="Ngindo" /> - <iso_639_3_entry - id="nnr" - scope="I" - type="E" - name="Narungga" /> - <iso_639_3_entry - id="nns" - scope="I" - type="L" - name="Ningye" /> - <iso_639_3_entry - id="nnt" - scope="I" - type="E" - name="Nanticoke" /> - <iso_639_3_entry - id="nnu" - scope="I" - type="L" - name="Dwang" /> - <iso_639_3_entry - id="nnv" - scope="I" - type="E" - name="Nugunu (Australia)" /> - <iso_639_3_entry - id="nnw" - scope="I" - type="L" - name="Nuni; Southern" /> - <iso_639_3_entry - id="nnx" - scope="I" - type="L" - name="Ngong" /> - <iso_639_3_entry - id="nny" - scope="I" - type="E" - name="Nyangga" /> - <iso_639_3_entry - id="nnz" - scope="I" - type="L" - name="Nda'nda'" /> - <iso_639_3_entry - id="noa" - scope="I" - type="L" - name="Woun Meu" /> - <iso_639_3_entry - id="nob" - part1_code="nb" - part2_code="nob" - scope="I" - type="L" - name="Norwegian Bokmål" /> - <iso_639_3_entry - id="noc" - scope="I" - type="L" - name="Nuk" /> - <iso_639_3_entry - id="nod" - scope="I" - type="L" - name="Thai; Northern" /> - <iso_639_3_entry - id="noe" - scope="I" - type="L" - name="Nimadi" /> - <iso_639_3_entry - id="nof" - scope="I" - type="L" - name="Nomane" /> - <iso_639_3_entry - id="nog" - part2_code="nog" - scope="I" - type="L" - name="Nogai" /> - <iso_639_3_entry - id="noh" - scope="I" - type="L" - name="Nomu" /> - <iso_639_3_entry - id="noi" - scope="I" - type="L" - name="Noiri" /> - <iso_639_3_entry - id="noj" - scope="I" - type="L" - name="Nonuya" /> - <iso_639_3_entry - id="nok" - scope="I" - type="E" - name="Nooksack" /> - <iso_639_3_entry - id="nom" - scope="I" - type="E" - name="Nocamán" /> - <iso_639_3_entry - id="non" - part2_code="non" - scope="I" - type="H" - name="Norse; Old" /> - <iso_639_3_entry - id="nop" - scope="I" - type="L" - name="Numanggang" /> - <iso_639_3_entry - id="noq" - scope="I" - type="L" - name="Ngongo" /> - <iso_639_3_entry - id="nor" - part1_code="no" - part2_code="nor" - scope="M" - type="L" - name="Norwegian" /> - <iso_639_3_entry - id="nos" - scope="I" - type="L" - name="Nisu; Eastern" /> - <iso_639_3_entry - id="not" - scope="I" - type="L" - name="Nomatsiguenga" /> - <iso_639_3_entry - id="nou" - scope="I" - type="L" - name="Ewage-Notu" /> - <iso_639_3_entry - id="nov" - scope="I" - type="C" - name="Novial" /> - <iso_639_3_entry - id="now" - scope="I" - type="L" - name="Nyambo" /> - <iso_639_3_entry - id="noy" - scope="I" - type="L" - name="Noy" /> - <iso_639_3_entry - id="noz" - scope="I" - type="L" - name="Nayi" /> - <iso_639_3_entry - id="npa" - scope="I" - type="L" - name="Nar Phu" /> - <iso_639_3_entry - id="npb" - scope="I" - type="L" - name="Nupbikha" /> - <iso_639_3_entry - id="nph" - scope="I" - type="L" - name="Naga; Phom" /> - <iso_639_3_entry - id="npl" - scope="I" - type="L" - name="Nahuatl; Southeastern Puebla" /> - <iso_639_3_entry - id="npn" - scope="I" - type="L" - name="Mondropolon" /> - <iso_639_3_entry - id="npo" - scope="I" - type="L" - name="Naga; Pochuri" /> - <iso_639_3_entry - id="nps" - scope="I" - type="L" - name="Nipsan" /> - <iso_639_3_entry - id="npu" - scope="I" - type="L" - name="Naga; Puimei" /> - <iso_639_3_entry - id="npy" - scope="I" - type="L" - name="Napu" /> - <iso_639_3_entry - id="nqg" - scope="I" - type="L" - name="Nago; Southern" /> - <iso_639_3_entry - id="nqk" - scope="I" - type="L" - name="Ede Nago; Kura" /> - <iso_639_3_entry - id="nqm" - scope="I" - type="L" - name="Ndom" /> - <iso_639_3_entry - id="nqn" - scope="I" - type="L" - name="Nen" /> - <iso_639_3_entry - id="nqo" - part2_code="nqo" - scope="I" - type="L" - name="N'Ko" /> - <iso_639_3_entry - id="nra" - scope="I" - type="L" - name="Ngom" /> - <iso_639_3_entry - id="nrb" - scope="I" - type="L" - name="Nara" /> - <iso_639_3_entry - id="nrc" - scope="I" - type="A" - name="Noric" /> - <iso_639_3_entry - id="nre" - scope="I" - type="L" - name="Naga; Southern Rengma" /> - <iso_639_3_entry - id="nrg" - scope="I" - type="L" - name="Narango" /> - <iso_639_3_entry - id="nri" - scope="I" - type="L" - name="Naga; Chokri" /> - <iso_639_3_entry - id="nrl" - scope="I" - type="L" - name="Ngarluma" /> - <iso_639_3_entry - id="nrm" - scope="I" - type="L" - name="Narom" /> - <iso_639_3_entry - id="nrn" - scope="I" - type="E" - name="Norn" /> - <iso_639_3_entry - id="nrp" - scope="I" - type="A" - name="Picene; North" /> - <iso_639_3_entry - id="nrr" - scope="I" - type="L" - name="Norra" /> - <iso_639_3_entry - id="nrt" - scope="I" - type="E" - name="Kalapuya; Northern" /> - <iso_639_3_entry - id="nru" - scope="I" - type="L" - name="Narua" /> - <iso_639_3_entry - id="nrx" - scope="I" - type="E" - name="Ngurmbur" /> - <iso_639_3_entry - id="nrz" - scope="I" - type="L" - name="Lala" /> - <iso_639_3_entry - id="nsa" - scope="I" - type="L" - name="Naga; Sangtam" /> - <iso_639_3_entry - id="nsc" - scope="I" - type="L" - name="Nshi" /> - <iso_639_3_entry - id="nsd" - scope="I" - type="L" - name="Nisu; Southern" /> - <iso_639_3_entry - id="nse" - scope="I" - type="L" - name="Nsenga" /> - <iso_639_3_entry - id="nsg" - scope="I" - type="L" - name="Ngasa" /> - <iso_639_3_entry - id="nsh" - scope="I" - type="L" - name="Ngoshie" /> - <iso_639_3_entry - id="nsi" - scope="I" - type="L" - name="Nigerian Sign Language" /> - <iso_639_3_entry - id="nsk" - scope="I" - type="L" - name="Naskapi" /> - <iso_639_3_entry - id="nsl" - scope="I" - type="L" - name="Norwegian Sign Language" /> - <iso_639_3_entry - id="nsm" - scope="I" - type="L" - name="Naga; Sumi" /> - <iso_639_3_entry - id="nsn" - scope="I" - type="L" - name="Nehan" /> - <iso_639_3_entry - id="nso" - part2_code="nso" - scope="I" - type="L" - name="Sotho; Northern" /> - <iso_639_3_entry - id="nsp" - scope="I" - type="L" - name="Nepalese Sign Language" /> - <iso_639_3_entry - id="nsq" - scope="I" - type="L" - name="Miwok; Northern Sierra" /> - <iso_639_3_entry - id="nsr" - scope="I" - type="L" - name="Maritime Sign Language" /> - <iso_639_3_entry - id="nss" - scope="I" - type="L" - name="Nali" /> - <iso_639_3_entry - id="nst" - scope="I" - type="L" - name="Naga; Tase" /> - <iso_639_3_entry - id="nsu" - scope="I" - type="L" - name="Nahuatl; Sierra Negra" /> - <iso_639_3_entry - id="nsv" - scope="I" - type="L" - name="Nisu; Southwestern" /> - <iso_639_3_entry - id="nsw" - scope="I" - type="L" - name="Navut" /> - <iso_639_3_entry - id="nsx" - scope="I" - type="L" - name="Nsongo" /> - <iso_639_3_entry - id="nsy" - scope="I" - type="L" - name="Nasal" /> - <iso_639_3_entry - id="nsz" - scope="I" - type="L" - name="Nisenan" /> - <iso_639_3_entry - id="nte" - scope="I" - type="L" - name="Nathembo" /> - <iso_639_3_entry - id="nti" - scope="I" - type="L" - name="Natioro" /> - <iso_639_3_entry - id="ntj" - scope="I" - type="L" - name="Ngaanyatjarra" /> - <iso_639_3_entry - id="ntk" - scope="I" - type="L" - name="Ikoma-Nata-Isenye" /> - <iso_639_3_entry - id="ntm" - scope="I" - type="L" - name="Nateni" /> - <iso_639_3_entry - id="nto" - scope="I" - type="L" - name="Ntomba" /> - <iso_639_3_entry - id="ntp" - scope="I" - type="L" - name="Tepehuan; Northern" /> - <iso_639_3_entry - id="ntr" - scope="I" - type="L" - name="Delo" /> - <iso_639_3_entry - id="nts" - scope="I" - type="E" - name="Natagaimas" /> - <iso_639_3_entry - id="ntu" - scope="I" - type="L" - name="Natügu" /> - <iso_639_3_entry - id="ntw" - scope="I" - type="E" - name="Nottoway" /> - <iso_639_3_entry - id="nty" - scope="I" - type="L" - name="Mantsi" /> - <iso_639_3_entry - id="ntz" - scope="I" - type="L" - name="Natanzi" /> - <iso_639_3_entry - id="nua" - scope="I" - type="L" - name="Yuaga" /> - <iso_639_3_entry - id="nuc" - scope="I" - type="E" - name="Nukuini" /> - <iso_639_3_entry - id="nud" - scope="I" - type="L" - name="Ngala" /> - <iso_639_3_entry - id="nue" - scope="I" - type="L" - name="Ngundu" /> - <iso_639_3_entry - id="nuf" - scope="I" - type="L" - name="Nusu" /> - <iso_639_3_entry - id="nug" - scope="I" - type="E" - name="Nungali" /> - <iso_639_3_entry - id="nuh" - scope="I" - type="L" - name="Ndunda" /> - <iso_639_3_entry - id="nui" - scope="I" - type="L" - name="Ngumbi" /> - <iso_639_3_entry - id="nuj" - scope="I" - type="L" - name="Nyole" /> - <iso_639_3_entry - id="nuk" - scope="I" - type="L" - name="Nuu-chah-nulth" /> - <iso_639_3_entry - id="nul" - scope="I" - type="L" - name="Nusa Laut" /> - <iso_639_3_entry - id="num" - scope="I" - type="L" - name="Niuafo'ou" /> - <iso_639_3_entry - id="nun" - scope="I" - type="L" - name="Anong" /> - <iso_639_3_entry - id="nuo" - scope="I" - type="L" - name="Nguôn" /> - <iso_639_3_entry - id="nup" - scope="I" - type="L" - name="Nupe-Nupe-Tako" /> - <iso_639_3_entry - id="nuq" - scope="I" - type="L" - name="Nukumanu" /> - <iso_639_3_entry - id="nur" - scope="I" - type="L" - name="Nukuria" /> - <iso_639_3_entry - id="nus" - scope="I" - type="L" - name="Nuer" /> - <iso_639_3_entry - id="nut" - scope="I" - type="L" - name="Nung (Viet Nam)" /> - <iso_639_3_entry - id="nuu" - scope="I" - type="L" - name="Ngbundu" /> - <iso_639_3_entry - id="nuv" - scope="I" - type="L" - name="Nuni; Northern" /> - <iso_639_3_entry - id="nuw" - scope="I" - type="L" - name="Nguluwan" /> - <iso_639_3_entry - id="nux" - scope="I" - type="L" - name="Mehek" /> - <iso_639_3_entry - id="nuy" - scope="I" - type="L" - name="Nunggubuyu" /> - <iso_639_3_entry - id="nuz" - scope="I" - type="L" - name="Nahuatl; Tlamacazapa" /> - <iso_639_3_entry - id="nvh" - scope="I" - type="L" - name="Nasarian" /> - <iso_639_3_entry - id="nvm" - scope="I" - type="L" - name="Namiae" /> - <iso_639_3_entry - id="nwa" - scope="I" - type="E" - name="Nawathinehena" /> - <iso_639_3_entry - id="nwb" - scope="I" - type="L" - name="Nyabwa" /> - <iso_639_3_entry - id="nwc" - part2_code="nwc" - scope="I" - type="H" - name="Newari; Old" /> - <iso_639_3_entry - id="nwe" - scope="I" - type="L" - name="Ngwe" /> - <iso_639_3_entry - id="nwi" - scope="I" - type="L" - name="Tanna; Southwest" /> - <iso_639_3_entry - id="nwm" - scope="I" - type="L" - name="Nyamusa-Molo" /> - <iso_639_3_entry - id="nwr" - scope="I" - type="L" - name="Nawaru" /> - <iso_639_3_entry - id="nwx" - scope="I" - type="H" - name="Newar; Middle" /> - <iso_639_3_entry - id="nwy" - scope="I" - type="E" - name="Nottoway-Meherrin" /> - <iso_639_3_entry - id="nxa" - scope="I" - type="L" - name="Nauete" /> - <iso_639_3_entry - id="nxd" - scope="I" - type="L" - name="Ngando (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="nxe" - scope="I" - type="L" - name="Nage" /> - <iso_639_3_entry - id="nxg" - scope="I" - type="L" - name="Ngad'a" /> - <iso_639_3_entry - id="nxi" - scope="I" - type="L" - name="Nindi" /> - <iso_639_3_entry - id="nxl" - scope="I" - type="L" - name="Nuaulu; South" /> - <iso_639_3_entry - id="nxm" - scope="I" - type="A" - name="Numidian" /> - <iso_639_3_entry - id="nxn" - scope="I" - type="E" - name="Ngawun" /> - <iso_639_3_entry - id="nxq" - scope="I" - type="L" - name="Naxi" /> - <iso_639_3_entry - id="nxr" - scope="I" - type="L" - name="Ninggerum" /> - <iso_639_3_entry - id="nxu" - scope="I" - type="L" - name="Narau" /> - <iso_639_3_entry - id="nxx" - scope="I" - type="L" - name="Nafri" /> - <iso_639_3_entry - id="nya" - part1_code="ny" - part2_code="nya" - scope="I" - type="L" - name="Nyanja" /> - <iso_639_3_entry - id="nyb" - scope="I" - type="L" - name="Nyangbo" /> - <iso_639_3_entry - id="nyc" - scope="I" - type="L" - name="Nyanga-li" /> - <iso_639_3_entry - id="nyd" - scope="I" - type="L" - name="Nyore" /> - <iso_639_3_entry - id="nye" - scope="I" - type="L" - name="Nyengo" /> - <iso_639_3_entry - id="nyf" - scope="I" - type="L" - name="Giryama" /> - <iso_639_3_entry - id="nyg" - scope="I" - type="L" - name="Nyindu" /> - <iso_639_3_entry - id="nyh" - scope="I" - type="L" - name="Nyigina" /> - <iso_639_3_entry - id="nyi" - scope="I" - type="L" - name="Ama (Sudan)" /> - <iso_639_3_entry - id="nyj" - scope="I" - type="L" - name="Nyanga" /> - <iso_639_3_entry - id="nyk" - scope="I" - type="L" - name="Nyaneka" /> - <iso_639_3_entry - id="nyl" - scope="I" - type="L" - name="Nyeu" /> - <iso_639_3_entry - id="nym" - part2_code="nym" - scope="I" - type="L" - name="Nyamwezi" /> - <iso_639_3_entry - id="nyn" - part2_code="nyn" - scope="I" - type="L" - name="Nyankole" /> - <iso_639_3_entry - id="nyo" - part2_code="nyo" - scope="I" - type="L" - name="Nyoro" /> - <iso_639_3_entry - id="nyp" - scope="I" - type="E" - name="Nyang'i" /> - <iso_639_3_entry - id="nyq" - scope="I" - type="L" - name="Nayini" /> - <iso_639_3_entry - id="nyr" - scope="I" - type="L" - name="Nyiha (Malawi)" /> - <iso_639_3_entry - id="nys" - scope="I" - type="L" - name="Nyunga" /> - <iso_639_3_entry - id="nyt" - scope="I" - type="E" - name="Nyawaygi" /> - <iso_639_3_entry - id="nyu" - scope="I" - type="L" - name="Nyungwe" /> - <iso_639_3_entry - id="nyv" - scope="I" - type="E" - name="Nyulnyul" /> - <iso_639_3_entry - id="nyw" - scope="I" - type="L" - name="Nyaw" /> - <iso_639_3_entry - id="nyx" - scope="I" - type="E" - name="Nganyaywana" /> - <iso_639_3_entry - id="nyy" - scope="I" - type="L" - name="Nyakyusa-Ngonde" /> - <iso_639_3_entry - id="nza" - scope="I" - type="L" - name="Mbembe; Tigon" /> - <iso_639_3_entry - id="nzb" - scope="I" - type="L" - name="Njebi" /> - <iso_639_3_entry - id="nzi" - part2_code="nzi" - scope="I" - type="L" - name="Nzima" /> - <iso_639_3_entry - id="nzk" - scope="I" - type="L" - name="Nzakara" /> - <iso_639_3_entry - id="nzm" - scope="I" - type="L" - name="Naga; Zeme" /> - <iso_639_3_entry - id="nzs" - scope="I" - type="L" - name="New Zealand Sign Language" /> - <iso_639_3_entry - id="nzu" - scope="I" - type="L" - name="Teke-Nzikou" /> - <iso_639_3_entry - id="nzy" - scope="I" - type="L" - name="Nzakambay" /> - <iso_639_3_entry - id="nzz" - scope="I" - type="L" - name="Dogon; Nanga Dama" /> - <iso_639_3_entry - id="oaa" - scope="I" - type="L" - name="Orok" /> - <iso_639_3_entry - id="oac" - scope="I" - type="L" - name="Oroch" /> - <iso_639_3_entry - id="oar" - scope="I" - type="A" - name="Aramaic; Old (up to 700 BCE)" /> - <iso_639_3_entry - id="oav" - scope="I" - type="H" - name="Avar; Old" /> - <iso_639_3_entry - id="obi" - scope="I" - type="E" - name="Obispeño" /> - <iso_639_3_entry - id="obk" - scope="I" - type="L" - name="Bontok; Southern" /> - <iso_639_3_entry - id="obl" - scope="I" - type="L" - name="Oblo" /> - <iso_639_3_entry - id="obm" - scope="I" - type="A" - name="Moabite" /> - <iso_639_3_entry - id="obo" - scope="I" - type="L" - name="Manobo; Obo" /> - <iso_639_3_entry - id="obr" - scope="I" - type="H" - name="Burmese; Old" /> - <iso_639_3_entry - id="obt" - scope="I" - type="H" - name="Breton; Old" /> - <iso_639_3_entry - id="obu" - scope="I" - type="L" - name="Obulom" /> - <iso_639_3_entry - id="oca" - scope="I" - type="L" - name="Ocaina" /> - <iso_639_3_entry - id="och" - scope="I" - type="A" - name="Chinese; Old" /> - <iso_639_3_entry - id="oci" - part1_code="oc" - part2_code="oci" - scope="I" - type="L" - name="Occitan (post 1500)" /> - <iso_639_3_entry - id="oco" - scope="I" - type="H" - name="Cornish; Old" /> - <iso_639_3_entry - id="ocu" - scope="I" - type="L" - name="Matlatzinca; Atzingo" /> - <iso_639_3_entry - id="oda" - scope="I" - type="L" - name="Odut" /> - <iso_639_3_entry - id="odk" - scope="I" - type="L" - name="Od" /> - <iso_639_3_entry - id="odt" - scope="I" - type="H" - name="Dutch; Old" /> - <iso_639_3_entry - id="odu" - scope="I" - type="L" - name="Odual" /> - <iso_639_3_entry - id="ofo" - scope="I" - type="E" - name="Ofo" /> - <iso_639_3_entry - id="ofs" - scope="I" - type="H" - name="Frisian; Old" /> - <iso_639_3_entry - id="ofu" - scope="I" - type="L" - name="Efutop" /> - <iso_639_3_entry - id="ogb" - scope="I" - type="L" - name="Ogbia" /> - <iso_639_3_entry - id="ogc" - scope="I" - type="L" - name="Ogbah" /> - <iso_639_3_entry - id="oge" - scope="I" - type="H" - name="Georgian; Old" /> - <iso_639_3_entry - id="ogg" - scope="I" - type="L" - name="Ogbogolo" /> - <iso_639_3_entry - id="ogo" - scope="I" - type="L" - name="Khana" /> - <iso_639_3_entry - id="ogu" - scope="I" - type="L" - name="Ogbronuagum" /> - <iso_639_3_entry - id="oht" - scope="I" - type="A" - name="Hittite; Old" /> - <iso_639_3_entry - id="ohu" - scope="I" - type="H" - name="Hungarian; Old" /> - <iso_639_3_entry - id="oia" - scope="I" - type="L" - name="Oirata" /> - <iso_639_3_entry - id="oin" - scope="I" - type="L" - name="One; Inebu" /> - <iso_639_3_entry - id="ojb" - scope="I" - type="L" - name="Ojibwa; Northwestern" /> - <iso_639_3_entry - id="ojc" - scope="I" - type="L" - name="Ojibwa; Central" /> - <iso_639_3_entry - id="ojg" - scope="I" - type="L" - name="Ojibwa; Eastern" /> - <iso_639_3_entry - id="oji" - part1_code="oj" - part2_code="oji" - scope="M" - type="L" - name="Ojibwa" /> - <iso_639_3_entry - id="ojp" - scope="I" - type="H" - name="Japanese; Old" /> - <iso_639_3_entry - id="ojs" - scope="I" - type="L" - name="Ojibwa; Severn" /> - <iso_639_3_entry - id="ojv" - scope="I" - type="L" - name="Ontong Java" /> - <iso_639_3_entry - id="ojw" - scope="I" - type="L" - name="Ojibwa; Western" /> - <iso_639_3_entry - id="oka" - scope="I" - type="L" - name="Okanagan" /> - <iso_639_3_entry - id="okb" - scope="I" - type="L" - name="Okobo" /> - <iso_639_3_entry - id="okd" - scope="I" - type="L" - name="Okodia" /> - <iso_639_3_entry - id="oke" - scope="I" - type="L" - name="Okpe (Southwestern Edo)" /> - <iso_639_3_entry - id="okh" - scope="I" - type="L" - name="Koresh-e Rostam" /> - <iso_639_3_entry - id="oki" - scope="I" - type="L" - name="Okiek" /> - <iso_639_3_entry - id="okj" - scope="I" - type="E" - name="Oko-Juwoi" /> - <iso_639_3_entry - id="okk" - scope="I" - type="L" - name="One; Kwamtim" /> - <iso_639_3_entry - id="okl" - scope="I" - type="E" - name="Kentish Sign Language; Old" /> - <iso_639_3_entry - id="okm" - scope="I" - type="H" - name="Korean; Middle (10th-16th cent.)" /> - <iso_639_3_entry - id="okn" - scope="I" - type="L" - name="Oki-No-Erabu" /> - <iso_639_3_entry - id="oko" - scope="I" - type="H" - name="Korean; Old (3rd-9th cent.)" /> - <iso_639_3_entry - id="okr" - scope="I" - type="L" - name="Kirike" /> - <iso_639_3_entry - id="oks" - scope="I" - type="L" - name="Oko-Eni-Osayen" /> - <iso_639_3_entry - id="oku" - scope="I" - type="L" - name="Oku" /> - <iso_639_3_entry - id="okv" - scope="I" - type="L" - name="Orokaiva" /> - <iso_639_3_entry - id="okx" - scope="I" - type="L" - name="Okpe (Northwestern Edo)" /> - <iso_639_3_entry - id="ola" - scope="I" - type="L" - name="Walungge" /> - <iso_639_3_entry - id="old" - scope="I" - type="L" - name="Mochi" /> - <iso_639_3_entry - id="ole" - scope="I" - type="L" - name="Olekha" /> - <iso_639_3_entry - id="olm" - scope="I" - type="L" - name="Oloma" /> - <iso_639_3_entry - id="olo" - scope="I" - type="L" - name="Livvi" /> - <iso_639_3_entry - id="olr" - scope="I" - type="L" - name="Olrat" /> - <iso_639_3_entry - id="oma" - scope="I" - type="L" - name="Omaha-Ponca" /> - <iso_639_3_entry - id="omb" - scope="I" - type="L" - name="Ambae; East" /> - <iso_639_3_entry - id="omc" - scope="I" - type="E" - name="Mochica" /> - <iso_639_3_entry - id="ome" - scope="I" - type="E" - name="Omejes" /> - <iso_639_3_entry - id="omg" - scope="I" - type="L" - name="Omagua" /> - <iso_639_3_entry - id="omi" - scope="I" - type="L" - name="Omi" /> - <iso_639_3_entry - id="omk" - scope="I" - type="E" - name="Omok" /> - <iso_639_3_entry - id="oml" - scope="I" - type="L" - name="Ombo" /> - <iso_639_3_entry - id="omn" - scope="I" - type="A" - name="Minoan" /> - <iso_639_3_entry - id="omo" - scope="I" - type="L" - name="Utarmbung" /> - <iso_639_3_entry - id="omp" - scope="I" - type="H" - name="Manipuri; Old" /> - <iso_639_3_entry - id="omr" - scope="I" - type="H" - name="Marathi; Old" /> - <iso_639_3_entry - id="omt" - scope="I" - type="L" - name="Omotik" /> - <iso_639_3_entry - id="omu" - scope="I" - type="E" - name="Omurano" /> - <iso_639_3_entry - id="omw" - scope="I" - type="L" - name="Tairora; South" /> - <iso_639_3_entry - id="omx" - scope="I" - type="H" - name="Mon; Old" /> - <iso_639_3_entry - id="ona" - scope="I" - type="L" - name="Ona" /> - <iso_639_3_entry - id="onb" - scope="I" - type="L" - name="Lingao" /> - <iso_639_3_entry - id="one" - scope="I" - type="L" - name="Oneida" /> - <iso_639_3_entry - id="ong" - scope="I" - type="L" - name="Olo" /> - <iso_639_3_entry - id="oni" - scope="I" - type="L" - name="Onin" /> - <iso_639_3_entry - id="onj" - scope="I" - type="L" - name="Onjob" /> - <iso_639_3_entry - id="onk" - scope="I" - type="L" - name="One; Kabore" /> - <iso_639_3_entry - id="onn" - scope="I" - type="L" - name="Onobasulu" /> - <iso_639_3_entry - id="ono" - scope="I" - type="L" - name="Onondaga" /> - <iso_639_3_entry - id="onp" - scope="I" - type="L" - name="Sartang" /> - <iso_639_3_entry - id="onr" - scope="I" - type="L" - name="One; Northern" /> - <iso_639_3_entry - id="ons" - scope="I" - type="L" - name="Ono" /> - <iso_639_3_entry - id="ont" - scope="I" - type="L" - name="Ontenu" /> - <iso_639_3_entry - id="onu" - scope="I" - type="L" - name="Unua" /> - <iso_639_3_entry - id="onw" - scope="I" - type="H" - name="Nubian; Old" /> - <iso_639_3_entry - id="onx" - scope="I" - type="L" - name="Onin Based Pidgin" /> - <iso_639_3_entry - id="ood" - scope="I" - type="L" - name="Tohono O'odham" /> - <iso_639_3_entry - id="oog" - scope="I" - type="L" - name="Ong" /> - <iso_639_3_entry - id="oon" - scope="I" - type="L" - name="Önge" /> - <iso_639_3_entry - id="oor" - scope="I" - type="L" - name="Oorlams" /> - <iso_639_3_entry - id="oos" - scope="I" - type="A" - name="Ossetic; Old" /> - <iso_639_3_entry - id="opa" - scope="I" - type="L" - name="Okpamheri" /> - <iso_639_3_entry - id="opk" - scope="I" - type="L" - name="Kopkaka" /> - <iso_639_3_entry - id="opm" - scope="I" - type="L" - name="Oksapmin" /> - <iso_639_3_entry - id="opo" - scope="I" - type="L" - name="Opao" /> - <iso_639_3_entry - id="opt" - scope="I" - type="E" - name="Opata" /> - <iso_639_3_entry - id="opy" - scope="I" - type="L" - name="Ofayé" /> - <iso_639_3_entry - id="ora" - scope="I" - type="L" - name="Oroha" /> - <iso_639_3_entry - id="orc" - scope="I" - type="L" - name="Orma" /> - <iso_639_3_entry - id="ore" - scope="I" - type="L" - name="Orejón" /> - <iso_639_3_entry - id="org" - scope="I" - type="L" - name="Oring" /> - <iso_639_3_entry - id="orh" - scope="I" - type="L" - name="Oroqen" /> - <iso_639_3_entry - id="ori" - part1_code="or" - part2_code="ori" - scope="I" - type="L" - name="Oriya" /> - <iso_639_3_entry - id="orm" - part1_code="om" - part2_code="orm" - scope="M" - type="L" - name="Oromo" /> - <iso_639_3_entry - id="orn" - scope="I" - type="L" - name="Orang Kanaq" /> - <iso_639_3_entry - id="oro" - scope="I" - type="L" - name="Orokolo" /> - <iso_639_3_entry - id="orr" - scope="I" - type="L" - name="Oruma" /> - <iso_639_3_entry - id="ors" - scope="I" - type="L" - name="Orang Seletar" /> - <iso_639_3_entry - id="ort" - scope="I" - type="L" - name="Oriya; Adivasi" /> - <iso_639_3_entry - id="oru" - scope="I" - type="L" - name="Ormuri" /> - <iso_639_3_entry - id="orv" - scope="I" - type="H" - name="Russian; Old" /> - <iso_639_3_entry - id="orw" - scope="I" - type="L" - name="Oro Win" /> - <iso_639_3_entry - id="orx" - scope="I" - type="L" - name="Oro" /> - <iso_639_3_entry - id="orz" - scope="I" - type="L" - name="Ormu" /> - <iso_639_3_entry - id="osa" - part2_code="osa" - scope="I" - type="L" - name="Osage" /> - <iso_639_3_entry - id="osc" - scope="I" - type="A" - name="Oscan" /> - <iso_639_3_entry - id="osi" - scope="I" - type="L" - name="Osing" /> - <iso_639_3_entry - id="oso" - scope="I" - type="L" - name="Ososo" /> - <iso_639_3_entry - id="osp" - scope="I" - type="H" - name="Spanish; Old" /> - <iso_639_3_entry - id="oss" - part1_code="os" - part2_code="oss" - scope="I" - type="L" - name="Ossetian" /> - <iso_639_3_entry - id="ost" - scope="I" - type="L" - name="Osatu" /> - <iso_639_3_entry - id="osu" - scope="I" - type="L" - name="One; Southern" /> - <iso_639_3_entry - id="osx" - scope="I" - type="H" - name="Saxon; Old" /> - <iso_639_3_entry - id="ota" - part2_code="ota" - scope="I" - type="H" - name="Turkish; Ottoman (1500-1928)" /> - <iso_639_3_entry - id="otb" - scope="I" - type="H" - name="Tibetan; Old" /> - <iso_639_3_entry - id="otd" - scope="I" - type="L" - name="Ot Danum" /> - <iso_639_3_entry - id="ote" - scope="I" - type="L" - name="Otomi; Mezquital" /> - <iso_639_3_entry - id="oti" - scope="I" - type="E" - name="Oti" /> - <iso_639_3_entry - id="otk" - scope="I" - type="H" - name="Turkish; Old" /> - <iso_639_3_entry - id="otl" - scope="I" - type="L" - name="Otomi; Tilapa" /> - <iso_639_3_entry - id="otm" - scope="I" - type="L" - name="Otomi; Eastern Highland" /> - <iso_639_3_entry - id="otn" - scope="I" - type="L" - name="Otomi; Tenango" /> - <iso_639_3_entry - id="otq" - scope="I" - type="L" - name="Otomi; Querétaro" /> - <iso_639_3_entry - id="otr" - scope="I" - type="L" - name="Otoro" /> - <iso_639_3_entry - id="ots" - scope="I" - type="L" - name="Otomi; Estado de México" /> - <iso_639_3_entry - id="ott" - scope="I" - type="L" - name="Otomi; Temoaya" /> - <iso_639_3_entry - id="otu" - scope="I" - type="E" - name="Otuke" /> - <iso_639_3_entry - id="otw" - scope="I" - type="L" - name="Ottawa" /> - <iso_639_3_entry - id="otx" - scope="I" - type="L" - name="Otomi; Texcatepec" /> - <iso_639_3_entry - id="oty" - scope="I" - type="A" - name="Tamil; Old" /> - <iso_639_3_entry - id="otz" - scope="I" - type="L" - name="Otomi; Ixtenco" /> - <iso_639_3_entry - id="oua" - scope="I" - type="L" - name="Tagargrent" /> - <iso_639_3_entry - id="oub" - scope="I" - type="L" - name="Glio-Oubi" /> - <iso_639_3_entry - id="oue" - scope="I" - type="L" - name="Oune" /> - <iso_639_3_entry - id="oui" - scope="I" - type="H" - name="Uighur; Old" /> - <iso_639_3_entry - id="oum" - scope="I" - type="E" - name="Ouma" /> - <iso_639_3_entry - id="oun" - scope="I" - type="L" - name="!O!ung" /> - <iso_639_3_entry - id="owi" - scope="I" - type="L" - name="Owiniga" /> - <iso_639_3_entry - id="owl" - scope="I" - type="H" - name="Welsh; Old" /> - <iso_639_3_entry - id="oyb" - scope="I" - type="L" - name="Oy" /> - <iso_639_3_entry - id="oyd" - scope="I" - type="L" - name="Oyda" /> - <iso_639_3_entry - id="oym" - scope="I" - type="L" - name="Wayampi" /> - <iso_639_3_entry - id="oyy" - scope="I" - type="L" - name="Oya'oya" /> - <iso_639_3_entry - id="ozm" - scope="I" - type="L" - name="Koonzime" /> - <iso_639_3_entry - id="pab" - scope="I" - type="L" - name="Parecís" /> - <iso_639_3_entry - id="pac" - scope="I" - type="L" - name="Pacoh" /> - <iso_639_3_entry - id="pad" - scope="I" - type="L" - name="Paumarí" /> - <iso_639_3_entry - id="pae" - scope="I" - type="L" - name="Pagibete" /> - <iso_639_3_entry - id="paf" - scope="I" - type="E" - name="Paranawát" /> - <iso_639_3_entry - id="pag" - part2_code="pag" - scope="I" - type="L" - name="Pangasinan" /> - <iso_639_3_entry - id="pah" - scope="I" - type="L" - name="Tenharim" /> - <iso_639_3_entry - id="pai" - scope="I" - type="L" - name="Pe" /> - <iso_639_3_entry - id="pak" - scope="I" - type="L" - name="Parakanã" /> - <iso_639_3_entry - id="pal" - part2_code="pal" - scope="I" - type="A" - name="Pahlavi" /> - <iso_639_3_entry - id="pam" - part2_code="pam" - scope="I" - type="L" - name="Pampanga" /> - <iso_639_3_entry - id="pan" - part1_code="pa" - part2_code="pan" - scope="I" - type="L" - name="Panjabi" /> - <iso_639_3_entry - id="pao" - scope="I" - type="L" - name="Paiute; Northern" /> - <iso_639_3_entry - id="pap" - part2_code="pap" - scope="I" - type="L" - name="Papiamento" /> - <iso_639_3_entry - id="paq" - scope="I" - type="L" - name="Parya" /> - <iso_639_3_entry - id="par" - scope="I" - type="L" - name="Panamint" /> - <iso_639_3_entry - id="pas" - scope="I" - type="L" - name="Papasena" /> - <iso_639_3_entry - id="pat" - scope="I" - type="L" - name="Papitalai" /> - <iso_639_3_entry - id="pau" - part2_code="pau" - scope="I" - type="L" - name="Palauan" /> - <iso_639_3_entry - id="pav" - scope="I" - type="L" - name="Pakaásnovos" /> - <iso_639_3_entry - id="paw" - scope="I" - type="L" - name="Pawnee" /> - <iso_639_3_entry - id="pax" - scope="I" - type="E" - name="Pankararé" /> - <iso_639_3_entry - id="pay" - scope="I" - type="L" - name="Pech" /> - <iso_639_3_entry - id="paz" - scope="I" - type="E" - name="Pankararú" /> - <iso_639_3_entry - id="pbb" - scope="I" - type="L" - name="Páez" /> - <iso_639_3_entry - id="pbc" - scope="I" - type="L" - name="Patamona" /> - <iso_639_3_entry - id="pbe" - scope="I" - type="L" - name="Popoloca; Mezontla" /> - <iso_639_3_entry - id="pbf" - scope="I" - type="L" - name="Popoloca; Coyotepec" /> - <iso_639_3_entry - id="pbg" - scope="I" - type="E" - name="Paraujano" /> - <iso_639_3_entry - id="pbh" - scope="I" - type="L" - name="E'ñapa Woromaipu" /> - <iso_639_3_entry - id="pbi" - scope="I" - type="L" - name="Parkwa" /> - <iso_639_3_entry - id="pbl" - scope="I" - type="L" - name="Mak (Nigeria)" /> - <iso_639_3_entry - id="pbn" - scope="I" - type="L" - name="Kpasam" /> - <iso_639_3_entry - id="pbo" - scope="I" - type="L" - name="Papel" /> - <iso_639_3_entry - id="pbp" - scope="I" - type="L" - name="Badyara" /> - <iso_639_3_entry - id="pbr" - scope="I" - type="L" - name="Pangwa" /> - <iso_639_3_entry - id="pbs" - scope="I" - type="L" - name="Pame; Central" /> - <iso_639_3_entry - id="pbt" - scope="I" - type="L" - name="Pashto; Southern" /> - <iso_639_3_entry - id="pbu" - scope="I" - type="L" - name="Pashto; Northern" /> - <iso_639_3_entry - id="pbv" - scope="I" - type="L" - name="Pnar" /> - <iso_639_3_entry - id="pby" - scope="I" - type="L" - name="Pyu" /> - <iso_639_3_entry - id="pbz" - scope="I" - type="L" - name="Palu" /> - <iso_639_3_entry - id="pca" - scope="I" - type="L" - name="Popoloca; Santa Inés Ahuatempan" /> - <iso_639_3_entry - id="pcb" - scope="I" - type="L" - name="Pear" /> - <iso_639_3_entry - id="pcc" - scope="I" - type="L" - name="Bouyei" /> - <iso_639_3_entry - id="pcd" - scope="I" - type="L" - name="Picard" /> - <iso_639_3_entry - id="pce" - scope="I" - type="L" - name="Palaung; Ruching" /> - <iso_639_3_entry - id="pcf" - scope="I" - type="L" - name="Paliyan" /> - <iso_639_3_entry - id="pcg" - scope="I" - type="L" - name="Paniya" /> - <iso_639_3_entry - id="pch" - scope="I" - type="L" - name="Pardhan" /> - <iso_639_3_entry - id="pci" - scope="I" - type="L" - name="Duruwa" /> - <iso_639_3_entry - id="pcj" - scope="I" - type="L" - name="Parenga" /> - <iso_639_3_entry - id="pck" - scope="I" - type="L" - name="Chin; Paite" /> - <iso_639_3_entry - id="pcl" - scope="I" - type="L" - name="Pardhi" /> - <iso_639_3_entry - id="pcm" - scope="I" - type="L" - name="Pidgin; Nigerian" /> - <iso_639_3_entry - id="pcn" - scope="I" - type="L" - name="Piti" /> - <iso_639_3_entry - id="pcp" - scope="I" - type="L" - name="Pacahuara" /> - <iso_639_3_entry - id="pcr" - scope="I" - type="L" - name="Panang" /> - <iso_639_3_entry - id="pcw" - scope="I" - type="L" - name="Pyapun" /> - <iso_639_3_entry - id="pda" - scope="I" - type="L" - name="Anam" /> - <iso_639_3_entry - id="pdc" - scope="I" - type="L" - name="German; Pennsylvania" /> - <iso_639_3_entry - id="pdi" - scope="I" - type="L" - name="Pa Di" /> - <iso_639_3_entry - id="pdn" - scope="I" - type="L" - name="Podena" /> - <iso_639_3_entry - id="pdo" - scope="I" - type="L" - name="Padoe" /> - <iso_639_3_entry - id="pdt" - scope="I" - type="L" - name="Plautdietsch" /> - <iso_639_3_entry - id="pdu" - scope="I" - type="L" - name="Kayan" /> - <iso_639_3_entry - id="pea" - scope="I" - type="L" - name="Indonesian; Peranakan" /> - <iso_639_3_entry - id="peb" - scope="I" - type="E" - name="Pomo; Eastern" /> - <iso_639_3_entry - id="ped" - scope="I" - type="L" - name="Mala (Papua New Guinea)" /> - <iso_639_3_entry - id="pee" - scope="I" - type="L" - name="Taje" /> - <iso_639_3_entry - id="pef" - scope="I" - type="E" - name="Pomo; Northeastern" /> - <iso_639_3_entry - id="peg" - scope="I" - type="L" - name="Pengo" /> - <iso_639_3_entry - id="peh" - scope="I" - type="L" - name="Bonan" /> - <iso_639_3_entry - id="pei" - scope="I" - type="L" - name="Chichimeca-Jonaz" /> - <iso_639_3_entry - id="pej" - scope="I" - type="E" - name="Pomo; Northern" /> - <iso_639_3_entry - id="pek" - scope="I" - type="L" - name="Penchal" /> - <iso_639_3_entry - id="pel" - scope="I" - type="L" - name="Pekal" /> - <iso_639_3_entry - id="pem" - scope="I" - type="L" - name="Phende" /> - <iso_639_3_entry - id="peo" - part2_code="peo" - scope="I" - type="H" - name="Persian; Old (ca. 600-400 B.C.)" /> - <iso_639_3_entry - id="pep" - scope="I" - type="L" - name="Kunja" /> - <iso_639_3_entry - id="peq" - scope="I" - type="L" - name="Pomo; Southern" /> - <iso_639_3_entry - id="pes" - scope="I" - type="L" - name="Persian; Iranian" /> - <iso_639_3_entry - id="pev" - scope="I" - type="L" - name="Pémono" /> - <iso_639_3_entry - id="pex" - scope="I" - type="L" - name="Petats" /> - <iso_639_3_entry - id="pey" - scope="I" - type="L" - name="Petjo" /> - <iso_639_3_entry - id="pez" - scope="I" - type="L" - name="Penan; Eastern" /> - <iso_639_3_entry - id="pfa" - scope="I" - type="L" - name="Pááfang" /> - <iso_639_3_entry - id="pfe" - scope="I" - type="L" - name="Peere" /> - <iso_639_3_entry - id="pfl" - scope="I" - type="L" - name="Pfaelzisch" /> - <iso_639_3_entry - id="pga" - scope="I" - type="L" - name="Creole Arabic; Sudanese" /> - <iso_639_3_entry - id="pgg" - scope="I" - type="L" - name="Pangwali" /> - <iso_639_3_entry - id="pgi" - scope="I" - type="L" - name="Pagi" /> - <iso_639_3_entry - id="pgk" - scope="I" - type="L" - name="Rerep" /> - <iso_639_3_entry - id="pgl" - scope="I" - type="A" - name="Irish; Primitive" /> - <iso_639_3_entry - id="pgn" - scope="I" - type="A" - name="Paelignian" /> - <iso_639_3_entry - id="pgs" - scope="I" - type="L" - name="Pangseng" /> - <iso_639_3_entry - id="pgu" - scope="I" - type="L" - name="Pagu" /> - <iso_639_3_entry - id="pgy" - scope="I" - type="L" - name="Pongyong" /> - <iso_639_3_entry - id="pha" - scope="I" - type="L" - name="Pa-Hng" /> - <iso_639_3_entry - id="phd" - scope="I" - type="L" - name="Phudagi" /> - <iso_639_3_entry - id="phg" - scope="I" - type="L" - name="Phuong" /> - <iso_639_3_entry - id="phh" - scope="I" - type="L" - name="Phukha" /> - <iso_639_3_entry - id="phk" - scope="I" - type="L" - name="Phake" /> - <iso_639_3_entry - id="phl" - scope="I" - type="L" - name="Phalura" /> - <iso_639_3_entry - id="phm" - scope="I" - type="L" - name="Phimbi" /> - <iso_639_3_entry - id="phn" - part2_code="phn" - scope="I" - type="A" - name="Phoenician" /> - <iso_639_3_entry - id="pho" - scope="I" - type="L" - name="Phunoi" /> - <iso_639_3_entry - id="phq" - scope="I" - type="L" - name="Phana'" /> - <iso_639_3_entry - id="phr" - scope="I" - type="L" - name="Pahari-Potwari" /> - <iso_639_3_entry - id="pht" - scope="I" - type="L" - name="Phu Thai" /> - <iso_639_3_entry - id="phu" - scope="I" - type="L" - name="Phuan" /> - <iso_639_3_entry - id="phv" - scope="I" - type="L" - name="Pahlavani" /> - <iso_639_3_entry - id="phw" - scope="I" - type="L" - name="Phangduwali" /> - <iso_639_3_entry - id="pia" - scope="I" - type="L" - name="Pima Bajo" /> - <iso_639_3_entry - id="pib" - scope="I" - type="L" - name="Yine" /> - <iso_639_3_entry - id="pic" - scope="I" - type="L" - name="Pinji" /> - <iso_639_3_entry - id="pid" - scope="I" - type="L" - name="Piaroa" /> - <iso_639_3_entry - id="pie" - scope="I" - type="E" - name="Piro" /> - <iso_639_3_entry - id="pif" - scope="I" - type="L" - name="Pingelapese" /> - <iso_639_3_entry - id="pig" - scope="I" - type="L" - name="Pisabo" /> - <iso_639_3_entry - id="pih" - scope="I" - type="L" - name="Pitcairn-Norfolk" /> - <iso_639_3_entry - id="pii" - scope="I" - type="L" - name="Pini" /> - <iso_639_3_entry - id="pij" - scope="I" - type="E" - name="Pijao" /> - <iso_639_3_entry - id="pil" - scope="I" - type="L" - name="Yom" /> - <iso_639_3_entry - id="pim" - scope="I" - type="E" - name="Powhatan" /> - <iso_639_3_entry - id="pin" - scope="I" - type="L" - name="Piame" /> - <iso_639_3_entry - id="pio" - scope="I" - type="L" - name="Piapoco" /> - <iso_639_3_entry - id="pip" - scope="I" - type="L" - name="Pero" /> - <iso_639_3_entry - id="pir" - scope="I" - type="L" - name="Piratapuyo" /> - <iso_639_3_entry - id="pis" - scope="I" - type="L" - name="Pijin" /> - <iso_639_3_entry - id="pit" - scope="I" - type="E" - name="Pitta Pitta" /> - <iso_639_3_entry - id="piu" - scope="I" - type="L" - name="Pintupi-Luritja" /> - <iso_639_3_entry - id="piv" - scope="I" - type="L" - name="Pileni" /> - <iso_639_3_entry - id="piw" - scope="I" - type="L" - name="Pimbwe" /> - <iso_639_3_entry - id="pix" - scope="I" - type="L" - name="Piu" /> - <iso_639_3_entry - id="piy" - scope="I" - type="L" - name="Piya-Kwonci" /> - <iso_639_3_entry - id="piz" - scope="I" - type="L" - name="Pije" /> - <iso_639_3_entry - id="pjt" - scope="I" - type="L" - name="Pitjantjatjara" /> - <iso_639_3_entry - id="pka" - scope="I" - type="H" - name="Prākrit; Ardhamāgadhī" /> - <iso_639_3_entry - id="pkb" - scope="I" - type="L" - name="Pokomo" /> - <iso_639_3_entry - id="pkc" - scope="I" - type="E" - name="Paekche" /> - <iso_639_3_entry - id="pkg" - scope="I" - type="L" - name="Pak-Tong" /> - <iso_639_3_entry - id="pkh" - scope="I" - type="L" - name="Pankhu" /> - <iso_639_3_entry - id="pkn" - scope="I" - type="L" - name="Pakanha" /> - <iso_639_3_entry - id="pko" - scope="I" - type="L" - name="Pökoot" /> - <iso_639_3_entry - id="pkp" - scope="I" - type="L" - name="Pukapuka" /> - <iso_639_3_entry - id="pkr" - scope="I" - type="L" - name="Kurumba; Attapady" /> - <iso_639_3_entry - id="pks" - scope="I" - type="L" - name="Pakistan Sign Language" /> - <iso_639_3_entry - id="pkt" - scope="I" - type="L" - name="Maleng" /> - <iso_639_3_entry - id="pku" - scope="I" - type="L" - name="Paku" /> - <iso_639_3_entry - id="pla" - scope="I" - type="L" - name="Miani" /> - <iso_639_3_entry - id="plb" - scope="I" - type="L" - name="Polonombauk" /> - <iso_639_3_entry - id="plc" - scope="I" - type="L" - name="Palawano; Central" /> - <iso_639_3_entry - id="pld" - scope="I" - type="L" - name="Polari" /> - <iso_639_3_entry - id="ple" - scope="I" - type="L" - name="Palu'e" /> - <iso_639_3_entry - id="plg" - scope="I" - type="L" - name="Pilagá" /> - <iso_639_3_entry - id="plh" - scope="I" - type="L" - name="Paulohi" /> - <iso_639_3_entry - id="pli" - part1_code="pi" - part2_code="pli" - scope="I" - type="A" - name="Pali" /> - <iso_639_3_entry - id="plj" - scope="I" - type="L" - name="Polci" /> - <iso_639_3_entry - id="plk" - scope="I" - type="L" - name="Shina; Kohistani" /> - <iso_639_3_entry - id="pll" - scope="I" - type="L" - name="Palaung; Shwe" /> - <iso_639_3_entry - id="pln" - scope="I" - type="L" - name="Palenquero" /> - <iso_639_3_entry - id="plo" - scope="I" - type="L" - name="Popoluca; Oluta" /> - <iso_639_3_entry - id="plp" - scope="I" - type="L" - name="Palpa" /> - <iso_639_3_entry - id="plq" - scope="I" - type="A" - name="Palaic" /> - <iso_639_3_entry - id="plr" - scope="I" - type="L" - name="Senoufo; Palaka" /> - <iso_639_3_entry - id="pls" - scope="I" - type="L" - name="Popoloca; San Marcos Tlalcoyalco" /> - <iso_639_3_entry - id="plt" - scope="I" - type="L" - name="Malagasy; Plateau" /> - <iso_639_3_entry - id="plu" - scope="I" - type="L" - name="Palikúr" /> - <iso_639_3_entry - id="plv" - scope="I" - type="L" - name="Palawano; Southwest" /> - <iso_639_3_entry - id="plw" - scope="I" - type="L" - name="Palawano; Brooke's Point" /> - <iso_639_3_entry - id="ply" - scope="I" - type="L" - name="Bolyu" /> - <iso_639_3_entry - id="plz" - scope="I" - type="L" - name="Paluan" /> - <iso_639_3_entry - id="pma" - scope="I" - type="L" - name="Paama" /> - <iso_639_3_entry - id="pmb" - scope="I" - type="L" - name="Pambia" /> - <iso_639_3_entry - id="pmc" - scope="I" - type="E" - name="Palumata" /> - <iso_639_3_entry - id="pme" - scope="I" - type="L" - name="Pwaamei" /> - <iso_639_3_entry - id="pmf" - scope="I" - type="L" - name="Pamona" /> - <iso_639_3_entry - id="pmh" - scope="I" - type="H" - name="Prākrit; Māhārāṣṭri" /> - <iso_639_3_entry - id="pmi" - scope="I" - type="L" - name="Pumi; Northern" /> - <iso_639_3_entry - id="pmj" - scope="I" - type="L" - name="Pumi; Southern" /> - <iso_639_3_entry - id="pmk" - scope="I" - type="E" - name="Pamlico" /> - <iso_639_3_entry - id="pml" - scope="I" - type="E" - name="Lingua Franca" /> - <iso_639_3_entry - id="pmm" - scope="I" - type="L" - name="Pomo" /> - <iso_639_3_entry - id="pmn" - scope="I" - type="L" - name="Pam" /> - <iso_639_3_entry - id="pmo" - scope="I" - type="L" - name="Pom" /> - <iso_639_3_entry - id="pmq" - scope="I" - type="L" - name="Pame; Northern" /> - <iso_639_3_entry - id="pmr" - scope="I" - type="L" - name="Paynamar" /> - <iso_639_3_entry - id="pms" - scope="I" - type="L" - name="Piemontese" /> - <iso_639_3_entry - id="pmt" - scope="I" - type="L" - name="Tuamotuan" /> - <iso_639_3_entry - id="pmu" - scope="I" - type="L" - name="Panjabi; Mirpur" /> - <iso_639_3_entry - id="pmw" - scope="I" - type="L" - name="Miwok; Plains" /> - <iso_639_3_entry - id="pmx" - scope="I" - type="L" - name="Naga; Poumei" /> - <iso_639_3_entry - id="pmy" - scope="I" - type="L" - name="Malay; Papuan" /> - <iso_639_3_entry - id="pmz" - scope="I" - type="E" - name="Pame; Southern" /> - <iso_639_3_entry - id="pna" - scope="I" - type="L" - name="Punan Bah-Biau" /> - <iso_639_3_entry - id="pnb" - scope="I" - type="L" - name="Panjabi; Western" /> - <iso_639_3_entry - id="pnc" - scope="I" - type="L" - name="Pannei" /> - <iso_639_3_entry - id="pne" - scope="I" - type="L" - name="Penan; Western" /> - <iso_639_3_entry - id="png" - scope="I" - type="L" - name="Pongu" /> - <iso_639_3_entry - id="pnh" - scope="I" - type="L" - name="Penrhyn" /> - <iso_639_3_entry - id="pni" - scope="I" - type="L" - name="Aoheng" /> - <iso_639_3_entry - id="pnm" - scope="I" - type="L" - name="Punan Batu 1" /> - <iso_639_3_entry - id="pnn" - scope="I" - type="L" - name="Pinai-Hagahai" /> - <iso_639_3_entry - id="pno" - scope="I" - type="E" - name="Panobo" /> - <iso_639_3_entry - id="pnp" - scope="I" - type="L" - name="Pancana" /> - <iso_639_3_entry - id="pnq" - scope="I" - type="L" - name="Pana (Burkina Faso)" /> - <iso_639_3_entry - id="pnr" - scope="I" - type="L" - name="Panim" /> - <iso_639_3_entry - id="pns" - scope="I" - type="L" - name="Ponosakan" /> - <iso_639_3_entry - id="pnt" - scope="I" - type="L" - name="Pontic" /> - <iso_639_3_entry - id="pnu" - scope="I" - type="L" - name="Bunu; Jiongnai" /> - <iso_639_3_entry - id="pnv" - scope="I" - type="L" - name="Pinigura" /> - <iso_639_3_entry - id="pnw" - scope="I" - type="L" - name="Panytyima" /> - <iso_639_3_entry - id="pnx" - scope="I" - type="L" - name="Phong-Kniang" /> - <iso_639_3_entry - id="pny" - scope="I" - type="L" - name="Pinyin" /> - <iso_639_3_entry - id="pnz" - scope="I" - type="L" - name="Pana (Central African Republic)" /> - <iso_639_3_entry - id="poc" - scope="I" - type="L" - name="Poqomam" /> - <iso_639_3_entry - id="pod" - scope="I" - type="E" - name="Ponares" /> - <iso_639_3_entry - id="poe" - scope="I" - type="L" - name="Popoloca; San Juan Atzingo" /> - <iso_639_3_entry - id="pof" - scope="I" - type="L" - name="Poke" /> - <iso_639_3_entry - id="pog" - scope="I" - type="E" - name="Potiguára" /> - <iso_639_3_entry - id="poh" - scope="I" - type="L" - name="Poqomchi'" /> - <iso_639_3_entry - id="poi" - scope="I" - type="L" - name="Popoluca; Highland" /> - <iso_639_3_entry - id="pok" - scope="I" - type="L" - name="Pokangá" /> - <iso_639_3_entry - id="pol" - part1_code="pl" - part2_code="pol" - scope="I" - type="L" - name="Polish" /> - <iso_639_3_entry - id="pom" - scope="I" - type="L" - name="Pomo; Southeastern" /> - <iso_639_3_entry - id="pon" - part2_code="pon" - scope="I" - type="L" - name="Pohnpeian" /> - <iso_639_3_entry - id="poo" - scope="I" - type="L" - name="Pomo; Central" /> - <iso_639_3_entry - id="pop" - scope="I" - type="L" - name="Pwapwa" /> - <iso_639_3_entry - id="poq" - scope="I" - type="L" - name="Popoluca; Texistepec" /> - <iso_639_3_entry - id="por" - part1_code="pt" - part2_code="por" - scope="I" - type="L" - name="Portuguese" /> - <iso_639_3_entry - id="pos" - scope="I" - type="L" - name="Popoluca; Sayula" /> - <iso_639_3_entry - id="pot" - scope="I" - type="L" - name="Potawatomi" /> - <iso_639_3_entry - id="pov" - scope="I" - type="L" - name="Crioulo; Upper Guinea" /> - <iso_639_3_entry - id="pow" - scope="I" - type="L" - name="Popoloca; San Felipe Otlaltepec" /> - <iso_639_3_entry - id="pox" - scope="I" - type="E" - name="Polabian" /> - <iso_639_3_entry - id="poy" - scope="I" - type="L" - name="Pogolo" /> - <iso_639_3_entry - id="ppa" - scope="I" - type="L" - name="Pao" /> - <iso_639_3_entry - id="ppe" - scope="I" - type="L" - name="Papi" /> - <iso_639_3_entry - id="ppi" - scope="I" - type="L" - name="Paipai" /> - <iso_639_3_entry - id="ppk" - scope="I" - type="L" - name="Uma" /> - <iso_639_3_entry - id="ppl" - scope="I" - type="L" - name="Pipil" /> - <iso_639_3_entry - id="ppm" - scope="I" - type="L" - name="Papuma" /> - <iso_639_3_entry - id="ppn" - scope="I" - type="L" - name="Papapana" /> - <iso_639_3_entry - id="ppo" - scope="I" - type="L" - name="Folopa" /> - <iso_639_3_entry - id="ppp" - scope="I" - type="L" - name="Pelende" /> - <iso_639_3_entry - id="ppq" - scope="I" - type="L" - name="Pei" /> - <iso_639_3_entry - id="ppr" - scope="I" - type="L" - name="Piru" /> - <iso_639_3_entry - id="pps" - scope="I" - type="L" - name="Popoloca; San Luís Temalacayuca" /> - <iso_639_3_entry - id="ppt" - scope="I" - type="L" - name="Pare" /> - <iso_639_3_entry - id="ppu" - scope="I" - type="E" - name="Papora" /> - <iso_639_3_entry - id="pqa" - scope="I" - type="L" - name="Pa'a" /> - <iso_639_3_entry - id="pqm" - scope="I" - type="L" - name="Malecite-Passamaquoddy" /> - <iso_639_3_entry - id="prb" - scope="I" - type="L" - name="Lua'" /> - <iso_639_3_entry - id="prc" - scope="I" - type="L" - name="Parachi" /> - <iso_639_3_entry - id="prd" - scope="I" - type="L" - name="Parsi-Dari" /> - <iso_639_3_entry - id="pre" - scope="I" - type="L" - name="Principense" /> - <iso_639_3_entry - id="prf" - scope="I" - type="L" - name="Paranan" /> - <iso_639_3_entry - id="prg" - scope="I" - type="L" - name="Prussian" /> - <iso_639_3_entry - id="prh" - scope="I" - type="L" - name="Porohanon" /> - <iso_639_3_entry - id="pri" - scope="I" - type="L" - name="Paicî" /> - <iso_639_3_entry - id="prk" - scope="I" - type="L" - name="Parauk" /> - <iso_639_3_entry - id="prl" - scope="I" - type="L" - name="Peruvian Sign Language" /> - <iso_639_3_entry - id="prm" - scope="I" - type="L" - name="Kibiri" /> - <iso_639_3_entry - id="prn" - scope="I" - type="L" - name="Prasuni" /> - <iso_639_3_entry - id="pro" - part2_code="pro" - scope="I" - type="H" - name="Provençal; Old (to 1500)" /> - <iso_639_3_entry - id="prp" - scope="I" - type="L" - name="Parsi" /> - <iso_639_3_entry - id="prq" - scope="I" - type="L" - name="Ashéninka Perené" /> - <iso_639_3_entry - id="prr" - scope="I" - type="E" - name="Puri" /> - <iso_639_3_entry - id="prs" - scope="I" - type="L" - name="Persian; Afghan" /> - <iso_639_3_entry - id="prt" - scope="I" - type="L" - name="Phai" /> - <iso_639_3_entry - id="pru" - scope="I" - type="L" - name="Puragi" /> - <iso_639_3_entry - id="prw" - scope="I" - type="L" - name="Parawen" /> - <iso_639_3_entry - id="prx" - scope="I" - type="L" - name="Purik" /> - <iso_639_3_entry - id="pry" - scope="I" - type="L" - name="Pray 3" /> - <iso_639_3_entry - id="prz" - scope="I" - type="L" - name="Providencia Sign Language" /> - <iso_639_3_entry - id="psa" - scope="I" - type="L" - name="Awyu; Asue" /> - <iso_639_3_entry - id="psc" - scope="I" - type="L" - name="Persian Sign Language" /> - <iso_639_3_entry - id="psd" - scope="I" - type="L" - name="Plains Indian Sign Language" /> - <iso_639_3_entry - id="pse" - scope="I" - type="L" - name="Malay; Central" /> - <iso_639_3_entry - id="psg" - scope="I" - type="L" - name="Penang Sign Language" /> - <iso_639_3_entry - id="psh" - scope="I" - type="L" - name="Pashayi; Southwest" /> - <iso_639_3_entry - id="psi" - scope="I" - type="L" - name="Pashayi; Southeast" /> - <iso_639_3_entry - id="psl" - scope="I" - type="L" - name="Puerto Rican Sign Language" /> - <iso_639_3_entry - id="psm" - scope="I" - type="E" - name="Pauserna" /> - <iso_639_3_entry - id="psn" - scope="I" - type="L" - name="Panasuan" /> - <iso_639_3_entry - id="pso" - scope="I" - type="L" - name="Polish Sign Language" /> - <iso_639_3_entry - id="psp" - scope="I" - type="L" - name="Philippine Sign Language" /> - <iso_639_3_entry - id="psq" - scope="I" - type="L" - name="Pasi" /> - <iso_639_3_entry - id="psr" - scope="I" - type="L" - name="Portuguese Sign Language" /> - <iso_639_3_entry - id="pss" - scope="I" - type="L" - name="Kaulong" /> - <iso_639_3_entry - id="pst" - scope="I" - type="L" - name="Pashto; Central" /> - <iso_639_3_entry - id="psu" - scope="I" - type="H" - name="Prākrit; Sauraseni" /> - <iso_639_3_entry - id="psw" - scope="I" - type="L" - name="Port Sandwich" /> - <iso_639_3_entry - id="psy" - scope="I" - type="E" - name="Piscataway" /> - <iso_639_3_entry - id="pta" - scope="I" - type="L" - name="Pai Tavytera" /> - <iso_639_3_entry - id="pth" - scope="I" - type="E" - name="Pataxó Hã-Ha-Hãe" /> - <iso_639_3_entry - id="pti" - scope="I" - type="L" - name="Pintiini" /> - <iso_639_3_entry - id="ptn" - scope="I" - type="L" - name="Patani" /> - <iso_639_3_entry - id="pto" - scope="I" - type="L" - name="Zo'é" /> - <iso_639_3_entry - id="ptp" - scope="I" - type="L" - name="Patep" /> - <iso_639_3_entry - id="ptr" - scope="I" - type="L" - name="Piamatsina" /> - <iso_639_3_entry - id="ptt" - scope="I" - type="L" - name="Enrekang" /> - <iso_639_3_entry - id="ptu" - scope="I" - type="L" - name="Bambam" /> - <iso_639_3_entry - id="ptv" - scope="I" - type="L" - name="Port Vato" /> - <iso_639_3_entry - id="ptw" - scope="I" - type="E" - name="Pentlatch" /> - <iso_639_3_entry - id="pty" - scope="I" - type="L" - name="Pathiya" /> - <iso_639_3_entry - id="pua" - scope="I" - type="L" - name="Purepecha; Western Highland" /> - <iso_639_3_entry - id="pub" - scope="I" - type="L" - name="Purum" /> - <iso_639_3_entry - id="puc" - scope="I" - type="L" - name="Punan Merap" /> - <iso_639_3_entry - id="pud" - scope="I" - type="L" - name="Punan Aput" /> - <iso_639_3_entry - id="pue" - scope="I" - type="L" - name="Puelche" /> - <iso_639_3_entry - id="puf" - scope="I" - type="L" - name="Punan Merah" /> - <iso_639_3_entry - id="pug" - scope="I" - type="L" - name="Phuie" /> - <iso_639_3_entry - id="pui" - scope="I" - type="L" - name="Puinave" /> - <iso_639_3_entry - id="puj" - scope="I" - type="L" - name="Punan Tubu" /> - <iso_639_3_entry - id="puk" - scope="I" - type="L" - name="Pu Ko" /> - <iso_639_3_entry - id="pum" - scope="I" - type="L" - name="Puma" /> - <iso_639_3_entry - id="puo" - scope="I" - type="L" - name="Puoc" /> - <iso_639_3_entry - id="pup" - scope="I" - type="L" - name="Pulabu" /> - <iso_639_3_entry - id="puq" - scope="I" - type="E" - name="Puquina" /> - <iso_639_3_entry - id="pur" - scope="I" - type="L" - name="Puruborá" /> - <iso_639_3_entry - id="pus" - part1_code="ps" - part2_code="pus" - scope="M" - type="L" - name="Pushto" /> - <iso_639_3_entry - id="put" - scope="I" - type="L" - name="Putoh" /> - <iso_639_3_entry - id="puu" - scope="I" - type="L" - name="Punu" /> - <iso_639_3_entry - id="puw" - scope="I" - type="L" - name="Puluwatese" /> - <iso_639_3_entry - id="pux" - scope="I" - type="L" - name="Puare" /> - <iso_639_3_entry - id="puy" - scope="I" - type="E" - name="Purisimeño" /> - <iso_639_3_entry - id="puz" - scope="I" - type="L" - name="Naga; Purum" /> - <iso_639_3_entry - id="pwa" - scope="I" - type="L" - name="Pawaia" /> - <iso_639_3_entry - id="pwb" - scope="I" - type="L" - name="Panawa" /> - <iso_639_3_entry - id="pwg" - scope="I" - type="L" - name="Gapapaiwa" /> - <iso_639_3_entry - id="pwm" - scope="I" - type="L" - name="Molbog" /> - <iso_639_3_entry - id="pwn" - scope="I" - type="L" - name="Paiwan" /> - <iso_639_3_entry - id="pwo" - scope="I" - type="L" - name="Karen; Pwo Western" /> - <iso_639_3_entry - id="pwr" - scope="I" - type="L" - name="Powari" /> - <iso_639_3_entry - id="pww" - scope="I" - type="L" - name="Karen; Pwo Northern" /> - <iso_639_3_entry - id="pxm" - scope="I" - type="L" - name="Mixe; Quetzaltepec" /> - <iso_639_3_entry - id="pye" - scope="I" - type="L" - name="Krumen; Pye" /> - <iso_639_3_entry - id="pym" - scope="I" - type="L" - name="Fyam" /> - <iso_639_3_entry - id="pyn" - scope="I" - type="L" - name="Poyanáwa" /> - <iso_639_3_entry - id="pys" - scope="I" - type="L" - name="Paraguayan Sign Language" /> - <iso_639_3_entry - id="pyu" - scope="I" - type="L" - name="Puyuma" /> - <iso_639_3_entry - id="pyx" - scope="I" - type="A" - name="Pyu (Myanmar)" /> - <iso_639_3_entry - id="pyy" - scope="I" - type="L" - name="Pyen" /> - <iso_639_3_entry - id="pzn" - scope="I" - type="L" - name="Naga; Para" /> - <iso_639_3_entry - id="qua" - scope="I" - type="L" - name="Quapaw" /> - <iso_639_3_entry - id="qub" - scope="I" - type="L" - name="Quechua; Huallaga Huánuco" /> - <iso_639_3_entry - id="quc" - scope="I" - type="L" - name="K'iche'" /> - <iso_639_3_entry - id="qud" - scope="I" - type="L" - name="Quichua; Calderón Highland" /> - <iso_639_3_entry - id="que" - part1_code="qu" - part2_code="que" - scope="M" - type="L" - name="Quechua" /> - <iso_639_3_entry - id="quf" - scope="I" - type="L" - name="Quechua; Lambayeque" /> - <iso_639_3_entry - id="qug" - scope="I" - type="L" - name="Quichua; Chimborazo Highland" /> - <iso_639_3_entry - id="quh" - scope="I" - type="L" - name="Quechua; South Bolivian" /> - <iso_639_3_entry - id="qui" - scope="I" - type="L" - name="Quileute" /> - <iso_639_3_entry - id="quk" - scope="I" - type="L" - name="Quechua; Chachapoyas" /> - <iso_639_3_entry - id="qul" - scope="I" - type="L" - name="Quechua; North Bolivian" /> - <iso_639_3_entry - id="qum" - scope="I" - type="L" - name="Sipacapense" /> - <iso_639_3_entry - id="qun" - scope="I" - type="E" - name="Quinault" /> - <iso_639_3_entry - id="qup" - scope="I" - type="L" - name="Quechua; Southern Pastaza" /> - <iso_639_3_entry - id="quq" - scope="I" - type="L" - name="Quinqui" /> - <iso_639_3_entry - id="qur" - scope="I" - type="L" - name="Quechua; Yanahuanca Pasco" /> - <iso_639_3_entry - id="qus" - scope="I" - type="L" - name="Quichua; Santiago del Estero" /> - <iso_639_3_entry - id="quv" - scope="I" - type="L" - name="Sacapulteco" /> - <iso_639_3_entry - id="quw" - scope="I" - type="L" - name="Quichua; Tena Lowland" /> - <iso_639_3_entry - id="qux" - scope="I" - type="L" - name="Quechua; Yauyos" /> - <iso_639_3_entry - id="quy" - scope="I" - type="L" - name="Quechua; Ayacucho" /> - <iso_639_3_entry - id="quz" - scope="I" - type="L" - name="Quechua; Cusco" /> - <iso_639_3_entry - id="qva" - scope="I" - type="L" - name="Quechua; Ambo-Pasco" /> - <iso_639_3_entry - id="qvc" - scope="I" - type="L" - name="Quechua; Cajamarca" /> - <iso_639_3_entry - id="qve" - scope="I" - type="L" - name="Quechua; Eastern Apurímac" /> - <iso_639_3_entry - id="qvh" - scope="I" - type="L" - name="Quechua; Huamalíes-Dos de Mayo Huánuco" /> - <iso_639_3_entry - id="qvi" - scope="I" - type="L" - name="Quichua; Imbabura Highland" /> - <iso_639_3_entry - id="qvj" - scope="I" - type="L" - name="Quichua; Loja Highland" /> - <iso_639_3_entry - id="qvl" - scope="I" - type="L" - name="Quechua; Cajatambo North Lima" /> - <iso_639_3_entry - id="qvm" - scope="I" - type="L" - name="Quechua; Margos-Yarowilca-Lauricocha" /> - <iso_639_3_entry - id="qvn" - scope="I" - type="L" - name="Quechua; North Junín" /> - <iso_639_3_entry - id="qvo" - scope="I" - type="L" - name="Quechua; Napo Lowland" /> - <iso_639_3_entry - id="qvp" - scope="I" - type="L" - name="Quechua; Pacaraos" /> - <iso_639_3_entry - id="qvs" - scope="I" - type="L" - name="Quechua; San Martín" /> - <iso_639_3_entry - id="qvw" - scope="I" - type="L" - name="Quechua; Huaylla Wanca" /> - <iso_639_3_entry - id="qvy" - scope="I" - type="L" - name="Queyu" /> - <iso_639_3_entry - id="qvz" - scope="I" - type="L" - name="Quichua; Northern Pastaza" /> - <iso_639_3_entry - id="qwa" - scope="I" - type="L" - name="Quechua; Corongo Ancash" /> - <iso_639_3_entry - id="qwc" - scope="I" - type="H" - name="Quechua; Classical" /> - <iso_639_3_entry - id="qwh" - scope="I" - type="L" - name="Quechua; Huaylas Ancash" /> - <iso_639_3_entry - id="qwm" - scope="I" - type="E" - name="Kuman (Russia)" /> - <iso_639_3_entry - id="qws" - scope="I" - type="L" - name="Quechua; Sihuas Ancash" /> - <iso_639_3_entry - id="qwt" - scope="I" - type="E" - name="Kwalhioqua-Tlatskanai" /> - <iso_639_3_entry - id="qxa" - scope="I" - type="L" - name="Quechua; Chiquián Ancash" /> - <iso_639_3_entry - id="qxc" - scope="I" - type="L" - name="Quechua; Chincha" /> - <iso_639_3_entry - id="qxh" - scope="I" - type="L" - name="Quechua; Panao Huánuco" /> - <iso_639_3_entry - id="qxl" - scope="I" - type="L" - name="Quichua; Salasaca Highland" /> - <iso_639_3_entry - id="qxn" - scope="I" - type="L" - name="Quechua; Northern Conchucos Ancash" /> - <iso_639_3_entry - id="qxo" - scope="I" - type="L" - name="Quechua; Southern Conchucos Ancash" /> - <iso_639_3_entry - id="qxp" - scope="I" - type="L" - name="Quechua; Puno" /> - <iso_639_3_entry - id="qxq" - scope="I" - type="L" - name="Qashqa'i" /> - <iso_639_3_entry - id="qxr" - scope="I" - type="L" - name="Quichua; Cañar Highland" /> - <iso_639_3_entry - id="qxs" - scope="I" - type="L" - name="Qiang; Southern" /> - <iso_639_3_entry - id="qxt" - scope="I" - type="L" - name="Quechua; Santa Ana de Tusi Pasco" /> - <iso_639_3_entry - id="qxu" - scope="I" - type="L" - name="Quechua; Arequipa-La Unión" /> - <iso_639_3_entry - id="qxw" - scope="I" - type="L" - name="Quechua; Jauja Wanca" /> - <iso_639_3_entry - id="qya" - scope="I" - type="C" - name="Quenya" /> - <iso_639_3_entry - id="qyp" - scope="I" - type="E" - name="Quiripi" /> - <iso_639_3_entry - id="raa" - scope="I" - type="L" - name="Dungmali" /> - <iso_639_3_entry - id="rab" - scope="I" - type="L" - name="Camling" /> - <iso_639_3_entry - id="rac" - scope="I" - type="L" - name="Rasawa" /> - <iso_639_3_entry - id="rad" - scope="I" - type="L" - name="Rade" /> - <iso_639_3_entry - id="raf" - scope="I" - type="L" - name="Meohang; Western" /> - <iso_639_3_entry - id="rag" - scope="I" - type="L" - name="Logooli" /> - <iso_639_3_entry - id="rah" - scope="I" - type="L" - name="Rabha" /> - <iso_639_3_entry - id="rai" - scope="I" - type="L" - name="Ramoaaina" /> - <iso_639_3_entry - id="raj" - part2_code="raj" - scope="M" - type="L" - name="Rajasthani" /> - <iso_639_3_entry - id="rak" - scope="I" - type="L" - name="Tulu-Bohuai" /> - <iso_639_3_entry - id="ral" - scope="I" - type="L" - name="Ralte" /> - <iso_639_3_entry - id="ram" - scope="I" - type="L" - name="Canela" /> - <iso_639_3_entry - id="ran" - scope="I" - type="L" - name="Riantana" /> - <iso_639_3_entry - id="rao" - scope="I" - type="L" - name="Rao" /> - <iso_639_3_entry - id="rap" - part2_code="rap" - scope="I" - type="L" - name="Rapanui" /> - <iso_639_3_entry - id="raq" - scope="I" - type="L" - name="Saam" /> - <iso_639_3_entry - id="rar" - part2_code="rar" - scope="I" - type="L" - name="Maori; Cook Islands" /> - <iso_639_3_entry - id="ras" - scope="I" - type="L" - name="Tegali" /> - <iso_639_3_entry - id="rat" - scope="I" - type="L" - name="Razajerdi" /> - <iso_639_3_entry - id="rau" - scope="I" - type="L" - name="Raute" /> - <iso_639_3_entry - id="rav" - scope="I" - type="L" - name="Sampang" /> - <iso_639_3_entry - id="raw" - scope="I" - type="L" - name="Rawang" /> - <iso_639_3_entry - id="rax" - scope="I" - type="L" - name="Rang" /> - <iso_639_3_entry - id="ray" - scope="I" - type="L" - name="Rapa" /> - <iso_639_3_entry - id="raz" - scope="I" - type="L" - name="Rahambuu" /> - <iso_639_3_entry - id="rbb" - scope="I" - type="L" - name="Palaung; Rumai" /> - <iso_639_3_entry - id="rbk" - scope="I" - type="L" - name="Bontok; Northern" /> - <iso_639_3_entry - id="rbl" - scope="I" - type="L" - name="Bikol; Miraya" /> - <iso_639_3_entry - id="rcf" - scope="I" - type="L" - name="Creole French; Réunion" /> - <iso_639_3_entry - id="rdb" - scope="I" - type="L" - name="Rudbari" /> - <iso_639_3_entry - id="rea" - scope="I" - type="L" - name="Rerau" /> - <iso_639_3_entry - id="reb" - scope="I" - type="L" - name="Rembong" /> - <iso_639_3_entry - id="ree" - scope="I" - type="L" - name="Kayan; Rejang" /> - <iso_639_3_entry - id="reg" - scope="I" - type="L" - name="Kara (Tanzania)" /> - <iso_639_3_entry - id="rei" - scope="I" - type="L" - name="Reli" /> - <iso_639_3_entry - id="rej" - scope="I" - type="L" - name="Rejang" /> - <iso_639_3_entry - id="rel" - scope="I" - type="L" - name="Rendille" /> - <iso_639_3_entry - id="rem" - scope="I" - type="E" - name="Remo" /> - <iso_639_3_entry - id="ren" - scope="I" - type="L" - name="Rengao" /> - <iso_639_3_entry - id="rer" - scope="I" - type="E" - name="Rer Bare" /> - <iso_639_3_entry - id="res" - scope="I" - type="L" - name="Reshe" /> - <iso_639_3_entry - id="ret" - scope="I" - type="L" - name="Retta" /> - <iso_639_3_entry - id="rey" - scope="I" - type="L" - name="Reyesano" /> - <iso_639_3_entry - id="rga" - scope="I" - type="L" - name="Roria" /> - <iso_639_3_entry - id="rge" - scope="I" - type="L" - name="Romano-Greek" /> - <iso_639_3_entry - id="rgk" - scope="I" - type="E" - name="Rangkas" /> - <iso_639_3_entry - id="rgn" - scope="I" - type="L" - name="Romagnol" /> - <iso_639_3_entry - id="rgr" - scope="I" - type="L" - name="Resígaro" /> - <iso_639_3_entry - id="rgs" - scope="I" - type="L" - name="Roglai; Southern" /> - <iso_639_3_entry - id="rgu" - scope="I" - type="L" - name="Ringgou" /> - <iso_639_3_entry - id="rhg" - scope="I" - type="L" - name="Rohingya" /> - <iso_639_3_entry - id="rhp" - scope="I" - type="L" - name="Yahang" /> - <iso_639_3_entry - id="ria" - scope="I" - type="L" - name="Riang (India)" /> - <iso_639_3_entry - id="rie" - scope="I" - type="L" - name="Rien" /> - <iso_639_3_entry - id="rif" - scope="I" - type="L" - name="Tarifit" /> - <iso_639_3_entry - id="ril" - scope="I" - type="L" - name="Riang (Myanmar)" /> - <iso_639_3_entry - id="rim" - scope="I" - type="L" - name="Nyaturu" /> - <iso_639_3_entry - id="rin" - scope="I" - type="L" - name="Nungu" /> - <iso_639_3_entry - id="rir" - scope="I" - type="L" - name="Ribun" /> - <iso_639_3_entry - id="rit" - scope="I" - type="L" - name="Ritarungo" /> - <iso_639_3_entry - id="riu" - scope="I" - type="L" - name="Riung" /> - <iso_639_3_entry - id="rjg" - scope="I" - type="L" - name="Rajong" /> - <iso_639_3_entry - id="rji" - scope="I" - type="L" - name="Raji" /> - <iso_639_3_entry - id="rjs" - scope="I" - type="L" - name="Rajbanshi" /> - <iso_639_3_entry - id="rka" - scope="I" - type="L" - name="Kraol" /> - <iso_639_3_entry - id="rkb" - scope="I" - type="L" - name="Rikbaktsa" /> - <iso_639_3_entry - id="rkh" - scope="I" - type="L" - name="Rakahanga-Manihiki" /> - <iso_639_3_entry - id="rki" - scope="I" - type="L" - name="Rakhine" /> - <iso_639_3_entry - id="rkm" - scope="I" - type="L" - name="Marka" /> - <iso_639_3_entry - id="rkt" - scope="I" - type="L" - name="Rangpuri" /> - <iso_639_3_entry - id="rma" - scope="I" - type="L" - name="Rama" /> - <iso_639_3_entry - id="rmb" - scope="I" - type="L" - name="Rembarunga" /> - <iso_639_3_entry - id="rmc" - scope="I" - type="L" - name="Romani; Carpathian" /> - <iso_639_3_entry - id="rmd" - scope="I" - type="E" - name="Danish; Traveller" /> - <iso_639_3_entry - id="rme" - scope="I" - type="L" - name="Angloromani" /> - <iso_639_3_entry - id="rmf" - scope="I" - type="L" - name="Romani; Kalo Finnish" /> - <iso_639_3_entry - id="rmg" - scope="I" - type="L" - name="Norwegian; Traveller" /> - <iso_639_3_entry - id="rmh" - scope="I" - type="L" - name="Murkim" /> - <iso_639_3_entry - id="rmi" - scope="I" - type="L" - name="Lomavren" /> - <iso_639_3_entry - id="rmk" - scope="I" - type="L" - name="Romkun" /> - <iso_639_3_entry - id="rml" - scope="I" - type="L" - name="Romani; Baltic" /> - <iso_639_3_entry - id="rmm" - scope="I" - type="L" - name="Roma" /> - <iso_639_3_entry - id="rmn" - scope="I" - type="L" - name="Romani; Balkan" /> - <iso_639_3_entry - id="rmo" - scope="I" - type="L" - name="Romani; Sinte" /> - <iso_639_3_entry - id="rmp" - scope="I" - type="L" - name="Rempi" /> - <iso_639_3_entry - id="rmq" - scope="I" - type="L" - name="Caló" /> - <iso_639_3_entry - id="rms" - scope="I" - type="L" - name="Romanian Sign Language" /> - <iso_639_3_entry - id="rmt" - scope="I" - type="L" - name="Domari" /> - <iso_639_3_entry - id="rmu" - scope="I" - type="L" - name="Romani; Tavringer" /> - <iso_639_3_entry - id="rmv" - scope="I" - type="C" - name="Romanova" /> - <iso_639_3_entry - id="rmw" - scope="I" - type="L" - name="Romani; Welsh" /> - <iso_639_3_entry - id="rmx" - scope="I" - type="L" - name="Romam" /> - <iso_639_3_entry - id="rmy" - scope="I" - type="L" - name="Romani; Vlax" /> - <iso_639_3_entry - id="rmz" - scope="I" - type="L" - name="Marma" /> - <iso_639_3_entry - id="rna" - scope="I" - type="E" - name="Runa" /> - <iso_639_3_entry - id="rnd" - scope="I" - type="L" - name="Ruund" /> - <iso_639_3_entry - id="rng" - scope="I" - type="L" - name="Ronga" /> - <iso_639_3_entry - id="rnl" - scope="I" - type="L" - name="Ranglong" /> - <iso_639_3_entry - id="rnn" - scope="I" - type="L" - name="Roon" /> - <iso_639_3_entry - id="rnp" - scope="I" - type="L" - name="Rongpo" /> - <iso_639_3_entry - id="rnw" - scope="I" - type="L" - name="Rungwa" /> - <iso_639_3_entry - id="rob" - scope="I" - type="L" - name="Tae'" /> - <iso_639_3_entry - id="roc" - scope="I" - type="L" - name="Roglai; Cacgia" /> - <iso_639_3_entry - id="rod" - scope="I" - type="L" - name="Rogo" /> - <iso_639_3_entry - id="roe" - scope="I" - type="L" - name="Ronji" /> - <iso_639_3_entry - id="rof" - scope="I" - type="L" - name="Rombo" /> - <iso_639_3_entry - id="rog" - scope="I" - type="L" - name="Roglai; Northern" /> - <iso_639_3_entry - id="roh" - part1_code="rm" - part2_code="roh" - scope="I" - type="L" - name="Romansh" /> - <iso_639_3_entry - id="rol" - scope="I" - type="L" - name="Romblomanon" /> - <iso_639_3_entry - id="rom" - part2_code="rom" - scope="M" - type="L" - name="Romany" /> - <iso_639_3_entry - id="ron" - part1_code="ro" - part2_code="rum" - scope="I" - type="L" - name="Romanian" /> - <iso_639_3_entry - id="roo" - scope="I" - type="L" - name="Rotokas" /> - <iso_639_3_entry - id="rop" - scope="I" - type="L" - name="Kriol" /> - <iso_639_3_entry - id="ror" - scope="I" - type="L" - name="Rongga" /> - <iso_639_3_entry - id="rou" - scope="I" - type="L" - name="Runga" /> - <iso_639_3_entry - id="row" - scope="I" - type="L" - name="Dela-Oenale" /> - <iso_639_3_entry - id="rpn" - scope="I" - type="L" - name="Repanbitip" /> - <iso_639_3_entry - id="rpt" - scope="I" - type="L" - name="Rapting" /> - <iso_639_3_entry - id="rri" - scope="I" - type="L" - name="Ririo" /> - <iso_639_3_entry - id="rro" - scope="I" - type="L" - name="Waima" /> - <iso_639_3_entry - id="rsb" - scope="I" - type="L" - name="Romano-Serbian" /> - <iso_639_3_entry - id="rsi" - scope="I" - type="L" - name="Rennellese Sign Language" /> - <iso_639_3_entry - id="rsl" - scope="I" - type="L" - name="Russian Sign Language" /> - <iso_639_3_entry - id="rth" - scope="I" - type="L" - name="Ratahan" /> - <iso_639_3_entry - id="rtm" - scope="I" - type="L" - name="Rotuman" /> - <iso_639_3_entry - id="rtw" - scope="I" - type="L" - name="Rathawi" /> - <iso_639_3_entry - id="rub" - scope="I" - type="L" - name="Gungu" /> - <iso_639_3_entry - id="ruc" - scope="I" - type="L" - name="Ruuli" /> - <iso_639_3_entry - id="rue" - scope="I" - type="L" - name="Rusyn" /> - <iso_639_3_entry - id="ruf" - scope="I" - type="L" - name="Luguru" /> - <iso_639_3_entry - id="rug" - scope="I" - type="L" - name="Roviana" /> - <iso_639_3_entry - id="ruh" - scope="I" - type="L" - name="Ruga" /> - <iso_639_3_entry - id="rui" - scope="I" - type="L" - name="Rufiji" /> - <iso_639_3_entry - id="ruk" - scope="I" - type="L" - name="Che" /> - <iso_639_3_entry - id="run" - part1_code="rn" - part2_code="run" - scope="I" - type="L" - name="Rundi" /> - <iso_639_3_entry - id="ruo" - scope="I" - type="L" - name="Romanian; Istro" /> - <iso_639_3_entry - id="rup" - part2_code="rup" - scope="I" - type="L" - name="Romanian; Macedo-" /> - <iso_639_3_entry - id="ruq" - scope="I" - type="L" - name="Romanian; Megleno" /> - <iso_639_3_entry - id="rus" - part1_code="ru" - part2_code="rus" - scope="I" - type="L" - name="Russian" /> - <iso_639_3_entry - id="rut" - scope="I" - type="L" - name="Rutul" /> - <iso_639_3_entry - id="ruu" - scope="I" - type="L" - name="Lobu; Lanas" /> - <iso_639_3_entry - id="ruy" - scope="I" - type="L" - name="Mala (Nigeria)" /> - <iso_639_3_entry - id="ruz" - scope="I" - type="L" - name="Ruma" /> - <iso_639_3_entry - id="rwa" - scope="I" - type="L" - name="Rawo" /> - <iso_639_3_entry - id="rwk" - scope="I" - type="L" - name="Rwa" /> - <iso_639_3_entry - id="rwm" - scope="I" - type="L" - name="Amba (Uganda)" /> - <iso_639_3_entry - id="rwo" - scope="I" - type="L" - name="Rawa" /> - <iso_639_3_entry - id="rwr" - scope="I" - type="L" - name="Marwari (India)" /> - <iso_639_3_entry - id="ryn" - scope="I" - type="L" - name="Amami-Oshima; Northern" /> - <iso_639_3_entry - id="rys" - scope="I" - type="L" - name="Yaeyama" /> - <iso_639_3_entry - id="ryu" - scope="I" - type="L" - name="Okinawan; Central" /> - <iso_639_3_entry - id="saa" - scope="I" - type="L" - name="Saba" /> - <iso_639_3_entry - id="sab" - scope="I" - type="L" - name="Buglere" /> - <iso_639_3_entry - id="sac" - scope="I" - type="L" - name="Meskwaki" /> - <iso_639_3_entry - id="sad" - part2_code="sad" - scope="I" - type="L" - name="Sandawe" /> - <iso_639_3_entry - id="sae" - scope="I" - type="L" - name="Sabanê" /> - <iso_639_3_entry - id="saf" - scope="I" - type="L" - name="Safaliba" /> - <iso_639_3_entry - id="sag" - part1_code="sg" - part2_code="sag" - scope="I" - type="L" - name="Sango" /> - <iso_639_3_entry - id="sah" - part2_code="sah" - scope="I" - type="L" - name="Yakut" /> - <iso_639_3_entry - id="saj" - scope="I" - type="L" - name="Sahu" /> - <iso_639_3_entry - id="sak" - scope="I" - type="L" - name="Sake" /> - <iso_639_3_entry - id="sam" - part2_code="sam" - scope="I" - type="E" - name="Aramaic; Samaritan" /> - <iso_639_3_entry - id="san" - part1_code="sa" - part2_code="san" - scope="I" - type="A" - name="Sanskrit" /> - <iso_639_3_entry - id="sao" - scope="I" - type="L" - name="Sause" /> - <iso_639_3_entry - id="sap" - scope="I" - type="L" - name="Sanapaná" /> - <iso_639_3_entry - id="saq" - scope="I" - type="L" - name="Samburu" /> - <iso_639_3_entry - id="sar" - scope="I" - type="E" - name="Saraveca" /> - <iso_639_3_entry - id="sas" - part2_code="sas" - scope="I" - type="L" - name="Sasak" /> - <iso_639_3_entry - id="sat" - part2_code="sat" - scope="I" - type="L" - name="Santali" /> - <iso_639_3_entry - id="sau" - scope="I" - type="L" - name="Saleman" /> - <iso_639_3_entry - id="sav" - scope="I" - type="L" - name="Saafi-Saafi" /> - <iso_639_3_entry - id="saw" - scope="I" - type="L" - name="Sawi" /> - <iso_639_3_entry - id="sax" - scope="I" - type="L" - name="Sa" /> - <iso_639_3_entry - id="say" - scope="I" - type="L" - name="Saya" /> - <iso_639_3_entry - id="saz" - scope="I" - type="L" - name="Saurashtra" /> - <iso_639_3_entry - id="sba" - scope="I" - type="L" - name="Ngambay" /> - <iso_639_3_entry - id="sbb" - scope="I" - type="L" - name="Simbo" /> - <iso_639_3_entry - id="sbc" - scope="I" - type="L" - name="Kele (Papua New Guinea)" /> - <iso_639_3_entry - id="sbd" - scope="I" - type="L" - name="Samo; Southern" /> - <iso_639_3_entry - id="sbe" - scope="I" - type="L" - name="Saliba" /> - <iso_639_3_entry - id="sbf" - scope="I" - type="L" - name="Shabo" /> - <iso_639_3_entry - id="sbg" - scope="I" - type="L" - name="Seget" /> - <iso_639_3_entry - id="sbh" - scope="I" - type="L" - name="Sori-Harengan" /> - <iso_639_3_entry - id="sbi" - scope="I" - type="L" - name="Seti" /> - <iso_639_3_entry - id="sbj" - scope="I" - type="L" - name="Surbakhal" /> - <iso_639_3_entry - id="sbk" - scope="I" - type="L" - name="Safwa" /> - <iso_639_3_entry - id="sbl" - scope="I" - type="L" - name="Sambal; Botolan" /> - <iso_639_3_entry - id="sbm" - scope="I" - type="L" - name="Sagala" /> - <iso_639_3_entry - id="sbn" - scope="I" - type="L" - name="Bhil; Sindhi" /> - <iso_639_3_entry - id="sbo" - scope="I" - type="L" - name="Sabüm" /> - <iso_639_3_entry - id="sbp" - scope="I" - type="L" - name="Sangu (Tanzania)" /> - <iso_639_3_entry - id="sbq" - scope="I" - type="L" - name="Sileibi" /> - <iso_639_3_entry - id="sbr" - scope="I" - type="L" - name="Sembakung Murut" /> - <iso_639_3_entry - id="sbs" - scope="I" - type="L" - name="Subiya" /> - <iso_639_3_entry - id="sbt" - scope="I" - type="L" - name="Kimki" /> - <iso_639_3_entry - id="sbu" - scope="I" - type="L" - name="Bhoti; Stod" /> - <iso_639_3_entry - id="sbv" - scope="I" - type="A" - name="Sabine" /> - <iso_639_3_entry - id="sbw" - scope="I" - type="L" - name="Simba" /> - <iso_639_3_entry - id="sbx" - scope="I" - type="L" - name="Seberuang" /> - <iso_639_3_entry - id="sby" - scope="I" - type="L" - name="Soli" /> - <iso_639_3_entry - id="sbz" - scope="I" - type="L" - name="Sara Kaba" /> - <iso_639_3_entry - id="sca" - scope="I" - type="L" - name="Sansu" /> - <iso_639_3_entry - id="scb" - scope="I" - type="L" - name="Chut" /> - <iso_639_3_entry - id="sce" - scope="I" - type="L" - name="Dongxiang" /> - <iso_639_3_entry - id="scf" - scope="I" - type="L" - name="Creole French; San Miguel" /> - <iso_639_3_entry - id="scg" - scope="I" - type="L" - name="Sanggau" /> - <iso_639_3_entry - id="sch" - scope="I" - type="L" - name="Sakachep" /> - <iso_639_3_entry - id="sci" - scope="I" - type="L" - name="Creole Malay; Sri Lankan" /> - <iso_639_3_entry - id="sck" - scope="I" - type="L" - name="Sadri" /> - <iso_639_3_entry - id="scl" - scope="I" - type="L" - name="Shina" /> - <iso_639_3_entry - id="scn" - part2_code="scn" - scope="I" - type="L" - name="Sicilian" /> - <iso_639_3_entry - id="sco" - part2_code="sco" - scope="I" - type="L" - name="Scots" /> - <iso_639_3_entry - id="scp" - scope="I" - type="L" - name="Helambu Sherpa" /> - <iso_639_3_entry - id="scq" - scope="I" - type="L" - name="Sa'och" /> - <iso_639_3_entry - id="scs" - scope="I" - type="L" - name="Slavey; North" /> - <iso_639_3_entry - id="scu" - scope="I" - type="L" - name="Shumcho" /> - <iso_639_3_entry - id="scv" - scope="I" - type="L" - name="Sheni" /> - <iso_639_3_entry - id="scw" - scope="I" - type="L" - name="Sha" /> - <iso_639_3_entry - id="scx" - scope="I" - type="A" - name="Sicel" /> - <iso_639_3_entry - id="sda" - scope="I" - type="L" - name="Toraja-Sa'dan" /> - <iso_639_3_entry - id="sdb" - scope="I" - type="L" - name="Shabak" /> - <iso_639_3_entry - id="sdc" - scope="I" - type="L" - name="Sardinian; Sassarese" /> - <iso_639_3_entry - id="sde" - scope="I" - type="L" - name="Surubu" /> - <iso_639_3_entry - id="sdf" - scope="I" - type="L" - name="Sarli" /> - <iso_639_3_entry - id="sdg" - scope="I" - type="L" - name="Savi" /> - <iso_639_3_entry - id="sdh" - scope="I" - type="L" - name="Kurdish; Southern" /> - <iso_639_3_entry - id="sdj" - scope="I" - type="L" - name="Suundi" /> - <iso_639_3_entry - id="sdk" - scope="I" - type="L" - name="Sos Kundi" /> - <iso_639_3_entry - id="sdl" - scope="I" - type="L" - name="Saudi Arabian Sign Language" /> - <iso_639_3_entry - id="sdm" - scope="I" - type="L" - name="Semandang" /> - <iso_639_3_entry - id="sdn" - scope="I" - type="L" - name="Sardinian; Gallurese" /> - <iso_639_3_entry - id="sdo" - scope="I" - type="L" - name="Bidayuh; Bukar-Sadung" /> - <iso_639_3_entry - id="sdp" - scope="I" - type="L" - name="Sherdukpen" /> - <iso_639_3_entry - id="sdr" - scope="I" - type="L" - name="Sadri; Oraon" /> - <iso_639_3_entry - id="sds" - scope="I" - type="E" - name="Sened" /> - <iso_639_3_entry - id="sdt" - scope="I" - type="E" - name="Shuadit" /> - <iso_639_3_entry - id="sdu" - scope="I" - type="L" - name="Sarudu" /> - <iso_639_3_entry - id="sdx" - scope="I" - type="L" - name="Melanau; Sibu" /> - <iso_639_3_entry - id="sdz" - scope="I" - type="L" - name="Sallands" /> - <iso_639_3_entry - id="sea" - scope="I" - type="L" - name="Semai" /> - <iso_639_3_entry - id="seb" - scope="I" - type="L" - name="Senoufo; Shempire" /> - <iso_639_3_entry - id="sec" - scope="I" - type="L" - name="Sechelt" /> - <iso_639_3_entry - id="sed" - scope="I" - type="L" - name="Sedang" /> - <iso_639_3_entry - id="see" - scope="I" - type="L" - name="Seneca" /> - <iso_639_3_entry - id="sef" - scope="I" - type="L" - name="Senoufo; Cebaara" /> - <iso_639_3_entry - id="seg" - scope="I" - type="L" - name="Segeju" /> - <iso_639_3_entry - id="seh" - scope="I" - type="L" - name="Sena" /> - <iso_639_3_entry - id="sei" - scope="I" - type="L" - name="Seri" /> - <iso_639_3_entry - id="sej" - scope="I" - type="L" - name="Sene" /> - <iso_639_3_entry - id="sek" - scope="I" - type="L" - name="Sekani" /> - <iso_639_3_entry - id="sel" - part2_code="sel" - scope="I" - type="L" - name="Selkup" /> - <iso_639_3_entry - id="sen" - scope="I" - type="L" - name="Sénoufo; Nanerigé" /> - <iso_639_3_entry - id="seo" - scope="I" - type="L" - name="Suarmin" /> - <iso_639_3_entry - id="sep" - scope="I" - type="L" - name="Sénoufo; Sìcìté" /> - <iso_639_3_entry - id="seq" - scope="I" - type="L" - name="Sénoufo; Senara" /> - <iso_639_3_entry - id="ser" - scope="I" - type="L" - name="Serrano" /> - <iso_639_3_entry - id="ses" - scope="I" - type="L" - name="Songhai; Koyraboro Senni" /> - <iso_639_3_entry - id="set" - scope="I" - type="L" - name="Sentani" /> - <iso_639_3_entry - id="seu" - scope="I" - type="L" - name="Serui-Laut" /> - <iso_639_3_entry - id="sev" - scope="I" - type="L" - name="Senoufo; Nyarafolo" /> - <iso_639_3_entry - id="sew" - scope="I" - type="L" - name="Sewa Bay" /> - <iso_639_3_entry - id="sey" - scope="I" - type="L" - name="Secoya" /> - <iso_639_3_entry - id="sez" - scope="I" - type="L" - name="Chin; Senthang" /> - <iso_639_3_entry - id="sfb" - scope="I" - type="L" - name="Langue des signes de Belgique Francophone" /> - <iso_639_3_entry - id="sfm" - scope="I" - type="L" - name="Miao; Small Flowery" /> - <iso_639_3_entry - id="sfs" - scope="I" - type="L" - name="South African Sign Language" /> - <iso_639_3_entry - id="sfw" - scope="I" - type="L" - name="Sehwi" /> - <iso_639_3_entry - id="sga" - part2_code="sga" - scope="I" - type="H" - name="Irish; Old (to 900)" /> - <iso_639_3_entry - id="sgb" - scope="I" - type="L" - name="Ayta; Mag-antsi" /> - <iso_639_3_entry - id="sgc" - scope="I" - type="L" - name="Kipsigis" /> - <iso_639_3_entry - id="sgd" - scope="I" - type="L" - name="Surigaonon" /> - <iso_639_3_entry - id="sge" - scope="I" - type="L" - name="Segai" /> - <iso_639_3_entry - id="sgg" - scope="I" - type="L" - name="Swiss-German Sign Language" /> - <iso_639_3_entry - id="sgh" - scope="I" - type="L" - name="Shughni" /> - <iso_639_3_entry - id="sgi" - scope="I" - type="L" - name="Suga" /> - <iso_639_3_entry - id="sgk" - scope="I" - type="L" - name="Sangkong" /> - <iso_639_3_entry - id="sgm" - scope="I" - type="E" - name="Singa" /> - <iso_639_3_entry - id="sgo" - scope="I" - type="L" - name="Songa" /> - <iso_639_3_entry - id="sgp" - scope="I" - type="L" - name="Singpho" /> - <iso_639_3_entry - id="sgr" - scope="I" - type="L" - name="Sangisari" /> - <iso_639_3_entry - id="sgs" - scope="I" - type="L" - name="Samogitian" /> - <iso_639_3_entry - id="sgt" - scope="I" - type="L" - name="Brokpake" /> - <iso_639_3_entry - id="sgu" - scope="I" - type="L" - name="Salas" /> - <iso_639_3_entry - id="sgw" - scope="I" - type="L" - name="Sebat Bet Gurage" /> - <iso_639_3_entry - id="sgx" - scope="I" - type="L" - name="Sierra Leone Sign Language" /> - <iso_639_3_entry - id="sgy" - scope="I" - type="L" - name="Sanglechi" /> - <iso_639_3_entry - id="sgz" - scope="I" - type="L" - name="Sursurunga" /> - <iso_639_3_entry - id="sha" - scope="I" - type="L" - name="Shall-Zwall" /> - <iso_639_3_entry - id="shb" - scope="I" - type="L" - name="Ninam" /> - <iso_639_3_entry - id="shc" - scope="I" - type="L" - name="Sonde" /> - <iso_639_3_entry - id="shd" - scope="I" - type="L" - name="Kundal Shahi" /> - <iso_639_3_entry - id="she" - scope="I" - type="L" - name="Sheko" /> - <iso_639_3_entry - id="shg" - scope="I" - type="L" - name="Shua" /> - <iso_639_3_entry - id="shh" - scope="I" - type="L" - name="Shoshoni" /> - <iso_639_3_entry - id="shi" - scope="I" - type="L" - name="Tachelhit" /> - <iso_639_3_entry - id="shj" - scope="I" - type="L" - name="Shatt" /> - <iso_639_3_entry - id="shk" - scope="I" - type="L" - name="Shilluk" /> - <iso_639_3_entry - id="shl" - scope="I" - type="L" - name="Shendu" /> - <iso_639_3_entry - id="shm" - scope="I" - type="L" - name="Shahrudi" /> - <iso_639_3_entry - id="shn" - part2_code="shn" - scope="I" - type="L" - name="Shan" /> - <iso_639_3_entry - id="sho" - scope="I" - type="L" - name="Shanga" /> - <iso_639_3_entry - id="shp" - scope="I" - type="L" - name="Shipibo-Conibo" /> - <iso_639_3_entry - id="shq" - scope="I" - type="L" - name="Sala" /> - <iso_639_3_entry - id="shr" - scope="I" - type="L" - name="Shi" /> - <iso_639_3_entry - id="shs" - scope="I" - type="L" - name="Shuswap" /> - <iso_639_3_entry - id="sht" - scope="I" - type="E" - name="Shasta" /> - <iso_639_3_entry - id="shu" - scope="I" - type="L" - name="Arabic; Chadian" /> - <iso_639_3_entry - id="shv" - scope="I" - type="L" - name="Shehri" /> - <iso_639_3_entry - id="shw" - scope="I" - type="L" - name="Shwai" /> - <iso_639_3_entry - id="shx" - scope="I" - type="L" - name="She" /> - <iso_639_3_entry - id="shy" - scope="I" - type="L" - name="Tachawit" /> - <iso_639_3_entry - id="shz" - scope="I" - type="L" - name="Senoufo; Syenara" /> - <iso_639_3_entry - id="sia" - scope="I" - type="E" - name="Sami; Akkala" /> - <iso_639_3_entry - id="sib" - scope="I" - type="L" - name="Sebop" /> - <iso_639_3_entry - id="sid" - part2_code="sid" - scope="I" - type="L" - name="Sidamo" /> - <iso_639_3_entry - id="sie" - scope="I" - type="L" - name="Simaa" /> - <iso_639_3_entry - id="sif" - scope="I" - type="L" - name="Siamou" /> - <iso_639_3_entry - id="sig" - scope="I" - type="L" - name="Paasaal" /> - <iso_639_3_entry - id="sih" - scope="I" - type="L" - name="Zire" /> - <iso_639_3_entry - id="sii" - scope="I" - type="L" - name="Shom Peng" /> - <iso_639_3_entry - id="sij" - scope="I" - type="L" - name="Numbami" /> - <iso_639_3_entry - id="sik" - scope="I" - type="L" - name="Sikiana" /> - <iso_639_3_entry - id="sil" - scope="I" - type="L" - name="Sisaala; Tumulung" /> - <iso_639_3_entry - id="sim" - scope="I" - type="L" - name="Mende (Papua New Guinea)" /> - <iso_639_3_entry - id="sin" - part1_code="si" - part2_code="sin" - scope="I" - type="L" - name="Sinhala" /> - <iso_639_3_entry - id="sip" - scope="I" - type="L" - name="Sikkimese" /> - <iso_639_3_entry - id="siq" - scope="I" - type="L" - name="Sonia" /> - <iso_639_3_entry - id="sir" - scope="I" - type="L" - name="Siri" /> - <iso_639_3_entry - id="sis" - scope="I" - type="E" - name="Siuslaw" /> - <iso_639_3_entry - id="siu" - scope="I" - type="L" - name="Sinagen" /> - <iso_639_3_entry - id="siv" - scope="I" - type="L" - name="Sumariup" /> - <iso_639_3_entry - id="siw" - scope="I" - type="L" - name="Siwai" /> - <iso_639_3_entry - id="six" - scope="I" - type="L" - name="Sumau" /> - <iso_639_3_entry - id="siy" - scope="I" - type="L" - name="Sivandi" /> - <iso_639_3_entry - id="siz" - scope="I" - type="L" - name="Siwi" /> - <iso_639_3_entry - id="sja" - scope="I" - type="L" - name="Epena" /> - <iso_639_3_entry - id="sjb" - scope="I" - type="L" - name="Sajau Basap" /> - <iso_639_3_entry - id="sjd" - scope="I" - type="L" - name="Sami; Kildin" /> - <iso_639_3_entry - id="sje" - scope="I" - type="L" - name="Sami; Pite" /> - <iso_639_3_entry - id="sjg" - scope="I" - type="L" - name="Assangori" /> - <iso_639_3_entry - id="sjk" - scope="I" - type="E" - name="Sami; Kemi" /> - <iso_639_3_entry - id="sjl" - scope="I" - type="L" - name="Sajalong" /> - <iso_639_3_entry - id="sjm" - scope="I" - type="L" - name="Mapun" /> - <iso_639_3_entry - id="sjn" - scope="I" - type="C" - name="Sindarin" /> - <iso_639_3_entry - id="sjo" - scope="I" - type="L" - name="Xibe" /> - <iso_639_3_entry - id="sjp" - scope="I" - type="L" - name="Surjapuri" /> - <iso_639_3_entry - id="sjr" - scope="I" - type="L" - name="Siar-Lak" /> - <iso_639_3_entry - id="sjs" - scope="I" - type="E" - name="Senhaja De Srair" /> - <iso_639_3_entry - id="sjt" - scope="I" - type="L" - name="Sami; Ter" /> - <iso_639_3_entry - id="sju" - scope="I" - type="L" - name="Sami; Ume" /> - <iso_639_3_entry - id="sjw" - scope="I" - type="L" - name="Shawnee" /> - <iso_639_3_entry - id="ska" - scope="I" - type="L" - name="Skagit" /> - <iso_639_3_entry - id="skb" - scope="I" - type="L" - name="Saek" /> - <iso_639_3_entry - id="skc" - scope="I" - type="L" - name="Sauk" /> - <iso_639_3_entry - id="skd" - scope="I" - type="L" - name="Miwok; Southern Sierra" /> - <iso_639_3_entry - id="ske" - scope="I" - type="L" - name="Seke (Vanuatu)" /> - <iso_639_3_entry - id="skf" - scope="I" - type="L" - name="Sakirabiá" /> - <iso_639_3_entry - id="skg" - scope="I" - type="L" - name="Malagasy; Sakalava" /> - <iso_639_3_entry - id="skh" - scope="I" - type="L" - name="Sikule" /> - <iso_639_3_entry - id="ski" - scope="I" - type="L" - name="Sika" /> - <iso_639_3_entry - id="skj" - scope="I" - type="L" - name="Seke (Nepal)" /> - <iso_639_3_entry - id="skk" - scope="I" - type="L" - name="Sok" /> - <iso_639_3_entry - id="skm" - scope="I" - type="L" - name="Sakam" /> - <iso_639_3_entry - id="skn" - scope="I" - type="L" - name="Subanon; Kolibugan" /> - <iso_639_3_entry - id="sko" - scope="I" - type="L" - name="Seko Tengah" /> - <iso_639_3_entry - id="skp" - scope="I" - type="L" - name="Sekapan" /> - <iso_639_3_entry - id="skq" - scope="I" - type="L" - name="Sininkere" /> - <iso_639_3_entry - id="skr" - scope="I" - type="L" - name="Seraiki" /> - <iso_639_3_entry - id="sks" - scope="I" - type="L" - name="Maia" /> - <iso_639_3_entry - id="skt" - scope="I" - type="L" - name="Sakata" /> - <iso_639_3_entry - id="sku" - scope="I" - type="L" - name="Sakao" /> - <iso_639_3_entry - id="skv" - scope="I" - type="L" - name="Skou" /> - <iso_639_3_entry - id="skw" - scope="I" - type="E" - name="Creole Dutch; Skepi" /> - <iso_639_3_entry - id="skx" - scope="I" - type="L" - name="Seko Padang" /> - <iso_639_3_entry - id="sky" - scope="I" - type="L" - name="Sikaiana" /> - <iso_639_3_entry - id="skz" - scope="I" - type="L" - name="Sekar" /> - <iso_639_3_entry - id="slc" - scope="I" - type="L" - name="Sáliba" /> - <iso_639_3_entry - id="sld" - scope="I" - type="L" - name="Sissala" /> - <iso_639_3_entry - id="sle" - scope="I" - type="L" - name="Sholaga" /> - <iso_639_3_entry - id="slf" - scope="I" - type="L" - name="Swiss-Italian Sign Language" /> - <iso_639_3_entry - id="slg" - scope="I" - type="L" - name="Selungai Murut" /> - <iso_639_3_entry - id="slh" - scope="I" - type="L" - name="Salish; Southern Puget Sound" /> - <iso_639_3_entry - id="sli" - scope="I" - type="L" - name="Silesian; Lower" /> - <iso_639_3_entry - id="slj" - scope="I" - type="L" - name="Salumá" /> - <iso_639_3_entry - id="slk" - part1_code="sk" - part2_code="slo" - scope="I" - type="L" - name="Slovak" /> - <iso_639_3_entry - id="sll" - scope="I" - type="L" - name="Salt-Yui" /> - <iso_639_3_entry - id="slm" - scope="I" - type="L" - name="Sama; Pangutaran" /> - <iso_639_3_entry - id="sln" - scope="I" - type="E" - name="Salinan" /> - <iso_639_3_entry - id="slp" - scope="I" - type="L" - name="Lamaholot" /> - <iso_639_3_entry - id="slq" - scope="I" - type="L" - name="Salchuq" /> - <iso_639_3_entry - id="slr" - scope="I" - type="L" - name="Salar" /> - <iso_639_3_entry - id="sls" - scope="I" - type="L" - name="Singapore Sign Language" /> - <iso_639_3_entry - id="slt" - scope="I" - type="L" - name="Sila" /> - <iso_639_3_entry - id="slu" - scope="I" - type="L" - name="Selaru" /> - <iso_639_3_entry - id="slv" - part1_code="sl" - part2_code="slv" - scope="I" - type="L" - name="Slovenian" /> - <iso_639_3_entry - id="slw" - scope="I" - type="L" - name="Sialum" /> - <iso_639_3_entry - id="slx" - scope="I" - type="L" - name="Salampasu" /> - <iso_639_3_entry - id="sly" - scope="I" - type="L" - name="Selayar" /> - <iso_639_3_entry - id="slz" - scope="I" - type="L" - name="Ma'ya" /> - <iso_639_3_entry - id="sma" - part2_code="sma" - scope="I" - type="L" - name="Sami; Southern" /> - <iso_639_3_entry - id="smb" - scope="I" - type="L" - name="Simbari" /> - <iso_639_3_entry - id="smc" - scope="I" - type="L" - name="Som" /> - <iso_639_3_entry - id="smd" - scope="I" - type="L" - name="Sama" /> - <iso_639_3_entry - id="sme" - part1_code="se" - part2_code="sme" - scope="I" - type="L" - name="Sami; Northern" /> - <iso_639_3_entry - id="smf" - scope="I" - type="L" - name="Auwe" /> - <iso_639_3_entry - id="smg" - scope="I" - type="L" - name="Simbali" /> - <iso_639_3_entry - id="smh" - scope="I" - type="L" - name="Samei" /> - <iso_639_3_entry - id="smj" - part2_code="smj" - scope="I" - type="L" - name="Lule Sami" /> - <iso_639_3_entry - id="smk" - scope="I" - type="L" - name="Bolinao" /> - <iso_639_3_entry - id="sml" - scope="I" - type="L" - name="Sama; Central" /> - <iso_639_3_entry - id="smm" - scope="I" - type="L" - name="Musasa" /> - <iso_639_3_entry - id="smn" - part2_code="smn" - scope="I" - type="L" - name="Sami; Inari" /> - <iso_639_3_entry - id="smo" - part1_code="sm" - part2_code="smo" - scope="I" - type="L" - name="Samoan" /> - <iso_639_3_entry - id="smp" - scope="I" - type="E" - name="Samaritan" /> - <iso_639_3_entry - id="smq" - scope="I" - type="L" - name="Samo" /> - <iso_639_3_entry - id="smr" - scope="I" - type="L" - name="Simeulue" /> - <iso_639_3_entry - id="sms" - part2_code="sms" - scope="I" - type="L" - name="Sami; Skolt" /> - <iso_639_3_entry - id="smt" - scope="I" - type="L" - name="Simte" /> - <iso_639_3_entry - id="smu" - scope="I" - type="E" - name="Somray" /> - <iso_639_3_entry - id="smv" - scope="I" - type="L" - name="Samvedi" /> - <iso_639_3_entry - id="smw" - scope="I" - type="L" - name="Sumbawa" /> - <iso_639_3_entry - id="smx" - scope="I" - type="L" - name="Samba" /> - <iso_639_3_entry - id="smy" - scope="I" - type="L" - name="Semnani" /> - <iso_639_3_entry - id="smz" - scope="I" - type="L" - name="Simeku" /> - <iso_639_3_entry - id="sna" - part1_code="sn" - part2_code="sna" - scope="I" - type="L" - name="Shona" /> - <iso_639_3_entry - id="snb" - scope="I" - type="L" - name="Sebuyau" /> - <iso_639_3_entry - id="snc" - scope="I" - type="L" - name="Sinaugoro" /> - <iso_639_3_entry - id="snd" - part1_code="sd" - part2_code="snd" - scope="I" - type="L" - name="Sindhi" /> - <iso_639_3_entry - id="sne" - scope="I" - type="L" - name="Bidayuh; Bau" /> - <iso_639_3_entry - id="snf" - scope="I" - type="L" - name="Noon" /> - <iso_639_3_entry - id="sng" - scope="I" - type="L" - name="Sanga (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="snh" - scope="I" - type="E" - name="Shinabo" /> - <iso_639_3_entry - id="sni" - scope="I" - type="E" - name="Sensi" /> - <iso_639_3_entry - id="snj" - scope="I" - type="L" - name="Sango; Riverain" /> - <iso_639_3_entry - id="snk" - part2_code="snk" - scope="I" - type="L" - name="Soninke" /> - <iso_639_3_entry - id="snl" - scope="I" - type="L" - name="Sangil" /> - <iso_639_3_entry - id="snm" - scope="I" - type="L" - name="Ma'di; Southern" /> - <iso_639_3_entry - id="snn" - scope="I" - type="L" - name="Siona" /> - <iso_639_3_entry - id="sno" - scope="I" - type="L" - name="Snohomish" /> - <iso_639_3_entry - id="snp" - scope="I" - type="L" - name="Siane" /> - <iso_639_3_entry - id="snq" - scope="I" - type="L" - name="Sangu (Gabon)" /> - <iso_639_3_entry - id="snr" - scope="I" - type="L" - name="Sihan" /> - <iso_639_3_entry - id="sns" - scope="I" - type="L" - name="South West Bay" /> - <iso_639_3_entry - id="snu" - scope="I" - type="L" - name="Senggi" /> - <iso_639_3_entry - id="snv" - scope="I" - type="L" - name="Sa'ban" /> - <iso_639_3_entry - id="snw" - scope="I" - type="L" - name="Selee" /> - <iso_639_3_entry - id="snx" - scope="I" - type="L" - name="Sam" /> - <iso_639_3_entry - id="sny" - scope="I" - type="L" - name="Saniyo-Hiyewe" /> - <iso_639_3_entry - id="snz" - scope="I" - type="L" - name="Sinsauru" /> - <iso_639_3_entry - id="soa" - scope="I" - type="L" - name="Thai Song" /> - <iso_639_3_entry - id="sob" - scope="I" - type="L" - name="Sobei" /> - <iso_639_3_entry - id="soc" - scope="I" - type="L" - name="So (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="sod" - scope="I" - type="L" - name="Songoora" /> - <iso_639_3_entry - id="soe" - scope="I" - type="L" - name="Songomeno" /> - <iso_639_3_entry - id="sog" - part2_code="sog" - scope="I" - type="A" - name="Sogdian" /> - <iso_639_3_entry - id="soh" - scope="I" - type="L" - name="Aka" /> - <iso_639_3_entry - id="soi" - scope="I" - type="L" - name="Sonha" /> - <iso_639_3_entry - id="soj" - scope="I" - type="L" - name="Soi" /> - <iso_639_3_entry - id="sok" - scope="I" - type="L" - name="Sokoro" /> - <iso_639_3_entry - id="sol" - scope="I" - type="L" - name="Solos" /> - <iso_639_3_entry - id="som" - part1_code="so" - part2_code="som" - scope="I" - type="L" - name="Somali" /> - <iso_639_3_entry - id="soo" - scope="I" - type="L" - name="Songo" /> - <iso_639_3_entry - id="sop" - scope="I" - type="L" - name="Songe" /> - <iso_639_3_entry - id="soq" - scope="I" - type="L" - name="Kanasi" /> - <iso_639_3_entry - id="sor" - scope="I" - type="L" - name="Somrai" /> - <iso_639_3_entry - id="sos" - scope="I" - type="L" - name="Seeku" /> - <iso_639_3_entry - id="sot" - part1_code="st" - part2_code="sot" - scope="I" - type="L" - name="Sotho; Southern" /> - <iso_639_3_entry - id="sou" - scope="I" - type="L" - name="Thai; Southern" /> - <iso_639_3_entry - id="sov" - scope="I" - type="L" - name="Sonsorol" /> - <iso_639_3_entry - id="sow" - scope="I" - type="L" - name="Sowanda" /> - <iso_639_3_entry - id="sox" - scope="I" - type="L" - name="So (Cameroon)" /> - <iso_639_3_entry - id="soy" - scope="I" - type="L" - name="Miyobe" /> - <iso_639_3_entry - id="soz" - scope="I" - type="L" - name="Temi" /> - <iso_639_3_entry - id="spa" - part1_code="es" - part2_code="spa" - scope="I" - type="L" - name="Spanish" /> - <iso_639_3_entry - id="spb" - scope="I" - type="L" - name="Sepa (Indonesia)" /> - <iso_639_3_entry - id="spc" - scope="I" - type="L" - name="Sapé" /> - <iso_639_3_entry - id="spd" - scope="I" - type="L" - name="Saep" /> - <iso_639_3_entry - id="spe" - scope="I" - type="L" - name="Sepa (Papua New Guinea)" /> - <iso_639_3_entry - id="spg" - scope="I" - type="L" - name="Sian" /> - <iso_639_3_entry - id="spi" - scope="I" - type="L" - name="Saponi" /> - <iso_639_3_entry - id="spk" - scope="I" - type="L" - name="Sengo" /> - <iso_639_3_entry - id="spl" - scope="I" - type="L" - name="Selepet" /> - <iso_639_3_entry - id="spm" - scope="I" - type="L" - name="Sepen" /> - <iso_639_3_entry - id="spo" - scope="I" - type="L" - name="Spokane" /> - <iso_639_3_entry - id="spp" - scope="I" - type="L" - name="Senoufo; Supyire" /> - <iso_639_3_entry - id="spq" - scope="I" - type="L" - name="Spanish; Loreto-Ucayali" /> - <iso_639_3_entry - id="spr" - scope="I" - type="L" - name="Saparua" /> - <iso_639_3_entry - id="sps" - scope="I" - type="L" - name="Saposa" /> - <iso_639_3_entry - id="spt" - scope="I" - type="L" - name="Bhoti; Spiti" /> - <iso_639_3_entry - id="spu" - scope="I" - type="L" - name="Sapuan" /> - <iso_639_3_entry - id="spx" - scope="I" - type="A" - name="Picene; South" /> - <iso_639_3_entry - id="spy" - scope="I" - type="L" - name="Sabaot" /> - <iso_639_3_entry - id="sqa" - scope="I" - type="L" - name="Shama-Sambuga" /> - <iso_639_3_entry - id="sqh" - scope="I" - type="L" - name="Shau" /> - <iso_639_3_entry - id="sqi" - part1_code="sq" - part2_code="alb" - scope="M" - type="L" - name="Albanian" /> - <iso_639_3_entry - id="sqm" - scope="I" - type="L" - name="Suma" /> - <iso_639_3_entry - id="sqn" - scope="I" - type="E" - name="Susquehannock" /> - <iso_639_3_entry - id="sqo" - scope="I" - type="L" - name="Sorkhei" /> - <iso_639_3_entry - id="sqq" - scope="I" - type="L" - name="Sou" /> - <iso_639_3_entry - id="sqr" - scope="I" - type="H" - name="Arabic; Siculo" /> - <iso_639_3_entry - id="sqs" - scope="I" - type="L" - name="Sri Lankan Sign Language" /> - <iso_639_3_entry - id="sqt" - scope="I" - type="L" - name="Soqotri" /> - <iso_639_3_entry - id="squ" - scope="I" - type="L" - name="Squamish" /> - <iso_639_3_entry - id="sra" - scope="I" - type="L" - name="Saruga" /> - <iso_639_3_entry - id="srb" - scope="I" - type="L" - name="Sora" /> - <iso_639_3_entry - id="src" - scope="I" - type="L" - name="Sardinian; Logudorese" /> - <iso_639_3_entry - id="srd" - part1_code="sc" - part2_code="srd" - scope="M" - type="L" - name="Sardinian" /> - <iso_639_3_entry - id="sre" - scope="I" - type="L" - name="Sara" /> - <iso_639_3_entry - id="srf" - scope="I" - type="L" - name="Nafi" /> - <iso_639_3_entry - id="srg" - scope="I" - type="L" - name="Sulod" /> - <iso_639_3_entry - id="srh" - scope="I" - type="L" - name="Sarikoli" /> - <iso_639_3_entry - id="sri" - scope="I" - type="L" - name="Siriano" /> - <iso_639_3_entry - id="srk" - scope="I" - type="L" - name="Serudung Murut" /> - <iso_639_3_entry - id="srl" - scope="I" - type="L" - name="Isirawa" /> - <iso_639_3_entry - id="srm" - scope="I" - type="L" - name="Saramaccan" /> - <iso_639_3_entry - id="srn" - part2_code="srn" - scope="I" - type="L" - name="Sranan Tongo" /> - <iso_639_3_entry - id="sro" - scope="I" - type="L" - name="Sardinian; Campidanese" /> - <iso_639_3_entry - id="srp" - part1_code="sr" - part2_code="srp" - scope="I" - type="L" - name="Serbian" /> - <iso_639_3_entry - id="srq" - scope="I" - type="L" - name="Sirionó" /> - <iso_639_3_entry - id="srr" - part2_code="srr" - scope="I" - type="L" - name="Serer" /> - <iso_639_3_entry - id="srs" - scope="I" - type="L" - name="Sarsi" /> - <iso_639_3_entry - id="srt" - scope="I" - type="L" - name="Sauri" /> - <iso_639_3_entry - id="sru" - scope="I" - type="L" - name="Suruí" /> - <iso_639_3_entry - id="srv" - scope="I" - type="L" - name="Sorsoganon; Southern" /> - <iso_639_3_entry - id="srw" - scope="I" - type="L" - name="Serua" /> - <iso_639_3_entry - id="srx" - scope="I" - type="L" - name="Sirmauri" /> - <iso_639_3_entry - id="sry" - scope="I" - type="L" - name="Sera" /> - <iso_639_3_entry - id="srz" - scope="I" - type="L" - name="Shahmirzadi" /> - <iso_639_3_entry - id="ssb" - scope="I" - type="L" - name="Sama; Southern" /> - <iso_639_3_entry - id="ssc" - scope="I" - type="L" - name="Suba-Simbiti" /> - <iso_639_3_entry - id="ssd" - scope="I" - type="L" - name="Siroi" /> - <iso_639_3_entry - id="sse" - scope="I" - type="L" - name="Sama; Bangingih" /> - <iso_639_3_entry - id="ssf" - scope="I" - type="L" - name="Thao" /> - <iso_639_3_entry - id="ssg" - scope="I" - type="L" - name="Seimat" /> - <iso_639_3_entry - id="ssh" - scope="I" - type="L" - name="Arabic; Shihhi" /> - <iso_639_3_entry - id="ssi" - scope="I" - type="L" - name="Sansi" /> - <iso_639_3_entry - id="ssj" - scope="I" - type="L" - name="Sausi" /> - <iso_639_3_entry - id="ssk" - scope="I" - type="L" - name="Sunam" /> - <iso_639_3_entry - id="ssl" - scope="I" - type="L" - name="Sisaala; Western" /> - <iso_639_3_entry - id="ssm" - scope="I" - type="L" - name="Semnam" /> - <iso_639_3_entry - id="ssn" - scope="I" - type="L" - name="Waata" /> - <iso_639_3_entry - id="sso" - scope="I" - type="L" - name="Sissano" /> - <iso_639_3_entry - id="ssp" - scope="I" - type="L" - name="Spanish Sign Language" /> - <iso_639_3_entry - id="ssq" - scope="I" - type="L" - name="So'a" /> - <iso_639_3_entry - id="ssr" - scope="I" - type="L" - name="Swiss-French Sign Language" /> - <iso_639_3_entry - id="sss" - scope="I" - type="L" - name="Sô" /> - <iso_639_3_entry - id="sst" - scope="I" - type="L" - name="Sinasina" /> - <iso_639_3_entry - id="ssu" - scope="I" - type="L" - name="Susuami" /> - <iso_639_3_entry - id="ssv" - scope="I" - type="L" - name="Shark Bay" /> - <iso_639_3_entry - id="ssw" - part1_code="ss" - part2_code="ssw" - scope="I" - type="L" - name="Swati" /> - <iso_639_3_entry - id="ssx" - scope="I" - type="L" - name="Samberigi" /> - <iso_639_3_entry - id="ssy" - scope="I" - type="L" - name="Saho" /> - <iso_639_3_entry - id="ssz" - scope="I" - type="L" - name="Sengseng" /> - <iso_639_3_entry - id="sta" - scope="I" - type="L" - name="Settla" /> - <iso_639_3_entry - id="stb" - scope="I" - type="L" - name="Subanen; Northern" /> - <iso_639_3_entry - id="std" - scope="I" - type="L" - name="Sentinel" /> - <iso_639_3_entry - id="ste" - scope="I" - type="L" - name="Liana-Seti" /> - <iso_639_3_entry - id="stf" - scope="I" - type="L" - name="Seta" /> - <iso_639_3_entry - id="stg" - scope="I" - type="L" - name="Trieng" /> - <iso_639_3_entry - id="sth" - scope="I" - type="L" - name="Shelta" /> - <iso_639_3_entry - id="sti" - scope="I" - type="L" - name="Stieng; Bulo" /> - <iso_639_3_entry - id="stj" - scope="I" - type="L" - name="Samo; Matya" /> - <iso_639_3_entry - id="stk" - scope="I" - type="L" - name="Arammba" /> - <iso_639_3_entry - id="stl" - scope="I" - type="L" - name="Stellingwerfs" /> - <iso_639_3_entry - id="stm" - scope="I" - type="L" - name="Setaman" /> - <iso_639_3_entry - id="stn" - scope="I" - type="L" - name="Owa" /> - <iso_639_3_entry - id="sto" - scope="I" - type="L" - name="Stoney" /> - <iso_639_3_entry - id="stp" - scope="I" - type="L" - name="Tepehuan; Southeastern" /> - <iso_639_3_entry - id="stq" - scope="I" - type="L" - name="Saterfriesisch" /> - <iso_639_3_entry - id="str" - scope="I" - type="L" - name="Salish; Straits" /> - <iso_639_3_entry - id="sts" - scope="I" - type="L" - name="Shumashti" /> - <iso_639_3_entry - id="stt" - scope="I" - type="L" - name="Stieng; Budeh" /> - <iso_639_3_entry - id="stu" - scope="I" - type="L" - name="Samtao" /> - <iso_639_3_entry - id="stv" - scope="I" - type="L" - name="Silt'e" /> - <iso_639_3_entry - id="stw" - scope="I" - type="L" - name="Satawalese" /> - <iso_639_3_entry - id="sua" - scope="I" - type="L" - name="Sulka" /> - <iso_639_3_entry - id="sub" - scope="I" - type="L" - name="Suku" /> - <iso_639_3_entry - id="suc" - scope="I" - type="L" - name="Subanon; Western" /> - <iso_639_3_entry - id="sue" - scope="I" - type="L" - name="Suena" /> - <iso_639_3_entry - id="sug" - scope="I" - type="L" - name="Suganga" /> - <iso_639_3_entry - id="sui" - scope="I" - type="L" - name="Suki" /> - <iso_639_3_entry - id="suj" - scope="I" - type="L" - name="Shubi" /> - <iso_639_3_entry - id="suk" - part2_code="suk" - scope="I" - type="L" - name="Sukuma" /> - <iso_639_3_entry - id="sun" - part1_code="su" - part2_code="sun" - scope="I" - type="L" - name="Sundanese" /> - <iso_639_3_entry - id="suq" - scope="I" - type="L" - name="Suri" /> - <iso_639_3_entry - id="sur" - scope="I" - type="L" - name="Mwaghavul" /> - <iso_639_3_entry - id="sus" - part2_code="sus" - scope="I" - type="L" - name="Susu" /> - <iso_639_3_entry - id="sut" - scope="I" - type="E" - name="Subtiaba" /> - <iso_639_3_entry - id="suv" - scope="I" - type="L" - name="Sulung" /> - <iso_639_3_entry - id="suw" - scope="I" - type="L" - name="Sumbwa" /> - <iso_639_3_entry - id="sux" - part2_code="sux" - scope="I" - type="A" - name="Sumerian" /> - <iso_639_3_entry - id="suy" - scope="I" - type="L" - name="Suyá" /> - <iso_639_3_entry - id="suz" - scope="I" - type="L" - name="Sunwar" /> - <iso_639_3_entry - id="sva" - scope="I" - type="L" - name="Svan" /> - <iso_639_3_entry - id="svb" - scope="I" - type="L" - name="Ulau-Suain" /> - <iso_639_3_entry - id="svc" - scope="I" - type="L" - name="Creole English; Vincentian" /> - <iso_639_3_entry - id="sve" - scope="I" - type="L" - name="Serili" /> - <iso_639_3_entry - id="svk" - scope="I" - type="L" - name="Slovakian Sign Language" /> - <iso_639_3_entry - id="svr" - scope="I" - type="L" - name="Savara" /> - <iso_639_3_entry - id="svs" - scope="I" - type="L" - name="Savosavo" /> - <iso_639_3_entry - id="svx" - scope="I" - type="E" - name="Skalvian" /> - <iso_639_3_entry - id="swa" - part1_code="sw" - part2_code="swa" - scope="M" - type="L" - name="Swahili (macrolanguage)" /> - <iso_639_3_entry - id="swb" - scope="I" - type="L" - name="Comorian; Maore" /> - <iso_639_3_entry - id="swc" - scope="I" - type="L" - name="Swahili; Congo" /> - <iso_639_3_entry - id="swe" - part1_code="sv" - part2_code="swe" - scope="I" - type="L" - name="Swedish" /> - <iso_639_3_entry - id="swf" - scope="I" - type="L" - name="Sere" /> - <iso_639_3_entry - id="swg" - scope="I" - type="L" - name="Swabian" /> - <iso_639_3_entry - id="swh" - scope="I" - type="L" - name="Swahili (individual language)" /> - <iso_639_3_entry - id="swi" - scope="I" - type="L" - name="Sui" /> - <iso_639_3_entry - id="swj" - scope="I" - type="L" - name="Sira" /> - <iso_639_3_entry - id="swk" - scope="I" - type="L" - name="Sena; Malawi" /> - <iso_639_3_entry - id="swl" - scope="I" - type="L" - name="Swedish Sign Language" /> - <iso_639_3_entry - id="swm" - scope="I" - type="L" - name="Samosa" /> - <iso_639_3_entry - id="swn" - scope="I" - type="L" - name="Sawknah" /> - <iso_639_3_entry - id="swo" - scope="I" - type="L" - name="Shanenawa" /> - <iso_639_3_entry - id="swp" - scope="I" - type="L" - name="Suau" /> - <iso_639_3_entry - id="swq" - scope="I" - type="L" - name="Sharwa" /> - <iso_639_3_entry - id="swr" - scope="I" - type="L" - name="Saweru" /> - <iso_639_3_entry - id="sws" - scope="I" - type="L" - name="Seluwasan" /> - <iso_639_3_entry - id="swt" - scope="I" - type="L" - name="Sawila" /> - <iso_639_3_entry - id="swu" - scope="I" - type="L" - name="Suwawa" /> - <iso_639_3_entry - id="swv" - scope="I" - type="L" - name="Shekhawati" /> - <iso_639_3_entry - id="sww" - scope="I" - type="E" - name="Sowa" /> - <iso_639_3_entry - id="swx" - scope="I" - type="L" - name="Suruahá" /> - <iso_639_3_entry - id="swy" - scope="I" - type="L" - name="Sarua" /> - <iso_639_3_entry - id="sxb" - scope="I" - type="L" - name="Suba" /> - <iso_639_3_entry - id="sxc" - scope="I" - type="A" - name="Sicanian" /> - <iso_639_3_entry - id="sxe" - scope="I" - type="L" - name="Sighu" /> - <iso_639_3_entry - id="sxg" - scope="I" - type="L" - name="Shixing" /> - <iso_639_3_entry - id="sxk" - scope="I" - type="E" - name="Kalapuya; Southern" /> - <iso_639_3_entry - id="sxl" - scope="I" - type="E" - name="Selian" /> - <iso_639_3_entry - id="sxm" - scope="I" - type="L" - name="Samre" /> - <iso_639_3_entry - id="sxn" - scope="I" - type="L" - name="Sangir" /> - <iso_639_3_entry - id="sxo" - scope="I" - type="A" - name="Sorothaptic" /> - <iso_639_3_entry - id="sxr" - scope="I" - type="L" - name="Saaroa" /> - <iso_639_3_entry - id="sxs" - scope="I" - type="L" - name="Sasaru" /> - <iso_639_3_entry - id="sxu" - scope="I" - type="L" - name="Saxon; Upper" /> - <iso_639_3_entry - id="sxw" - scope="I" - type="L" - name="Gbe; Saxwe" /> - <iso_639_3_entry - id="sya" - scope="I" - type="L" - name="Siang" /> - <iso_639_3_entry - id="syb" - scope="I" - type="L" - name="Subanen; Central" /> - <iso_639_3_entry - id="syc" - part2_code="syc" - scope="I" - type="H" - name="Syriac; Classical" /> - <iso_639_3_entry - id="syi" - scope="I" - type="L" - name="Seki" /> - <iso_639_3_entry - id="syk" - scope="I" - type="L" - name="Sukur" /> - <iso_639_3_entry - id="syl" - scope="I" - type="L" - name="Sylheti" /> - <iso_639_3_entry - id="sym" - scope="I" - type="L" - name="Samo; Maya" /> - <iso_639_3_entry - id="syn" - scope="I" - type="L" - name="Senaya" /> - <iso_639_3_entry - id="syo" - scope="I" - type="L" - name="Suoy" /> - <iso_639_3_entry - id="syr" - part2_code="syr" - scope="M" - type="L" - name="Syriac" /> - <iso_639_3_entry - id="sys" - scope="I" - type="L" - name="Sinyar" /> - <iso_639_3_entry - id="syw" - scope="I" - type="L" - name="Kagate" /> - <iso_639_3_entry - id="syy" - scope="I" - type="L" - name="Al-Sayyid Bedouin Sign Language" /> - <iso_639_3_entry - id="sza" - scope="I" - type="L" - name="Semelai" /> - <iso_639_3_entry - id="szb" - scope="I" - type="L" - name="Ngalum" /> - <iso_639_3_entry - id="szc" - scope="I" - type="L" - name="Semaq Beri" /> - <iso_639_3_entry - id="szd" - scope="I" - type="E" - name="Seru" /> - <iso_639_3_entry - id="sze" - scope="I" - type="L" - name="Seze" /> - <iso_639_3_entry - id="szg" - scope="I" - type="L" - name="Sengele" /> - <iso_639_3_entry - id="szl" - scope="I" - type="L" - name="Silesian" /> - <iso_639_3_entry - id="szn" - scope="I" - type="L" - name="Sula" /> - <iso_639_3_entry - id="szp" - scope="I" - type="L" - name="Suabo" /> - <iso_639_3_entry - id="szv" - scope="I" - type="L" - name="Isu (Fako Division)" /> - <iso_639_3_entry - id="szw" - scope="I" - type="L" - name="Sawai" /> - <iso_639_3_entry - id="taa" - scope="I" - type="L" - name="Tanana; Lower" /> - <iso_639_3_entry - id="tab" - scope="I" - type="L" - name="Tabassaran" /> - <iso_639_3_entry - id="tac" - scope="I" - type="L" - name="Tarahumara; Lowland" /> - <iso_639_3_entry - id="tad" - scope="I" - type="L" - name="Tause" /> - <iso_639_3_entry - id="tae" - scope="I" - type="L" - name="Tariana" /> - <iso_639_3_entry - id="taf" - scope="I" - type="L" - name="Tapirapé" /> - <iso_639_3_entry - id="tag" - scope="I" - type="L" - name="Tagoi" /> - <iso_639_3_entry - id="tah" - part1_code="ty" - part2_code="tah" - scope="I" - type="L" - name="Tahitian" /> - <iso_639_3_entry - id="taj" - scope="I" - type="L" - name="Tamang; Eastern" /> - <iso_639_3_entry - id="tak" - scope="I" - type="L" - name="Tala" /> - <iso_639_3_entry - id="tal" - scope="I" - type="L" - name="Tal" /> - <iso_639_3_entry - id="tam" - part1_code="ta" - part2_code="tam" - scope="I" - type="L" - name="Tamil" /> - <iso_639_3_entry - id="tan" - scope="I" - type="L" - name="Tangale" /> - <iso_639_3_entry - id="tao" - scope="I" - type="L" - name="Yami" /> - <iso_639_3_entry - id="tap" - scope="I" - type="L" - name="Taabwa" /> - <iso_639_3_entry - id="taq" - scope="I" - type="L" - name="Tamasheq" /> - <iso_639_3_entry - id="tar" - scope="I" - type="L" - name="Tarahumara; Central" /> - <iso_639_3_entry - id="tas" - scope="I" - type="E" - name="Tay Boi" /> - <iso_639_3_entry - id="tat" - part1_code="tt" - part2_code="tat" - scope="I" - type="L" - name="Tatar" /> - <iso_639_3_entry - id="tau" - scope="I" - type="L" - name="Tanana; Upper" /> - <iso_639_3_entry - id="tav" - scope="I" - type="L" - name="Tatuyo" /> - <iso_639_3_entry - id="taw" - scope="I" - type="L" - name="Tai" /> - <iso_639_3_entry - id="tax" - scope="I" - type="L" - name="Tamki" /> - <iso_639_3_entry - id="tay" - scope="I" - type="L" - name="Atayal" /> - <iso_639_3_entry - id="taz" - scope="I" - type="L" - name="Tocho" /> - <iso_639_3_entry - id="tba" - scope="I" - type="L" - name="Aikanã" /> - <iso_639_3_entry - id="tbb" - scope="I" - type="E" - name="Tapeba" /> - <iso_639_3_entry - id="tbc" - scope="I" - type="L" - name="Takia" /> - <iso_639_3_entry - id="tbd" - scope="I" - type="L" - name="Kaki Ae" /> - <iso_639_3_entry - id="tbe" - scope="I" - type="L" - name="Tanimbili" /> - <iso_639_3_entry - id="tbf" - scope="I" - type="L" - name="Mandara" /> - <iso_639_3_entry - id="tbg" - scope="I" - type="L" - name="Tairora; North" /> - <iso_639_3_entry - id="tbh" - scope="I" - type="E" - name="Thurawal" /> - <iso_639_3_entry - id="tbi" - scope="I" - type="L" - name="Gaam" /> - <iso_639_3_entry - id="tbj" - scope="I" - type="L" - name="Tiang" /> - <iso_639_3_entry - id="tbk" - scope="I" - type="L" - name="Tagbanwa; Calamian" /> - <iso_639_3_entry - id="tbl" - scope="I" - type="L" - name="Tboli" /> - <iso_639_3_entry - id="tbm" - scope="I" - type="L" - name="Tagbu" /> - <iso_639_3_entry - id="tbn" - scope="I" - type="L" - name="Tunebo; Barro Negro" /> - <iso_639_3_entry - id="tbo" - scope="I" - type="L" - name="Tawala" /> - <iso_639_3_entry - id="tbp" - scope="I" - type="L" - name="Taworta" /> - <iso_639_3_entry - id="tbr" - scope="I" - type="L" - name="Tumtum" /> - <iso_639_3_entry - id="tbs" - scope="I" - type="L" - name="Tanguat" /> - <iso_639_3_entry - id="tbt" - scope="I" - type="L" - name="Tembo (Kitembo)" /> - <iso_639_3_entry - id="tbu" - scope="I" - type="E" - name="Tubar" /> - <iso_639_3_entry - id="tbv" - scope="I" - type="L" - name="Tobo" /> - <iso_639_3_entry - id="tbw" - scope="I" - type="L" - name="Tagbanwa" /> - <iso_639_3_entry - id="tbx" - scope="I" - type="L" - name="Kapin" /> - <iso_639_3_entry - id="tby" - scope="I" - type="L" - name="Tabaru" /> - <iso_639_3_entry - id="tbz" - scope="I" - type="L" - name="Ditammari" /> - <iso_639_3_entry - id="tca" - scope="I" - type="L" - name="Ticuna" /> - <iso_639_3_entry - id="tcb" - scope="I" - type="L" - name="Tanacross" /> - <iso_639_3_entry - id="tcc" - scope="I" - type="L" - name="Datooga" /> - <iso_639_3_entry - id="tcd" - scope="I" - type="L" - name="Tafi" /> - <iso_639_3_entry - id="tce" - scope="I" - type="L" - name="Tutchone; Southern" /> - <iso_639_3_entry - id="tcf" - scope="I" - type="L" - name="Tlapanec; Malinaltepec" /> - <iso_639_3_entry - id="tcg" - scope="I" - type="L" - name="Tamagario" /> - <iso_639_3_entry - id="tch" - scope="I" - type="L" - name="Creole English; Turks And Caicos" /> - <iso_639_3_entry - id="tci" - scope="I" - type="L" - name="Wára" /> - <iso_639_3_entry - id="tck" - scope="I" - type="L" - name="Tchitchege" /> - <iso_639_3_entry - id="tcl" - scope="I" - type="E" - name="Taman (Myanmar)" /> - <iso_639_3_entry - id="tcm" - scope="I" - type="L" - name="Tanahmerah" /> - <iso_639_3_entry - id="tcn" - scope="I" - type="L" - name="Tichurong" /> - <iso_639_3_entry - id="tco" - scope="I" - type="L" - name="Taungyo" /> - <iso_639_3_entry - id="tcp" - scope="I" - type="L" - name="Chin; Tawr" /> - <iso_639_3_entry - id="tcq" - scope="I" - type="L" - name="Kaiy" /> - <iso_639_3_entry - id="tcs" - scope="I" - type="L" - name="Creole; Torres Strait" /> - <iso_639_3_entry - id="tct" - scope="I" - type="L" - name="T'en" /> - <iso_639_3_entry - id="tcu" - scope="I" - type="L" - name="Tarahumara; Southeastern" /> - <iso_639_3_entry - id="tcw" - scope="I" - type="L" - name="Totonac; Tecpatlán" /> - <iso_639_3_entry - id="tcx" - scope="I" - type="L" - name="Toda" /> - <iso_639_3_entry - id="tcy" - scope="I" - type="L" - name="Tulu" /> - <iso_639_3_entry - id="tcz" - scope="I" - type="L" - name="Chin; Thado" /> - <iso_639_3_entry - id="tda" - scope="I" - type="L" - name="Tagdal" /> - <iso_639_3_entry - id="tdb" - scope="I" - type="L" - name="Panchpargania" /> - <iso_639_3_entry - id="tdc" - scope="I" - type="L" - name="Emberá-Tadó" /> - <iso_639_3_entry - id="tdd" - scope="I" - type="L" - name="Tai Nüa" /> - <iso_639_3_entry - id="tde" - scope="I" - type="L" - name="Dogon; Tiranige Diga" /> - <iso_639_3_entry - id="tdf" - scope="I" - type="L" - name="Talieng" /> - <iso_639_3_entry - id="tdg" - scope="I" - type="L" - name="Tamang; Western" /> - <iso_639_3_entry - id="tdh" - scope="I" - type="L" - name="Thulung" /> - <iso_639_3_entry - id="tdi" - scope="I" - type="L" - name="Tomadino" /> - <iso_639_3_entry - id="tdj" - scope="I" - type="L" - name="Tajio" /> - <iso_639_3_entry - id="tdk" - scope="I" - type="L" - name="Tambas" /> - <iso_639_3_entry - id="tdl" - scope="I" - type="L" - name="Sur" /> - <iso_639_3_entry - id="tdn" - scope="I" - type="L" - name="Tondano" /> - <iso_639_3_entry - id="tdo" - scope="I" - type="L" - name="Teme" /> - <iso_639_3_entry - id="tdq" - scope="I" - type="L" - name="Tita" /> - <iso_639_3_entry - id="tdr" - scope="I" - type="L" - name="Todrah" /> - <iso_639_3_entry - id="tds" - scope="I" - type="L" - name="Doutai" /> - <iso_639_3_entry - id="tdt" - scope="I" - type="L" - name="Tetun Dili" /> - <iso_639_3_entry - id="tdu" - scope="I" - type="L" - name="Dusun; Tempasuk" /> - <iso_639_3_entry - id="tdv" - scope="I" - type="L" - name="Toro" /> - <iso_639_3_entry - id="tdx" - scope="I" - type="L" - name="Malagasy; Tandroy-Mahafaly" /> - <iso_639_3_entry - id="tdy" - scope="I" - type="L" - name="Tadyawan" /> - <iso_639_3_entry - id="tea" - scope="I" - type="L" - name="Temiar" /> - <iso_639_3_entry - id="teb" - scope="I" - type="E" - name="Tetete" /> - <iso_639_3_entry - id="tec" - scope="I" - type="L" - name="Terik" /> - <iso_639_3_entry - id="ted" - scope="I" - type="L" - name="Krumen; Tepo" /> - <iso_639_3_entry - id="tee" - scope="I" - type="L" - name="Tepehua; Huehuetla" /> - <iso_639_3_entry - id="tef" - scope="I" - type="L" - name="Teressa" /> - <iso_639_3_entry - id="teg" - scope="I" - type="L" - name="Teke-Tege" /> - <iso_639_3_entry - id="teh" - scope="I" - type="L" - name="Tehuelche" /> - <iso_639_3_entry - id="tei" - scope="I" - type="L" - name="Torricelli" /> - <iso_639_3_entry - id="tek" - scope="I" - type="L" - name="Teke; Ibali" /> - <iso_639_3_entry - id="tel" - part1_code="te" - part2_code="tel" - scope="I" - type="L" - name="Telugu" /> - <iso_639_3_entry - id="tem" - part2_code="tem" - scope="I" - type="L" - name="Timne" /> - <iso_639_3_entry - id="ten" - scope="I" - type="E" - name="Tama (Colombia)" /> - <iso_639_3_entry - id="teo" - scope="I" - type="L" - name="Teso" /> - <iso_639_3_entry - id="tep" - scope="I" - type="E" - name="Tepecano" /> - <iso_639_3_entry - id="teq" - scope="I" - type="L" - name="Temein" /> - <iso_639_3_entry - id="ter" - part2_code="ter" - scope="I" - type="L" - name="Tereno" /> - <iso_639_3_entry - id="tes" - scope="I" - type="L" - name="Tengger" /> - <iso_639_3_entry - id="tet" - part2_code="tet" - scope="I" - type="L" - name="Tetum" /> - <iso_639_3_entry - id="teu" - scope="I" - type="L" - name="Soo" /> - <iso_639_3_entry - id="tev" - scope="I" - type="L" - name="Teor" /> - <iso_639_3_entry - id="tew" - scope="I" - type="L" - name="Tewa (USA)" /> - <iso_639_3_entry - id="tex" - scope="I" - type="L" - name="Tennet" /> - <iso_639_3_entry - id="tey" - scope="I" - type="L" - name="Tulishi" /> - <iso_639_3_entry - id="tfi" - scope="I" - type="L" - name="Gbe; Tofin" /> - <iso_639_3_entry - id="tfn" - scope="I" - type="L" - name="Tanaina" /> - <iso_639_3_entry - id="tfo" - scope="I" - type="L" - name="Tefaro" /> - <iso_639_3_entry - id="tfr" - scope="I" - type="L" - name="Teribe" /> - <iso_639_3_entry - id="tft" - scope="I" - type="L" - name="Ternate" /> - <iso_639_3_entry - id="tga" - scope="I" - type="L" - name="Sagalla" /> - <iso_639_3_entry - id="tgb" - scope="I" - type="L" - name="Tobilung" /> - <iso_639_3_entry - id="tgc" - scope="I" - type="L" - name="Tigak" /> - <iso_639_3_entry - id="tgd" - scope="I" - type="L" - name="Ciwogai" /> - <iso_639_3_entry - id="tge" - scope="I" - type="L" - name="Tamang; Eastern Gorkha" /> - <iso_639_3_entry - id="tgf" - scope="I" - type="L" - name="Chalikha" /> - <iso_639_3_entry - id="tgg" - scope="I" - type="L" - name="Tangga" /> - <iso_639_3_entry - id="tgh" - scope="I" - type="L" - name="Creole English; Tobagonian" /> - <iso_639_3_entry - id="tgi" - scope="I" - type="L" - name="Lawunuia" /> - <iso_639_3_entry - id="tgk" - part1_code="tg" - part2_code="tgk" - scope="I" - type="L" - name="Tajik" /> - <iso_639_3_entry - id="tgl" - part1_code="tl" - part2_code="tgl" - scope="I" - type="L" - name="Tagalog" /> - <iso_639_3_entry - id="tgn" - scope="I" - type="L" - name="Tandaganon" /> - <iso_639_3_entry - id="tgo" - scope="I" - type="L" - name="Sudest" /> - <iso_639_3_entry - id="tgp" - scope="I" - type="L" - name="Tangoa" /> - <iso_639_3_entry - id="tgq" - scope="I" - type="L" - name="Tring" /> - <iso_639_3_entry - id="tgr" - scope="I" - type="L" - name="Tareng" /> - <iso_639_3_entry - id="tgs" - scope="I" - type="L" - name="Nume" /> - <iso_639_3_entry - id="tgt" - scope="I" - type="L" - name="Tagbanwa; Central" /> - <iso_639_3_entry - id="tgu" - scope="I" - type="L" - name="Tanggu" /> - <iso_639_3_entry - id="tgv" - scope="I" - type="E" - name="Tingui-Boto" /> - <iso_639_3_entry - id="tgw" - scope="I" - type="L" - name="Senoufo; Tagwana" /> - <iso_639_3_entry - id="tgx" - scope="I" - type="L" - name="Tagish" /> - <iso_639_3_entry - id="tgy" - scope="I" - type="E" - name="Togoyo" /> - <iso_639_3_entry - id="tha" - part1_code="th" - part2_code="tha" - scope="I" - type="L" - name="Thai" /> - <iso_639_3_entry - id="thc" - scope="I" - type="L" - name="Tai Hang Tong" /> - <iso_639_3_entry - id="thd" - scope="I" - type="L" - name="Thayore" /> - <iso_639_3_entry - id="the" - scope="I" - type="L" - name="Tharu; Chitwania" /> - <iso_639_3_entry - id="thf" - scope="I" - type="L" - name="Thangmi" /> - <iso_639_3_entry - id="thh" - scope="I" - type="L" - name="Tarahumara; Northern" /> - <iso_639_3_entry - id="thi" - scope="I" - type="L" - name="Tai Long" /> - <iso_639_3_entry - id="thk" - scope="I" - type="L" - name="Tharaka" /> - <iso_639_3_entry - id="thl" - scope="I" - type="L" - name="Tharu; Dangaura" /> - <iso_639_3_entry - id="thm" - scope="I" - type="L" - name="Aheu" /> - <iso_639_3_entry - id="thn" - scope="I" - type="L" - name="Thachanadan" /> - <iso_639_3_entry - id="thp" - scope="I" - type="L" - name="Thompson" /> - <iso_639_3_entry - id="thq" - scope="I" - type="L" - name="Tharu; Kochila" /> - <iso_639_3_entry - id="thr" - scope="I" - type="L" - name="Tharu; Rana" /> - <iso_639_3_entry - id="ths" - scope="I" - type="L" - name="Thakali" /> - <iso_639_3_entry - id="tht" - scope="I" - type="L" - name="Tahltan" /> - <iso_639_3_entry - id="thu" - scope="I" - type="L" - name="Thuri" /> - <iso_639_3_entry - id="thv" - scope="I" - type="L" - name="Tamahaq; Tahaggart" /> - <iso_639_3_entry - id="thw" - scope="I" - type="L" - name="Thudam" /> - <iso_639_3_entry - id="thx" - scope="I" - type="L" - name="The" /> - <iso_639_3_entry - id="thy" - scope="I" - type="L" - name="Tha" /> - <iso_639_3_entry - id="thz" - scope="I" - type="L" - name="Tamajeq; Tayart" /> - <iso_639_3_entry - id="tia" - scope="I" - type="L" - name="Tamazight; Tidikelt" /> - <iso_639_3_entry - id="tic" - scope="I" - type="L" - name="Tira" /> - <iso_639_3_entry - id="tid" - scope="I" - type="L" - name="Tidong" /> - <iso_639_3_entry - id="tif" - scope="I" - type="L" - name="Tifal" /> - <iso_639_3_entry - id="tig" - part2_code="tig" - scope="I" - type="L" - name="Tigre" /> - <iso_639_3_entry - id="tih" - scope="I" - type="L" - name="Murut; Timugon" /> - <iso_639_3_entry - id="tii" - scope="I" - type="L" - name="Tiene" /> - <iso_639_3_entry - id="tij" - scope="I" - type="L" - name="Tilung" /> - <iso_639_3_entry - id="tik" - scope="I" - type="L" - name="Tikar" /> - <iso_639_3_entry - id="til" - scope="I" - type="E" - name="Tillamook" /> - <iso_639_3_entry - id="tim" - scope="I" - type="L" - name="Timbe" /> - <iso_639_3_entry - id="tin" - scope="I" - type="L" - name="Tindi" /> - <iso_639_3_entry - id="tio" - scope="I" - type="L" - name="Teop" /> - <iso_639_3_entry - id="tip" - scope="I" - type="L" - name="Trimuris" /> - <iso_639_3_entry - id="tiq" - scope="I" - type="L" - name="Tiéfo" /> - <iso_639_3_entry - id="tir" - part1_code="ti" - part2_code="tir" - scope="I" - type="L" - name="Tigrinya" /> - <iso_639_3_entry - id="tis" - scope="I" - type="L" - name="Itneg; Masadiit" /> - <iso_639_3_entry - id="tit" - scope="I" - type="L" - name="Tinigua" /> - <iso_639_3_entry - id="tiu" - scope="I" - type="L" - name="Adasen" /> - <iso_639_3_entry - id="tiv" - part2_code="tiv" - scope="I" - type="L" - name="Tiv" /> - <iso_639_3_entry - id="tiw" - scope="I" - type="L" - name="Tiwi" /> - <iso_639_3_entry - id="tix" - scope="I" - type="L" - name="Tiwa; Southern" /> - <iso_639_3_entry - id="tiy" - scope="I" - type="L" - name="Tiruray" /> - <iso_639_3_entry - id="tiz" - scope="I" - type="L" - name="Tai Hongjin" /> - <iso_639_3_entry - id="tja" - scope="I" - type="L" - name="Tajuasohn" /> - <iso_639_3_entry - id="tjg" - scope="I" - type="L" - name="Tunjung" /> - <iso_639_3_entry - id="tji" - scope="I" - type="L" - name="Tujia; Northern" /> - <iso_639_3_entry - id="tjm" - scope="I" - type="E" - name="Timucua" /> - <iso_639_3_entry - id="tjn" - scope="I" - type="E" - name="Tonjon" /> - <iso_639_3_entry - id="tjo" - scope="I" - type="L" - name="Tamazight; Temacine" /> - <iso_639_3_entry - id="tjs" - scope="I" - type="L" - name="Tujia; Southern" /> - <iso_639_3_entry - id="tju" - scope="I" - type="E" - name="Tjurruru" /> - <iso_639_3_entry - id="tka" - scope="I" - type="E" - name="Truká" /> - <iso_639_3_entry - id="tkb" - scope="I" - type="L" - name="Buksa" /> - <iso_639_3_entry - id="tkd" - scope="I" - type="L" - name="Tukudede" /> - <iso_639_3_entry - id="tke" - scope="I" - type="L" - name="Takwane" /> - <iso_639_3_entry - id="tkf" - scope="I" - type="E" - name="Tukumanféd" /> - <iso_639_3_entry - id="tkg" - scope="I" - type="L" - name="Malagasy; Tesaka" /> - <iso_639_3_entry - id="tkl" - part2_code="tkl" - scope="I" - type="L" - name="Tokelau" /> - <iso_639_3_entry - id="tkm" - scope="I" - type="E" - name="Takelma" /> - <iso_639_3_entry - id="tkn" - scope="I" - type="L" - name="Toku-No-Shima" /> - <iso_639_3_entry - id="tkp" - scope="I" - type="L" - name="Tikopia" /> - <iso_639_3_entry - id="tkq" - scope="I" - type="L" - name="Tee" /> - <iso_639_3_entry - id="tkr" - scope="I" - type="L" - name="Tsakhur" /> - <iso_639_3_entry - id="tks" - scope="I" - type="L" - name="Takestani" /> - <iso_639_3_entry - id="tkt" - scope="I" - type="L" - name="Tharu; Kathoriya" /> - <iso_639_3_entry - id="tku" - scope="I" - type="L" - name="Totonac; Upper Necaxa" /> - <iso_639_3_entry - id="tkw" - scope="I" - type="L" - name="Teanu" /> - <iso_639_3_entry - id="tkx" - scope="I" - type="L" - name="Tangko" /> - <iso_639_3_entry - id="tkz" - scope="I" - type="L" - name="Takua" /> - <iso_639_3_entry - id="tla" - scope="I" - type="L" - name="Tepehuan; Southwestern" /> - <iso_639_3_entry - id="tlb" - scope="I" - type="L" - name="Tobelo" /> - <iso_639_3_entry - id="tlc" - scope="I" - type="L" - name="Totonac; Yecuatla" /> - <iso_639_3_entry - id="tld" - scope="I" - type="L" - name="Talaud" /> - <iso_639_3_entry - id="tlf" - scope="I" - type="L" - name="Telefol" /> - <iso_639_3_entry - id="tlg" - scope="I" - type="L" - name="Tofanma" /> - <iso_639_3_entry - id="tlh" - part2_code="tlh" - scope="I" - type="C" - name="Klingon" /> - <iso_639_3_entry - id="tli" - part2_code="tli" - scope="I" - type="L" - name="Tlingit" /> - <iso_639_3_entry - id="tlj" - scope="I" - type="L" - name="Talinga-Bwisi" /> - <iso_639_3_entry - id="tlk" - scope="I" - type="L" - name="Taloki" /> - <iso_639_3_entry - id="tll" - scope="I" - type="L" - name="Tetela" /> - <iso_639_3_entry - id="tlm" - scope="I" - type="L" - name="Tolomako" /> - <iso_639_3_entry - id="tln" - scope="I" - type="L" - name="Talondo'" /> - <iso_639_3_entry - id="tlo" - scope="I" - type="L" - name="Talodi" /> - <iso_639_3_entry - id="tlp" - scope="I" - type="L" - name="Totonac; Filomena Mata-Coahuitlán" /> - <iso_639_3_entry - id="tlq" - scope="I" - type="L" - name="Tai Loi" /> - <iso_639_3_entry - id="tlr" - scope="I" - type="L" - name="Talise" /> - <iso_639_3_entry - id="tls" - scope="I" - type="L" - name="Tambotalo" /> - <iso_639_3_entry - id="tlt" - scope="I" - type="L" - name="Teluti" /> - <iso_639_3_entry - id="tlu" - scope="I" - type="L" - name="Tulehu" /> - <iso_639_3_entry - id="tlv" - scope="I" - type="L" - name="Taliabu" /> - <iso_639_3_entry - id="tlw" - scope="I" - type="L" - name="Wemale; South" /> - <iso_639_3_entry - id="tlx" - scope="I" - type="L" - name="Khehek" /> - <iso_639_3_entry - id="tly" - scope="I" - type="L" - name="Talysh" /> - <iso_639_3_entry - id="tma" - scope="I" - type="L" - name="Tama (Chad)" /> - <iso_639_3_entry - id="tmb" - scope="I" - type="L" - name="Katbol" /> - <iso_639_3_entry - id="tmc" - scope="I" - type="L" - name="Tumak" /> - <iso_639_3_entry - id="tmd" - scope="I" - type="L" - name="Haruai" /> - <iso_639_3_entry - id="tme" - scope="I" - type="E" - name="Tremembé" /> - <iso_639_3_entry - id="tmf" - scope="I" - type="L" - name="Toba-Maskoy" /> - <iso_639_3_entry - id="tmg" - scope="I" - type="E" - name="Ternateño" /> - <iso_639_3_entry - id="tmh" - part2_code="tmh" - scope="M" - type="L" - name="Tamashek" /> - <iso_639_3_entry - id="tmi" - scope="I" - type="L" - name="Tutuba" /> - <iso_639_3_entry - id="tmj" - scope="I" - type="L" - name="Samarokena" /> - <iso_639_3_entry - id="tmk" - scope="I" - type="L" - name="Tamang; Northwestern" /> - <iso_639_3_entry - id="tml" - scope="I" - type="L" - name="Citak; Tamnim" /> - <iso_639_3_entry - id="tmm" - scope="I" - type="L" - name="Tai Thanh" /> - <iso_639_3_entry - id="tmn" - scope="I" - type="L" - name="Taman (Indonesia)" /> - <iso_639_3_entry - id="tmo" - scope="I" - type="L" - name="Temoq" /> - <iso_639_3_entry - id="tmp" - scope="I" - type="L" - name="Tai Mène" /> - <iso_639_3_entry - id="tmq" - scope="I" - type="L" - name="Tumleo" /> - <iso_639_3_entry - id="tmr" - scope="I" - type="E" - name="Aramaic; Jewish Babylonian (ca. 200-1200 CE)" /> - <iso_639_3_entry - id="tms" - scope="I" - type="L" - name="Tima" /> - <iso_639_3_entry - id="tmt" - scope="I" - type="L" - name="Tasmate" /> - <iso_639_3_entry - id="tmu" - scope="I" - type="L" - name="Iau" /> - <iso_639_3_entry - id="tmv" - scope="I" - type="L" - name="Tembo (Motembo)" /> - <iso_639_3_entry - id="tmw" - scope="I" - type="L" - name="Temuan" /> - <iso_639_3_entry - id="tmy" - scope="I" - type="L" - name="Tami" /> - <iso_639_3_entry - id="tmz" - scope="I" - type="E" - name="Tamanaku" /> - <iso_639_3_entry - id="tna" - scope="I" - type="L" - name="Tacana" /> - <iso_639_3_entry - id="tnb" - scope="I" - type="L" - name="Tunebo; Western" /> - <iso_639_3_entry - id="tnc" - scope="I" - type="L" - name="Tanimuca-Retuarã" /> - <iso_639_3_entry - id="tnd" - scope="I" - type="L" - name="Tunebo; Angosturas" /> - <iso_639_3_entry - id="tne" - scope="I" - type="L" - name="Kallahan; Tinoc" /> - <iso_639_3_entry - id="tng" - scope="I" - type="L" - name="Tobanga" /> - <iso_639_3_entry - id="tnh" - scope="I" - type="L" - name="Maiani" /> - <iso_639_3_entry - id="tni" - scope="I" - type="L" - name="Tandia" /> - <iso_639_3_entry - id="tnk" - scope="I" - type="L" - name="Kwamera" /> - <iso_639_3_entry - id="tnl" - scope="I" - type="L" - name="Lenakel" /> - <iso_639_3_entry - id="tnm" - scope="I" - type="L" - name="Tabla" /> - <iso_639_3_entry - id="tnn" - scope="I" - type="L" - name="Tanna; North" /> - <iso_639_3_entry - id="tno" - scope="I" - type="L" - name="Toromono" /> - <iso_639_3_entry - id="tnp" - scope="I" - type="L" - name="Whitesands" /> - <iso_639_3_entry - id="tnq" - scope="I" - type="E" - name="Taino" /> - <iso_639_3_entry - id="tnr" - scope="I" - type="L" - name="Bedik" /> - <iso_639_3_entry - id="tns" - scope="I" - type="L" - name="Tenis" /> - <iso_639_3_entry - id="tnt" - scope="I" - type="L" - name="Tontemboan" /> - <iso_639_3_entry - id="tnu" - scope="I" - type="L" - name="Tay Khang" /> - <iso_639_3_entry - id="tnv" - scope="I" - type="L" - name="Tangchangya" /> - <iso_639_3_entry - id="tnw" - scope="I" - type="L" - name="Tonsawang" /> - <iso_639_3_entry - id="tnx" - scope="I" - type="L" - name="Tanema" /> - <iso_639_3_entry - id="tny" - scope="I" - type="L" - name="Tongwe" /> - <iso_639_3_entry - id="tnz" - scope="I" - type="L" - name="Tonga (Thailand)" /> - <iso_639_3_entry - id="tob" - scope="I" - type="L" - name="Toba" /> - <iso_639_3_entry - id="toc" - scope="I" - type="L" - name="Totonac; Coyutla" /> - <iso_639_3_entry - id="tod" - scope="I" - type="L" - name="Toma" /> - <iso_639_3_entry - id="toe" - scope="I" - type="E" - name="Tomedes" /> - <iso_639_3_entry - id="tof" - scope="I" - type="L" - name="Gizrra" /> - <iso_639_3_entry - id="tog" - part2_code="tog" - scope="I" - type="L" - name="Tonga (Nyasa)" /> - <iso_639_3_entry - id="toh" - scope="I" - type="L" - name="Gitonga" /> - <iso_639_3_entry - id="toi" - scope="I" - type="L" - name="Tonga (Zambia)" /> - <iso_639_3_entry - id="toj" - scope="I" - type="L" - name="Tojolabal" /> - <iso_639_3_entry - id="tol" - scope="I" - type="L" - name="Tolowa" /> - <iso_639_3_entry - id="tom" - scope="I" - type="L" - name="Tombulu" /> - <iso_639_3_entry - id="ton" - part1_code="to" - part2_code="ton" - scope="I" - type="L" - name="Tonga (Tonga Islands)" /> - <iso_639_3_entry - id="too" - scope="I" - type="L" - name="Totonac; Xicotepec De Juárez" /> - <iso_639_3_entry - id="top" - scope="I" - type="L" - name="Totonac; Papantla" /> - <iso_639_3_entry - id="toq" - scope="I" - type="L" - name="Toposa" /> - <iso_639_3_entry - id="tor" - scope="I" - type="L" - name="Banda; Togbo-Vara" /> - <iso_639_3_entry - id="tos" - scope="I" - type="L" - name="Totonac; Highland" /> - <iso_639_3_entry - id="tou" - scope="I" - type="L" - name="Tho" /> - <iso_639_3_entry - id="tov" - scope="I" - type="L" - name="Taromi; Upper" /> - <iso_639_3_entry - id="tow" - scope="I" - type="L" - name="Jemez" /> - <iso_639_3_entry - id="tox" - scope="I" - type="L" - name="Tobian" /> - <iso_639_3_entry - id="toy" - scope="I" - type="L" - name="Topoiyo" /> - <iso_639_3_entry - id="toz" - scope="I" - type="L" - name="To" /> - <iso_639_3_entry - id="tpa" - scope="I" - type="L" - name="Taupota" /> - <iso_639_3_entry - id="tpc" - scope="I" - type="L" - name="Tlapanec; Azoyú" /> - <iso_639_3_entry - id="tpe" - scope="I" - type="L" - name="Tippera" /> - <iso_639_3_entry - id="tpf" - scope="I" - type="L" - name="Tarpia" /> - <iso_639_3_entry - id="tpg" - scope="I" - type="L" - name="Kula" /> - <iso_639_3_entry - id="tpi" - part2_code="tpi" - scope="I" - type="L" - name="Tok Pisin" /> - <iso_639_3_entry - id="tpj" - scope="I" - type="L" - name="Tapieté" /> - <iso_639_3_entry - id="tpk" - scope="I" - type="E" - name="Tupinikin" /> - <iso_639_3_entry - id="tpl" - scope="I" - type="L" - name="Tlapanec; Tlacoapa" /> - <iso_639_3_entry - id="tpm" - scope="I" - type="L" - name="Tampulma" /> - <iso_639_3_entry - id="tpn" - scope="I" - type="E" - name="Tupinambá" /> - <iso_639_3_entry - id="tpo" - scope="I" - type="L" - name="Tai Pao" /> - <iso_639_3_entry - id="tpp" - scope="I" - type="L" - name="Tepehua; Pisaflores" /> - <iso_639_3_entry - id="tpq" - scope="I" - type="L" - name="Tukpa" /> - <iso_639_3_entry - id="tpr" - scope="I" - type="L" - name="Tuparí" /> - <iso_639_3_entry - id="tpt" - scope="I" - type="L" - name="Tepehua; Tlachichilco" /> - <iso_639_3_entry - id="tpu" - scope="I" - type="L" - name="Tampuan" /> - <iso_639_3_entry - id="tpv" - scope="I" - type="L" - name="Tanapag" /> - <iso_639_3_entry - id="tpw" - scope="I" - type="E" - name="Tupí" /> - <iso_639_3_entry - id="tpx" - scope="I" - type="L" - name="Tlapanec; Acatepec" /> - <iso_639_3_entry - id="tpy" - scope="I" - type="L" - name="Trumai" /> - <iso_639_3_entry - id="tpz" - scope="I" - type="L" - name="Tinputz" /> - <iso_639_3_entry - id="tqb" - scope="I" - type="L" - name="Tembé" /> - <iso_639_3_entry - id="tql" - scope="I" - type="L" - name="Lehali" /> - <iso_639_3_entry - id="tqm" - scope="I" - type="L" - name="Turumsa" /> - <iso_639_3_entry - id="tqn" - scope="I" - type="L" - name="Tenino" /> - <iso_639_3_entry - id="tqo" - scope="I" - type="L" - name="Toaripi" /> - <iso_639_3_entry - id="tqp" - scope="I" - type="L" - name="Tomoip" /> - <iso_639_3_entry - id="tqq" - scope="I" - type="L" - name="Tunni" /> - <iso_639_3_entry - id="tqr" - scope="I" - type="E" - name="Torona" /> - <iso_639_3_entry - id="tqt" - scope="I" - type="L" - name="Totonac; Western" /> - <iso_639_3_entry - id="tqu" - scope="I" - type="L" - name="Touo" /> - <iso_639_3_entry - id="tqw" - scope="I" - type="E" - name="Tonkawa" /> - <iso_639_3_entry - id="tra" - scope="I" - type="L" - name="Tirahi" /> - <iso_639_3_entry - id="trb" - scope="I" - type="L" - name="Terebu" /> - <iso_639_3_entry - id="trc" - scope="I" - type="L" - name="Triqui; Copala" /> - <iso_639_3_entry - id="trd" - scope="I" - type="L" - name="Turi" /> - <iso_639_3_entry - id="tre" - scope="I" - type="L" - name="Tarangan; East" /> - <iso_639_3_entry - id="trf" - scope="I" - type="L" - name="Creole English; Trinidadian" /> - <iso_639_3_entry - id="trg" - scope="I" - type="L" - name="Lishán Didán" /> - <iso_639_3_entry - id="trh" - scope="I" - type="L" - name="Turaka" /> - <iso_639_3_entry - id="tri" - scope="I" - type="L" - name="Trió" /> - <iso_639_3_entry - id="trj" - scope="I" - type="L" - name="Toram" /> - <iso_639_3_entry - id="trl" - scope="I" - type="L" - name="Scottish; Traveller" /> - <iso_639_3_entry - id="trm" - scope="I" - type="L" - name="Tregami" /> - <iso_639_3_entry - id="trn" - scope="I" - type="L" - name="Trinitario" /> - <iso_639_3_entry - id="tro" - scope="I" - type="L" - name="Naga; Tarao" /> - <iso_639_3_entry - id="trp" - scope="I" - type="L" - name="Kok Borok" /> - <iso_639_3_entry - id="trq" - scope="I" - type="L" - name="Triqui; San Martín Itunyoso" /> - <iso_639_3_entry - id="trr" - scope="I" - type="L" - name="Taushiro" /> - <iso_639_3_entry - id="trs" - scope="I" - type="L" - name="Triqui; Chicahuaxtla" /> - <iso_639_3_entry - id="trt" - scope="I" - type="L" - name="Tunggare" /> - <iso_639_3_entry - id="tru" - scope="I" - type="L" - name="Turoyo" /> - <iso_639_3_entry - id="trv" - scope="I" - type="L" - name="Taroko" /> - <iso_639_3_entry - id="trw" - scope="I" - type="L" - name="Torwali" /> - <iso_639_3_entry - id="trx" - scope="I" - type="L" - name="Bidayuh; Tringgus-Sembaan" /> - <iso_639_3_entry - id="try" - scope="I" - type="E" - name="Turung" /> - <iso_639_3_entry - id="trz" - scope="I" - type="E" - name="Torá" /> - <iso_639_3_entry - id="tsa" - scope="I" - type="L" - name="Tsaangi" /> - <iso_639_3_entry - id="tsb" - scope="I" - type="L" - name="Tsamai" /> - <iso_639_3_entry - id="tsc" - scope="I" - type="L" - name="Tswa" /> - <iso_639_3_entry - id="tsd" - scope="I" - type="L" - name="Tsakonian" /> - <iso_639_3_entry - id="tse" - scope="I" - type="L" - name="Tunisian Sign Language" /> - <iso_639_3_entry - id="tsf" - scope="I" - type="L" - name="Tamang; Southwestern" /> - <iso_639_3_entry - id="tsg" - scope="I" - type="L" - name="Tausug" /> - <iso_639_3_entry - id="tsh" - scope="I" - type="L" - name="Tsuvan" /> - <iso_639_3_entry - id="tsi" - part2_code="tsi" - scope="I" - type="L" - name="Tsimshian" /> - <iso_639_3_entry - id="tsj" - scope="I" - type="L" - name="Tshangla" /> - <iso_639_3_entry - id="tsk" - scope="I" - type="L" - name="Tseku" /> - <iso_639_3_entry - id="tsl" - scope="I" - type="L" - name="Ts'ün-Lao" /> - <iso_639_3_entry - id="tsm" - scope="I" - type="L" - name="Turkish Sign Language" /> - <iso_639_3_entry - id="tsn" - part1_code="tn" - part2_code="tsn" - scope="I" - type="L" - name="Tswana" /> - <iso_639_3_entry - id="tso" - part1_code="ts" - part2_code="tso" - scope="I" - type="L" - name="Tsonga" /> - <iso_639_3_entry - id="tsp" - scope="I" - type="L" - name="Toussian; Northern" /> - <iso_639_3_entry - id="tsq" - scope="I" - type="L" - name="Thai Sign Language" /> - <iso_639_3_entry - id="tsr" - scope="I" - type="L" - name="Akei" /> - <iso_639_3_entry - id="tss" - scope="I" - type="L" - name="Taiwan Sign Language" /> - <iso_639_3_entry - id="tst" - scope="I" - type="L" - name="Songway Kiini; Tondi" /> - <iso_639_3_entry - id="tsu" - scope="I" - type="L" - name="Tsou" /> - <iso_639_3_entry - id="tsv" - scope="I" - type="L" - name="Tsogo" /> - <iso_639_3_entry - id="tsw" - scope="I" - type="L" - name="Tsishingini" /> - <iso_639_3_entry - id="tsx" - scope="I" - type="L" - name="Mubami" /> - <iso_639_3_entry - id="tsy" - scope="I" - type="L" - name="Tebul Sign Language" /> - <iso_639_3_entry - id="tsz" - scope="I" - type="L" - name="Purepecha" /> - <iso_639_3_entry - id="tta" - scope="I" - type="E" - name="Tutelo" /> - <iso_639_3_entry - id="ttb" - scope="I" - type="L" - name="Gaa" /> - <iso_639_3_entry - id="ttc" - scope="I" - type="L" - name="Tektiteko" /> - <iso_639_3_entry - id="ttd" - scope="I" - type="L" - name="Tauade" /> - <iso_639_3_entry - id="tte" - scope="I" - type="L" - name="Bwanabwana" /> - <iso_639_3_entry - id="ttf" - scope="I" - type="L" - name="Tuotomb" /> - <iso_639_3_entry - id="ttg" - scope="I" - type="L" - name="Tutong" /> - <iso_639_3_entry - id="tth" - scope="I" - type="L" - name="Ta'oih; Upper" /> - <iso_639_3_entry - id="tti" - scope="I" - type="L" - name="Tobati" /> - <iso_639_3_entry - id="ttj" - scope="I" - type="L" - name="Tooro" /> - <iso_639_3_entry - id="ttk" - scope="I" - type="L" - name="Totoro" /> - <iso_639_3_entry - id="ttl" - scope="I" - type="L" - name="Totela" /> - <iso_639_3_entry - id="ttm" - scope="I" - type="L" - name="Tutchone; Northern" /> - <iso_639_3_entry - id="ttn" - scope="I" - type="L" - name="Towei" /> - <iso_639_3_entry - id="tto" - scope="I" - type="L" - name="Ta'oih; Lower" /> - <iso_639_3_entry - id="ttp" - scope="I" - type="L" - name="Tombelala" /> - <iso_639_3_entry - id="ttq" - scope="I" - type="L" - name="Tamajaq; Tawallammat" /> - <iso_639_3_entry - id="ttr" - scope="I" - type="L" - name="Tera" /> - <iso_639_3_entry - id="tts" - scope="I" - type="L" - name="Thai; Northeastern" /> - <iso_639_3_entry - id="ttt" - scope="I" - type="L" - name="Tat; Muslim" /> - <iso_639_3_entry - id="ttu" - scope="I" - type="L" - name="Torau" /> - <iso_639_3_entry - id="ttv" - scope="I" - type="L" - name="Titan" /> - <iso_639_3_entry - id="ttw" - scope="I" - type="L" - name="Long Wat" /> - <iso_639_3_entry - id="tty" - scope="I" - type="L" - name="Sikaritai" /> - <iso_639_3_entry - id="ttz" - scope="I" - type="L" - name="Tsum" /> - <iso_639_3_entry - id="tua" - scope="I" - type="L" - name="Wiarumus" /> - <iso_639_3_entry - id="tub" - scope="I" - type="L" - name="Tübatulabal" /> - <iso_639_3_entry - id="tuc" - scope="I" - type="L" - name="Mutu" /> - <iso_639_3_entry - id="tud" - scope="I" - type="E" - name="Tuxá" /> - <iso_639_3_entry - id="tue" - scope="I" - type="L" - name="Tuyuca" /> - <iso_639_3_entry - id="tuf" - scope="I" - type="L" - name="Tunebo; Central" /> - <iso_639_3_entry - id="tug" - scope="I" - type="L" - name="Tunia" /> - <iso_639_3_entry - id="tuh" - scope="I" - type="L" - name="Taulil" /> - <iso_639_3_entry - id="tui" - scope="I" - type="L" - name="Tupuri" /> - <iso_639_3_entry - id="tuj" - scope="I" - type="L" - name="Tugutil" /> - <iso_639_3_entry - id="tuk" - part1_code="tk" - part2_code="tuk" - scope="I" - type="L" - name="Turkmen" /> - <iso_639_3_entry - id="tul" - scope="I" - type="L" - name="Tula" /> - <iso_639_3_entry - id="tum" - part2_code="tum" - scope="I" - type="L" - name="Tumbuka" /> - <iso_639_3_entry - id="tun" - scope="I" - type="E" - name="Tunica" /> - <iso_639_3_entry - id="tuo" - scope="I" - type="L" - name="Tucano" /> - <iso_639_3_entry - id="tuq" - scope="I" - type="L" - name="Tedaga" /> - <iso_639_3_entry - id="tur" - part1_code="tr" - part2_code="tur" - scope="I" - type="L" - name="Turkish" /> - <iso_639_3_entry - id="tus" - scope="I" - type="L" - name="Tuscarora" /> - <iso_639_3_entry - id="tuu" - scope="I" - type="L" - name="Tututni" /> - <iso_639_3_entry - id="tuv" - scope="I" - type="L" - name="Turkana" /> - <iso_639_3_entry - id="tux" - scope="I" - type="E" - name="Tuxináwa" /> - <iso_639_3_entry - id="tuy" - scope="I" - type="L" - name="Tugen" /> - <iso_639_3_entry - id="tuz" - scope="I" - type="L" - name="Turka" /> - <iso_639_3_entry - id="tva" - scope="I" - type="L" - name="Vaghua" /> - <iso_639_3_entry - id="tvd" - scope="I" - type="L" - name="Tsuvadi" /> - <iso_639_3_entry - id="tve" - scope="I" - type="L" - name="Te'un" /> - <iso_639_3_entry - id="tvk" - scope="I" - type="L" - name="Ambrym; Southeast" /> - <iso_639_3_entry - id="tvl" - part2_code="tvl" - scope="I" - type="L" - name="Tuvalu" /> - <iso_639_3_entry - id="tvm" - scope="I" - type="L" - name="Tela-Masbuar" /> - <iso_639_3_entry - id="tvn" - scope="I" - type="L" - name="Tavoyan" /> - <iso_639_3_entry - id="tvo" - scope="I" - type="L" - name="Tidore" /> - <iso_639_3_entry - id="tvs" - scope="I" - type="L" - name="Taveta" /> - <iso_639_3_entry - id="tvt" - scope="I" - type="L" - name="Naga; Tutsa" /> - <iso_639_3_entry - id="tvw" - scope="I" - type="L" - name="Sedoa" /> - <iso_639_3_entry - id="tvy" - scope="I" - type="E" - name="Pidgin; Timor" /> - <iso_639_3_entry - id="twa" - scope="I" - type="E" - name="Twana" /> - <iso_639_3_entry - id="twb" - scope="I" - type="L" - name="Tawbuid; Western" /> - <iso_639_3_entry - id="twc" - scope="I" - type="E" - name="Teshenawa" /> - <iso_639_3_entry - id="twd" - scope="I" - type="L" - name="Twents" /> - <iso_639_3_entry - id="twe" - scope="I" - type="L" - name="Tewa (Indonesia)" /> - <iso_639_3_entry - id="twf" - scope="I" - type="L" - name="Tiwa; Northern" /> - <iso_639_3_entry - id="twg" - scope="I" - type="L" - name="Tereweng" /> - <iso_639_3_entry - id="twh" - scope="I" - type="L" - name="Tai Dón" /> - <iso_639_3_entry - id="twi" - part1_code="tw" - part2_code="twi" - scope="I" - type="L" - name="Twi" /> - <iso_639_3_entry - id="twl" - scope="I" - type="L" - name="Tawara" /> - <iso_639_3_entry - id="twm" - scope="I" - type="L" - name="Monpa; Tawang" /> - <iso_639_3_entry - id="twn" - scope="I" - type="L" - name="Twendi" /> - <iso_639_3_entry - id="two" - scope="I" - type="L" - name="Tswapong" /> - <iso_639_3_entry - id="twp" - scope="I" - type="L" - name="Ere" /> - <iso_639_3_entry - id="twq" - scope="I" - type="L" - name="Tasawaq" /> - <iso_639_3_entry - id="twr" - scope="I" - type="L" - name="Tarahumara; Southwestern" /> - <iso_639_3_entry - id="twt" - scope="I" - type="E" - name="Turiwára" /> - <iso_639_3_entry - id="twu" - scope="I" - type="L" - name="Termanu" /> - <iso_639_3_entry - id="tww" - scope="I" - type="L" - name="Tuwari" /> - <iso_639_3_entry - id="twx" - scope="I" - type="L" - name="Tewe" /> - <iso_639_3_entry - id="twy" - scope="I" - type="L" - name="Tawoyan" /> - <iso_639_3_entry - id="txa" - scope="I" - type="L" - name="Tombonuo" /> - <iso_639_3_entry - id="txb" - scope="I" - type="A" - name="Tokharian B" /> - <iso_639_3_entry - id="txc" - scope="I" - type="E" - name="Tsetsaut" /> - <iso_639_3_entry - id="txe" - scope="I" - type="L" - name="Totoli" /> - <iso_639_3_entry - id="txg" - scope="I" - type="A" - name="Tangut" /> - <iso_639_3_entry - id="txh" - scope="I" - type="A" - name="Thracian" /> - <iso_639_3_entry - id="txi" - scope="I" - type="L" - name="Ikpeng" /> - <iso_639_3_entry - id="txm" - scope="I" - type="L" - name="Tomini" /> - <iso_639_3_entry - id="txn" - scope="I" - type="L" - name="Tarangan; West" /> - <iso_639_3_entry - id="txo" - scope="I" - type="L" - name="Toto" /> - <iso_639_3_entry - id="txq" - scope="I" - type="L" - name="Tii" /> - <iso_639_3_entry - id="txr" - scope="I" - type="A" - name="Tartessian" /> - <iso_639_3_entry - id="txs" - scope="I" - type="L" - name="Tonsea" /> - <iso_639_3_entry - id="txt" - scope="I" - type="L" - name="Citak" /> - <iso_639_3_entry - id="txu" - scope="I" - type="L" - name="Kayapó" /> - <iso_639_3_entry - id="txx" - scope="I" - type="L" - name="Tatana" /> - <iso_639_3_entry - id="txy" - scope="I" - type="L" - name="Malagasy; Tanosy" /> - <iso_639_3_entry - id="tya" - scope="I" - type="L" - name="Tauya" /> - <iso_639_3_entry - id="tye" - scope="I" - type="L" - name="Kyenga" /> - <iso_639_3_entry - id="tyh" - scope="I" - type="L" - name="O'du" /> - <iso_639_3_entry - id="tyi" - scope="I" - type="L" - name="Teke-Tsaayi" /> - <iso_639_3_entry - id="tyj" - scope="I" - type="L" - name="Tai Do" /> - <iso_639_3_entry - id="tyl" - scope="I" - type="L" - name="Thu Lao" /> - <iso_639_3_entry - id="tyn" - scope="I" - type="L" - name="Kombai" /> - <iso_639_3_entry - id="typ" - scope="I" - type="E" - name="Thaypan" /> - <iso_639_3_entry - id="tyr" - scope="I" - type="L" - name="Tai Daeng" /> - <iso_639_3_entry - id="tys" - scope="I" - type="L" - name="Tày Sa Pa" /> - <iso_639_3_entry - id="tyt" - scope="I" - type="L" - name="Tày Tac" /> - <iso_639_3_entry - id="tyu" - scope="I" - type="L" - name="Kua" /> - <iso_639_3_entry - id="tyv" - part2_code="tyv" - scope="I" - type="L" - name="Tuvinian" /> - <iso_639_3_entry - id="tyx" - scope="I" - type="L" - name="Teke-Tyee" /> - <iso_639_3_entry - id="tyz" - scope="I" - type="L" - name="Tày" /> - <iso_639_3_entry - id="tza" - scope="I" - type="L" - name="Tanzanian Sign Language" /> - <iso_639_3_entry - id="tzh" - scope="I" - type="L" - name="Tzeltal" /> - <iso_639_3_entry - id="tzj" - scope="I" - type="L" - name="Tz'utujil" /> - <iso_639_3_entry - id="tzm" - scope="I" - type="L" - name="Tamazight; Central Atlas" /> - <iso_639_3_entry - id="tzn" - scope="I" - type="L" - name="Tugun" /> - <iso_639_3_entry - id="tzo" - scope="I" - type="L" - name="Tzotzil" /> - <iso_639_3_entry - id="tzx" - scope="I" - type="L" - name="Tabriak" /> - <iso_639_3_entry - id="uam" - scope="I" - type="E" - name="Uamué" /> - <iso_639_3_entry - id="uan" - scope="I" - type="L" - name="Kuan" /> - <iso_639_3_entry - id="uar" - scope="I" - type="L" - name="Tairuma" /> - <iso_639_3_entry - id="uba" - scope="I" - type="L" - name="Ubang" /> - <iso_639_3_entry - id="ubi" - scope="I" - type="L" - name="Ubi" /> - <iso_639_3_entry - id="ubl" - scope="I" - type="L" - name="Bikol; Buhi'non" /> - <iso_639_3_entry - id="ubr" - scope="I" - type="L" - name="Ubir" /> - <iso_639_3_entry - id="ubu" - scope="I" - type="L" - name="Umbu-Ungu" /> - <iso_639_3_entry - id="uby" - scope="I" - type="E" - name="Ubykh" /> - <iso_639_3_entry - id="uda" - scope="I" - type="L" - name="Uda" /> - <iso_639_3_entry - id="ude" - scope="I" - type="L" - name="Udihe" /> - <iso_639_3_entry - id="udg" - scope="I" - type="L" - name="Muduga" /> - <iso_639_3_entry - id="udi" - scope="I" - type="L" - name="Udi" /> - <iso_639_3_entry - id="udj" - scope="I" - type="L" - name="Ujir" /> - <iso_639_3_entry - id="udl" - scope="I" - type="L" - name="Wuzlam" /> - <iso_639_3_entry - id="udm" - part2_code="udm" - scope="I" - type="L" - name="Udmurt" /> - <iso_639_3_entry - id="udu" - scope="I" - type="L" - name="Uduk" /> - <iso_639_3_entry - id="ues" - scope="I" - type="L" - name="Kioko" /> - <iso_639_3_entry - id="ufi" - scope="I" - type="L" - name="Ufim" /> - <iso_639_3_entry - id="uga" - part2_code="uga" - scope="I" - type="A" - name="Ugaritic" /> - <iso_639_3_entry - id="ugb" - scope="I" - type="E" - name="Kuku-Ugbanh" /> - <iso_639_3_entry - id="uge" - scope="I" - type="L" - name="Ughele" /> - <iso_639_3_entry - id="ugn" - scope="I" - type="L" - name="Ugandan Sign Language" /> - <iso_639_3_entry - id="ugo" - scope="I" - type="L" - name="Ugong" /> - <iso_639_3_entry - id="ugy" - scope="I" - type="L" - name="Uruguayan Sign Language" /> - <iso_639_3_entry - id="uha" - scope="I" - type="L" - name="Uhami" /> - <iso_639_3_entry - id="uhn" - scope="I" - type="L" - name="Damal" /> - <iso_639_3_entry - id="uig" - part1_code="ug" - part2_code="uig" - scope="I" - type="L" - name="Uighur" /> - <iso_639_3_entry - id="uis" - scope="I" - type="L" - name="Uisai" /> - <iso_639_3_entry - id="uiv" - scope="I" - type="L" - name="Iyive" /> - <iso_639_3_entry - id="uji" - scope="I" - type="L" - name="Tanjijili" /> - <iso_639_3_entry - id="uka" - scope="I" - type="L" - name="Kaburi" /> - <iso_639_3_entry - id="ukg" - scope="I" - type="L" - name="Ukuriguma" /> - <iso_639_3_entry - id="ukh" - scope="I" - type="L" - name="Ukhwejo" /> - <iso_639_3_entry - id="ukl" - scope="I" - type="L" - name="Ukrainian Sign Language" /> - <iso_639_3_entry - id="ukp" - scope="I" - type="L" - name="Ukpe-Bayobiri" /> - <iso_639_3_entry - id="ukq" - scope="I" - type="L" - name="Ukwa" /> - <iso_639_3_entry - id="ukr" - part1_code="uk" - part2_code="ukr" - scope="I" - type="L" - name="Ukrainian" /> - <iso_639_3_entry - id="uks" - scope="I" - type="L" - name="Urubú-Kaapor Sign Language" /> - <iso_639_3_entry - id="uku" - scope="I" - type="L" - name="Ukue" /> - <iso_639_3_entry - id="ukw" - scope="I" - type="L" - name="Ukwuani-Aboh-Ndoni" /> - <iso_639_3_entry - id="ula" - scope="I" - type="L" - name="Fungwa" /> - <iso_639_3_entry - id="ulb" - scope="I" - type="L" - name="Ulukwumi" /> - <iso_639_3_entry - id="ulc" - scope="I" - type="L" - name="Ulch" /> - <iso_639_3_entry - id="ulf" - scope="I" - type="L" - name="Usku" /> - <iso_639_3_entry - id="uli" - scope="I" - type="L" - name="Ulithian" /> - <iso_639_3_entry - id="ulk" - scope="I" - type="L" - name="Meriam" /> - <iso_639_3_entry - id="ull" - scope="I" - type="L" - name="Ullatan" /> - <iso_639_3_entry - id="ulm" - scope="I" - type="L" - name="Ulumanda'" /> - <iso_639_3_entry - id="uln" - scope="I" - type="L" - name="Unserdeutsch" /> - <iso_639_3_entry - id="ulu" - scope="I" - type="L" - name="Uma' Lung" /> - <iso_639_3_entry - id="ulw" - scope="I" - type="L" - name="Ulwa" /> - <iso_639_3_entry - id="uma" - scope="I" - type="L" - name="Umatilla" /> - <iso_639_3_entry - id="umb" - part2_code="umb" - scope="I" - type="L" - name="Umbundu" /> - <iso_639_3_entry - id="umc" - scope="I" - type="A" - name="Marrucinian" /> - <iso_639_3_entry - id="umd" - scope="I" - type="E" - name="Umbindhamu" /> - <iso_639_3_entry - id="umg" - scope="I" - type="E" - name="Umbuygamu" /> - <iso_639_3_entry - id="umi" - scope="I" - type="L" - name="Ukit" /> - <iso_639_3_entry - id="umm" - scope="I" - type="L" - name="Umon" /> - <iso_639_3_entry - id="umn" - scope="I" - type="L" - name="Naga; Makyan" /> - <iso_639_3_entry - id="umo" - scope="I" - type="E" - name="Umotína" /> - <iso_639_3_entry - id="ump" - scope="I" - type="L" - name="Umpila" /> - <iso_639_3_entry - id="umr" - scope="I" - type="E" - name="Umbugarla" /> - <iso_639_3_entry - id="ums" - scope="I" - type="L" - name="Pendau" /> - <iso_639_3_entry - id="umu" - scope="I" - type="L" - name="Munsee" /> - <iso_639_3_entry - id="una" - scope="I" - type="L" - name="Watut; North" /> - <iso_639_3_entry - id="und" - part2_code="und" - scope="S" - type="S" - name="Undetermined" /> - <iso_639_3_entry - id="une" - scope="I" - type="L" - name="Uneme" /> - <iso_639_3_entry - id="ung" - scope="I" - type="L" - name="Ngarinyin" /> - <iso_639_3_entry - id="unk" - scope="I" - type="L" - name="Enawené-Nawé" /> - <iso_639_3_entry - id="unm" - scope="I" - type="E" - name="Unami" /> - <iso_639_3_entry - id="unp" - scope="I" - type="L" - name="Worora" /> - <iso_639_3_entry - id="unr" - scope="I" - type="L" - name="Mundari" /> - <iso_639_3_entry - id="unx" - scope="I" - type="L" - name="Munda" /> - <iso_639_3_entry - id="unz" - scope="I" - type="L" - name="Kaili; Unde" /> - <iso_639_3_entry - id="uok" - scope="I" - type="L" - name="Uokha" /> - <iso_639_3_entry - id="upi" - scope="I" - type="L" - name="Umeda" /> - <iso_639_3_entry - id="upv" - scope="I" - type="L" - name="Uripiv-Wala-Rano-Atchin" /> - <iso_639_3_entry - id="ura" - scope="I" - type="L" - name="Urarina" /> - <iso_639_3_entry - id="urb" - scope="I" - type="L" - name="Urubú-Kaapor" /> - <iso_639_3_entry - id="urc" - scope="I" - type="E" - name="Urningangg" /> - <iso_639_3_entry - id="urd" - part1_code="ur" - part2_code="urd" - scope="I" - type="L" - name="Urdu" /> - <iso_639_3_entry - id="ure" - scope="I" - type="L" - name="Uru" /> - <iso_639_3_entry - id="urf" - scope="I" - type="E" - name="Uradhi" /> - <iso_639_3_entry - id="urg" - scope="I" - type="L" - name="Urigina" /> - <iso_639_3_entry - id="urh" - scope="I" - type="L" - name="Urhobo" /> - <iso_639_3_entry - id="uri" - scope="I" - type="L" - name="Urim" /> - <iso_639_3_entry - id="urk" - scope="I" - type="L" - name="Urak Lawoi'" /> - <iso_639_3_entry - id="url" - scope="I" - type="L" - name="Urali" /> - <iso_639_3_entry - id="urm" - scope="I" - type="L" - name="Urapmin" /> - <iso_639_3_entry - id="urn" - scope="I" - type="L" - name="Uruangnirin" /> - <iso_639_3_entry - id="uro" - scope="I" - type="L" - name="Ura (Papua New Guinea)" /> - <iso_639_3_entry - id="urp" - scope="I" - type="L" - name="Uru-Pa-In" /> - <iso_639_3_entry - id="urr" - scope="I" - type="L" - name="Lehalurup" /> - <iso_639_3_entry - id="urt" - scope="I" - type="L" - name="Urat" /> - <iso_639_3_entry - id="uru" - scope="I" - type="E" - name="Urumi" /> - <iso_639_3_entry - id="urv" - scope="I" - type="E" - name="Uruava" /> - <iso_639_3_entry - id="urw" - scope="I" - type="L" - name="Sop" /> - <iso_639_3_entry - id="urx" - scope="I" - type="L" - name="Urimo" /> - <iso_639_3_entry - id="ury" - scope="I" - type="L" - name="Orya" /> - <iso_639_3_entry - id="urz" - scope="I" - type="L" - name="Uru-Eu-Wau-Wau" /> - <iso_639_3_entry - id="usa" - scope="I" - type="L" - name="Usarufa" /> - <iso_639_3_entry - id="ush" - scope="I" - type="L" - name="Ushojo" /> - <iso_639_3_entry - id="usi" - scope="I" - type="L" - name="Usui" /> - <iso_639_3_entry - id="usk" - scope="I" - type="L" - name="Usaghade" /> - <iso_639_3_entry - id="usp" - scope="I" - type="L" - name="Uspanteco" /> - <iso_639_3_entry - id="usu" - scope="I" - type="L" - name="Uya" /> - <iso_639_3_entry - id="uta" - scope="I" - type="L" - name="Otank" /> - <iso_639_3_entry - id="ute" - scope="I" - type="L" - name="Ute-Southern Paiute" /> - <iso_639_3_entry - id="utp" - scope="I" - type="L" - name="Amba (Solomon Islands)" /> - <iso_639_3_entry - id="utr" - scope="I" - type="L" - name="Etulo" /> - <iso_639_3_entry - id="utu" - scope="I" - type="L" - name="Utu" /> - <iso_639_3_entry - id="uum" - scope="I" - type="L" - name="Urum" /> - <iso_639_3_entry - id="uun" - scope="I" - type="L" - name="Kulon-Pazeh" /> - <iso_639_3_entry - id="uur" - scope="I" - type="L" - name="Ura (Vanuatu)" /> - <iso_639_3_entry - id="uuu" - scope="I" - type="L" - name="U" /> - <iso_639_3_entry - id="uve" - scope="I" - type="L" - name="Uvean; West" /> - <iso_639_3_entry - id="uvh" - scope="I" - type="L" - name="Uri" /> - <iso_639_3_entry - id="uvl" - scope="I" - type="L" - name="Lote" /> - <iso_639_3_entry - id="uwa" - scope="I" - type="L" - name="Kuku-Uwanh" /> - <iso_639_3_entry - id="uya" - scope="I" - type="L" - name="Doko-Uyanga" /> - <iso_639_3_entry - id="uzb" - part1_code="uz" - part2_code="uzb" - scope="M" - type="L" - name="Uzbek" /> - <iso_639_3_entry - id="uzn" - scope="I" - type="L" - name="Uzbek; Northern" /> - <iso_639_3_entry - id="uzs" - scope="I" - type="L" - name="Uzbek; Southern" /> - <iso_639_3_entry - id="vaa" - scope="I" - type="L" - name="Vaagri Booli" /> - <iso_639_3_entry - id="vae" - scope="I" - type="L" - name="Vale" /> - <iso_639_3_entry - id="vaf" - scope="I" - type="L" - name="Vafsi" /> - <iso_639_3_entry - id="vag" - scope="I" - type="L" - name="Vagla" /> - <iso_639_3_entry - id="vah" - scope="I" - type="L" - name="Varhadi-Nagpuri" /> - <iso_639_3_entry - id="vai" - part2_code="vai" - scope="I" - type="L" - name="Vai" /> - <iso_639_3_entry - id="vaj" - scope="I" - type="L" - name="Vasekela Bushman" /> - <iso_639_3_entry - id="val" - scope="I" - type="L" - name="Vehes" /> - <iso_639_3_entry - id="vam" - scope="I" - type="L" - name="Vanimo" /> - <iso_639_3_entry - id="van" - scope="I" - type="L" - name="Valman" /> - <iso_639_3_entry - id="vao" - scope="I" - type="L" - name="Vao" /> - <iso_639_3_entry - id="vap" - scope="I" - type="L" - name="Vaiphei" /> - <iso_639_3_entry - id="var" - scope="I" - type="L" - name="Huarijio" /> - <iso_639_3_entry - id="vas" - scope="I" - type="L" - name="Vasavi" /> - <iso_639_3_entry - id="vau" - scope="I" - type="L" - name="Vanuma" /> - <iso_639_3_entry - id="vav" - scope="I" - type="L" - name="Varli" /> - <iso_639_3_entry - id="vay" - scope="I" - type="L" - name="Wayu" /> - <iso_639_3_entry - id="vbb" - scope="I" - type="L" - name="Babar; Southeast" /> - <iso_639_3_entry - id="vbk" - scope="I" - type="L" - name="Bontok; Southwestern" /> - <iso_639_3_entry - id="vec" - scope="I" - type="L" - name="Venetian" /> - <iso_639_3_entry - id="ved" - scope="I" - type="L" - name="Veddah" /> - <iso_639_3_entry - id="vel" - scope="I" - type="L" - name="Veluws" /> - <iso_639_3_entry - id="vem" - scope="I" - type="L" - name="Vemgo-Mabas" /> - <iso_639_3_entry - id="ven" - part1_code="ve" - part2_code="ven" - scope="I" - type="L" - name="Venda" /> - <iso_639_3_entry - id="veo" - scope="I" - type="E" - name="Ventureño" /> - <iso_639_3_entry - id="vep" - scope="I" - type="L" - name="Veps" /> - <iso_639_3_entry - id="ver" - scope="I" - type="L" - name="Mom Jango" /> - <iso_639_3_entry - id="vgr" - scope="I" - type="L" - name="Vaghri" /> - <iso_639_3_entry - id="vgt" - scope="I" - type="L" - name="Vlaamse Gebarentaal" /> - <iso_639_3_entry - id="vic" - scope="I" - type="L" - name="Creole English; Virgin Islands" /> - <iso_639_3_entry - id="vid" - scope="I" - type="L" - name="Vidunda" /> - <iso_639_3_entry - id="vie" - part1_code="vi" - part2_code="vie" - scope="I" - type="L" - name="Vietnamese" /> - <iso_639_3_entry - id="vif" - scope="I" - type="L" - name="Vili" /> - <iso_639_3_entry - id="vig" - scope="I" - type="L" - name="Viemo" /> - <iso_639_3_entry - id="vil" - scope="I" - type="L" - name="Vilela" /> - <iso_639_3_entry - id="vin" - scope="I" - type="L" - name="Vinza" /> - <iso_639_3_entry - id="vis" - scope="I" - type="L" - name="Vishavan" /> - <iso_639_3_entry - id="vit" - scope="I" - type="L" - name="Viti" /> - <iso_639_3_entry - id="viv" - scope="I" - type="L" - name="Iduna" /> - <iso_639_3_entry - id="vka" - scope="I" - type="E" - name="Kariyarra" /> - <iso_639_3_entry - id="vki" - scope="I" - type="L" - name="Ija-Zuba" /> - <iso_639_3_entry - id="vkj" - scope="I" - type="L" - name="Kujarge" /> - <iso_639_3_entry - id="vkk" - scope="I" - type="L" - name="Kaur" /> - <iso_639_3_entry - id="vkl" - scope="I" - type="L" - name="Kulisusu" /> - <iso_639_3_entry - id="vkm" - scope="I" - type="E" - name="Kamakan" /> - <iso_639_3_entry - id="vko" - scope="I" - type="L" - name="Kodeoha" /> - <iso_639_3_entry - id="vkp" - scope="I" - type="L" - name="Creole Portuguese; Korlai" /> - <iso_639_3_entry - id="vkt" - scope="I" - type="L" - name="Malay; Tenggarong Kutai" /> - <iso_639_3_entry - id="vku" - scope="I" - type="L" - name="Kurrama" /> - <iso_639_3_entry - id="vlp" - scope="I" - type="L" - name="Valpei" /> - <iso_639_3_entry - id="vls" - scope="I" - type="L" - name="Vlaams" /> - <iso_639_3_entry - id="vma" - scope="I" - type="L" - name="Martuyhunira" /> - <iso_639_3_entry - id="vmb" - scope="I" - type="E" - name="Mbabaram" /> - <iso_639_3_entry - id="vmc" - scope="I" - type="L" - name="Mixtec; Juxtlahuaca" /> - <iso_639_3_entry - id="vmd" - scope="I" - type="L" - name="Koraga; Mudu" /> - <iso_639_3_entry - id="vme" - scope="I" - type="L" - name="Masela; East" /> - <iso_639_3_entry - id="vmf" - scope="I" - type="L" - name="Mainfränkisch" /> - <iso_639_3_entry - id="vmg" - scope="I" - type="L" - name="Minigir" /> - <iso_639_3_entry - id="vmh" - scope="I" - type="L" - name="Maraghei" /> - <iso_639_3_entry - id="vmi" - scope="I" - type="E" - name="Miwa" /> - <iso_639_3_entry - id="vmj" - scope="I" - type="L" - name="Mixtec; Ixtayutla" /> - <iso_639_3_entry - id="vmk" - scope="I" - type="L" - name="Makhuwa-Shirima" /> - <iso_639_3_entry - id="vml" - scope="I" - type="E" - name="Malgana" /> - <iso_639_3_entry - id="vmm" - scope="I" - type="L" - name="Mixtec; Mitlatongo" /> - <iso_639_3_entry - id="vmp" - scope="I" - type="L" - name="Mazatec; Soyaltepec" /> - <iso_639_3_entry - id="vmq" - scope="I" - type="L" - name="Mixtec; Soyaltepec" /> - <iso_639_3_entry - id="vmr" - scope="I" - type="L" - name="Marenje" /> - <iso_639_3_entry - id="vms" - scope="I" - type="E" - name="Moksela" /> - <iso_639_3_entry - id="vmu" - scope="I" - type="E" - name="Muluridyi" /> - <iso_639_3_entry - id="vmv" - scope="I" - type="E" - name="Maidu; Valley" /> - <iso_639_3_entry - id="vmw" - scope="I" - type="L" - name="Makhuwa" /> - <iso_639_3_entry - id="vmx" - scope="I" - type="L" - name="Mixtec; Tamazola" /> - <iso_639_3_entry - id="vmy" - scope="I" - type="L" - name="Mazatec; Ayautla" /> - <iso_639_3_entry - id="vmz" - scope="I" - type="L" - name="Mazatec; Mazatlán" /> - <iso_639_3_entry - id="vnk" - scope="I" - type="L" - name="Vano" /> - <iso_639_3_entry - id="vnm" - scope="I" - type="L" - name="Vinmavis" /> - <iso_639_3_entry - id="vnp" - scope="I" - type="L" - name="Vunapu" /> - <iso_639_3_entry - id="vol" - part1_code="vo" - part2_code="vol" - scope="I" - type="C" - name="Volapük" /> - <iso_639_3_entry - id="vor" - scope="I" - type="L" - name="Voro" /> - <iso_639_3_entry - id="vot" - part2_code="vot" - scope="I" - type="L" - name="Votic" /> - <iso_639_3_entry - id="vra" - scope="I" - type="L" - name="Vera'a" /> - <iso_639_3_entry - id="vro" - scope="I" - type="L" - name="Võro" /> - <iso_639_3_entry - id="vrs" - scope="I" - type="L" - name="Varisi" /> - <iso_639_3_entry - id="vrt" - scope="I" - type="L" - name="Burmbar" /> - <iso_639_3_entry - id="vsi" - scope="I" - type="L" - name="Moldova Sign Language" /> - <iso_639_3_entry - id="vsl" - scope="I" - type="L" - name="Venezuelan Sign Language" /> - <iso_639_3_entry - id="vsv" - scope="I" - type="L" - name="Valencian Sign Language" /> - <iso_639_3_entry - id="vto" - scope="I" - type="L" - name="Vitou" /> - <iso_639_3_entry - id="vum" - scope="I" - type="L" - name="Vumbu" /> - <iso_639_3_entry - id="vun" - scope="I" - type="L" - name="Vunjo" /> - <iso_639_3_entry - id="vut" - scope="I" - type="L" - name="Vute" /> - <iso_639_3_entry - id="vwa" - scope="I" - type="L" - name="Awa (China)" /> - <iso_639_3_entry - id="waa" - scope="I" - type="L" - name="Walla Walla" /> - <iso_639_3_entry - id="wab" - scope="I" - type="L" - name="Wab" /> - <iso_639_3_entry - id="wac" - scope="I" - type="L" - name="Wasco-Wishram" /> - <iso_639_3_entry - id="wad" - scope="I" - type="L" - name="Wandamen" /> - <iso_639_3_entry - id="wae" - scope="I" - type="L" - name="Walser" /> - <iso_639_3_entry - id="waf" - scope="I" - type="E" - name="Wakoná" /> - <iso_639_3_entry - id="wag" - scope="I" - type="L" - name="Wa'ema" /> - <iso_639_3_entry - id="wah" - scope="I" - type="L" - name="Watubela" /> - <iso_639_3_entry - id="wai" - scope="I" - type="L" - name="Wares" /> - <iso_639_3_entry - id="waj" - scope="I" - type="L" - name="Waffa" /> - <iso_639_3_entry - id="wal" - part2_code="wal" - scope="I" - type="L" - name="Wolaytta" /> - <iso_639_3_entry - id="wam" - scope="I" - type="E" - name="Wampanoag" /> - <iso_639_3_entry - id="wan" - scope="I" - type="L" - name="Wan" /> - <iso_639_3_entry - id="wao" - scope="I" - type="E" - name="Wappo" /> - <iso_639_3_entry - id="wap" - scope="I" - type="L" - name="Wapishana" /> - <iso_639_3_entry - id="waq" - scope="I" - type="L" - name="Wageman" /> - <iso_639_3_entry - id="war" - part2_code="war" - scope="I" - type="L" - name="Waray (Philippines)" /> - <iso_639_3_entry - id="was" - part2_code="was" - scope="I" - type="L" - name="Washo" /> - <iso_639_3_entry - id="wat" - scope="I" - type="L" - name="Kaninuwa" /> - <iso_639_3_entry - id="wau" - scope="I" - type="L" - name="Waurá" /> - <iso_639_3_entry - id="wav" - scope="I" - type="L" - name="Waka" /> - <iso_639_3_entry - id="waw" - scope="I" - type="L" - name="Waiwai" /> - <iso_639_3_entry - id="wax" - scope="I" - type="L" - name="Watam" /> - <iso_639_3_entry - id="way" - scope="I" - type="L" - name="Wayana" /> - <iso_639_3_entry - id="waz" - scope="I" - type="L" - name="Wampur" /> - <iso_639_3_entry - id="wba" - scope="I" - type="L" - name="Warao" /> - <iso_639_3_entry - id="wbb" - scope="I" - type="L" - name="Wabo" /> - <iso_639_3_entry - id="wbe" - scope="I" - type="L" - name="Waritai" /> - <iso_639_3_entry - id="wbf" - scope="I" - type="L" - name="Wara" /> - <iso_639_3_entry - id="wbh" - scope="I" - type="L" - name="Wanda" /> - <iso_639_3_entry - id="wbi" - scope="I" - type="L" - name="Vwanji" /> - <iso_639_3_entry - id="wbj" - scope="I" - type="L" - name="Alagwa" /> - <iso_639_3_entry - id="wbk" - scope="I" - type="L" - name="Waigali" /> - <iso_639_3_entry - id="wbl" - scope="I" - type="L" - name="Wakhi" /> - <iso_639_3_entry - id="wbm" - scope="I" - type="L" - name="Wa" /> - <iso_639_3_entry - id="wbp" - scope="I" - type="L" - name="Warlpiri" /> - <iso_639_3_entry - id="wbq" - scope="I" - type="L" - name="Waddar" /> - <iso_639_3_entry - id="wbr" - scope="I" - type="L" - name="Wagdi" /> - <iso_639_3_entry - id="wbt" - scope="I" - type="L" - name="Wanman" /> - <iso_639_3_entry - id="wbv" - scope="I" - type="L" - name="Wajarri" /> - <iso_639_3_entry - id="wbw" - scope="I" - type="L" - name="Woi" /> - <iso_639_3_entry - id="wca" - scope="I" - type="L" - name="Yanomámi" /> - <iso_639_3_entry - id="wci" - scope="I" - type="L" - name="Gbe; Waci" /> - <iso_639_3_entry - id="wdd" - scope="I" - type="L" - name="Wandji" /> - <iso_639_3_entry - id="wdg" - scope="I" - type="L" - name="Wadaginam" /> - <iso_639_3_entry - id="wdj" - scope="I" - type="L" - name="Wadjiginy" /> - <iso_639_3_entry - id="wdu" - scope="I" - type="E" - name="Wadjigu" /> - <iso_639_3_entry - id="wea" - scope="I" - type="L" - name="Wewaw" /> - <iso_639_3_entry - id="wec" - scope="I" - type="L" - name="Wè Western" /> - <iso_639_3_entry - id="wed" - scope="I" - type="L" - name="Wedau" /> - <iso_639_3_entry - id="weh" - scope="I" - type="L" - name="Weh" /> - <iso_639_3_entry - id="wei" - scope="I" - type="L" - name="Kiunum" /> - <iso_639_3_entry - id="wem" - scope="I" - type="L" - name="Gbe; Weme" /> - <iso_639_3_entry - id="weo" - scope="I" - type="L" - name="Wemale; North" /> - <iso_639_3_entry - id="wep" - scope="I" - type="L" - name="Westphalien" /> - <iso_639_3_entry - id="wer" - scope="I" - type="L" - name="Weri" /> - <iso_639_3_entry - id="wes" - scope="I" - type="L" - name="Pidgin; Cameroon" /> - <iso_639_3_entry - id="wet" - scope="I" - type="L" - name="Perai" /> - <iso_639_3_entry - id="weu" - scope="I" - type="L" - name="Welaung" /> - <iso_639_3_entry - id="wew" - scope="I" - type="L" - name="Wejewa" /> - <iso_639_3_entry - id="wfg" - scope="I" - type="L" - name="Yafi" /> - <iso_639_3_entry - id="wga" - scope="I" - type="E" - name="Wagaya" /> - <iso_639_3_entry - id="wgb" - scope="I" - type="L" - name="Wagawaga" /> - <iso_639_3_entry - id="wgg" - scope="I" - type="E" - name="Wangganguru" /> - <iso_639_3_entry - id="wgi" - scope="I" - type="L" - name="Wahgi" /> - <iso_639_3_entry - id="wgo" - scope="I" - type="L" - name="Waigeo" /> - <iso_639_3_entry - id="wgy" - scope="I" - type="L" - name="Warrgamay" /> - <iso_639_3_entry - id="wha" - scope="I" - type="L" - name="Manusela" /> - <iso_639_3_entry - id="whg" - scope="I" - type="L" - name="Wahgi; North" /> - <iso_639_3_entry - id="whk" - scope="I" - type="L" - name="Kenyah; Wahau" /> - <iso_639_3_entry - id="whu" - scope="I" - type="L" - name="Kayan; Wahau" /> - <iso_639_3_entry - id="wib" - scope="I" - type="L" - name="Toussian; Southern" /> - <iso_639_3_entry - id="wic" - scope="I" - type="L" - name="Wichita" /> - <iso_639_3_entry - id="wie" - scope="I" - type="E" - name="Wik-Epa" /> - <iso_639_3_entry - id="wif" - scope="I" - type="E" - name="Wik-Keyangan" /> - <iso_639_3_entry - id="wig" - scope="I" - type="L" - name="Wik-Ngathana" /> - <iso_639_3_entry - id="wih" - scope="I" - type="L" - name="Wik-Me'anha" /> - <iso_639_3_entry - id="wii" - scope="I" - type="L" - name="Minidien" /> - <iso_639_3_entry - id="wij" - scope="I" - type="L" - name="Wik-Iiyanh" /> - <iso_639_3_entry - id="wik" - scope="I" - type="L" - name="Wikalkan" /> - <iso_639_3_entry - id="wil" - scope="I" - type="E" - name="Wilawila" /> - <iso_639_3_entry - id="wim" - scope="I" - type="L" - name="Wik-Mungkan" /> - <iso_639_3_entry - id="win" - scope="I" - type="L" - name="Ho-Chunk" /> - <iso_639_3_entry - id="wir" - scope="I" - type="E" - name="Wiraféd" /> - <iso_639_3_entry - id="wit" - scope="I" - type="L" - name="Wintu" /> - <iso_639_3_entry - id="wiu" - scope="I" - type="L" - name="Wiru" /> - <iso_639_3_entry - id="wiv" - scope="I" - type="L" - name="Muduapa" /> - <iso_639_3_entry - id="wiw" - scope="I" - type="L" - name="Wirangu" /> - <iso_639_3_entry - id="wiy" - scope="I" - type="E" - name="Wiyot" /> - <iso_639_3_entry - id="wja" - scope="I" - type="L" - name="Waja" /> - <iso_639_3_entry - id="wji" - scope="I" - type="L" - name="Warji" /> - <iso_639_3_entry - id="wka" - scope="I" - type="E" - name="Kw'adza" /> - <iso_639_3_entry - id="wkb" - scope="I" - type="L" - name="Kumbaran" /> - <iso_639_3_entry - id="wkd" - scope="I" - type="L" - name="Wakde" /> - <iso_639_3_entry - id="wkl" - scope="I" - type="L" - name="Kalanadi" /> - <iso_639_3_entry - id="wku" - scope="I" - type="L" - name="Kunduvadi" /> - <iso_639_3_entry - id="wkw" - scope="I" - type="E" - name="Wakawaka" /> - <iso_639_3_entry - id="wla" - scope="I" - type="L" - name="Walio" /> - <iso_639_3_entry - id="wlc" - scope="I" - type="L" - name="Comorian; Mwali" /> - <iso_639_3_entry - id="wle" - scope="I" - type="L" - name="Wolane" /> - <iso_639_3_entry - id="wlg" - scope="I" - type="L" - name="Kunbarlang" /> - <iso_639_3_entry - id="wli" - scope="I" - type="L" - name="Waioli" /> - <iso_639_3_entry - id="wlk" - scope="I" - type="E" - name="Wailaki" /> - <iso_639_3_entry - id="wll" - scope="I" - type="L" - name="Wali (Sudan)" /> - <iso_639_3_entry - id="wlm" - scope="I" - type="H" - name="Welsh; Middle" /> - <iso_639_3_entry - id="wln" - part1_code="wa" - part2_code="wln" - scope="I" - type="L" - name="Walloon" /> - <iso_639_3_entry - id="wlo" - scope="I" - type="L" - name="Wolio" /> - <iso_639_3_entry - id="wlr" - scope="I" - type="L" - name="Wailapa" /> - <iso_639_3_entry - id="wls" - scope="I" - type="L" - name="Wallisian" /> - <iso_639_3_entry - id="wlu" - scope="I" - type="E" - name="Wuliwuli" /> - <iso_639_3_entry - id="wlv" - scope="I" - type="L" - name="Wichí Lhamtés Vejoz" /> - <iso_639_3_entry - id="wlw" - scope="I" - type="L" - name="Walak" /> - <iso_639_3_entry - id="wlx" - scope="I" - type="L" - name="Wali (Ghana)" /> - <iso_639_3_entry - id="wly" - scope="I" - type="E" - name="Waling" /> - <iso_639_3_entry - id="wma" - scope="I" - type="E" - name="Mawa (Nigeria)" /> - <iso_639_3_entry - id="wmb" - scope="I" - type="L" - name="Wambaya" /> - <iso_639_3_entry - id="wmc" - scope="I" - type="L" - name="Wamas" /> - <iso_639_3_entry - id="wmd" - scope="I" - type="L" - name="Mamaindé" /> - <iso_639_3_entry - id="wme" - scope="I" - type="L" - name="Wambule" /> - <iso_639_3_entry - id="wmh" - scope="I" - type="L" - name="Waima'a" /> - <iso_639_3_entry - id="wmi" - scope="I" - type="E" - name="Wamin" /> - <iso_639_3_entry - id="wmm" - scope="I" - type="L" - name="Maiwa (Indonesia)" /> - <iso_639_3_entry - id="wmn" - scope="I" - type="E" - name="Waamwang" /> - <iso_639_3_entry - id="wmo" - scope="I" - type="L" - name="Wom (Papua New Guinea)" /> - <iso_639_3_entry - id="wms" - scope="I" - type="L" - name="Wambon" /> - <iso_639_3_entry - id="wmt" - scope="I" - type="L" - name="Walmajarri" /> - <iso_639_3_entry - id="wmw" - scope="I" - type="L" - name="Mwani" /> - <iso_639_3_entry - id="wmx" - scope="I" - type="L" - name="Womo" /> - <iso_639_3_entry - id="wnb" - scope="I" - type="L" - name="Wanambre" /> - <iso_639_3_entry - id="wnc" - scope="I" - type="L" - name="Wantoat" /> - <iso_639_3_entry - id="wnd" - scope="I" - type="E" - name="Wandarang" /> - <iso_639_3_entry - id="wne" - scope="I" - type="L" - name="Waneci" /> - <iso_639_3_entry - id="wng" - scope="I" - type="L" - name="Wanggom" /> - <iso_639_3_entry - id="wni" - scope="I" - type="L" - name="Comorian; Ndzwani" /> - <iso_639_3_entry - id="wnk" - scope="I" - type="L" - name="Wanukaka" /> - <iso_639_3_entry - id="wnm" - scope="I" - type="E" - name="Wanggamala" /> - <iso_639_3_entry - id="wno" - scope="I" - type="L" - name="Wano" /> - <iso_639_3_entry - id="wnp" - scope="I" - type="L" - name="Wanap" /> - <iso_639_3_entry - id="wnu" - scope="I" - type="L" - name="Usan" /> - <iso_639_3_entry - id="woa" - scope="I" - type="L" - name="Tyaraity" /> - <iso_639_3_entry - id="wob" - scope="I" - type="L" - name="Wè Northern" /> - <iso_639_3_entry - id="woc" - scope="I" - type="L" - name="Wogeo" /> - <iso_639_3_entry - id="wod" - scope="I" - type="L" - name="Wolani" /> - <iso_639_3_entry - id="woe" - scope="I" - type="L" - name="Woleaian" /> - <iso_639_3_entry - id="wof" - scope="I" - type="L" - name="Wolof; Gambian" /> - <iso_639_3_entry - id="wog" - scope="I" - type="L" - name="Wogamusin" /> - <iso_639_3_entry - id="woi" - scope="I" - type="L" - name="Kamang" /> - <iso_639_3_entry - id="wok" - scope="I" - type="L" - name="Longto" /> - <iso_639_3_entry - id="wol" - part1_code="wo" - part2_code="wol" - scope="I" - type="L" - name="Wolof" /> - <iso_639_3_entry - id="wom" - scope="I" - type="L" - name="Wom (Nigeria)" /> - <iso_639_3_entry - id="won" - scope="I" - type="L" - name="Wongo" /> - <iso_639_3_entry - id="woo" - scope="I" - type="L" - name="Manombai" /> - <iso_639_3_entry - id="wor" - scope="I" - type="L" - name="Woria" /> - <iso_639_3_entry - id="wos" - scope="I" - type="L" - name="Hanga Hundi" /> - <iso_639_3_entry - id="wow" - scope="I" - type="L" - name="Wawonii" /> - <iso_639_3_entry - id="woy" - scope="I" - type="E" - name="Weyto" /> - <iso_639_3_entry - id="wpc" - scope="I" - type="L" - name="Maco" /> - <iso_639_3_entry - id="wra" - scope="I" - type="L" - name="Warapu" /> - <iso_639_3_entry - id="wrb" - scope="I" - type="E" - name="Warluwara" /> - <iso_639_3_entry - id="wrd" - scope="I" - type="L" - name="Warduji" /> - <iso_639_3_entry - id="wrg" - scope="I" - type="E" - name="Warungu" /> - <iso_639_3_entry - id="wrh" - scope="I" - type="E" - name="Wiradhuri" /> - <iso_639_3_entry - id="wri" - scope="I" - type="E" - name="Wariyangga" /> - <iso_639_3_entry - id="wrl" - scope="I" - type="L" - name="Warlmanpa" /> - <iso_639_3_entry - id="wrm" - scope="I" - type="L" - name="Warumungu" /> - <iso_639_3_entry - id="wrn" - scope="I" - type="L" - name="Warnang" /> - <iso_639_3_entry - id="wrp" - scope="I" - type="L" - name="Waropen" /> - <iso_639_3_entry - id="wrr" - scope="I" - type="L" - name="Wardaman" /> - <iso_639_3_entry - id="wrs" - scope="I" - type="L" - name="Waris" /> - <iso_639_3_entry - id="wru" - scope="I" - type="L" - name="Waru" /> - <iso_639_3_entry - id="wrv" - scope="I" - type="L" - name="Waruna" /> - <iso_639_3_entry - id="wrw" - scope="I" - type="E" - name="Gugu Warra" /> - <iso_639_3_entry - id="wrx" - scope="I" - type="L" - name="Wae Rana" /> - <iso_639_3_entry - id="wry" - scope="I" - type="L" - name="Merwari" /> - <iso_639_3_entry - id="wrz" - scope="I" - type="E" - name="Waray (Australia)" /> - <iso_639_3_entry - id="wsa" - scope="I" - type="L" - name="Warembori" /> - <iso_639_3_entry - id="wsi" - scope="I" - type="L" - name="Wusi" /> - <iso_639_3_entry - id="wsk" - scope="I" - type="L" - name="Waskia" /> - <iso_639_3_entry - id="wsr" - scope="I" - type="L" - name="Owenia" /> - <iso_639_3_entry - id="wss" - scope="I" - type="L" - name="Wasa" /> - <iso_639_3_entry - id="wsu" - scope="I" - type="E" - name="Wasu" /> - <iso_639_3_entry - id="wsv" - scope="I" - type="E" - name="Wotapuri-Katarqalai" /> - <iso_639_3_entry - id="wtf" - scope="I" - type="L" - name="Watiwa" /> - <iso_639_3_entry - id="wti" - scope="I" - type="L" - name="Berta" /> - <iso_639_3_entry - id="wtk" - scope="I" - type="L" - name="Watakataui" /> - <iso_639_3_entry - id="wtm" - scope="I" - type="L" - name="Mewati" /> - <iso_639_3_entry - id="wtw" - scope="I" - type="L" - name="Wotu" /> - <iso_639_3_entry - id="wua" - scope="I" - type="L" - name="Wikngenchera" /> - <iso_639_3_entry - id="wub" - scope="I" - type="L" - name="Wunambal" /> - <iso_639_3_entry - id="wud" - scope="I" - type="L" - name="Wudu" /> - <iso_639_3_entry - id="wuh" - scope="I" - type="L" - name="Wutunhua" /> - <iso_639_3_entry - id="wul" - scope="I" - type="L" - name="Silimo" /> - <iso_639_3_entry - id="wum" - scope="I" - type="L" - name="Wumbvu" /> - <iso_639_3_entry - id="wun" - scope="I" - type="L" - name="Bungu" /> - <iso_639_3_entry - id="wur" - scope="I" - type="E" - name="Wurrugu" /> - <iso_639_3_entry - id="wut" - scope="I" - type="L" - name="Wutung" /> - <iso_639_3_entry - id="wuu" - scope="I" - type="L" - name="Chinese; Wu" /> - <iso_639_3_entry - id="wuv" - scope="I" - type="L" - name="Wuvulu-Aua" /> - <iso_639_3_entry - id="wux" - scope="I" - type="L" - name="Wulna" /> - <iso_639_3_entry - id="wuy" - scope="I" - type="L" - name="Wauyai" /> - <iso_639_3_entry - id="wwa" - scope="I" - type="L" - name="Waama" /> - <iso_639_3_entry - id="wwo" - scope="I" - type="L" - name="Wetamut" /> - <iso_639_3_entry - id="wwr" - scope="I" - type="E" - name="Warrwa" /> - <iso_639_3_entry - id="www" - scope="I" - type="L" - name="Wawa" /> - <iso_639_3_entry - id="wxa" - scope="I" - type="L" - name="Waxianghua" /> - <iso_639_3_entry - id="wya" - scope="I" - type="L" - name="Wyandot" /> - <iso_639_3_entry - id="wyb" - scope="I" - type="L" - name="Wangaaybuwan-Ngiyambaa" /> - <iso_639_3_entry - id="wym" - scope="I" - type="L" - name="Wymysorys" /> - <iso_639_3_entry - id="wyr" - scope="I" - type="L" - name="Wayoró" /> - <iso_639_3_entry - id="wyy" - scope="I" - type="L" - name="Fijian; Western" /> - <iso_639_3_entry - id="xaa" - scope="I" - type="H" - name="Arabic; Andalusian" /> - <iso_639_3_entry - id="xab" - scope="I" - type="L" - name="Sambe" /> - <iso_639_3_entry - id="xac" - scope="I" - type="L" - name="Kachari" /> - <iso_639_3_entry - id="xad" - scope="I" - type="E" - name="Adai" /> - <iso_639_3_entry - id="xae" - scope="I" - type="A" - name="Aequian" /> - <iso_639_3_entry - id="xag" - scope="I" - type="E" - name="Aghwan" /> - <iso_639_3_entry - id="xai" - scope="I" - type="E" - name="Kaimbé" /> - <iso_639_3_entry - id="xal" - part2_code="xal" - scope="I" - type="L" - name="Kalmyk" /> - <iso_639_3_entry - id="xam" - scope="I" - type="E" - name="/Xam" /> - <iso_639_3_entry - id="xan" - scope="I" - type="L" - name="Xamtanga" /> - <iso_639_3_entry - id="xao" - scope="I" - type="L" - name="Khao" /> - <iso_639_3_entry - id="xap" - scope="I" - type="E" - name="Apalachee" /> - <iso_639_3_entry - id="xaq" - scope="I" - type="A" - name="Aquitanian" /> - <iso_639_3_entry - id="xar" - scope="I" - type="E" - name="Karami" /> - <iso_639_3_entry - id="xas" - scope="I" - type="E" - name="Kamas" /> - <iso_639_3_entry - id="xat" - scope="I" - type="L" - name="Katawixi" /> - <iso_639_3_entry - id="xau" - scope="I" - type="L" - name="Kauwera" /> - <iso_639_3_entry - id="xav" - scope="I" - type="L" - name="Xavánte" /> - <iso_639_3_entry - id="xaw" - scope="I" - type="L" - name="Kawaiisu" /> - <iso_639_3_entry - id="xay" - scope="I" - type="L" - name="Kayan Mahakam" /> - <iso_639_3_entry - id="xba" - scope="I" - type="E" - name="Kamba (Brazil)" /> - <iso_639_3_entry - id="xbb" - scope="I" - type="E" - name="Burdekin; Lower" /> - <iso_639_3_entry - id="xbc" - scope="I" - type="A" - name="Bactrian" /> - <iso_639_3_entry - id="xbi" - scope="I" - type="L" - name="Kombio" /> - <iso_639_3_entry - id="xbm" - scope="I" - type="H" - name="Breton; Middle" /> - <iso_639_3_entry - id="xbn" - scope="I" - type="E" - name="Kenaboi" /> - <iso_639_3_entry - id="xbo" - scope="I" - type="E" - name="Bolgarian" /> - <iso_639_3_entry - id="xbr" - scope="I" - type="L" - name="Kambera" /> - <iso_639_3_entry - id="xbw" - scope="I" - type="E" - name="Kambiwá" /> - <iso_639_3_entry - id="xbx" - scope="I" - type="E" - name="Kabixí" /> - <iso_639_3_entry - id="xcb" - scope="I" - type="E" - name="Cumbric" /> - <iso_639_3_entry - id="xcc" - scope="I" - type="A" - name="Camunic" /> - <iso_639_3_entry - id="xce" - scope="I" - type="A" - name="Celtiberian" /> - <iso_639_3_entry - id="xcg" - scope="I" - type="A" - name="Gaulish; Cisalpine" /> - <iso_639_3_entry - id="xch" - scope="I" - type="E" - name="Chemakum" /> - <iso_639_3_entry - id="xcl" - scope="I" - type="H" - name="Armenian; Classical" /> - <iso_639_3_entry - id="xcm" - scope="I" - type="E" - name="Comecrudo" /> - <iso_639_3_entry - id="xcn" - scope="I" - type="E" - name="Cotoname" /> - <iso_639_3_entry - id="xco" - scope="I" - type="A" - name="Chorasmian" /> - <iso_639_3_entry - id="xcr" - scope="I" - type="A" - name="Carian" /> - <iso_639_3_entry - id="xct" - scope="I" - type="H" - name="Tibetan; Classical" /> - <iso_639_3_entry - id="xcu" - scope="I" - type="E" - name="Curonian" /> - <iso_639_3_entry - id="xcv" - scope="I" - type="E" - name="Chuvantsy" /> - <iso_639_3_entry - id="xcw" - scope="I" - type="E" - name="Coahuilteco" /> - <iso_639_3_entry - id="xcy" - scope="I" - type="E" - name="Cayuse" /> - <iso_639_3_entry - id="xdc" - scope="I" - type="A" - name="Dacian" /> - <iso_639_3_entry - id="xdm" - scope="I" - type="A" - name="Edomite" /> - <iso_639_3_entry - id="xdy" - scope="I" - type="L" - name="Dayak; Malayic" /> - <iso_639_3_entry - id="xeb" - scope="I" - type="A" - name="Eblan" /> - <iso_639_3_entry - id="xed" - scope="I" - type="L" - name="Hdi" /> - <iso_639_3_entry - id="xeg" - scope="I" - type="E" - name="//Xegwi" /> - <iso_639_3_entry - id="xel" - scope="I" - type="L" - name="Kelo" /> - <iso_639_3_entry - id="xem" - scope="I" - type="L" - name="Kembayan" /> - <iso_639_3_entry - id="xep" - scope="I" - type="A" - name="Epi-Olmec" /> - <iso_639_3_entry - id="xer" - scope="I" - type="L" - name="Xerénte" /> - <iso_639_3_entry - id="xes" - scope="I" - type="L" - name="Kesawai" /> - <iso_639_3_entry - id="xet" - scope="I" - type="L" - name="Xetá" /> - <iso_639_3_entry - id="xeu" - scope="I" - type="L" - name="Keoru-Ahia" /> - <iso_639_3_entry - id="xfa" - scope="I" - type="A" - name="Faliscan" /> - <iso_639_3_entry - id="xga" - scope="I" - type="A" - name="Galatian" /> - <iso_639_3_entry - id="xgf" - scope="I" - type="E" - name="Gabrielino-Fernandeño" /> - <iso_639_3_entry - id="xgl" - scope="I" - type="E" - name="Galindan" /> - <iso_639_3_entry - id="xgr" - scope="I" - type="E" - name="Garza" /> - <iso_639_3_entry - id="xha" - scope="I" - type="A" - name="Harami" /> - <iso_639_3_entry - id="xhc" - scope="I" - type="E" - name="Hunnic" /> - <iso_639_3_entry - id="xhd" - scope="I" - type="A" - name="Hadrami" /> - <iso_639_3_entry - id="xhe" - scope="I" - type="L" - name="Khetrani" /> - <iso_639_3_entry - id="xho" - part1_code="xh" - part2_code="xho" - scope="I" - type="L" - name="Xhosa" /> - <iso_639_3_entry - id="xhr" - scope="I" - type="A" - name="Hernican" /> - <iso_639_3_entry - id="xht" - scope="I" - type="A" - name="Hattic" /> - <iso_639_3_entry - id="xhu" - scope="I" - type="A" - name="Hurrian" /> - <iso_639_3_entry - id="xhv" - scope="I" - type="L" - name="Khua" /> - <iso_639_3_entry - id="xia" - scope="I" - type="L" - name="Xiandao" /> - <iso_639_3_entry - id="xib" - scope="I" - type="A" - name="Iberian" /> - <iso_639_3_entry - id="xii" - scope="I" - type="L" - name="Xiri" /> - <iso_639_3_entry - id="xil" - scope="I" - type="A" - name="Illyrian" /> - <iso_639_3_entry - id="xin" - scope="I" - type="E" - name="Xinca" /> - <iso_639_3_entry - id="xip" - scope="I" - type="E" - name="Xipináwa" /> - <iso_639_3_entry - id="xir" - scope="I" - type="E" - name="Xiriâna" /> - <iso_639_3_entry - id="xiv" - scope="I" - type="A" - name="Indus Valley Language" /> - <iso_639_3_entry - id="xiy" - scope="I" - type="L" - name="Xipaya" /> - <iso_639_3_entry - id="xka" - scope="I" - type="L" - name="Kalkoti" /> - <iso_639_3_entry - id="xkb" - scope="I" - type="L" - name="Nago; Northern" /> - <iso_639_3_entry - id="xkc" - scope="I" - type="L" - name="Kho'ini" /> - <iso_639_3_entry - id="xkd" - scope="I" - type="L" - name="Kayan; Mendalam" /> - <iso_639_3_entry - id="xke" - scope="I" - type="L" - name="Kereho" /> - <iso_639_3_entry - id="xkf" - scope="I" - type="L" - name="Khengkha" /> - <iso_639_3_entry - id="xkg" - scope="I" - type="L" - name="Kagoro" /> - <iso_639_3_entry - id="xkh" - scope="I" - type="L" - name="Karahawyana" /> - <iso_639_3_entry - id="xki" - scope="I" - type="L" - name="Kenyan Sign Language" /> - <iso_639_3_entry - id="xkj" - scope="I" - type="L" - name="Kajali" /> - <iso_639_3_entry - id="xkk" - scope="I" - type="L" - name="Kaco'" /> - <iso_639_3_entry - id="xkl" - scope="I" - type="L" - name="Mainstream Kenyah" /> - <iso_639_3_entry - id="xkn" - scope="I" - type="L" - name="Kayan; Kayan River" /> - <iso_639_3_entry - id="xko" - scope="I" - type="L" - name="Kiorr" /> - <iso_639_3_entry - id="xkp" - scope="I" - type="L" - name="Kabatei" /> - <iso_639_3_entry - id="xkq" - scope="I" - type="L" - name="Koroni" /> - <iso_639_3_entry - id="xkr" - scope="I" - type="E" - name="Xakriabá" /> - <iso_639_3_entry - id="xks" - scope="I" - type="L" - name="Kumbewaha" /> - <iso_639_3_entry - id="xkt" - scope="I" - type="L" - name="Kantosi" /> - <iso_639_3_entry - id="xku" - scope="I" - type="L" - name="Kaamba" /> - <iso_639_3_entry - id="xkv" - scope="I" - type="L" - name="Kgalagadi" /> - <iso_639_3_entry - id="xkw" - scope="I" - type="L" - name="Kembra" /> - <iso_639_3_entry - id="xkx" - scope="I" - type="L" - name="Karore" /> - <iso_639_3_entry - id="xky" - scope="I" - type="L" - name="Uma' Lasan" /> - <iso_639_3_entry - id="xkz" - scope="I" - type="L" - name="Kurtokha" /> - <iso_639_3_entry - id="xla" - scope="I" - type="L" - name="Kamula" /> - <iso_639_3_entry - id="xlb" - scope="I" - type="E" - name="Loup B" /> - <iso_639_3_entry - id="xlc" - scope="I" - type="A" - name="Lycian" /> - <iso_639_3_entry - id="xld" - scope="I" - type="A" - name="Lydian" /> - <iso_639_3_entry - id="xle" - scope="I" - type="A" - name="Lemnian" /> - <iso_639_3_entry - id="xlg" - scope="I" - type="A" - name="Ligurian (Ancient)" /> - <iso_639_3_entry - id="xli" - scope="I" - type="A" - name="Liburnian" /> - <iso_639_3_entry - id="xln" - scope="I" - type="A" - name="Alanic" /> - <iso_639_3_entry - id="xlo" - scope="I" - type="E" - name="Loup A" /> - <iso_639_3_entry - id="xlp" - scope="I" - type="A" - name="Lepontic" /> - <iso_639_3_entry - id="xls" - scope="I" - type="A" - name="Lusitanian" /> - <iso_639_3_entry - id="xlu" - scope="I" - type="A" - name="Luwian; Cuneiform" /> - <iso_639_3_entry - id="xly" - scope="I" - type="A" - name="Elymian" /> - <iso_639_3_entry - id="xma" - scope="I" - type="L" - name="Mushungulu" /> - <iso_639_3_entry - id="xmb" - scope="I" - type="L" - name="Mbonga" /> - <iso_639_3_entry - id="xmc" - scope="I" - type="L" - name="Makhuwa-Marrevone" /> - <iso_639_3_entry - id="xmd" - scope="I" - type="L" - name="Mbudum" /> - <iso_639_3_entry - id="xme" - scope="I" - type="A" - name="Median" /> - <iso_639_3_entry - id="xmf" - scope="I" - type="L" - name="Mingrelian" /> - <iso_639_3_entry - id="xmg" - scope="I" - type="L" - name="Mengaka" /> - <iso_639_3_entry - id="xmh" - scope="I" - type="L" - name="Kuku-Muminh" /> - <iso_639_3_entry - id="xmj" - scope="I" - type="L" - name="Majera" /> - <iso_639_3_entry - id="xmk" - scope="I" - type="A" - name="Macedonian; Ancient" /> - <iso_639_3_entry - id="xml" - scope="I" - type="L" - name="Malaysian Sign Language" /> - <iso_639_3_entry - id="xmm" - scope="I" - type="L" - name="Malay; Manado" /> - <iso_639_3_entry - id="xmn" - scope="I" - type="H" - name="Persian; Manichaean Middle" /> - <iso_639_3_entry - id="xmo" - scope="I" - type="L" - name="Morerebi" /> - <iso_639_3_entry - id="xmp" - scope="I" - type="E" - name="Kuku-Mu'inh" /> - <iso_639_3_entry - id="xmq" - scope="I" - type="E" - name="Kuku-Mangk" /> - <iso_639_3_entry - id="xmr" - scope="I" - type="A" - name="Meroitic" /> - <iso_639_3_entry - id="xms" - scope="I" - type="L" - name="Moroccan Sign Language" /> - <iso_639_3_entry - id="xmt" - scope="I" - type="L" - name="Matbat" /> - <iso_639_3_entry - id="xmu" - scope="I" - type="E" - name="Kamu" /> - <iso_639_3_entry - id="xmv" - scope="I" - type="L" - name="Malagasy; Tankarana" /> - <iso_639_3_entry - id="xmw" - scope="I" - type="L" - name="Malagasy; Tsimihety" /> - <iso_639_3_entry - id="xmx" - scope="I" - type="L" - name="Maden" /> - <iso_639_3_entry - id="xmy" - scope="I" - type="L" - name="Mayaguduna" /> - <iso_639_3_entry - id="xmz" - scope="I" - type="L" - name="Mori Bawah" /> - <iso_639_3_entry - id="xna" - scope="I" - type="A" - name="North Arabian; Ancient" /> - <iso_639_3_entry - id="xnb" - scope="I" - type="L" - name="Kanakanabu" /> - <iso_639_3_entry - id="xng" - scope="I" - type="H" - name="Mongolian; Middle" /> - <iso_639_3_entry - id="xnh" - scope="I" - type="L" - name="Kuanhua" /> - <iso_639_3_entry - id="xnn" - scope="I" - type="L" - name="Kankanay; Northern" /> - <iso_639_3_entry - id="xno" - scope="I" - type="H" - name="Anglo-Norman" /> - <iso_639_3_entry - id="xnr" - scope="I" - type="L" - name="Kangri" /> - <iso_639_3_entry - id="xns" - scope="I" - type="L" - name="Kanashi" /> - <iso_639_3_entry - id="xnt" - scope="I" - type="E" - name="Narragansett" /> - <iso_639_3_entry - id="xoc" - scope="I" - type="E" - name="O'chi'chi'" /> - <iso_639_3_entry - id="xod" - scope="I" - type="L" - name="Kokoda" /> - <iso_639_3_entry - id="xog" - scope="I" - type="L" - name="Soga" /> - <iso_639_3_entry - id="xoi" - scope="I" - type="L" - name="Kominimung" /> - <iso_639_3_entry - id="xok" - scope="I" - type="L" - name="Xokleng" /> - <iso_639_3_entry - id="xom" - scope="I" - type="L" - name="Komo (Sudan)" /> - <iso_639_3_entry - id="xon" - scope="I" - type="L" - name="Konkomba" /> - <iso_639_3_entry - id="xoo" - scope="I" - type="E" - name="Xukurú" /> - <iso_639_3_entry - id="xop" - scope="I" - type="L" - name="Kopar" /> - <iso_639_3_entry - id="xor" - scope="I" - type="L" - name="Korubo" /> - <iso_639_3_entry - id="xow" - scope="I" - type="L" - name="Kowaki" /> - <iso_639_3_entry - id="xpc" - scope="I" - type="E" - name="Pecheneg" /> - <iso_639_3_entry - id="xpe" - scope="I" - type="L" - name="Kpelle; Liberia" /> - <iso_639_3_entry - id="xpg" - scope="I" - type="A" - name="Phrygian" /> - <iso_639_3_entry - id="xpi" - scope="I" - type="E" - name="Pictish" /> - <iso_639_3_entry - id="xpk" - scope="I" - type="L" - name="Pano; Kulina" /> - <iso_639_3_entry - id="xpm" - scope="I" - type="E" - name="Pumpokol" /> - <iso_639_3_entry - id="xpn" - scope="I" - type="E" - name="Kapinawá" /> - <iso_639_3_entry - id="xpo" - scope="I" - type="E" - name="Pochutec" /> - <iso_639_3_entry - id="xpp" - scope="I" - type="E" - name="Puyo-Paekche" /> - <iso_639_3_entry - id="xpq" - scope="I" - type="E" - name="Mohegan-Pequot" /> - <iso_639_3_entry - id="xpr" - scope="I" - type="A" - name="Parthian" /> - <iso_639_3_entry - id="xps" - scope="I" - type="E" - name="Pisidian" /> - <iso_639_3_entry - id="xpu" - scope="I" - type="A" - name="Punic" /> - <iso_639_3_entry - id="xpy" - scope="I" - type="E" - name="Puyo" /> - <iso_639_3_entry - id="xqa" - scope="I" - type="H" - name="Karakhanid" /> - <iso_639_3_entry - id="xqt" - scope="I" - type="A" - name="Qatabanian" /> - <iso_639_3_entry - id="xra" - scope="I" - type="L" - name="Krahô" /> - <iso_639_3_entry - id="xrb" - scope="I" - type="L" - name="Karaboro; Eastern" /> - <iso_639_3_entry - id="xre" - scope="I" - type="L" - name="Kreye" /> - <iso_639_3_entry - id="xri" - scope="I" - type="L" - name="Krikati-Timbira" /> - <iso_639_3_entry - id="xrm" - scope="I" - type="E" - name="Armazic" /> - <iso_639_3_entry - id="xrn" - scope="I" - type="E" - name="Arin" /> - <iso_639_3_entry - id="xrr" - scope="I" - type="A" - name="Raetic" /> - <iso_639_3_entry - id="xrt" - scope="I" - type="E" - name="Aranama-Tamique" /> - <iso_639_3_entry - id="xru" - scope="I" - type="L" - name="Marriammu" /> - <iso_639_3_entry - id="xrw" - scope="I" - type="L" - name="Karawa" /> - <iso_639_3_entry - id="xsa" - scope="I" - type="A" - name="Sabaean" /> - <iso_639_3_entry - id="xsb" - scope="I" - type="L" - name="Sambal; Tinà" /> - <iso_639_3_entry - id="xsc" - scope="I" - type="A" - name="Scythian" /> - <iso_639_3_entry - id="xsd" - scope="I" - type="A" - name="Sidetic" /> - <iso_639_3_entry - id="xse" - scope="I" - type="L" - name="Sempan" /> - <iso_639_3_entry - id="xsh" - scope="I" - type="L" - name="Shamang" /> - <iso_639_3_entry - id="xsi" - scope="I" - type="L" - name="Sio" /> - <iso_639_3_entry - id="xsj" - scope="I" - type="L" - name="Subi" /> - <iso_639_3_entry - id="xsl" - scope="I" - type="L" - name="Slavey; South" /> - <iso_639_3_entry - id="xsm" - scope="I" - type="L" - name="Kasem" /> - <iso_639_3_entry - id="xsn" - scope="I" - type="L" - name="Sanga (Nigeria)" /> - <iso_639_3_entry - id="xso" - scope="I" - type="E" - name="Solano" /> - <iso_639_3_entry - id="xsp" - scope="I" - type="L" - name="Silopi" /> - <iso_639_3_entry - id="xsq" - scope="I" - type="L" - name="Makhuwa-Saka" /> - <iso_639_3_entry - id="xsr" - scope="I" - type="L" - name="Sherpa" /> - <iso_639_3_entry - id="xss" - scope="I" - type="E" - name="Assan" /> - <iso_639_3_entry - id="xsu" - scope="I" - type="L" - name="Sanumá" /> - <iso_639_3_entry - id="xsv" - scope="I" - type="E" - name="Sudovian" /> - <iso_639_3_entry - id="xsy" - scope="I" - type="L" - name="Saisiyat" /> - <iso_639_3_entry - id="xta" - scope="I" - type="L" - name="Mixtec; Alcozauca" /> - <iso_639_3_entry - id="xtb" - scope="I" - type="L" - name="Mixtec; Chazumba" /> - <iso_639_3_entry - id="xtc" - scope="I" - type="L" - name="Katcha-Kadugli-Miri" /> - <iso_639_3_entry - id="xtd" - scope="I" - type="L" - name="Mixtec; Diuxi-Tilantongo" /> - <iso_639_3_entry - id="xte" - scope="I" - type="L" - name="Ketengban" /> - <iso_639_3_entry - id="xtg" - scope="I" - type="A" - name="Gaulish; Transalpine" /> - <iso_639_3_entry - id="xti" - scope="I" - type="L" - name="Mixtec; Sinicahua" /> - <iso_639_3_entry - id="xtj" - scope="I" - type="L" - name="Mixtec; San Juan Teita" /> - <iso_639_3_entry - id="xtl" - scope="I" - type="L" - name="Mixtec; Tijaltepec" /> - <iso_639_3_entry - id="xtm" - scope="I" - type="L" - name="Mixtec; Magdalena Peñasco" /> - <iso_639_3_entry - id="xtn" - scope="I" - type="L" - name="Mixtec; Northern Tlaxiaco" /> - <iso_639_3_entry - id="xto" - scope="I" - type="A" - name="Tokharian A" /> - <iso_639_3_entry - id="xtp" - scope="I" - type="L" - name="Mixtec; San Miguel Piedras" /> - <iso_639_3_entry - id="xtq" - scope="I" - type="H" - name="Tumshuqese" /> - <iso_639_3_entry - id="xtr" - scope="I" - type="A" - name="Tripuri; Early" /> - <iso_639_3_entry - id="xts" - scope="I" - type="L" - name="Mixtec; Sindihui" /> - <iso_639_3_entry - id="xtt" - scope="I" - type="L" - name="Mixtec; Tacahua" /> - <iso_639_3_entry - id="xtu" - scope="I" - type="L" - name="Mixtec; Cuyamecalco" /> - <iso_639_3_entry - id="xtw" - scope="I" - type="L" - name="Tawandê" /> - <iso_639_3_entry - id="xty" - scope="I" - type="L" - name="Mixtec; Yoloxochitl" /> - <iso_639_3_entry - id="xtz" - scope="I" - type="E" - name="Tasmanian" /> - <iso_639_3_entry - id="xua" - scope="I" - type="L" - name="Kurumba; Alu" /> - <iso_639_3_entry - id="xub" - scope="I" - type="L" - name="Kurumba; Betta" /> - <iso_639_3_entry - id="xug" - scope="I" - type="L" - name="Kunigami" /> - <iso_639_3_entry - id="xuj" - scope="I" - type="L" - name="Kurumba; Jennu" /> - <iso_639_3_entry - id="xum" - scope="I" - type="A" - name="Umbrian" /> - <iso_639_3_entry - id="xuo" - scope="I" - type="L" - name="Kuo" /> - <iso_639_3_entry - id="xup" - scope="I" - type="E" - name="Umpqua; Upper" /> - <iso_639_3_entry - id="xur" - scope="I" - type="A" - name="Urartian" /> - <iso_639_3_entry - id="xut" - scope="I" - type="E" - name="Kuthant" /> - <iso_639_3_entry - id="xuu" - scope="I" - type="L" - name="Kxoe" /> - <iso_639_3_entry - id="xve" - scope="I" - type="A" - name="Venetic" /> - <iso_639_3_entry - id="xvi" - scope="I" - type="L" - name="Kamviri" /> - <iso_639_3_entry - id="xvn" - scope="I" - type="A" - name="Vandalic" /> - <iso_639_3_entry - id="xvo" - scope="I" - type="A" - name="Volscian" /> - <iso_639_3_entry - id="xvs" - scope="I" - type="A" - name="Vestinian" /> - <iso_639_3_entry - id="xwa" - scope="I" - type="L" - name="Kwaza" /> - <iso_639_3_entry - id="xwc" - scope="I" - type="E" - name="Woccon" /> - <iso_639_3_entry - id="xwe" - scope="I" - type="L" - name="Gbe; Xwela" /> - <iso_639_3_entry - id="xwg" - scope="I" - type="L" - name="Kwegu" /> - <iso_639_3_entry - id="xwl" - scope="I" - type="L" - name="Gbe; Western Xwla" /> - <iso_639_3_entry - id="xwo" - scope="I" - type="E" - name="Oirat; Written" /> - <iso_639_3_entry - id="xwr" - scope="I" - type="L" - name="Kwerba Mamberamo" /> - <iso_639_3_entry - id="xxb" - scope="I" - type="E" - name="Boro (Ghana)" /> - <iso_639_3_entry - id="xxk" - scope="I" - type="L" - name="Ke'o" /> - <iso_639_3_entry - id="xxr" - scope="I" - type="E" - name="Koropó" /> - <iso_639_3_entry - id="xxt" - scope="I" - type="E" - name="Tambora" /> - <iso_639_3_entry - id="xyl" - scope="I" - type="E" - name="Yalakalore" /> - <iso_639_3_entry - id="xzh" - scope="I" - type="A" - name="Zhang-Zhung" /> - <iso_639_3_entry - id="xzm" - scope="I" - type="E" - name="Zemgalian" /> - <iso_639_3_entry - id="xzp" - scope="I" - type="H" - name="Zapotec; Ancient" /> - <iso_639_3_entry - id="yaa" - scope="I" - type="L" - name="Yaminahua" /> - <iso_639_3_entry - id="yab" - scope="I" - type="L" - name="Yuhup" /> - <iso_639_3_entry - id="yac" - scope="I" - type="L" - name="Yali; Pass Valley" /> - <iso_639_3_entry - id="yad" - scope="I" - type="L" - name="Yagua" /> - <iso_639_3_entry - id="yae" - scope="I" - type="L" - name="Pumé" /> - <iso_639_3_entry - id="yaf" - scope="I" - type="L" - name="Yaka (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="yag" - scope="I" - type="L" - name="Yámana" /> - <iso_639_3_entry - id="yah" - scope="I" - type="L" - name="Yazgulyam" /> - <iso_639_3_entry - id="yai" - scope="I" - type="L" - name="Yagnobi" /> - <iso_639_3_entry - id="yaj" - scope="I" - type="L" - name="Banda-Yangere" /> - <iso_639_3_entry - id="yak" - scope="I" - type="L" - name="Yakama" /> - <iso_639_3_entry - id="yal" - scope="I" - type="L" - name="Yalunka" /> - <iso_639_3_entry - id="yam" - scope="I" - type="L" - name="Yamba" /> - <iso_639_3_entry - id="yan" - scope="I" - type="L" - name="Mayangna" /> - <iso_639_3_entry - id="yao" - part2_code="yao" - scope="I" - type="L" - name="Yao" /> - <iso_639_3_entry - id="yap" - part2_code="yap" - scope="I" - type="L" - name="Yapese" /> - <iso_639_3_entry - id="yaq" - scope="I" - type="L" - name="Yaqui" /> - <iso_639_3_entry - id="yar" - scope="I" - type="L" - name="Yabarana" /> - <iso_639_3_entry - id="yas" - scope="I" - type="L" - name="Nugunu (Cameroon)" /> - <iso_639_3_entry - id="yat" - scope="I" - type="L" - name="Yambeta" /> - <iso_639_3_entry - id="yau" - scope="I" - type="L" - name="Yuwana" /> - <iso_639_3_entry - id="yav" - scope="I" - type="L" - name="Yangben" /> - <iso_639_3_entry - id="yaw" - scope="I" - type="L" - name="Yawalapití" /> - <iso_639_3_entry - id="yax" - scope="I" - type="L" - name="Yauma" /> - <iso_639_3_entry - id="yay" - scope="I" - type="L" - name="Agwagwune" /> - <iso_639_3_entry - id="yaz" - scope="I" - type="L" - name="Lokaa" /> - <iso_639_3_entry - id="yba" - scope="I" - type="L" - name="Yala" /> - <iso_639_3_entry - id="ybb" - scope="I" - type="L" - name="Yemba" /> - <iso_639_3_entry - id="ybd" - scope="I" - type="L" - name="Yangbye" /> - <iso_639_3_entry - id="ybe" - scope="I" - type="L" - name="Yugur; West" /> - <iso_639_3_entry - id="ybh" - scope="I" - type="L" - name="Yakha" /> - <iso_639_3_entry - id="ybi" - scope="I" - type="L" - name="Yamphu" /> - <iso_639_3_entry - id="ybj" - scope="I" - type="L" - name="Hasha" /> - <iso_639_3_entry - id="ybk" - scope="I" - type="L" - name="Bokha" /> - <iso_639_3_entry - id="ybl" - scope="I" - type="L" - name="Yukuben" /> - <iso_639_3_entry - id="ybm" - scope="I" - type="L" - name="Yaben" /> - <iso_639_3_entry - id="ybn" - scope="I" - type="E" - name="Yabaâna" /> - <iso_639_3_entry - id="ybo" - scope="I" - type="L" - name="Yabong" /> - <iso_639_3_entry - id="ybx" - scope="I" - type="L" - name="Yawiyo" /> - <iso_639_3_entry - id="yby" - scope="I" - type="L" - name="Yaweyuha" /> - <iso_639_3_entry - id="ych" - scope="I" - type="L" - name="Chesu" /> - <iso_639_3_entry - id="ycl" - scope="I" - type="L" - name="Lolopo" /> - <iso_639_3_entry - id="ycn" - scope="I" - type="L" - name="Yucuna" /> - <iso_639_3_entry - id="ycp" - scope="I" - type="L" - name="Chepya" /> - <iso_639_3_entry - id="ydd" - scope="I" - type="L" - name="Yiddish; Eastern" /> - <iso_639_3_entry - id="yde" - scope="I" - type="L" - name="Yangum Dey" /> - <iso_639_3_entry - id="ydg" - scope="I" - type="L" - name="Yidgha" /> - <iso_639_3_entry - id="ydk" - scope="I" - type="L" - name="Yoidik" /> - <iso_639_3_entry - id="yds" - scope="I" - type="L" - name="Yiddish Sign Language" /> - <iso_639_3_entry - id="yea" - scope="I" - type="L" - name="Ravula" /> - <iso_639_3_entry - id="yec" - scope="I" - type="L" - name="Yeniche" /> - <iso_639_3_entry - id="yee" - scope="I" - type="L" - name="Yimas" /> - <iso_639_3_entry - id="yei" - scope="I" - type="E" - name="Yeni" /> - <iso_639_3_entry - id="yej" - scope="I" - type="L" - name="Yevanic" /> - <iso_639_3_entry - id="yel" - scope="I" - type="L" - name="Yela" /> - <iso_639_3_entry - id="yen" - scope="I" - type="L" - name="Yendang" /> - <iso_639_3_entry - id="yer" - scope="I" - type="L" - name="Tarok" /> - <iso_639_3_entry - id="yes" - scope="I" - type="L" - name="Yeskwa" /> - <iso_639_3_entry - id="yet" - scope="I" - type="L" - name="Yetfa" /> - <iso_639_3_entry - id="yeu" - scope="I" - type="L" - name="Yerukula" /> - <iso_639_3_entry - id="yev" - scope="I" - type="L" - name="Yapunda" /> - <iso_639_3_entry - id="yey" - scope="I" - type="L" - name="Yeyi" /> - <iso_639_3_entry - id="ygl" - scope="I" - type="L" - name="Yangum Gel" /> - <iso_639_3_entry - id="ygm" - scope="I" - type="L" - name="Yagomi" /> - <iso_639_3_entry - id="ygp" - scope="I" - type="L" - name="Gepo" /> - <iso_639_3_entry - id="ygr" - scope="I" - type="L" - name="Yagaria" /> - <iso_639_3_entry - id="ygw" - scope="I" - type="L" - name="Yagwoia" /> - <iso_639_3_entry - id="yha" - scope="I" - type="L" - name="Buyang; Baha" /> - <iso_639_3_entry - id="yhd" - scope="I" - type="L" - name="Arabic; Judeo-Iraqi" /> - <iso_639_3_entry - id="yhl" - scope="I" - type="L" - name="Phowa; Hlepho" /> - <iso_639_3_entry - id="yia" - scope="I" - type="L" - name="Yinggarda" /> - <iso_639_3_entry - id="yid" - part1_code="yi" - part2_code="yid" - scope="M" - type="L" - name="Yiddish" /> - <iso_639_3_entry - id="yif" - scope="I" - type="L" - name="Ache" /> - <iso_639_3_entry - id="yig" - scope="I" - type="L" - name="Nasu; Wusa" /> - <iso_639_3_entry - id="yih" - scope="I" - type="L" - name="Yiddish; Western" /> - <iso_639_3_entry - id="yii" - scope="I" - type="L" - name="Yidiny" /> - <iso_639_3_entry - id="yij" - scope="I" - type="L" - name="Yindjibarndi" /> - <iso_639_3_entry - id="yik" - scope="I" - type="L" - name="Lalo; Dongshanba" /> - <iso_639_3_entry - id="yil" - scope="I" - type="E" - name="Yindjilandji" /> - <iso_639_3_entry - id="yim" - scope="I" - type="L" - name="Naga; Yimchungru" /> - <iso_639_3_entry - id="yin" - scope="I" - type="L" - name="Yinchia" /> - <iso_639_3_entry - id="yip" - scope="I" - type="L" - name="Pholo" /> - <iso_639_3_entry - id="yiq" - scope="I" - type="L" - name="Miqie" /> - <iso_639_3_entry - id="yir" - scope="I" - type="L" - name="Awyu; North" /> - <iso_639_3_entry - id="yis" - scope="I" - type="L" - name="Yis" /> - <iso_639_3_entry - id="yit" - scope="I" - type="L" - name="Lalu; Eastern" /> - <iso_639_3_entry - id="yiu" - scope="I" - type="L" - name="Awu" /> - <iso_639_3_entry - id="yiv" - scope="I" - type="L" - name="Nisu; Northern" /> - <iso_639_3_entry - id="yix" - scope="I" - type="L" - name="Yi; Axi" /> - <iso_639_3_entry - id="yiy" - scope="I" - type="L" - name="Yir Yoront" /> - <iso_639_3_entry - id="yiz" - scope="I" - type="L" - name="Azhe" /> - <iso_639_3_entry - id="yka" - scope="I" - type="L" - name="Yakan" /> - <iso_639_3_entry - id="ykg" - scope="I" - type="L" - name="Yukaghir; Northern" /> - <iso_639_3_entry - id="yki" - scope="I" - type="L" - name="Yoke" /> - <iso_639_3_entry - id="ykk" - scope="I" - type="L" - name="Yakaikeke" /> - <iso_639_3_entry - id="ykl" - scope="I" - type="L" - name="Khlula" /> - <iso_639_3_entry - id="ykm" - scope="I" - type="L" - name="Kap" /> - <iso_639_3_entry - id="yko" - scope="I" - type="L" - name="Yasa" /> - <iso_639_3_entry - id="ykr" - scope="I" - type="L" - name="Yekora" /> - <iso_639_3_entry - id="ykt" - scope="I" - type="L" - name="Kathu" /> - <iso_639_3_entry - id="yky" - scope="I" - type="L" - name="Yakoma" /> - <iso_639_3_entry - id="yla" - scope="I" - type="L" - name="Yaul" /> - <iso_639_3_entry - id="ylb" - scope="I" - type="L" - name="Yaleba" /> - <iso_639_3_entry - id="yle" - scope="I" - type="L" - name="Yele" /> - <iso_639_3_entry - id="ylg" - scope="I" - type="L" - name="Yelogu" /> - <iso_639_3_entry - id="yli" - scope="I" - type="L" - name="Yali; Angguruk" /> - <iso_639_3_entry - id="yll" - scope="I" - type="L" - name="Yil" /> - <iso_639_3_entry - id="ylm" - scope="I" - type="L" - name="Limi" /> - <iso_639_3_entry - id="yln" - scope="I" - type="L" - name="Buyang; Langnian" /> - <iso_639_3_entry - id="ylo" - scope="I" - type="L" - name="Yi; Naluo" /> - <iso_639_3_entry - id="ylr" - scope="I" - type="E" - name="Yalarnnga" /> - <iso_639_3_entry - id="ylu" - scope="I" - type="L" - name="Aribwaung" /> - <iso_639_3_entry - id="yly" - scope="I" - type="L" - name="Nyâlayu" /> - <iso_639_3_entry - id="yma" - scope="I" - type="L" - name="Yamphe" /> - <iso_639_3_entry - id="ymb" - scope="I" - type="L" - name="Yambes" /> - <iso_639_3_entry - id="ymc" - scope="I" - type="L" - name="Muji; Southern" /> - <iso_639_3_entry - id="ymd" - scope="I" - type="L" - name="Muda" /> - <iso_639_3_entry - id="yme" - scope="I" - type="E" - name="Yameo" /> - <iso_639_3_entry - id="ymg" - scope="I" - type="L" - name="Yamongeri" /> - <iso_639_3_entry - id="ymh" - scope="I" - type="L" - name="Mili" /> - <iso_639_3_entry - id="ymi" - scope="I" - type="L" - name="Moji" /> - <iso_639_3_entry - id="ymk" - scope="I" - type="L" - name="Makwe" /> - <iso_639_3_entry - id="yml" - scope="I" - type="L" - name="Iamalele" /> - <iso_639_3_entry - id="ymm" - scope="I" - type="L" - name="Maay" /> - <iso_639_3_entry - id="ymn" - scope="I" - type="L" - name="Yamna" /> - <iso_639_3_entry - id="ymo" - scope="I" - type="L" - name="Yangum Mon" /> - <iso_639_3_entry - id="ymp" - scope="I" - type="L" - name="Yamap" /> - <iso_639_3_entry - id="ymq" - scope="I" - type="L" - name="Muji; Qila" /> - <iso_639_3_entry - id="ymr" - scope="I" - type="L" - name="Malasar" /> - <iso_639_3_entry - id="yms" - scope="I" - type="A" - name="Mysian" /> - <iso_639_3_entry - id="ymt" - scope="I" - type="E" - name="Mator-Taygi-Karagas" /> - <iso_639_3_entry - id="ymx" - scope="I" - type="L" - name="Muji; Northern" /> - <iso_639_3_entry - id="ymz" - scope="I" - type="L" - name="Muzi" /> - <iso_639_3_entry - id="yna" - scope="I" - type="L" - name="Aluo" /> - <iso_639_3_entry - id="ynd" - scope="I" - type="E" - name="Yandruwandha" /> - <iso_639_3_entry - id="yne" - scope="I" - type="L" - name="Lang'e" /> - <iso_639_3_entry - id="yng" - scope="I" - type="L" - name="Yango" /> - <iso_639_3_entry - id="ynh" - scope="I" - type="L" - name="Yangho" /> - <iso_639_3_entry - id="ynk" - scope="I" - type="L" - name="Yupik; Naukan" /> - <iso_639_3_entry - id="ynl" - scope="I" - type="L" - name="Yangulam" /> - <iso_639_3_entry - id="ynn" - scope="I" - type="E" - name="Yana" /> - <iso_639_3_entry - id="yno" - scope="I" - type="L" - name="Yong" /> - <iso_639_3_entry - id="yns" - scope="I" - type="L" - name="Yansi" /> - <iso_639_3_entry - id="ynu" - scope="I" - type="E" - name="Yahuna" /> - <iso_639_3_entry - id="yob" - scope="I" - type="E" - name="Yoba" /> - <iso_639_3_entry - id="yog" - scope="I" - type="L" - name="Yogad" /> - <iso_639_3_entry - id="yoi" - scope="I" - type="L" - name="Yonaguni" /> - <iso_639_3_entry - id="yok" - scope="I" - type="L" - name="Yokuts" /> - <iso_639_3_entry - id="yol" - scope="I" - type="E" - name="Yola" /> - <iso_639_3_entry - id="yom" - scope="I" - type="L" - name="Yombe" /> - <iso_639_3_entry - id="yon" - scope="I" - type="L" - name="Yongkom" /> - <iso_639_3_entry - id="yor" - part1_code="yo" - part2_code="yor" - scope="I" - type="L" - name="Yoruba" /> - <iso_639_3_entry - id="yos" - scope="I" - type="L" - name="Yos" /> - <iso_639_3_entry - id="yox" - scope="I" - type="L" - name="Yoron" /> - <iso_639_3_entry - id="yoy" - scope="I" - type="L" - name="Yoy" /> - <iso_639_3_entry - id="ypa" - scope="I" - type="L" - name="Phala" /> - <iso_639_3_entry - id="ypb" - scope="I" - type="L" - name="Phowa; Labo" /> - <iso_639_3_entry - id="ypg" - scope="I" - type="L" - name="Phola" /> - <iso_639_3_entry - id="yph" - scope="I" - type="L" - name="Phupha" /> - <iso_639_3_entry - id="ypm" - scope="I" - type="L" - name="Phuma" /> - <iso_639_3_entry - id="ypn" - scope="I" - type="L" - name="Phowa; Ani" /> - <iso_639_3_entry - id="ypo" - scope="I" - type="L" - name="Phola; Alo" /> - <iso_639_3_entry - id="ypp" - scope="I" - type="L" - name="Phupa" /> - <iso_639_3_entry - id="ypz" - scope="I" - type="L" - name="Phuza" /> - <iso_639_3_entry - id="yra" - scope="I" - type="L" - name="Yerakai" /> - <iso_639_3_entry - id="yrb" - scope="I" - type="L" - name="Yareba" /> - <iso_639_3_entry - id="yre" - scope="I" - type="L" - name="Yaouré" /> - <iso_639_3_entry - id="yri" - scope="I" - type="L" - name="Yarí" /> - <iso_639_3_entry - id="yrk" - scope="I" - type="L" - name="Nenets" /> - <iso_639_3_entry - id="yrl" - scope="I" - type="L" - name="Nhengatu" /> - <iso_639_3_entry - id="yrn" - scope="I" - type="L" - name="Yerong" /> - <iso_639_3_entry - id="yrs" - scope="I" - type="L" - name="Yarsun" /> - <iso_639_3_entry - id="yrw" - scope="I" - type="L" - name="Yarawata" /> - <iso_639_3_entry - id="ysc" - scope="I" - type="E" - name="Yassic" /> - <iso_639_3_entry - id="ysd" - scope="I" - type="L" - name="Samatao" /> - <iso_639_3_entry - id="ysl" - scope="I" - type="L" - name="Yugoslavian Sign Language" /> - <iso_639_3_entry - id="ysn" - scope="I" - type="L" - name="Sani" /> - <iso_639_3_entry - id="yso" - scope="I" - type="L" - name="Nisi (China)" /> - <iso_639_3_entry - id="ysp" - scope="I" - type="L" - name="Lolopo; Southern" /> - <iso_639_3_entry - id="ysr" - scope="I" - type="E" - name="Yupik; Sirenik" /> - <iso_639_3_entry - id="yss" - scope="I" - type="L" - name="Yessan-Mayo" /> - <iso_639_3_entry - id="ysy" - scope="I" - type="L" - name="Sanie" /> - <iso_639_3_entry - id="yta" - scope="I" - type="L" - name="Talu" /> - <iso_639_3_entry - id="ytl" - scope="I" - type="L" - name="Tanglang" /> - <iso_639_3_entry - id="ytp" - scope="I" - type="L" - name="Thopho" /> - <iso_639_3_entry - id="ytw" - scope="I" - type="L" - name="Yout Wam" /> - <iso_639_3_entry - id="yua" - scope="I" - type="L" - name="Maya; Yucatec" /> - <iso_639_3_entry - id="yub" - scope="I" - type="E" - name="Yugambal" /> - <iso_639_3_entry - id="yuc" - scope="I" - type="L" - name="Yuchi" /> - <iso_639_3_entry - id="yud" - scope="I" - type="L" - name="Arabic; Judeo-Tripolitanian" /> - <iso_639_3_entry - id="yue" - scope="I" - type="L" - name="Chinese; Yue" /> - <iso_639_3_entry - id="yuf" - scope="I" - type="L" - name="Havasupai-Walapai-Yavapai" /> - <iso_639_3_entry - id="yug" - scope="I" - type="E" - name="Yug" /> - <iso_639_3_entry - id="yui" - scope="I" - type="L" - name="Yurutí" /> - <iso_639_3_entry - id="yuj" - scope="I" - type="L" - name="Karkar-Yuri" /> - <iso_639_3_entry - id="yuk" - scope="I" - type="E" - name="Yuki" /> - <iso_639_3_entry - id="yul" - scope="I" - type="L" - name="Yulu" /> - <iso_639_3_entry - id="yum" - scope="I" - type="L" - name="Quechan" /> - <iso_639_3_entry - id="yun" - scope="I" - type="L" - name="Bena (Nigeria)" /> - <iso_639_3_entry - id="yup" - scope="I" - type="L" - name="Yukpa" /> - <iso_639_3_entry - id="yuq" - scope="I" - type="L" - name="Yuqui" /> - <iso_639_3_entry - id="yur" - scope="I" - type="L" - name="Yurok" /> - <iso_639_3_entry - id="yut" - scope="I" - type="L" - name="Yopno" /> - <iso_639_3_entry - id="yuu" - scope="I" - type="L" - name="Yugh" /> - <iso_639_3_entry - id="yuw" - scope="I" - type="L" - name="Yau (Morobe Province)" /> - <iso_639_3_entry - id="yux" - scope="I" - type="L" - name="Yukaghir; Southern" /> - <iso_639_3_entry - id="yuy" - scope="I" - type="L" - name="Yugur; East" /> - <iso_639_3_entry - id="yuz" - scope="I" - type="L" - name="Yuracare" /> - <iso_639_3_entry - id="yva" - scope="I" - type="L" - name="Yawa" /> - <iso_639_3_entry - id="yvt" - scope="I" - type="E" - name="Yavitero" /> - <iso_639_3_entry - id="ywa" - scope="I" - type="L" - name="Kalou" /> - <iso_639_3_entry - id="ywl" - scope="I" - type="L" - name="Lalu; Western" /> - <iso_639_3_entry - id="ywn" - scope="I" - type="L" - name="Yawanawa" /> - <iso_639_3_entry - id="ywq" - scope="I" - type="L" - name="Yi; Wuding-Luquan" /> - <iso_639_3_entry - id="ywr" - scope="I" - type="L" - name="Yawuru" /> - <iso_639_3_entry - id="ywt" - scope="I" - type="L" - name="Lalo; Xishanba" /> - <iso_639_3_entry - id="ywu" - scope="I" - type="L" - name="Nasu; Wumeng" /> - <iso_639_3_entry - id="yww" - scope="I" - type="E" - name="Yawarawarga" /> - <iso_639_3_entry - id="yyu" - scope="I" - type="L" - name="Yau (Sandaun Province)" /> - <iso_639_3_entry - id="yyz" - scope="I" - type="L" - name="Ayizi" /> - <iso_639_3_entry - id="yzg" - scope="I" - type="L" - name="Buyang; E'ma" /> - <iso_639_3_entry - id="yzk" - scope="I" - type="L" - name="Zokhuo" /> - <iso_639_3_entry - id="zaa" - scope="I" - type="L" - name="Zapotec; Sierra de Juárez" /> - <iso_639_3_entry - id="zab" - scope="I" - type="L" - name="Zapotec; San Juan Guelavía" /> - <iso_639_3_entry - id="zac" - scope="I" - type="L" - name="Zapotec; Ocotlán" /> - <iso_639_3_entry - id="zad" - scope="I" - type="L" - name="Zapotec; Cajonos" /> - <iso_639_3_entry - id="zae" - scope="I" - type="L" - name="Zapotec; Yareni" /> - <iso_639_3_entry - id="zaf" - scope="I" - type="L" - name="Zapotec; Ayoquesco" /> - <iso_639_3_entry - id="zag" - scope="I" - type="L" - name="Zaghawa" /> - <iso_639_3_entry - id="zah" - scope="I" - type="L" - name="Zangwal" /> - <iso_639_3_entry - id="zai" - scope="I" - type="L" - name="Zapotec; Isthmus" /> - <iso_639_3_entry - id="zaj" - scope="I" - type="L" - name="Zaramo" /> - <iso_639_3_entry - id="zak" - scope="I" - type="L" - name="Zanaki" /> - <iso_639_3_entry - id="zal" - scope="I" - type="L" - name="Zauzou" /> - <iso_639_3_entry - id="zam" - scope="I" - type="L" - name="Zapotec; Miahuatlán" /> - <iso_639_3_entry - id="zao" - scope="I" - type="L" - name="Zapotec; Ozolotepec" /> - <iso_639_3_entry - id="zap" - part2_code="zap" - scope="M" - type="L" - name="Zapotec" /> - <iso_639_3_entry - id="zaq" - scope="I" - type="L" - name="Zapotec; Aloápam" /> - <iso_639_3_entry - id="zar" - scope="I" - type="L" - name="Zapotec; Rincón" /> - <iso_639_3_entry - id="zas" - scope="I" - type="L" - name="Zapotec; Santo Domingo Albarradas" /> - <iso_639_3_entry - id="zat" - scope="I" - type="L" - name="Zapotec; Tabaa" /> - <iso_639_3_entry - id="zau" - scope="I" - type="L" - name="Zangskari" /> - <iso_639_3_entry - id="zav" - scope="I" - type="L" - name="Zapotec; Yatzachi" /> - <iso_639_3_entry - id="zaw" - scope="I" - type="L" - name="Zapotec; Mitla" /> - <iso_639_3_entry - id="zax" - scope="I" - type="L" - name="Zapotec; Xadani" /> - <iso_639_3_entry - id="zay" - scope="I" - type="L" - name="Zayse-Zergulla" /> - <iso_639_3_entry - id="zaz" - scope="I" - type="L" - name="Zari" /> - <iso_639_3_entry - id="zbc" - scope="I" - type="L" - name="Berawan; Central" /> - <iso_639_3_entry - id="zbe" - scope="I" - type="L" - name="Berawan; East" /> - <iso_639_3_entry - id="zbl" - part2_code="zbl" - scope="I" - type="C" - name="Blissymbols" /> - <iso_639_3_entry - id="zbt" - scope="I" - type="L" - name="Batui" /> - <iso_639_3_entry - id="zbw" - scope="I" - type="L" - name="Berawan; West" /> - <iso_639_3_entry - id="zca" - scope="I" - type="L" - name="Zapotec; Coatecas Altas" /> - <iso_639_3_entry - id="zch" - scope="I" - type="L" - name="Zhuang; Central Hongshuihe" /> - <iso_639_3_entry - id="zdj" - scope="I" - type="L" - name="Comorian; Ngazidja" /> - <iso_639_3_entry - id="zea" - scope="I" - type="L" - name="Zeeuws" /> - <iso_639_3_entry - id="zeg" - scope="I" - type="L" - name="Zenag" /> - <iso_639_3_entry - id="zeh" - scope="I" - type="L" - name="Zhuang; Eastern Hongshuihe" /> - <iso_639_3_entry - id="zen" - part2_code="zen" - scope="I" - type="L" - name="Zenaga" /> - <iso_639_3_entry - id="zga" - scope="I" - type="L" - name="Kinga" /> - <iso_639_3_entry - id="zgb" - scope="I" - type="L" - name="Zhuang; Guibei" /> - <iso_639_3_entry - id="zgm" - scope="I" - type="L" - name="Zhuang; Minz" /> - <iso_639_3_entry - id="zgn" - scope="I" - type="L" - name="Zhuang; Guibian" /> - <iso_639_3_entry - id="zgr" - scope="I" - type="L" - name="Magori" /> - <iso_639_3_entry - id="zha" - part1_code="za" - part2_code="zha" - scope="M" - type="L" - name="Zhuang" /> - <iso_639_3_entry - id="zhb" - scope="I" - type="L" - name="Zhaba" /> - <iso_639_3_entry - id="zhd" - scope="I" - type="L" - name="Zhuang; Dai" /> - <iso_639_3_entry - id="zhi" - scope="I" - type="L" - name="Zhire" /> - <iso_639_3_entry - id="zhn" - scope="I" - type="L" - name="Zhuang; Nong" /> - <iso_639_3_entry - id="zho" - part1_code="zh" - part2_code="chi" - scope="M" - type="L" - name="Chinese" /> - <iso_639_3_entry - id="zhw" - scope="I" - type="L" - name="Zhoa" /> - <iso_639_3_entry - id="zia" - scope="I" - type="L" - name="Zia" /> - <iso_639_3_entry - id="zib" - scope="I" - type="L" - name="Zimbabwe Sign Language" /> - <iso_639_3_entry - id="zik" - scope="I" - type="L" - name="Zimakani" /> - <iso_639_3_entry - id="zil" - scope="I" - type="L" - name="Zialo" /> - <iso_639_3_entry - id="zim" - scope="I" - type="L" - name="Mesme" /> - <iso_639_3_entry - id="zin" - scope="I" - type="L" - name="Zinza" /> - <iso_639_3_entry - id="zir" - scope="I" - type="E" - name="Ziriya" /> - <iso_639_3_entry - id="ziw" - scope="I" - type="L" - name="Zigula" /> - <iso_639_3_entry - id="ziz" - scope="I" - type="L" - name="Zizilivakan" /> - <iso_639_3_entry - id="zka" - scope="I" - type="L" - name="Kaimbulawa" /> - <iso_639_3_entry - id="zkb" - scope="I" - type="E" - name="Koibal" /> - <iso_639_3_entry - id="zkg" - scope="I" - type="E" - name="Koguryo" /> - <iso_639_3_entry - id="zkh" - scope="I" - type="E" - name="Khorezmian" /> - <iso_639_3_entry - id="zkk" - scope="I" - type="E" - name="Karankawa" /> - <iso_639_3_entry - id="zko" - scope="I" - type="E" - name="Kott" /> - <iso_639_3_entry - id="zkp" - scope="I" - type="E" - name="Kaingáng; São Paulo" /> - <iso_639_3_entry - id="zkr" - scope="I" - type="L" - name="Zakhring" /> - <iso_639_3_entry - id="zkt" - scope="I" - type="E" - name="Kitan" /> - <iso_639_3_entry - id="zku" - scope="I" - type="E" - name="Kaurna" /> - <iso_639_3_entry - id="zkv" - scope="I" - type="E" - name="Krevinian" /> - <iso_639_3_entry - id="zkz" - scope="I" - type="E" - name="Khazar" /> - <iso_639_3_entry - id="zlj" - scope="I" - type="L" - name="Zhuang; Liujiang" /> - <iso_639_3_entry - id="zlm" - scope="I" - type="L" - name="Malay (individual language)" /> - <iso_639_3_entry - id="zln" - scope="I" - type="L" - name="Zhuang; Lianshan" /> - <iso_639_3_entry - id="zlq" - scope="I" - type="L" - name="Zhuang; Liuqian" /> - <iso_639_3_entry - id="zma" - scope="I" - type="L" - name="Manda (Australia)" /> - <iso_639_3_entry - id="zmb" - scope="I" - type="L" - name="Zimba" /> - <iso_639_3_entry - id="zmc" - scope="I" - type="E" - name="Margany" /> - <iso_639_3_entry - id="zmd" - scope="I" - type="L" - name="Maridan" /> - <iso_639_3_entry - id="zme" - scope="I" - type="E" - name="Mangerr" /> - <iso_639_3_entry - id="zmf" - scope="I" - type="L" - name="Mfinu" /> - <iso_639_3_entry - id="zmg" - scope="I" - type="L" - name="Marti Ke" /> - <iso_639_3_entry - id="zmh" - scope="I" - type="E" - name="Makolkol" /> - <iso_639_3_entry - id="zmi" - scope="I" - type="L" - name="Negeri Sembilan Malay" /> - <iso_639_3_entry - id="zmj" - scope="I" - type="L" - name="Maridjabin" /> - <iso_639_3_entry - id="zmk" - scope="I" - type="E" - name="Mandandanyi" /> - <iso_639_3_entry - id="zml" - scope="I" - type="L" - name="Madngele" /> - <iso_639_3_entry - id="zmm" - scope="I" - type="L" - name="Marimanindji" /> - <iso_639_3_entry - id="zmn" - scope="I" - type="L" - name="Mbangwe" /> - <iso_639_3_entry - id="zmo" - scope="I" - type="L" - name="Molo" /> - <iso_639_3_entry - id="zmp" - scope="I" - type="L" - name="Mpuono" /> - <iso_639_3_entry - id="zmq" - scope="I" - type="L" - name="Mituku" /> - <iso_639_3_entry - id="zmr" - scope="I" - type="L" - name="Maranunggu" /> - <iso_639_3_entry - id="zms" - scope="I" - type="L" - name="Mbesa" /> - <iso_639_3_entry - id="zmt" - scope="I" - type="L" - name="Maringarr" /> - <iso_639_3_entry - id="zmu" - scope="I" - type="E" - name="Muruwari" /> - <iso_639_3_entry - id="zmv" - scope="I" - type="E" - name="Mbariman-Gudhinma" /> - <iso_639_3_entry - id="zmw" - scope="I" - type="L" - name="Mbo (Democratic Republic of Congo)" /> - <iso_639_3_entry - id="zmx" - scope="I" - type="L" - name="Bomitaba" /> - <iso_639_3_entry - id="zmy" - scope="I" - type="L" - name="Mariyedi" /> - <iso_639_3_entry - id="zmz" - scope="I" - type="L" - name="Mbandja" /> - <iso_639_3_entry - id="zna" - scope="I" - type="L" - name="Zan Gula" /> - <iso_639_3_entry - id="zne" - scope="I" - type="L" - name="Zande (individual language)" /> - <iso_639_3_entry - id="zng" - scope="I" - type="L" - name="Mang" /> - <iso_639_3_entry - id="znk" - scope="I" - type="E" - name="Manangkari" /> - <iso_639_3_entry - id="zns" - scope="I" - type="L" - name="Mangas" /> - <iso_639_3_entry - id="zoc" - scope="I" - type="L" - name="Zoque; Copainalá" /> - <iso_639_3_entry - id="zoh" - scope="I" - type="L" - name="Zoque; Chimalapa" /> - <iso_639_3_entry - id="zom" - scope="I" - type="L" - name="Zou" /> - <iso_639_3_entry - id="zoo" - scope="I" - type="L" - name="Zapotec; Asunción Mixtepec" /> - <iso_639_3_entry - id="zoq" - scope="I" - type="L" - name="Zoque; Tabasco" /> - <iso_639_3_entry - id="zor" - scope="I" - type="L" - name="Zoque; Rayón" /> - <iso_639_3_entry - id="zos" - scope="I" - type="L" - name="Zoque; Francisco León" /> - <iso_639_3_entry - id="zpa" - scope="I" - type="L" - name="Zapotec; Lachiguiri" /> - <iso_639_3_entry - id="zpb" - scope="I" - type="L" - name="Zapotec; Yautepec" /> - <iso_639_3_entry - id="zpc" - scope="I" - type="L" - name="Zapotec; Choapan" /> - <iso_639_3_entry - id="zpd" - scope="I" - type="L" - name="Zapotec; Southeastern Ixtlán" /> - <iso_639_3_entry - id="zpe" - scope="I" - type="L" - name="Zapotec; Petapa" /> - <iso_639_3_entry - id="zpf" - scope="I" - type="L" - name="Zapotec; San Pedro Quiatoni" /> - <iso_639_3_entry - id="zpg" - scope="I" - type="L" - name="Zapotec; Guevea De Humboldt" /> - <iso_639_3_entry - id="zph" - scope="I" - type="L" - name="Zapotec; Totomachapan" /> - <iso_639_3_entry - id="zpi" - scope="I" - type="L" - name="Zapotec; Santa María Quiegolani" /> - <iso_639_3_entry - id="zpj" - scope="I" - type="L" - name="Zapotec; Quiavicuzas" /> - <iso_639_3_entry - id="zpk" - scope="I" - type="L" - name="Zapotec; Tlacolulita" /> - <iso_639_3_entry - id="zpl" - scope="I" - type="L" - name="Zapotec; Lachixío" /> - <iso_639_3_entry - id="zpm" - scope="I" - type="L" - name="Zapotec; Mixtepec" /> - <iso_639_3_entry - id="zpn" - scope="I" - type="L" - name="Zapotec; Santa Inés Yatzechi" /> - <iso_639_3_entry - id="zpo" - scope="I" - type="L" - name="Zapotec; Amatlán" /> - <iso_639_3_entry - id="zpp" - scope="I" - type="L" - name="Zapotec; El Alto" /> - <iso_639_3_entry - id="zpq" - scope="I" - type="L" - name="Zapotec; Zoogocho" /> - <iso_639_3_entry - id="zpr" - scope="I" - type="L" - name="Zapotec; Santiago Xanica" /> - <iso_639_3_entry - id="zps" - scope="I" - type="L" - name="Zapotec; Coatlán" /> - <iso_639_3_entry - id="zpt" - scope="I" - type="L" - name="Zapotec; San Vicente Coatlán" /> - <iso_639_3_entry - id="zpu" - scope="I" - type="L" - name="Zapotec; Yalálag" /> - <iso_639_3_entry - id="zpv" - scope="I" - type="L" - name="Zapotec; Chichicapan" /> - <iso_639_3_entry - id="zpw" - scope="I" - type="L" - name="Zapotec; Zaniza" /> - <iso_639_3_entry - id="zpx" - scope="I" - type="L" - name="Zapotec; San Baltazar Loxicha" /> - <iso_639_3_entry - id="zpy" - scope="I" - type="L" - name="Zapotec; Mazaltepec" /> - <iso_639_3_entry - id="zpz" - scope="I" - type="L" - name="Zapotec; Texmelucan" /> - <iso_639_3_entry - id="zqe" - scope="I" - type="L" - name="Zhuang; Qiubei" /> - <iso_639_3_entry - id="zra" - scope="I" - type="E" - name="Kara (Korea)" /> - <iso_639_3_entry - id="zrg" - scope="I" - type="L" - name="Mirgan" /> - <iso_639_3_entry - id="zrn" - scope="I" - type="L" - name="Zerenkel" /> - <iso_639_3_entry - id="zro" - scope="I" - type="L" - name="Záparo" /> - <iso_639_3_entry - id="zrp" - scope="I" - type="E" - name="Zarphatic" /> - <iso_639_3_entry - id="zrs" - scope="I" - type="L" - name="Mairasi" /> - <iso_639_3_entry - id="zsa" - scope="I" - type="L" - name="Sarasira" /> - <iso_639_3_entry - id="zsk" - scope="I" - type="A" - name="Kaskean" /> - <iso_639_3_entry - id="zsl" - scope="I" - type="L" - name="Zambian Sign Language" /> - <iso_639_3_entry - id="zsm" - scope="I" - type="L" - name="Malay; Standard" /> - <iso_639_3_entry - id="zsr" - scope="I" - type="L" - name="Zapotec; Southern Rincon" /> - <iso_639_3_entry - id="zsu" - scope="I" - type="L" - name="Sukurum" /> - <iso_639_3_entry - id="zte" - scope="I" - type="L" - name="Zapotec; Elotepec" /> - <iso_639_3_entry - id="ztg" - scope="I" - type="L" - name="Zapotec; Xanaguía" /> - <iso_639_3_entry - id="ztl" - scope="I" - type="L" - name="Zapotec; Lapaguía-Guivini" /> - <iso_639_3_entry - id="ztm" - scope="I" - type="L" - name="Zapotec; San Agustín Mixtepec" /> - <iso_639_3_entry - id="ztn" - scope="I" - type="L" - name="Zapotec; Santa Catarina Albarradas" /> - <iso_639_3_entry - id="ztp" - scope="I" - type="L" - name="Zapotec; Loxicha" /> - <iso_639_3_entry - id="ztq" - scope="I" - type="L" - name="Zapotec; Quioquitani-Quierí" /> - <iso_639_3_entry - id="zts" - scope="I" - type="L" - name="Zapotec; Tilquiapan" /> - <iso_639_3_entry - id="ztt" - scope="I" - type="L" - name="Zapotec; Tejalapan" /> - <iso_639_3_entry - id="ztu" - scope="I" - type="L" - name="Zapotec; Güilá" /> - <iso_639_3_entry - id="ztx" - scope="I" - type="L" - name="Zapotec; Zaachila" /> - <iso_639_3_entry - id="zty" - scope="I" - type="L" - name="Zapotec; Yatee" /> - <iso_639_3_entry - id="zua" - scope="I" - type="L" - name="Zeem" /> - <iso_639_3_entry - id="zuh" - scope="I" - type="L" - name="Tokano" /> - <iso_639_3_entry - id="zul" - part1_code="zu" - part2_code="zul" - scope="I" - type="L" - name="Zulu" /> - <iso_639_3_entry - id="zum" - scope="I" - type="L" - name="Kumzari" /> - <iso_639_3_entry - id="zun" - part2_code="zun" - scope="I" - type="L" - name="Zuni" /> - <iso_639_3_entry - id="zuy" - scope="I" - type="L" - name="Zumaya" /> - <iso_639_3_entry - id="zwa" - scope="I" - type="L" - name="Zay" /> - <iso_639_3_entry - id="zxx" - part2_code="zxx" - scope="S" - type="S" - name="No linguistic content" /> - <iso_639_3_entry - id="zyb" - scope="I" - type="L" - name="Zhuang; Yongbei" /> - <iso_639_3_entry - id="zyg" - scope="I" - type="L" - name="Zhuang; Yang" /> - <iso_639_3_entry - id="zyj" - scope="I" - type="L" - name="Zhuang; Youjiang" /> - <iso_639_3_entry - id="zyn" - scope="I" - type="L" - name="Zhuang; Yongnan" /> - <iso_639_3_entry - id="zyp" - scope="I" - type="L" - name="Zyphe" /> - <iso_639_3_entry - id="zza" - part2_code="zza" - scope="M" - type="L" - name="Zaza" /> - <iso_639_3_entry - id="zzj" - scope="I" - type="L" - name="Zhuang; Zuojiang" /> -</iso_639_3_entries>