diff --git a/Build/Scripts/updateIsoDatabase.php b/Build/Scripts/updateIsoDatabase.php
new file mode 100755
index 0000000000000000000000000000000000000000..5ee5a8b58d44858f59091f4520a509c0af7456b6
--- /dev/null
+++ b/Build/Scripts/updateIsoDatabase.php
@@ -0,0 +1,199 @@
+#!/usr/bin/env php
+<?php
+declare(strict_types=1);
+
+/*
+ * This file is part of the TYPO3 CMS project.
+ *
+ * It is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, either version 2
+ * of the License, or any later version.
+ *
+ * For the full copyright and license information, please read the
+ * LICENSE.txt file that was distributed with this source code.
+ *
+ * The TYPO3 project - inspiring people to share!
+ */
+
+use Symfony\Component\Translation\MessageCatalogue;
+use TYPO3\CMS\Core\Localization\Locales;
+use TYPO3\CMS\Core\Utility\ArrayUtility;
+
+if (PHP_SAPI !== 'cli') {
+    die('Script must be called from command line.' . chr(10));
+}
+
+require __DIR__ . '/../../vendor/autoload.php';
+
+// Basic Information
+// * ISO 639-1 -> languages in two letter code
+// * ISO 639-2 -> languages in two/three letter code
+// * ISO 3166-1 -> countries
+// * ISO 3166-2 -> regions in countries (= states)
+
+/**
+ * This is a specific Xliff Dumper subclass, as TYPO3 has some specialities
+ * when dealing with XLIFF ("original", "date" or "product-name", and "id" or special handling of english labels)
+ */
+class XliffDumper extends \Symfony\Component\Translation\Dumper\XliffFileDumper
+{
+    public function dump(MessageCatalogue $messages, array $options = [])
+    {
+        if ($messages->getLocale() === 'en') {
+            $this->setRelativePathTemplate('%domain%.%extension%');
+        } else {
+            $this->setRelativePathTemplate('%locale%.%domain%.%extension%');
+        }
+        parent::dump($messages, $options);
+    }
+
+    public function formatCatalogue(MessageCatalogue $messages, string $domain, array $options = []): string
+    {
+        $isBaseLanguage = $messages->getLocale() === 'en';
+        $dom = new \DOMDocument('1.0', 'utf-8');
+        $dom->formatOutput = true;
+
+        $xliff = $dom->appendChild($dom->createElement('xliff'));
+        $xliff->setAttribute('version', '1.2');
+        $xliff->setAttribute('xmlns', 'urn:oasis:names:tc:xliff:document:1.2');
+
+        $xliffFile = $xliff->appendChild($dom->createElement('file'));
+        $xliffFile->setAttribute('source-language', 'en');
+        if (!$isBaseLanguage) {
+            $xliffFile->setAttribute('target-language', str_replace('_', '-', $messages->getLocale()));
+        }
+        $xliffFile->setAttribute('datatype', 'plaintext');
+        $xliffFile->setAttribute('original', 'EXT:core/Resources/Private/Language/countries.xlf');
+        $xliffFile->setAttribute('product-name', 'typo3/cms-core');
+
+        $xliffBody = $xliffFile->appendChild($dom->createElement('body'));
+        foreach ($messages->all($domain) as $source => $target) {
+            $translation = $dom->createElement('trans-unit');
+
+            $translation->setAttribute('id', $source);
+            $translation->setAttribute('resname', $source);
+
+            $s = $translation->appendChild($dom->createElement('source'));
+            if ($isBaseLanguage) {
+                $s->appendChild($dom->createTextNode($target));
+            } else {
+                $translation->setAttribute('approved', 'yes');
+                $s->appendChild($dom->createTextNode($messages->getFallbackCatalogue()->get($source, $domain) ?: $source));
+                // Does the target contain characters requiring a CDATA section?
+                $text = preg_match('/[&<>]/', $target) === 1 ? $dom->createCDATASection($target) : $dom->createTextNode($target);
+
+                $targetElement = $dom->createElement('target');
+                $t = $translation->appendChild($targetElement);
+                $t->appendChild($text);
+            }
+            $xliffBody->appendChild($translation);
+        }
+        return $dom->saveXML();
+    }
+}
+
+// 0. Preparations
+$devFlag = false;
+$baseDirectory = __DIR__ . '/../../vendor/sokil/php-isocodes-db-i18n';
+$targetDirectory = __DIR__ . '/../../typo3/sysext/core/Resources/Private/Database';
+$targetXliffDirectory = __DIR__ . '/../../typo3/sysext/core/Resources/Private/Language/Iso';
+$countryProviderFileLocation = __DIR__ . '/../../typo3/sysext/core/Classes/Country/CountryProvider.php';
+@mkdir($targetDirectory, 0777, true);
+@mkdir($targetXliffDirectory, 0777, true);
+
+// 1. Get all supported TYPO3 languages
+$typo3Locales = new Locales();
+$languages = $typo3Locales->getLanguages();
+unset($languages['default']);
+$supportedLanguagesInTypo3 = array_keys($languages);
+
+// 2. Countries
+// Load all available countries in english
+$countries = json_decode(file_get_contents($baseDirectory . '/databases/iso_3166-1.json'), true);
+
+$countries = reset($countries);
+$defaultCatalogue = new MessageCatalogue('en');
+$xliffDumper = new XliffDumper();
+
+$countriesByCountryCode = [];
+foreach ($countries as $countryDetails) {
+    $countryCode = $countryDetails['alpha_2'];
+    unset($countryDetails['alpha_2']);
+    $countriesByCountryCode[$countryCode] = $countryDetails;
+    $defaultCatalogue->add([$countryCode . '.name' => $countryDetails['name']], 'countries');
+    if (isset($countryDetails['official_name'])) {
+        $defaultCatalogue->add([$countryCode . '.official_name' => $countryDetails['official_name']], 'countries');
+    }
+}
+ksort($countriesByCountryCode, SORT_NATURAL);
+$xliffDumper->dump($defaultCatalogue, ['path' => $targetXliffDirectory]);
+$countryProviderFileContents = file_get_contents($countryProviderFileLocation);
+$newCountryContents = ArrayUtility::arrayExport($countriesByCountryCode);
+$newCountryContents = str_replace("\n", "\n    ", $newCountryContents);
+$countryProviderFileContents = preg_replace('/private array \$rawData = [^;]*;/u', 'private array $rawData = ' . $newCountryContents . ';', $countryProviderFileContents);
+file_put_contents($countryProviderFileLocation, $countryProviderFileContents);
+
+// 2. Load labels that are translated for countries ("name" and "official name")
+$loader = new \Symfony\Component\Translation\Loader\PoFileLoader();
+foreach ($supportedLanguagesInTypo3 as $languageKey) {
+    $translationFile = $baseDirectory . '/messages/' . $languageKey . '/LC_MESSAGES/3166-1.po';
+    if (!file_exists($translationFile)) {
+        continue;
+    }
+    $catalogue = $loader->load($translationFile, $languageKey);
+    $cleanedCatalogue = new MessageCatalogue(str_replace('_', '-', $languageKey));
+    $cleanedCatalogue->addFallbackCatalogue($defaultCatalogue);
+    foreach ($countriesByCountryCode as $countryCode => $countryDetails) {
+        $countryName = $countryDetails['name'];
+        $translatedCountryName = $catalogue->get($countryName);
+        if ($translatedCountryName) {
+            $cleanedCatalogue->add([$countryCode . '.name' => $translatedCountryName], 'countries');
+        }
+        if (isset($countryDetails['official_name'])) {
+            $countryName = $countryDetails['official_name'];
+            $translatedCountryName = $catalogue->get($countryName);
+            if ($translatedCountryName) {
+                $cleanedCatalogue->add([$countryCode . '.official_name' => $translatedCountryName], 'countries');
+            }
+        }
+    }
+    $xliffDumper->dump($cleanedCatalogue, ['path' => $targetXliffDirectory]);
+}
+
+return;
+// This part will be added later-on
+// 3. Language Scripts
+$scripts = json_decode(file_get_contents($baseDirectory . '/databases/iso_15924.json'), true);
+
+$defaultCatalogue = new MessageCatalogue('en');
+$scriptsByScriptCode = [];
+$scripts = reset($scripts);
+foreach ($scripts as $scriptDetails) {
+    $scriptCode = $scriptDetails['alpha_4'];
+    unset($scriptDetails['alpha_4']);
+    $scriptsByScriptCode[$scriptCode] = $scriptDetails;
+    $defaultCatalogue->add([$scriptCode . '.name' => $scriptDetails['name']], 'scripts');
+}
+ksort($scriptsByScriptCode, SORT_NATURAL);
+$xliffDumper->dump($defaultCatalogue, ['path' => $targetXliffDirectory]);
+file_put_contents($targetDirectory . '/iso_15924_scripts.json', json_encode($scriptsByScriptCode, $devFlag ? JSON_PRETTY_PRINT : 0));
+
+// Translated scripts
+foreach ($supportedLanguagesInTypo3 as $languageKey) {
+    $translationFile = $baseDirectory . '/messages/' . $languageKey . '/LC_MESSAGES/15924.po';
+    if (!file_exists($translationFile)) {
+        continue;
+    }
+    $catalogue = $loader->load($translationFile, $languageKey);
+    $cleanedCatalogue = new MessageCatalogue(str_replace('_', '-', $languageKey));
+    $cleanedCatalogue->addFallbackCatalogue($defaultCatalogue);
+    foreach ($scriptsByScriptCode as $scriptCode => $scriptDetails) {
+        $translatedName = $catalogue->get($scriptDetails['name']);
+        if ($translatedName) {
+            $cleanedCatalogue->add([$scriptCode . '.name' => $translatedName], 'scripts');
+        }
+    }
+    if ($cleanedCatalogue->all() !== []) {
+        $xliffDumper->dump($cleanedCatalogue, ['path' => $targetXliffDirectory]);
+    }
+}
diff --git a/composer.json b/composer.json
index eca7f512fcda23bbb0b94e1b20d006193dbe69ab..a3b1c02a41a1f599b5563990c902e590c7c0bd27 100644
--- a/composer.json
+++ b/composer.json
@@ -113,6 +113,8 @@
 		"phpstan/phpstan": "^1.9.12",
 		"phpstan/phpstan-phpunit": "^1.3.3",
 		"phpunit/phpunit": "^9.5.25",
+		"sokil/php-isocodes-db-i18n": "^4.0",
+		"symfony/translation": "^6.2",
 		"typo3/cms-styleguide": "~12.0@dev",
 		"typo3/testing-framework": "dev-main",
 		"webmozart/assert": "^1.11.0"
diff --git a/composer.lock b/composer.lock
index 230a5b5096875983fbf89b900b390d3e48fe91e2..fc8244454737ebfe6ca2d24dcf769a7736c7b4f1 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
         "This file is @generated automatically"
     ],
-    "content-hash": "cc5040c18df5b469381d1c1d9ba0badd",
+    "content-hash": "5cd2a99964df27eb44eb8b259ca6dd48",
     "packages": [
         {
             "name": "bacon/bacon-qr-code",
@@ -8196,6 +8196,46 @@
             },
             "time": "2022-07-20T18:31:45+00:00"
         },
+        {
+            "name": "sokil/php-isocodes-db-i18n",
+            "version": "4.0.9",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sokil/php-isocodes-db-i18n.git",
+                "reference": "03574bd2793db617115a6d1e80dca43ecea78082"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sokil/php-isocodes-db-i18n/zipball/03574bd2793db617115a6d1e80dca43ecea78082",
+                "reference": "03574bd2793db617115a6d1e80dca43ecea78082",
+                "shasum": ""
+            },
+            "require": {
+                "ext-json": "*",
+                "php": ">=7.1"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.5",
+                "sokil/php-isocodes": "^4.0.1"
+            },
+            "type": "library",
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Dmytro Sokil",
+                    "email": "dmytro.sokil@gmail.com"
+                }
+            ],
+            "description": "Database and internationalisation filed for ISO country, subdivision, language, currency and script definitions and their translations. Based on pythons pycountry and Debian's iso-codes.",
+            "support": {
+                "issues": "https://github.com/sokil/php-isocodes-db-i18n/issues",
+                "source": "https://github.com/sokil/php-isocodes-db-i18n/tree/4.0.9"
+            },
+            "time": "2022-12-04T11:26:50+00:00"
+        },
         {
             "name": "symfony/css-selector",
             "version": "v6.1.3",
@@ -8384,6 +8424,185 @@
             ],
             "time": "2022-09-28T16:00:52+00:00"
         },
+        {
+            "name": "symfony/translation",
+            "version": "v6.2.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/translation.git",
+                "reference": "a2a15404ef4c15d92c205718eb828b225a144379"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/translation/zipball/a2a15404ef4c15d92c205718eb828b225a144379",
+                "reference": "a2a15404ef4c15d92c205718eb828b225a144379",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "symfony/polyfill-mbstring": "~1.0",
+                "symfony/translation-contracts": "^2.3|^3.0"
+            },
+            "conflict": {
+                "symfony/config": "<5.4",
+                "symfony/console": "<5.4",
+                "symfony/dependency-injection": "<5.4",
+                "symfony/http-kernel": "<5.4",
+                "symfony/twig-bundle": "<5.4",
+                "symfony/yaml": "<5.4"
+            },
+            "provide": {
+                "symfony/translation-implementation": "2.3|3.0"
+            },
+            "require-dev": {
+                "nikic/php-parser": "^4.13",
+                "psr/log": "^1|^2|^3",
+                "symfony/config": "^5.4|^6.0",
+                "symfony/console": "^5.4|^6.0",
+                "symfony/dependency-injection": "^5.4|^6.0",
+                "symfony/finder": "^5.4|^6.0",
+                "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
+                "symfony/http-kernel": "^5.4|^6.0",
+                "symfony/intl": "^5.4|^6.0",
+                "symfony/polyfill-intl-icu": "^1.21",
+                "symfony/routing": "^5.4|^6.0",
+                "symfony/service-contracts": "^1.1.2|^2|^3",
+                "symfony/yaml": "^5.4|^6.0"
+            },
+            "suggest": {
+                "nikic/php-parser": "To use PhpAstExtractor",
+                "psr/log-implementation": "To use logging capability in translator",
+                "symfony/config": "",
+                "symfony/yaml": ""
+            },
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "Resources/functions.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Component\\Translation\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Provides tools to internationalize your application",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/translation/tree/v6.2.3"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2022-12-23T14:11:11+00:00"
+        },
+        {
+            "name": "symfony/translation-contracts",
+            "version": "v3.2.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/translation-contracts.git",
+                "reference": "68cce71402305a015f8c1589bfada1280dc64fe7"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/68cce71402305a015f8c1589bfada1280dc64fe7",
+                "reference": "68cce71402305a015f8c1589bfada1280dc64fe7",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1"
+            },
+            "suggest": {
+                "symfony/translation-implementation": ""
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "3.3-dev"
+                },
+                "thanks": {
+                    "name": "symfony/contracts",
+                    "url": "https://github.com/symfony/contracts"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Contracts\\Translation\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Test/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Generic abstractions related to translation",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "abstractions",
+                "contracts",
+                "decoupling",
+                "interfaces",
+                "interoperability",
+                "standards"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/translation-contracts/tree/v3.2.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2022-11-25T10:21:52+00:00"
+        },
         {
             "name": "theseer/tokenizer",
             "version": "1.2.1",
diff --git a/typo3/sysext/core/Classes/Country/Country.php b/typo3/sysext/core/Classes/Country/Country.php
new file mode 100644
index 0000000000000000000000000000000000000000..f765f466beee1d05b465d1c3954332e1fcbfd629
--- /dev/null
+++ b/typo3/sysext/core/Classes/Country/Country.php
@@ -0,0 +1,76 @@
+<?php
+
+declare(strict_types=1);
+
+/*
+ * This file is part of the TYPO3 CMS project.
+ *
+ * It is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, either version 2
+ * of the License, or any later version.
+ *
+ * For the full copyright and license information, please read the
+ * LICENSE.txt file that was distributed with this source code.
+ *
+ * The TYPO3 project - inspiring people to share!
+ */
+
+namespace TYPO3\CMS\Core\Country;
+
+/**
+ * DTO that keeps the information about a country. Never instantiate directly,
+ * use CountryProvider instead.
+ */
+class Country
+{
+    protected const LABEL_FILE = 'EXT:core/Resources/Private/Language/Iso/countries.xlf';
+
+    public function __construct(
+        protected string $alpha2,
+        protected string $alpha3,
+        protected string $name,
+        protected string $numeric,
+        protected string $flag,
+        protected ?string $officialName
+    ) {
+    }
+
+    public function getName(): string
+    {
+        return $this->name;
+    }
+    public function getLocalizedNameLabel(): string
+    {
+        return 'LLL:' . self::LABEL_FILE . ':' . $this->alpha2 . '.name';
+    }
+
+    public function getOfficialName(): ?string
+    {
+        return $this->officialName;
+    }
+
+    public function getLocalizedOfficialNameLabel(): string
+    {
+        return 'LLL:' . self::LABEL_FILE . ':' . $this->alpha2 . '.official_name';
+    }
+
+    public function getAlpha2IsoCode(): string
+    {
+        return $this->alpha2;
+    }
+
+    public function getAlpha3IsoCode(): string
+    {
+        return $this->alpha3;
+    }
+
+    public function getNumericRepresentation(): string
+    {
+        return $this->numeric;
+    }
+
+    public function getFlag(): string
+    {
+        return $this->flag;
+    }
+}
diff --git a/typo3/sysext/core/Classes/Country/CountryProvider.php b/typo3/sysext/core/Classes/Country/CountryProvider.php
new file mode 100644
index 0000000000000000000000000000000000000000..cea18a9d3cfa160f8fef0f7057a6dca8320a19df
--- /dev/null
+++ b/typo3/sysext/core/Classes/Country/CountryProvider.php
@@ -0,0 +1,1772 @@
+<?php
+
+declare(strict_types=1);
+
+/*
+ * This file is part of the TYPO3 CMS project.
+ *
+ * It is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, either version 2
+ * of the License, or any later version.
+ *
+ * For the full copyright and license information, please read the
+ * LICENSE.txt file that was distributed with this source code.
+ *
+ * The TYPO3 project - inspiring people to share!
+ */
+
+namespace TYPO3\CMS\Core\Country;
+
+/**
+ * A class providing information about all countries.
+ *
+ * Country data is generated from "Build/Scripts/updateIsoDatabase.php" (which in turn stems from https://github.com/sokil/php-isocodes-db-i18n)
+ */
+class CountryProvider
+{
+    // $rawData generated from "Build/Scripts/updateIsoDatabase.php", do not change this directly !!!
+    private array $rawData = [
+        'AD' => [
+            'alpha_3' => 'AND',
+            'flag' => '🇦🇩',
+            'name' => 'Andorra',
+            'numeric' => '020',
+            'official_name' => 'Principality of Andorra',
+        ],
+        'AE' => [
+            'alpha_3' => 'ARE',
+            'flag' => '🇦🇪',
+            'name' => 'United Arab Emirates',
+            'numeric' => '784',
+        ],
+        'AF' => [
+            'alpha_3' => 'AFG',
+            'flag' => '🇦🇫',
+            'name' => 'Afghanistan',
+            'numeric' => '004',
+            'official_name' => 'Islamic Republic of Afghanistan',
+        ],
+        'AG' => [
+            'alpha_3' => 'ATG',
+            'flag' => '🇦🇬',
+            'name' => 'Antigua and Barbuda',
+            'numeric' => '028',
+        ],
+        'AI' => [
+            'alpha_3' => 'AIA',
+            'flag' => '🇦🇮',
+            'name' => 'Anguilla',
+            'numeric' => '660',
+        ],
+        'AL' => [
+            'alpha_3' => 'ALB',
+            'flag' => '🇦🇱',
+            'name' => 'Albania',
+            'numeric' => '008',
+            'official_name' => 'Republic of Albania',
+        ],
+        'AM' => [
+            'alpha_3' => 'ARM',
+            'flag' => '🇦🇲',
+            'name' => 'Armenia',
+            'numeric' => '051',
+            'official_name' => 'Republic of Armenia',
+        ],
+        'AO' => [
+            'alpha_3' => 'AGO',
+            'flag' => '🇦🇴',
+            'name' => 'Angola',
+            'numeric' => '024',
+            'official_name' => 'Republic of Angola',
+        ],
+        'AQ' => [
+            'alpha_3' => 'ATA',
+            'flag' => '🇦🇶',
+            'name' => 'Antarctica',
+            'numeric' => '010',
+        ],
+        'AR' => [
+            'alpha_3' => 'ARG',
+            'flag' => '🇦🇷',
+            'name' => 'Argentina',
+            'numeric' => '032',
+            'official_name' => 'Argentine Republic',
+        ],
+        'AS' => [
+            'alpha_3' => 'ASM',
+            'flag' => '🇦🇸',
+            'name' => 'American Samoa',
+            'numeric' => '016',
+        ],
+        'AT' => [
+            'alpha_3' => 'AUT',
+            'flag' => '🇦🇹',
+            'name' => 'Austria',
+            'numeric' => '040',
+            'official_name' => 'Republic of Austria',
+        ],
+        'AU' => [
+            'alpha_3' => 'AUS',
+            'flag' => '🇦🇺',
+            'name' => 'Australia',
+            'numeric' => '036',
+        ],
+        'AW' => [
+            'alpha_3' => 'ABW',
+            'flag' => '🇦🇼',
+            'name' => 'Aruba',
+            'numeric' => '533',
+        ],
+        'AX' => [
+            'alpha_3' => 'ALA',
+            'flag' => '🇦🇽',
+            'name' => 'Ã…land Islands',
+            'numeric' => '248',
+        ],
+        'AZ' => [
+            'alpha_3' => 'AZE',
+            'flag' => '🇦🇿',
+            'name' => 'Azerbaijan',
+            'numeric' => '031',
+            'official_name' => 'Republic of Azerbaijan',
+        ],
+        'BA' => [
+            'alpha_3' => 'BIH',
+            'flag' => '🇧🇦',
+            'name' => 'Bosnia and Herzegovina',
+            'numeric' => '070',
+            'official_name' => 'Republic of Bosnia and Herzegovina',
+        ],
+        'BB' => [
+            'alpha_3' => 'BRB',
+            'flag' => '🇧🇧',
+            'name' => 'Barbados',
+            'numeric' => '052',
+        ],
+        'BD' => [
+            'alpha_3' => 'BGD',
+            'flag' => '🇧🇩',
+            'name' => 'Bangladesh',
+            'numeric' => '050',
+            'official_name' => 'People\'s Republic of Bangladesh',
+        ],
+        'BE' => [
+            'alpha_3' => 'BEL',
+            'flag' => '🇧🇪',
+            'name' => 'Belgium',
+            'numeric' => '056',
+            'official_name' => 'Kingdom of Belgium',
+        ],
+        'BF' => [
+            'alpha_3' => 'BFA',
+            'flag' => '🇧🇫',
+            'name' => 'Burkina Faso',
+            'numeric' => '854',
+        ],
+        'BG' => [
+            'alpha_3' => 'BGR',
+            'flag' => '🇧🇬',
+            'name' => 'Bulgaria',
+            'numeric' => '100',
+            'official_name' => 'Republic of Bulgaria',
+        ],
+        'BH' => [
+            'alpha_3' => 'BHR',
+            'flag' => '🇧🇭',
+            'name' => 'Bahrain',
+            'numeric' => '048',
+            'official_name' => 'Kingdom of Bahrain',
+        ],
+        'BI' => [
+            'alpha_3' => 'BDI',
+            'flag' => '🇧🇮',
+            'name' => 'Burundi',
+            'numeric' => '108',
+            'official_name' => 'Republic of Burundi',
+        ],
+        'BJ' => [
+            'alpha_3' => 'BEN',
+            'flag' => '🇧🇯',
+            'name' => 'Benin',
+            'numeric' => '204',
+            'official_name' => 'Republic of Benin',
+        ],
+        'BL' => [
+            'alpha_3' => 'BLM',
+            'flag' => '🇧🇱',
+            'name' => 'Saint Barthélemy',
+            'numeric' => '652',
+        ],
+        'BM' => [
+            'alpha_3' => 'BMU',
+            'flag' => '🇧🇲',
+            'name' => 'Bermuda',
+            'numeric' => '060',
+        ],
+        'BN' => [
+            'alpha_3' => 'BRN',
+            'flag' => '🇧🇳',
+            'name' => 'Brunei Darussalam',
+            'numeric' => '096',
+        ],
+        'BO' => [
+            'alpha_3' => 'BOL',
+            'common_name' => 'Bolivia',
+            'flag' => '🇧🇴',
+            'name' => 'Bolivia, Plurinational State of',
+            'numeric' => '068',
+            'official_name' => 'Plurinational State of Bolivia',
+        ],
+        'BQ' => [
+            'alpha_3' => 'BES',
+            'flag' => '🇧🇶',
+            'name' => 'Bonaire, Sint Eustatius and Saba',
+            'numeric' => '535',
+            'official_name' => 'Bonaire, Sint Eustatius and Saba',
+        ],
+        'BR' => [
+            'alpha_3' => 'BRA',
+            'flag' => '🇧🇷',
+            'name' => 'Brazil',
+            'numeric' => '076',
+            'official_name' => 'Federative Republic of Brazil',
+        ],
+        'BS' => [
+            'alpha_3' => 'BHS',
+            'flag' => '🇧🇸',
+            'name' => 'Bahamas',
+            'numeric' => '044',
+            'official_name' => 'Commonwealth of the Bahamas',
+        ],
+        'BT' => [
+            'alpha_3' => 'BTN',
+            'flag' => '🇧🇹',
+            'name' => 'Bhutan',
+            'numeric' => '064',
+            'official_name' => 'Kingdom of Bhutan',
+        ],
+        'BV' => [
+            'alpha_3' => 'BVT',
+            'flag' => '🇧🇻',
+            'name' => 'Bouvet Island',
+            'numeric' => '074',
+        ],
+        'BW' => [
+            'alpha_3' => 'BWA',
+            'flag' => '🇧🇼',
+            'name' => 'Botswana',
+            'numeric' => '072',
+            'official_name' => 'Republic of Botswana',
+        ],
+        'BY' => [
+            'alpha_3' => 'BLR',
+            'flag' => '🇧🇾',
+            'name' => 'Belarus',
+            'numeric' => '112',
+            'official_name' => 'Republic of Belarus',
+        ],
+        'BZ' => [
+            'alpha_3' => 'BLZ',
+            'flag' => '🇧🇿',
+            'name' => 'Belize',
+            'numeric' => '084',
+        ],
+        'CA' => [
+            'alpha_3' => 'CAN',
+            'flag' => '🇨🇦',
+            'name' => 'Canada',
+            'numeric' => '124',
+        ],
+        'CC' => [
+            'alpha_3' => 'CCK',
+            'flag' => '🇨🇨',
+            'name' => 'Cocos (Keeling) Islands',
+            'numeric' => '166',
+        ],
+        'CD' => [
+            'alpha_3' => 'COD',
+            'flag' => '🇨🇩',
+            'name' => 'Congo, The Democratic Republic of the',
+            'numeric' => '180',
+        ],
+        'CF' => [
+            'alpha_3' => 'CAF',
+            'flag' => '🇨🇫',
+            'name' => 'Central African Republic',
+            'numeric' => '140',
+        ],
+        'CG' => [
+            'alpha_3' => 'COG',
+            'flag' => '🇨🇬',
+            'name' => 'Congo',
+            'numeric' => '178',
+            'official_name' => 'Republic of the Congo',
+        ],
+        'CH' => [
+            'alpha_3' => 'CHE',
+            'flag' => '🇨🇭',
+            'name' => 'Switzerland',
+            'numeric' => '756',
+            'official_name' => 'Swiss Confederation',
+        ],
+        'CI' => [
+            'alpha_3' => 'CIV',
+            'flag' => '🇨🇮',
+            'name' => 'Côte d\'Ivoire',
+            'numeric' => '384',
+            'official_name' => 'Republic of Côte d\'Ivoire',
+        ],
+        'CK' => [
+            'alpha_3' => 'COK',
+            'flag' => '🇨🇰',
+            'name' => 'Cook Islands',
+            'numeric' => '184',
+        ],
+        'CL' => [
+            'alpha_3' => 'CHL',
+            'flag' => '🇨🇱',
+            'name' => 'Chile',
+            'numeric' => '152',
+            'official_name' => 'Republic of Chile',
+        ],
+        'CM' => [
+            'alpha_3' => 'CMR',
+            'flag' => '🇨🇲',
+            'name' => 'Cameroon',
+            'numeric' => '120',
+            'official_name' => 'Republic of Cameroon',
+        ],
+        'CN' => [
+            'alpha_3' => 'CHN',
+            'flag' => '🇨🇳',
+            'name' => 'China',
+            'numeric' => '156',
+            'official_name' => 'People\'s Republic of China',
+        ],
+        'CO' => [
+            'alpha_3' => 'COL',
+            'flag' => '🇨🇴',
+            'name' => 'Colombia',
+            'numeric' => '170',
+            'official_name' => 'Republic of Colombia',
+        ],
+        'CR' => [
+            'alpha_3' => 'CRI',
+            'flag' => '🇨🇷',
+            'name' => 'Costa Rica',
+            'numeric' => '188',
+            'official_name' => 'Republic of Costa Rica',
+        ],
+        'CU' => [
+            'alpha_3' => 'CUB',
+            'flag' => '🇨🇺',
+            'name' => 'Cuba',
+            'numeric' => '192',
+            'official_name' => 'Republic of Cuba',
+        ],
+        'CV' => [
+            'alpha_3' => 'CPV',
+            'flag' => '🇨🇻',
+            'name' => 'Cabo Verde',
+            'numeric' => '132',
+            'official_name' => 'Republic of Cabo Verde',
+        ],
+        'CW' => [
+            'alpha_3' => 'CUW',
+            'flag' => '🇨🇼',
+            'name' => 'Curaçao',
+            'numeric' => '531',
+            'official_name' => 'Curaçao',
+        ],
+        'CX' => [
+            'alpha_3' => 'CXR',
+            'flag' => '🇨🇽',
+            'name' => 'Christmas Island',
+            'numeric' => '162',
+        ],
+        'CY' => [
+            'alpha_3' => 'CYP',
+            'flag' => '🇨🇾',
+            'name' => 'Cyprus',
+            'numeric' => '196',
+            'official_name' => 'Republic of Cyprus',
+        ],
+        'CZ' => [
+            'alpha_3' => 'CZE',
+            'flag' => '🇨🇿',
+            'name' => 'Czechia',
+            'numeric' => '203',
+            'official_name' => 'Czech Republic',
+        ],
+        'DE' => [
+            'alpha_3' => 'DEU',
+            'flag' => '🇩🇪',
+            'name' => 'Germany',
+            'numeric' => '276',
+            'official_name' => 'Federal Republic of Germany',
+        ],
+        'DJ' => [
+            'alpha_3' => 'DJI',
+            'flag' => '🇩🇯',
+            'name' => 'Djibouti',
+            'numeric' => '262',
+            'official_name' => 'Republic of Djibouti',
+        ],
+        'DK' => [
+            'alpha_3' => 'DNK',
+            'flag' => '🇩🇰',
+            'name' => 'Denmark',
+            'numeric' => '208',
+            'official_name' => 'Kingdom of Denmark',
+        ],
+        'DM' => [
+            'alpha_3' => 'DMA',
+            'flag' => '🇩🇲',
+            'name' => 'Dominica',
+            'numeric' => '212',
+            'official_name' => 'Commonwealth of Dominica',
+        ],
+        'DO' => [
+            'alpha_3' => 'DOM',
+            'flag' => '🇩🇴',
+            'name' => 'Dominican Republic',
+            'numeric' => '214',
+        ],
+        'DZ' => [
+            'alpha_3' => 'DZA',
+            'flag' => '🇩🇿',
+            'name' => 'Algeria',
+            'numeric' => '012',
+            'official_name' => 'People\'s Democratic Republic of Algeria',
+        ],
+        'EC' => [
+            'alpha_3' => 'ECU',
+            'flag' => '🇪🇨',
+            'name' => 'Ecuador',
+            'numeric' => '218',
+            'official_name' => 'Republic of Ecuador',
+        ],
+        'EE' => [
+            'alpha_3' => 'EST',
+            'flag' => '🇪🇪',
+            'name' => 'Estonia',
+            'numeric' => '233',
+            'official_name' => 'Republic of Estonia',
+        ],
+        'EG' => [
+            'alpha_3' => 'EGY',
+            'flag' => '🇪🇬',
+            'name' => 'Egypt',
+            'numeric' => '818',
+            'official_name' => 'Arab Republic of Egypt',
+        ],
+        'EH' => [
+            'alpha_3' => 'ESH',
+            'flag' => '🇪🇭',
+            'name' => 'Western Sahara',
+            'numeric' => '732',
+        ],
+        'ER' => [
+            'alpha_3' => 'ERI',
+            'flag' => '🇪🇷',
+            'name' => 'Eritrea',
+            'numeric' => '232',
+            'official_name' => 'the State of Eritrea',
+        ],
+        'ES' => [
+            'alpha_3' => 'ESP',
+            'flag' => '🇪🇸',
+            'name' => 'Spain',
+            'numeric' => '724',
+            'official_name' => 'Kingdom of Spain',
+        ],
+        'ET' => [
+            'alpha_3' => 'ETH',
+            'flag' => '🇪🇹',
+            'name' => 'Ethiopia',
+            'numeric' => '231',
+            'official_name' => 'Federal Democratic Republic of Ethiopia',
+        ],
+        'FI' => [
+            'alpha_3' => 'FIN',
+            'flag' => '🇫🇮',
+            'name' => 'Finland',
+            'numeric' => '246',
+            'official_name' => 'Republic of Finland',
+        ],
+        'FJ' => [
+            'alpha_3' => 'FJI',
+            'flag' => '🇫🇯',
+            'name' => 'Fiji',
+            'numeric' => '242',
+            'official_name' => 'Republic of Fiji',
+        ],
+        'FK' => [
+            'alpha_3' => 'FLK',
+            'flag' => '🇫🇰',
+            'name' => 'Falkland Islands (Malvinas)',
+            'numeric' => '238',
+        ],
+        'FM' => [
+            'alpha_3' => 'FSM',
+            'flag' => '🇫🇲',
+            'name' => 'Micronesia, Federated States of',
+            'numeric' => '583',
+            'official_name' => 'Federated States of Micronesia',
+        ],
+        'FO' => [
+            'alpha_3' => 'FRO',
+            'flag' => '🇫🇴',
+            'name' => 'Faroe Islands',
+            'numeric' => '234',
+        ],
+        'FR' => [
+            'alpha_3' => 'FRA',
+            'flag' => '🇫🇷',
+            'name' => 'France',
+            'numeric' => '250',
+            'official_name' => 'French Republic',
+        ],
+        'GA' => [
+            'alpha_3' => 'GAB',
+            'flag' => '🇬🇦',
+            'name' => 'Gabon',
+            'numeric' => '266',
+            'official_name' => 'Gabonese Republic',
+        ],
+        'GB' => [
+            'alpha_3' => 'GBR',
+            'flag' => '🇬🇧',
+            'name' => 'United Kingdom',
+            'numeric' => '826',
+            'official_name' => 'United Kingdom of Great Britain and Northern Ireland',
+        ],
+        'GD' => [
+            'alpha_3' => 'GRD',
+            'flag' => '🇬🇩',
+            'name' => 'Grenada',
+            'numeric' => '308',
+        ],
+        'GE' => [
+            'alpha_3' => 'GEO',
+            'flag' => '🇬🇪',
+            'name' => 'Georgia',
+            'numeric' => '268',
+        ],
+        'GF' => [
+            'alpha_3' => 'GUF',
+            'flag' => '🇬🇫',
+            'name' => 'French Guiana',
+            'numeric' => '254',
+        ],
+        'GG' => [
+            'alpha_3' => 'GGY',
+            'flag' => '🇬🇬',
+            'name' => 'Guernsey',
+            'numeric' => '831',
+        ],
+        'GH' => [
+            'alpha_3' => 'GHA',
+            'flag' => '🇬🇭',
+            'name' => 'Ghana',
+            'numeric' => '288',
+            'official_name' => 'Republic of Ghana',
+        ],
+        'GI' => [
+            'alpha_3' => 'GIB',
+            'flag' => '🇬🇮',
+            'name' => 'Gibraltar',
+            'numeric' => '292',
+        ],
+        'GL' => [
+            'alpha_3' => 'GRL',
+            'flag' => '🇬🇱',
+            'name' => 'Greenland',
+            'numeric' => '304',
+        ],
+        'GM' => [
+            'alpha_3' => 'GMB',
+            'flag' => '🇬🇲',
+            'name' => 'Gambia',
+            'numeric' => '270',
+            'official_name' => 'Republic of the Gambia',
+        ],
+        'GN' => [
+            'alpha_3' => 'GIN',
+            'flag' => '🇬🇳',
+            'name' => 'Guinea',
+            'numeric' => '324',
+            'official_name' => 'Republic of Guinea',
+        ],
+        'GP' => [
+            'alpha_3' => 'GLP',
+            'flag' => '🇬🇵',
+            'name' => 'Guadeloupe',
+            'numeric' => '312',
+        ],
+        'GQ' => [
+            'alpha_3' => 'GNQ',
+            'flag' => '🇬🇶',
+            'name' => 'Equatorial Guinea',
+            'numeric' => '226',
+            'official_name' => 'Republic of Equatorial Guinea',
+        ],
+        'GR' => [
+            'alpha_3' => 'GRC',
+            'flag' => '🇬🇷',
+            'name' => 'Greece',
+            'numeric' => '300',
+            'official_name' => 'Hellenic Republic',
+        ],
+        'GS' => [
+            'alpha_3' => 'SGS',
+            'flag' => '🇬🇸',
+            'name' => 'South Georgia and the South Sandwich Islands',
+            'numeric' => '239',
+        ],
+        'GT' => [
+            'alpha_3' => 'GTM',
+            'flag' => '🇬🇹',
+            'name' => 'Guatemala',
+            'numeric' => '320',
+            'official_name' => 'Republic of Guatemala',
+        ],
+        'GU' => [
+            'alpha_3' => 'GUM',
+            'flag' => '🇬🇺',
+            'name' => 'Guam',
+            'numeric' => '316',
+        ],
+        'GW' => [
+            'alpha_3' => 'GNB',
+            'flag' => '🇬🇼',
+            'name' => 'Guinea-Bissau',
+            'numeric' => '624',
+            'official_name' => 'Republic of Guinea-Bissau',
+        ],
+        'GY' => [
+            'alpha_3' => 'GUY',
+            'flag' => '🇬🇾',
+            'name' => 'Guyana',
+            'numeric' => '328',
+            'official_name' => 'Republic of Guyana',
+        ],
+        'HK' => [
+            'alpha_3' => 'HKG',
+            'flag' => '🇭🇰',
+            'name' => 'Hong Kong',
+            'numeric' => '344',
+            'official_name' => 'Hong Kong Special Administrative Region of China',
+        ],
+        'HM' => [
+            'alpha_3' => 'HMD',
+            'flag' => '🇭🇲',
+            'name' => 'Heard Island and McDonald Islands',
+            'numeric' => '334',
+        ],
+        'HN' => [
+            'alpha_3' => 'HND',
+            'flag' => '🇭🇳',
+            'name' => 'Honduras',
+            'numeric' => '340',
+            'official_name' => 'Republic of Honduras',
+        ],
+        'HR' => [
+            'alpha_3' => 'HRV',
+            'flag' => '🇭🇷',
+            'name' => 'Croatia',
+            'numeric' => '191',
+            'official_name' => 'Republic of Croatia',
+        ],
+        'HT' => [
+            'alpha_3' => 'HTI',
+            'flag' => '🇭🇹',
+            'name' => 'Haiti',
+            'numeric' => '332',
+            'official_name' => 'Republic of Haiti',
+        ],
+        'HU' => [
+            'alpha_3' => 'HUN',
+            'flag' => '🇭🇺',
+            'name' => 'Hungary',
+            'numeric' => '348',
+            'official_name' => 'Hungary',
+        ],
+        'ID' => [
+            'alpha_3' => 'IDN',
+            'flag' => '🇮🇩',
+            'name' => 'Indonesia',
+            'numeric' => '360',
+            'official_name' => 'Republic of Indonesia',
+        ],
+        'IE' => [
+            'alpha_3' => 'IRL',
+            'flag' => '🇮🇪',
+            'name' => 'Ireland',
+            'numeric' => '372',
+        ],
+        'IL' => [
+            'alpha_3' => 'ISR',
+            'flag' => '🇮🇱',
+            'name' => 'Israel',
+            'numeric' => '376',
+            'official_name' => 'State of Israel',
+        ],
+        'IM' => [
+            'alpha_3' => 'IMN',
+            'flag' => '🇮🇲',
+            'name' => 'Isle of Man',
+            'numeric' => '833',
+        ],
+        'IN' => [
+            'alpha_3' => 'IND',
+            'flag' => '🇮🇳',
+            'name' => 'India',
+            'numeric' => '356',
+            'official_name' => 'Republic of India',
+        ],
+        'IO' => [
+            'alpha_3' => 'IOT',
+            'flag' => '🇮🇴',
+            'name' => 'British Indian Ocean Territory',
+            'numeric' => '086',
+        ],
+        'IQ' => [
+            'alpha_3' => 'IRQ',
+            'flag' => '🇮🇶',
+            'name' => 'Iraq',
+            'numeric' => '368',
+            'official_name' => 'Republic of Iraq',
+        ],
+        'IR' => [
+            'alpha_3' => 'IRN',
+            'flag' => '🇮🇷',
+            'name' => 'Iran, Islamic Republic of',
+            'numeric' => '364',
+            'official_name' => 'Islamic Republic of Iran',
+        ],
+        'IS' => [
+            'alpha_3' => 'ISL',
+            'flag' => '🇮🇸',
+            'name' => 'Iceland',
+            'numeric' => '352',
+            'official_name' => 'Republic of Iceland',
+        ],
+        'IT' => [
+            'alpha_3' => 'ITA',
+            'flag' => '🇮🇹',
+            'name' => 'Italy',
+            'numeric' => '380',
+            'official_name' => 'Italian Republic',
+        ],
+        'JE' => [
+            'alpha_3' => 'JEY',
+            'flag' => '🇯🇪',
+            'name' => 'Jersey',
+            'numeric' => '832',
+        ],
+        'JM' => [
+            'alpha_3' => 'JAM',
+            'flag' => '🇯🇲',
+            'name' => 'Jamaica',
+            'numeric' => '388',
+        ],
+        'JO' => [
+            'alpha_3' => 'JOR',
+            'flag' => '🇯🇴',
+            'name' => 'Jordan',
+            'numeric' => '400',
+            'official_name' => 'Hashemite Kingdom of Jordan',
+        ],
+        'JP' => [
+            'alpha_3' => 'JPN',
+            'flag' => '🇯🇵',
+            'name' => 'Japan',
+            'numeric' => '392',
+        ],
+        'KE' => [
+            'alpha_3' => 'KEN',
+            'flag' => '🇰🇪',
+            'name' => 'Kenya',
+            'numeric' => '404',
+            'official_name' => 'Republic of Kenya',
+        ],
+        'KG' => [
+            'alpha_3' => 'KGZ',
+            'flag' => '🇰🇬',
+            'name' => 'Kyrgyzstan',
+            'numeric' => '417',
+            'official_name' => 'Kyrgyz Republic',
+        ],
+        'KH' => [
+            'alpha_3' => 'KHM',
+            'flag' => '🇰🇭',
+            'name' => 'Cambodia',
+            'numeric' => '116',
+            'official_name' => 'Kingdom of Cambodia',
+        ],
+        'KI' => [
+            'alpha_3' => 'KIR',
+            'flag' => '🇰🇮',
+            'name' => 'Kiribati',
+            'numeric' => '296',
+            'official_name' => 'Republic of Kiribati',
+        ],
+        'KM' => [
+            'alpha_3' => 'COM',
+            'flag' => '🇰🇲',
+            'name' => 'Comoros',
+            'numeric' => '174',
+            'official_name' => 'Union of the Comoros',
+        ],
+        'KN' => [
+            'alpha_3' => 'KNA',
+            'flag' => '🇰🇳',
+            'name' => 'Saint Kitts and Nevis',
+            'numeric' => '659',
+        ],
+        'KP' => [
+            'alpha_3' => 'PRK',
+            'common_name' => 'North Korea',
+            'flag' => '🇰🇵',
+            'name' => 'Korea, Democratic People\'s Republic of',
+            'numeric' => '408',
+            'official_name' => 'Democratic People\'s Republic of Korea',
+        ],
+        'KR' => [
+            'alpha_3' => 'KOR',
+            'common_name' => 'South Korea',
+            'flag' => '🇰🇷',
+            'name' => 'Korea, Republic of',
+            'numeric' => '410',
+        ],
+        'KW' => [
+            'alpha_3' => 'KWT',
+            'flag' => '🇰🇼',
+            'name' => 'Kuwait',
+            'numeric' => '414',
+            'official_name' => 'State of Kuwait',
+        ],
+        'KY' => [
+            'alpha_3' => 'CYM',
+            'flag' => '🇰🇾',
+            'name' => 'Cayman Islands',
+            'numeric' => '136',
+        ],
+        'KZ' => [
+            'alpha_3' => 'KAZ',
+            'flag' => '🇰🇿',
+            'name' => 'Kazakhstan',
+            'numeric' => '398',
+            'official_name' => 'Republic of Kazakhstan',
+        ],
+        'LA' => [
+            'alpha_3' => 'LAO',
+            'flag' => '🇱🇦',
+            'name' => 'Lao People\'s Democratic Republic',
+            'numeric' => '418',
+        ],
+        'LB' => [
+            'alpha_3' => 'LBN',
+            'flag' => '🇱🇧',
+            'name' => 'Lebanon',
+            'numeric' => '422',
+            'official_name' => 'Lebanese Republic',
+        ],
+        'LC' => [
+            'alpha_3' => 'LCA',
+            'flag' => '🇱🇨',
+            'name' => 'Saint Lucia',
+            'numeric' => '662',
+        ],
+        'LI' => [
+            'alpha_3' => 'LIE',
+            'flag' => '🇱🇮',
+            'name' => 'Liechtenstein',
+            'numeric' => '438',
+            'official_name' => 'Principality of Liechtenstein',
+        ],
+        'LK' => [
+            'alpha_3' => 'LKA',
+            'flag' => '🇱🇰',
+            'name' => 'Sri Lanka',
+            'numeric' => '144',
+            'official_name' => 'Democratic Socialist Republic of Sri Lanka',
+        ],
+        'LR' => [
+            'alpha_3' => 'LBR',
+            'flag' => '🇱🇷',
+            'name' => 'Liberia',
+            'numeric' => '430',
+            'official_name' => 'Republic of Liberia',
+        ],
+        'LS' => [
+            'alpha_3' => 'LSO',
+            'flag' => '🇱🇸',
+            'name' => 'Lesotho',
+            'numeric' => '426',
+            'official_name' => 'Kingdom of Lesotho',
+        ],
+        'LT' => [
+            'alpha_3' => 'LTU',
+            'flag' => '🇱🇹',
+            'name' => 'Lithuania',
+            'numeric' => '440',
+            'official_name' => 'Republic of Lithuania',
+        ],
+        'LU' => [
+            'alpha_3' => 'LUX',
+            'flag' => '🇱🇺',
+            'name' => 'Luxembourg',
+            'numeric' => '442',
+            'official_name' => 'Grand Duchy of Luxembourg',
+        ],
+        'LV' => [
+            'alpha_3' => 'LVA',
+            'flag' => '🇱🇻',
+            'name' => 'Latvia',
+            'numeric' => '428',
+            'official_name' => 'Republic of Latvia',
+        ],
+        'LY' => [
+            'alpha_3' => 'LBY',
+            'flag' => '🇱🇾',
+            'name' => 'Libya',
+            'numeric' => '434',
+            'official_name' => 'Libya',
+        ],
+        'MA' => [
+            'alpha_3' => 'MAR',
+            'flag' => '🇲🇦',
+            'name' => 'Morocco',
+            'numeric' => '504',
+            'official_name' => 'Kingdom of Morocco',
+        ],
+        'MC' => [
+            'alpha_3' => 'MCO',
+            'flag' => '🇲🇨',
+            'name' => 'Monaco',
+            'numeric' => '492',
+            'official_name' => 'Principality of Monaco',
+        ],
+        'MD' => [
+            'alpha_3' => 'MDA',
+            'common_name' => 'Moldova',
+            'flag' => '🇲🇩',
+            'name' => 'Moldova, Republic of',
+            'numeric' => '498',
+            'official_name' => 'Republic of Moldova',
+        ],
+        'ME' => [
+            'alpha_3' => 'MNE',
+            'flag' => '🇲🇪',
+            'name' => 'Montenegro',
+            'numeric' => '499',
+            'official_name' => 'Montenegro',
+        ],
+        'MF' => [
+            'alpha_3' => 'MAF',
+            'flag' => '🇲🇫',
+            'name' => 'Saint Martin (French part)',
+            'numeric' => '663',
+        ],
+        'MG' => [
+            'alpha_3' => 'MDG',
+            'flag' => '🇲🇬',
+            'name' => 'Madagascar',
+            'numeric' => '450',
+            'official_name' => 'Republic of Madagascar',
+        ],
+        'MH' => [
+            'alpha_3' => 'MHL',
+            'flag' => '🇲🇭',
+            'name' => 'Marshall Islands',
+            'numeric' => '584',
+            'official_name' => 'Republic of the Marshall Islands',
+        ],
+        'MK' => [
+            'alpha_3' => 'MKD',
+            'flag' => '🇲🇰',
+            'name' => 'North Macedonia',
+            'numeric' => '807',
+            'official_name' => 'Republic of North Macedonia',
+        ],
+        'ML' => [
+            'alpha_3' => 'MLI',
+            'flag' => '🇲🇱',
+            'name' => 'Mali',
+            'numeric' => '466',
+            'official_name' => 'Republic of Mali',
+        ],
+        'MM' => [
+            'alpha_3' => 'MMR',
+            'flag' => '🇲🇲',
+            'name' => 'Myanmar',
+            'numeric' => '104',
+            'official_name' => 'Republic of Myanmar',
+        ],
+        'MN' => [
+            'alpha_3' => 'MNG',
+            'flag' => '🇲🇳',
+            'name' => 'Mongolia',
+            'numeric' => '496',
+        ],
+        'MO' => [
+            'alpha_3' => 'MAC',
+            'flag' => '🇲🇴',
+            'name' => 'Macao',
+            'numeric' => '446',
+            'official_name' => 'Macao Special Administrative Region of China',
+        ],
+        'MP' => [
+            'alpha_3' => 'MNP',
+            'flag' => '🇲🇵',
+            'name' => 'Northern Mariana Islands',
+            'numeric' => '580',
+            'official_name' => 'Commonwealth of the Northern Mariana Islands',
+        ],
+        'MQ' => [
+            'alpha_3' => 'MTQ',
+            'flag' => '🇲🇶',
+            'name' => 'Martinique',
+            'numeric' => '474',
+        ],
+        'MR' => [
+            'alpha_3' => 'MRT',
+            'flag' => '🇲🇷',
+            'name' => 'Mauritania',
+            'numeric' => '478',
+            'official_name' => 'Islamic Republic of Mauritania',
+        ],
+        'MS' => [
+            'alpha_3' => 'MSR',
+            'flag' => '🇲🇸',
+            'name' => 'Montserrat',
+            'numeric' => '500',
+        ],
+        'MT' => [
+            'alpha_3' => 'MLT',
+            'flag' => '🇲🇹',
+            'name' => 'Malta',
+            'numeric' => '470',
+            'official_name' => 'Republic of Malta',
+        ],
+        'MU' => [
+            'alpha_3' => 'MUS',
+            'flag' => '🇲🇺',
+            'name' => 'Mauritius',
+            'numeric' => '480',
+            'official_name' => 'Republic of Mauritius',
+        ],
+        'MV' => [
+            'alpha_3' => 'MDV',
+            'flag' => '🇲🇻',
+            'name' => 'Maldives',
+            'numeric' => '462',
+            'official_name' => 'Republic of Maldives',
+        ],
+        'MW' => [
+            'alpha_3' => 'MWI',
+            'flag' => '🇲🇼',
+            'name' => 'Malawi',
+            'numeric' => '454',
+            'official_name' => 'Republic of Malawi',
+        ],
+        'MX' => [
+            'alpha_3' => 'MEX',
+            'flag' => '🇲🇽',
+            'name' => 'Mexico',
+            'numeric' => '484',
+            'official_name' => 'United Mexican States',
+        ],
+        'MY' => [
+            'alpha_3' => 'MYS',
+            'flag' => '🇲🇾',
+            'name' => 'Malaysia',
+            'numeric' => '458',
+        ],
+        'MZ' => [
+            'alpha_3' => 'MOZ',
+            'flag' => '🇲🇿',
+            'name' => 'Mozambique',
+            'numeric' => '508',
+            'official_name' => 'Republic of Mozambique',
+        ],
+        'NA' => [
+            'alpha_3' => 'NAM',
+            'flag' => '🇳🇦',
+            'name' => 'Namibia',
+            'numeric' => '516',
+            'official_name' => 'Republic of Namibia',
+        ],
+        'NC' => [
+            'alpha_3' => 'NCL',
+            'flag' => '🇳🇨',
+            'name' => 'New Caledonia',
+            'numeric' => '540',
+        ],
+        'NE' => [
+            'alpha_3' => 'NER',
+            'flag' => '🇳🇪',
+            'name' => 'Niger',
+            'numeric' => '562',
+            'official_name' => 'Republic of the Niger',
+        ],
+        'NF' => [
+            'alpha_3' => 'NFK',
+            'flag' => '🇳🇫',
+            'name' => 'Norfolk Island',
+            'numeric' => '574',
+        ],
+        'NG' => [
+            'alpha_3' => 'NGA',
+            'flag' => '🇳🇬',
+            'name' => 'Nigeria',
+            'numeric' => '566',
+            'official_name' => 'Federal Republic of Nigeria',
+        ],
+        'NI' => [
+            'alpha_3' => 'NIC',
+            'flag' => '🇳🇮',
+            'name' => 'Nicaragua',
+            'numeric' => '558',
+            'official_name' => 'Republic of Nicaragua',
+        ],
+        'NL' => [
+            'alpha_3' => 'NLD',
+            'flag' => '🇳🇱',
+            'name' => 'Netherlands',
+            'numeric' => '528',
+            'official_name' => 'Kingdom of the Netherlands',
+        ],
+        'NO' => [
+            'alpha_3' => 'NOR',
+            'flag' => '🇳🇴',
+            'name' => 'Norway',
+            'numeric' => '578',
+            'official_name' => 'Kingdom of Norway',
+        ],
+        'NP' => [
+            'alpha_3' => 'NPL',
+            'flag' => '🇳🇵',
+            'name' => 'Nepal',
+            'numeric' => '524',
+            'official_name' => 'Federal Democratic Republic of Nepal',
+        ],
+        'NR' => [
+            'alpha_3' => 'NRU',
+            'flag' => '🇳🇷',
+            'name' => 'Nauru',
+            'numeric' => '520',
+            'official_name' => 'Republic of Nauru',
+        ],
+        'NU' => [
+            'alpha_3' => 'NIU',
+            'flag' => '🇳🇺',
+            'name' => 'Niue',
+            'numeric' => '570',
+            'official_name' => 'Niue',
+        ],
+        'NZ' => [
+            'alpha_3' => 'NZL',
+            'flag' => '🇳🇿',
+            'name' => 'New Zealand',
+            'numeric' => '554',
+        ],
+        'OM' => [
+            'alpha_3' => 'OMN',
+            'flag' => '🇴🇲',
+            'name' => 'Oman',
+            'numeric' => '512',
+            'official_name' => 'Sultanate of Oman',
+        ],
+        'PA' => [
+            'alpha_3' => 'PAN',
+            'flag' => '🇵🇦',
+            'name' => 'Panama',
+            'numeric' => '591',
+            'official_name' => 'Republic of Panama',
+        ],
+        'PE' => [
+            'alpha_3' => 'PER',
+            'flag' => '🇵🇪',
+            'name' => 'Peru',
+            'numeric' => '604',
+            'official_name' => 'Republic of Peru',
+        ],
+        'PF' => [
+            'alpha_3' => 'PYF',
+            'flag' => '🇵🇫',
+            'name' => 'French Polynesia',
+            'numeric' => '258',
+        ],
+        'PG' => [
+            'alpha_3' => 'PNG',
+            'flag' => '🇵🇬',
+            'name' => 'Papua New Guinea',
+            'numeric' => '598',
+            'official_name' => 'Independent State of Papua New Guinea',
+        ],
+        'PH' => [
+            'alpha_3' => 'PHL',
+            'flag' => '🇵🇭',
+            'name' => 'Philippines',
+            'numeric' => '608',
+            'official_name' => 'Republic of the Philippines',
+        ],
+        'PK' => [
+            'alpha_3' => 'PAK',
+            'flag' => '🇵🇰',
+            'name' => 'Pakistan',
+            'numeric' => '586',
+            'official_name' => 'Islamic Republic of Pakistan',
+        ],
+        'PL' => [
+            'alpha_3' => 'POL',
+            'flag' => '🇵🇱',
+            'name' => 'Poland',
+            'numeric' => '616',
+            'official_name' => 'Republic of Poland',
+        ],
+        'PM' => [
+            'alpha_3' => 'SPM',
+            'flag' => '🇵🇲',
+            'name' => 'Saint Pierre and Miquelon',
+            'numeric' => '666',
+        ],
+        'PN' => [
+            'alpha_3' => 'PCN',
+            'flag' => '🇵🇳',
+            'name' => 'Pitcairn',
+            'numeric' => '612',
+        ],
+        'PR' => [
+            'alpha_3' => 'PRI',
+            'flag' => '🇵🇷',
+            'name' => 'Puerto Rico',
+            'numeric' => '630',
+        ],
+        'PS' => [
+            'alpha_3' => 'PSE',
+            'flag' => '🇵🇸',
+            'name' => 'Palestine, State of',
+            'numeric' => '275',
+            'official_name' => 'the State of Palestine',
+        ],
+        'PT' => [
+            'alpha_3' => 'PRT',
+            'flag' => '🇵🇹',
+            'name' => 'Portugal',
+            'numeric' => '620',
+            'official_name' => 'Portuguese Republic',
+        ],
+        'PW' => [
+            'alpha_3' => 'PLW',
+            'flag' => '🇵🇼',
+            'name' => 'Palau',
+            'numeric' => '585',
+            'official_name' => 'Republic of Palau',
+        ],
+        'PY' => [
+            'alpha_3' => 'PRY',
+            'flag' => '🇵🇾',
+            'name' => 'Paraguay',
+            'numeric' => '600',
+            'official_name' => 'Republic of Paraguay',
+        ],
+        'QA' => [
+            'alpha_3' => 'QAT',
+            'flag' => '🇶🇦',
+            'name' => 'Qatar',
+            'numeric' => '634',
+            'official_name' => 'State of Qatar',
+        ],
+        'RE' => [
+            'alpha_3' => 'REU',
+            'flag' => '🇷🇪',
+            'name' => 'Réunion',
+            'numeric' => '638',
+        ],
+        'RO' => [
+            'alpha_3' => 'ROU',
+            'flag' => '🇷🇴',
+            'name' => 'Romania',
+            'numeric' => '642',
+        ],
+        'RS' => [
+            'alpha_3' => 'SRB',
+            'flag' => '🇷🇸',
+            'name' => 'Serbia',
+            'numeric' => '688',
+            'official_name' => 'Republic of Serbia',
+        ],
+        'RU' => [
+            'alpha_3' => 'RUS',
+            'flag' => '🇷🇺',
+            'name' => 'Russian Federation',
+            'numeric' => '643',
+        ],
+        'RW' => [
+            'alpha_3' => 'RWA',
+            'flag' => '🇷🇼',
+            'name' => 'Rwanda',
+            'numeric' => '646',
+            'official_name' => 'Rwandese Republic',
+        ],
+        'SA' => [
+            'alpha_3' => 'SAU',
+            'flag' => '🇸🇦',
+            'name' => 'Saudi Arabia',
+            'numeric' => '682',
+            'official_name' => 'Kingdom of Saudi Arabia',
+        ],
+        'SB' => [
+            'alpha_3' => 'SLB',
+            'flag' => '🇸🇧',
+            'name' => 'Solomon Islands',
+            'numeric' => '090',
+        ],
+        'SC' => [
+            'alpha_3' => 'SYC',
+            'flag' => '🇸🇨',
+            'name' => 'Seychelles',
+            'numeric' => '690',
+            'official_name' => 'Republic of Seychelles',
+        ],
+        'SD' => [
+            'alpha_3' => 'SDN',
+            'flag' => '🇸🇩',
+            'name' => 'Sudan',
+            'numeric' => '729',
+            'official_name' => 'Republic of the Sudan',
+        ],
+        'SE' => [
+            'alpha_3' => 'SWE',
+            'flag' => '🇸🇪',
+            'name' => 'Sweden',
+            'numeric' => '752',
+            'official_name' => 'Kingdom of Sweden',
+        ],
+        'SG' => [
+            'alpha_3' => 'SGP',
+            'flag' => '🇸🇬',
+            'name' => 'Singapore',
+            'numeric' => '702',
+            'official_name' => 'Republic of Singapore',
+        ],
+        'SH' => [
+            'alpha_3' => 'SHN',
+            'flag' => '🇸🇭',
+            'name' => 'Saint Helena, Ascension and Tristan da Cunha',
+            'numeric' => '654',
+        ],
+        'SI' => [
+            'alpha_3' => 'SVN',
+            'flag' => '🇸🇮',
+            'name' => 'Slovenia',
+            'numeric' => '705',
+            'official_name' => 'Republic of Slovenia',
+        ],
+        'SJ' => [
+            'alpha_3' => 'SJM',
+            'flag' => '🇸🇯',
+            'name' => 'Svalbard and Jan Mayen',
+            'numeric' => '744',
+        ],
+        'SK' => [
+            'alpha_3' => 'SVK',
+            'flag' => '🇸🇰',
+            'name' => 'Slovakia',
+            'numeric' => '703',
+            'official_name' => 'Slovak Republic',
+        ],
+        'SL' => [
+            'alpha_3' => 'SLE',
+            'flag' => '🇸🇱',
+            'name' => 'Sierra Leone',
+            'numeric' => '694',
+            'official_name' => 'Republic of Sierra Leone',
+        ],
+        'SM' => [
+            'alpha_3' => 'SMR',
+            'flag' => '🇸🇲',
+            'name' => 'San Marino',
+            'numeric' => '674',
+            'official_name' => 'Republic of San Marino',
+        ],
+        'SN' => [
+            'alpha_3' => 'SEN',
+            'flag' => '🇸🇳',
+            'name' => 'Senegal',
+            'numeric' => '686',
+            'official_name' => 'Republic of Senegal',
+        ],
+        'SO' => [
+            'alpha_3' => 'SOM',
+            'flag' => '🇸🇴',
+            'name' => 'Somalia',
+            'numeric' => '706',
+            'official_name' => 'Federal Republic of Somalia',
+        ],
+        'SR' => [
+            'alpha_3' => 'SUR',
+            'flag' => '🇸🇷',
+            'name' => 'Suriname',
+            'numeric' => '740',
+            'official_name' => 'Republic of Suriname',
+        ],
+        'SS' => [
+            'alpha_3' => 'SSD',
+            'flag' => '🇸🇸',
+            'name' => 'South Sudan',
+            'numeric' => '728',
+            'official_name' => 'Republic of South Sudan',
+        ],
+        'ST' => [
+            'alpha_3' => 'STP',
+            'flag' => '🇸🇹',
+            'name' => 'Sao Tome and Principe',
+            'numeric' => '678',
+            'official_name' => 'Democratic Republic of Sao Tome and Principe',
+        ],
+        'SV' => [
+            'alpha_3' => 'SLV',
+            'flag' => '🇸🇻',
+            'name' => 'El Salvador',
+            'numeric' => '222',
+            'official_name' => 'Republic of El Salvador',
+        ],
+        'SX' => [
+            'alpha_3' => 'SXM',
+            'flag' => '🇸🇽',
+            'name' => 'Sint Maarten (Dutch part)',
+            'numeric' => '534',
+            'official_name' => 'Sint Maarten (Dutch part)',
+        ],
+        'SY' => [
+            'alpha_3' => 'SYR',
+            'flag' => '🇸🇾',
+            'name' => 'Syrian Arab Republic',
+            'numeric' => '760',
+        ],
+        'SZ' => [
+            'alpha_3' => 'SWZ',
+            'flag' => '🇸🇿',
+            'name' => 'Eswatini',
+            'numeric' => '748',
+            'official_name' => 'Kingdom of Eswatini',
+        ],
+        'TC' => [
+            'alpha_3' => 'TCA',
+            'flag' => '🇹🇨',
+            'name' => 'Turks and Caicos Islands',
+            'numeric' => '796',
+        ],
+        'TD' => [
+            'alpha_3' => 'TCD',
+            'flag' => '🇹🇩',
+            'name' => 'Chad',
+            'numeric' => '148',
+            'official_name' => 'Republic of Chad',
+        ],
+        'TF' => [
+            'alpha_3' => 'ATF',
+            'flag' => '🇹🇫',
+            'name' => 'French Southern Territories',
+            'numeric' => '260',
+        ],
+        'TG' => [
+            'alpha_3' => 'TGO',
+            'flag' => '🇹🇬',
+            'name' => 'Togo',
+            'numeric' => '768',
+            'official_name' => 'Togolese Republic',
+        ],
+        'TH' => [
+            'alpha_3' => 'THA',
+            'flag' => '🇹🇭',
+            'name' => 'Thailand',
+            'numeric' => '764',
+            'official_name' => 'Kingdom of Thailand',
+        ],
+        'TJ' => [
+            'alpha_3' => 'TJK',
+            'flag' => '🇹🇯',
+            'name' => 'Tajikistan',
+            'numeric' => '762',
+            'official_name' => 'Republic of Tajikistan',
+        ],
+        'TK' => [
+            'alpha_3' => 'TKL',
+            'flag' => '🇹🇰',
+            'name' => 'Tokelau',
+            'numeric' => '772',
+        ],
+        'TL' => [
+            'alpha_3' => 'TLS',
+            'flag' => '🇹🇱',
+            'name' => 'Timor-Leste',
+            'numeric' => '626',
+            'official_name' => 'Democratic Republic of Timor-Leste',
+        ],
+        'TM' => [
+            'alpha_3' => 'TKM',
+            'flag' => '🇹🇲',
+            'name' => 'Turkmenistan',
+            'numeric' => '795',
+        ],
+        'TN' => [
+            'alpha_3' => 'TUN',
+            'flag' => '🇹🇳',
+            'name' => 'Tunisia',
+            'numeric' => '788',
+            'official_name' => 'Republic of Tunisia',
+        ],
+        'TO' => [
+            'alpha_3' => 'TON',
+            'flag' => '🇹🇴',
+            'name' => 'Tonga',
+            'numeric' => '776',
+            'official_name' => 'Kingdom of Tonga',
+        ],
+        'TR' => [
+            'alpha_3' => 'TUR',
+            'flag' => '🇹🇷',
+            'name' => 'Türkiye',
+            'numeric' => '792',
+            'official_name' => 'Republic of Türkiye',
+        ],
+        'TT' => [
+            'alpha_3' => 'TTO',
+            'flag' => '🇹🇹',
+            'name' => 'Trinidad and Tobago',
+            'numeric' => '780',
+            'official_name' => 'Republic of Trinidad and Tobago',
+        ],
+        'TV' => [
+            'alpha_3' => 'TUV',
+            'flag' => '🇹🇻',
+            'name' => 'Tuvalu',
+            'numeric' => '798',
+        ],
+        'TW' => [
+            'alpha_3' => 'TWN',
+            'common_name' => 'Taiwan',
+            'flag' => '🇹🇼',
+            'name' => 'Taiwan, Province of China',
+            'numeric' => '158',
+            'official_name' => 'Taiwan, Province of China',
+        ],
+        'TZ' => [
+            'alpha_3' => 'TZA',
+            'common_name' => 'Tanzania',
+            'flag' => '🇹🇿',
+            'name' => 'Tanzania, United Republic of',
+            'numeric' => '834',
+            'official_name' => 'United Republic of Tanzania',
+        ],
+        'UA' => [
+            'alpha_3' => 'UKR',
+            'flag' => '🇺🇦',
+            'name' => 'Ukraine',
+            'numeric' => '804',
+        ],
+        'UG' => [
+            'alpha_3' => 'UGA',
+            'flag' => '🇺🇬',
+            'name' => 'Uganda',
+            'numeric' => '800',
+            'official_name' => 'Republic of Uganda',
+        ],
+        'UM' => [
+            'alpha_3' => 'UMI',
+            'flag' => '🇺🇲',
+            'name' => 'United States Minor Outlying Islands',
+            'numeric' => '581',
+        ],
+        'US' => [
+            'alpha_3' => 'USA',
+            'flag' => '🇺🇸',
+            'name' => 'United States',
+            'numeric' => '840',
+            'official_name' => 'United States of America',
+        ],
+        'UY' => [
+            'alpha_3' => 'URY',
+            'flag' => '🇺🇾',
+            'name' => 'Uruguay',
+            'numeric' => '858',
+            'official_name' => 'Eastern Republic of Uruguay',
+        ],
+        'UZ' => [
+            'alpha_3' => 'UZB',
+            'flag' => '🇺🇿',
+            'name' => 'Uzbekistan',
+            'numeric' => '860',
+            'official_name' => 'Republic of Uzbekistan',
+        ],
+        'VA' => [
+            'alpha_3' => 'VAT',
+            'flag' => '🇻🇦',
+            'name' => 'Holy See (Vatican City State)',
+            'numeric' => '336',
+        ],
+        'VC' => [
+            'alpha_3' => 'VCT',
+            'flag' => '🇻🇨',
+            'name' => 'Saint Vincent and the Grenadines',
+            'numeric' => '670',
+        ],
+        'VE' => [
+            'alpha_3' => 'VEN',
+            'common_name' => 'Venezuela',
+            'flag' => '🇻🇪',
+            'name' => 'Venezuela, Bolivarian Republic of',
+            'numeric' => '862',
+            'official_name' => 'Bolivarian Republic of Venezuela',
+        ],
+        'VG' => [
+            'alpha_3' => 'VGB',
+            'flag' => '🇻🇬',
+            'name' => 'Virgin Islands, British',
+            'numeric' => '092',
+            'official_name' => 'British Virgin Islands',
+        ],
+        'VI' => [
+            'alpha_3' => 'VIR',
+            'flag' => '🇻🇮',
+            'name' => 'Virgin Islands, U.S.',
+            'numeric' => '850',
+            'official_name' => 'Virgin Islands of the United States',
+        ],
+        'VN' => [
+            'alpha_3' => 'VNM',
+            'common_name' => 'Vietnam',
+            'flag' => '🇻🇳',
+            'name' => 'Viet Nam',
+            'numeric' => '704',
+            'official_name' => 'Socialist Republic of Viet Nam',
+        ],
+        'VU' => [
+            'alpha_3' => 'VUT',
+            'flag' => '🇻🇺',
+            'name' => 'Vanuatu',
+            'numeric' => '548',
+            'official_name' => 'Republic of Vanuatu',
+        ],
+        'WF' => [
+            'alpha_3' => 'WLF',
+            'flag' => '🇼🇫',
+            'name' => 'Wallis and Futuna',
+            'numeric' => '876',
+        ],
+        'WS' => [
+            'alpha_3' => 'WSM',
+            'flag' => '🇼🇸',
+            'name' => 'Samoa',
+            'numeric' => '882',
+            'official_name' => 'Independent State of Samoa',
+        ],
+        'YE' => [
+            'alpha_3' => 'YEM',
+            'flag' => '🇾🇪',
+            'name' => 'Yemen',
+            'numeric' => '887',
+            'official_name' => 'Republic of Yemen',
+        ],
+        'YT' => [
+            'alpha_3' => 'MYT',
+            'flag' => '🇾🇹',
+            'name' => 'Mayotte',
+            'numeric' => '175',
+        ],
+        'ZA' => [
+            'alpha_3' => 'ZAF',
+            'flag' => '🇿🇦',
+            'name' => 'South Africa',
+            'numeric' => '710',
+            'official_name' => 'Republic of South Africa',
+        ],
+        'ZM' => [
+            'alpha_3' => 'ZMB',
+            'flag' => '🇿🇲',
+            'name' => 'Zambia',
+            'numeric' => '894',
+            'official_name' => 'Republic of Zambia',
+        ],
+        'ZW' => [
+            'alpha_3' => 'ZWE',
+            'flag' => '🇿🇼',
+            'name' => 'Zimbabwe',
+            'numeric' => '716',
+            'official_name' => 'Republic of Zimbabwe',
+        ],
+    ];
+
+    /**
+     * @var Country[]
+     */
+    private array $countries = [];
+
+    public function __construct()
+    {
+        foreach ($this->rawData as $alpha2Code => $countryData) {
+            $this->countries[$alpha2Code] = new Country(
+                $alpha2Code,
+                $countryData['alpha_3'],
+                $countryData['name'],
+                $countryData['numeric'],
+                $countryData['flag'],
+                $countryData['official_name'] ?? null,
+            );
+        }
+    }
+
+    /**
+     * @return Country[]
+     */
+    public function getAll(): array
+    {
+        return array_values($this->countries);
+    }
+
+    public function getByIsoCode(string $isoCode): ?Country
+    {
+        $isoCode = strtoupper($isoCode);
+        if (isset($this->countries[$isoCode])) {
+            return $this->countries[$isoCode];
+        }
+        foreach ($this->countries as $country) {
+            if ($country->getAlpha3IsoCode() === $isoCode) {
+                return $country;
+            }
+        }
+        return null;
+    }
+
+    public function getByAlpha2IsoCode(string $isoCode): ?Country
+    {
+        $isoCode = strtoupper($isoCode);
+        return $this->countries[$isoCode] ?? null;
+    }
+
+    public function getByAlpha3IsoCode(string $isoCode): ?Country
+    {
+        $isoCode = strtoupper($isoCode);
+        foreach ($this->countries as $country) {
+            if ($country->getAlpha3IsoCode() === $isoCode) {
+                return $country;
+            }
+        }
+        return null;
+    }
+    public function getByEnglishName(string $name): ?Country
+    {
+        foreach ($this->countries as $country) {
+            if ($country->getName() === $name) {
+                return $country;
+            }
+        }
+        return null;
+    }
+}
diff --git a/typo3/sysext/core/Configuration/Services.yaml b/typo3/sysext/core/Configuration/Services.yaml
index 9fc1cd587901dfc13d95b84ba4f64973f97f9de0..1192bbf1e321898a9bc9183970ca6f2692f9b54c 100644
--- a/typo3/sysext/core/Configuration/Services.yaml
+++ b/typo3/sysext/core/Configuration/Services.yaml
@@ -390,6 +390,10 @@ services:
     factory: ['@TYPO3\CMS\Core\Cache\CacheManager', 'getCache']
     arguments: ['typoscript']
 
+  country.provider:
+    class: TYPO3\CMS\Core\Country\CountryProvider
+    public: true
+
   # Interface implementations
   Psr\Container\ContainerInterface:
     alias: service_container
diff --git a/typo3/sysext/core/Documentation/Changelog/12.2/Feature-99618-ListOfCountriesInTheWorldAndTheirLocalizedNames.rst b/typo3/sysext/core/Documentation/Changelog/12.2/Feature-99618-ListOfCountriesInTheWorldAndTheirLocalizedNames.rst
new file mode 100644
index 0000000000000000000000000000000000000000..20e97a0b2276d95ab9c0aebea7f09fca525fba1f
--- /dev/null
+++ b/typo3/sysext/core/Documentation/Changelog/12.2/Feature-99618-ListOfCountriesInTheWorldAndTheirLocalizedNames.rst
@@ -0,0 +1,97 @@
+.. include:: /Includes.rst.txt
+
+.. _feature-99618-1674063182:
+
+==========================================================================
+Feature: #99618 - List of countries in the world and their localized names
+==========================================================================
+
+See :issue:`99618`
+
+Description
+===========
+
+TYPO3 now ships a list of countries of the world. The list is based on the
+ISO 3166-1 standard, with the Alpha-numeric short name ("FR" or "FRA" in its
+three-letter short name), the english name ("France"), the official name
+("Republic of France"), also the numerical code, and the country's flag as
+emoji (UTF-8 representation).
+
+This list is based on Debian's ISO code list https://salsa.debian.org/iso-codes-team/iso-codes,
+and shipped statically as PHP content in a new Country API.
+
+
+Impact
+======
+
+It is now possible to load a list of all countries via PHP:
+
+.. code-block:: php
+
+    $countryProvider = GeneralUtility::makeInstance(CountryProvider:php);
+    $france = $countryProvider->getByIsoCode('FR');
+    // or
+    $france = $countryProvider->getByName('France');
+    // or
+    $france = $countryProvider->getByAlpha3IsoCode('FRA');
+
+A country object can be used to fetch all information about this,
+also with translatable labels:
+
+.. code-block:: php
+
+    $languageService = GeneralUtility::makeInstance(LanguageServiceFactory::class)->create('de');
+    echo $france->getName();    // "France"
+    echo $languageService->sL($france->getLocalizedNameLabel()); // "Frankreich"
+    echo $france->getOfficialName();    // "French Republic"
+    echo $languageService->sL($france->getLocalizedOfficalNameLabel()); // "Französische Republik"
+    echo $france->getNumericRepresentation(); // 250
+    echo $france->getAlpha2IsoCode(); // "FR"
+    echo $france->getFlag(); // "🇫🇷"
+
+A Fluid ViewHelper is also shipped with TYPO3 to render a dropdown
+for forms:
+
+.. code-block:: html
+
+    <f:form.countrySelect
+        name="country"
+        value="AT"
+        sortByOptionLabel="true"
+        prioritizedCountries="{0: 'DE', 1: 'AT', 2: 'CH'}"
+    />
+
+Available options
+---------------------
+
+-   :php:`disabled`: Specifies that the form element should be disabled when the page loads.
+-   :php:`required`: If set no empty value is allowed.
+-   :php:`errorClass`: Specify the CSS class to be set if there are errors for this ViewHelper.
+-   :php:`sortByOptionLabel`: Whether the country list should be sorted by option label or not.
+
+-   :php:`optionLabelField`: Specify the type of label of the country list. Available options are: "name", "localizedName", "officialName" or "localizedOfficialName". Default option is "localizedName".
+-   :php:`alternativeLanguage`: If specified, the country list will be shown in the given language.
+
+-   :php:`prioritizedCountries`: Define a list of countries which should be listed as first options in the form element.
+-   :php:`onlyCountries`: Restrict the countries to be rendered in the list.
+-   :php:`excludeCountries`: Define which countries should not be shown in the list.
+
+-   :php:`prependOptionLabel`: Provide an additional option at first position with the specified label.
+-   :php:`prependOptionValue`: Provide an additional option at first position with the specified value.
+
+Hint:
+A combination of :php:`optionLabelField` and :php:`alternativeLanguage` is
+possible. For instance if you want to show the localized official names but not
+in your default language but in French.
+You can achieve this by using the following combination:
+
+.. code-block:: html
+
+    <f:form.countrySelect
+        name="country"
+        optionLabelField="localizedOfficialName"
+        alternativeLanguage="fr"
+        sortByOptionLabel="true"
+    />
+
+.. index:: Fluid, PHP-API, ext:core
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/af.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/af.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..b7acf2666b6453dfcbea45e438069273d2d48e86
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/af.countries.xlf
@@ -0,0 +1,1651 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="af" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Vorstedom van Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Verenigde Arabiese Emirate</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Islamitiese Republiek van Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigue en Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanië</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republiek van Albanië</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenië</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republiek van Armenië</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republiek van Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktika</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentinië</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentynse Republiek</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Amerikaanse Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Oostenryk</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republiek van Oostenryk</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australië</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ã…landeilande</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaidjan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republiek van Azerbaidjan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnië en Herzegowina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republiek van Bosnië en Herzegowina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesj</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Volksrepubliek van Bangladesj</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>België</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Koninkryk van België</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgarye</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republiek van Bulgarye</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Koninkryk van Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republiek van Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republiek van Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Sint Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermunda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Broenei</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivië, Plurinasionale Staat van</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Plurinasionale Staat van Bolivië</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius en Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius en Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasilië</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Federale Republiek van Brasilië</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Statebond van die Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhoetan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Koninkryk van Bhoetan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvet-eiland</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republiek van Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Wit-Rusland</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republiek van Wit-Rusland</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kokoseilande</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongo, Die Demokratiese Republiek van die</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Sentraal-Afrikaanse Republiek</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republiek van die Kongo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Switserland</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Switserse Konfederasie</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Ivoorkus</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republiek van die Ivoorkus</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cookeilande</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chili</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republiek van Chili</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kameroen</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republiek van Kameroen</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Sjina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Volksrepubliek van Sjina</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombië</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republiek van Colombië</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republiek van Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republiek van Kuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Kerseiland</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Siprus</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republiek van Siprus</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Tsjeggië</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Tsjeggiese Republiek</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Duitsland</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Federale Republiek van Duitsland</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djiboeti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republiek van Djiboeti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Denemarke</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Koninkryk van Denemarke</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Statebond van Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikaanse Republiek</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algerië</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Demokratiese Volksrepubliek van Algerië</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republiek van Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estland</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republiek van Estland</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egipte</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Arabiese Republiek van Egipte</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Wes-Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritreë</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>die State van Eritreë</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spanje</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Koninkryk van Spanje</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopië</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Federale Demokratiese Republiek van Etiopië</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finland</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republiek van Finland</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republiek van Fidji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandeilande (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronesië, Gefedereerde State van</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Mikronesië</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Faroëreilande</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Frankryk</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Franse Republiek</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gaboen</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gaboenese Republiek</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Verenidge Koninkryk</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Verenigde Koninkryk van Groot-Brittanje en Noord-Ierland</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgië</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Frans-Guyana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Republiek van Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Groenland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambië</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republiek van Gambië</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinee</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republiek van Guinee</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ekwatoriaal-Guinee</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republiek van Ekwatoriaal-Guinee</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Griekeland</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Hellenistiese Republiek</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Suid-Georgië en die Suidelike Sandwicheilande</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republiek van Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinee-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republiek van Guinee-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Republiek van Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hongkong SAS Sjina</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heard- en McDonaldeilande</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republiek van Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroasië</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republiek van Kroasië</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haïti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republiek van Haïti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hongarye</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hongarye</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesië</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Republiek van Indonesië</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ierland</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Staat van Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Eiland Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indië</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Republiek van Indië</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Britse Indiese Oseaangebied</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Republiek van Irak</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, Islamitiese Republiek van</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Islamitiese Republiek van Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Ysland</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Republiek van Ysland</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italië</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Italiaanse Republiek</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaika</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordanië</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japan</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Republiek van Kenia</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgisië</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgiese Republiek</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodja</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Koninkryk van Kambodja</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Republiek van Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comore</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Unie van die Comore</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>St. Kitts en Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Noord-Korea</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Demokratiese Volksrepubliek van Korea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Suid-Korea</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Koeweit</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Staat van Koeweit</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kaaimanseilande</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Republiek van Kazakstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Lao People's Democratic Republic</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libanese Republiek</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>St. Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Vorstedom van Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Demokratiese Sosialistiese Republek van Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberië</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republiek van Liberië</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Koninkryk van Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litoue</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Republiek van Litoue</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxenburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Groothertogdom Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letland</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Republiek van Letland</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libië</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libië</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marokko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Koninkryk van Marokko</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Vorstedom van Monaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldawië, Republiek van</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Republiek van Moldawië</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Sint Martin (Franse deel)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Republiek van Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshall-eilande</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republiek van die Marshall-eilande</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republiek van Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Mianmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republiek van Mianmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolië</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Macau SAS Sjina</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Noordelike Mariana-eilande</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mouritanië</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Islamitiese Republiek van Mouritanië</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Republiek van Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republiek van Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maledive</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Republiek van die Maledives</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Republiek van Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Verenigde Meksikaanse State</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Maleisië</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mosambiek</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Republiek van Mosambiek</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibië</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Republiek van Namibië</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nieu-Kaledonië</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republiek van Niger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolk Eiland</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigerië</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Federale Republiek van Nigerië</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Republiek van Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Nederland</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Koninkryk van die Nederlande</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Noorweë</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Koninkryk van Noorweë</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Federale Demokratiese Republiek van Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Naoeroe</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Republiek van Naoeroe</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nieu-Seeland</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republiek van Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Republiek van Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Frans-Polinesië</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papoea-Nieu-Guinee</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Onafhanklike Staat van Papoea-Nieu-Guinee</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filippyne</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Republiek van die Filippyne</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Islamitiese Republiek van Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Pole</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Republiek van Pole</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>St. Pierre en Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>the State of Palestine</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugese Republic</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republiek van Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Republiek van Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Staat van Katar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Roemenië</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serwië</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republiek van Serwië</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Russiese Federasie</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Rwandese Republiek</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saoedi-Arabië</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Koninkryk van Saoedi-Arabië</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Solomon Eilande</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelle</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republiek van Seychelle</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Soedan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Republiek van Soedan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Swede</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Koninkryk van Swede</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapoer</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Republiek van Singapoer</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Sint Helena, Ascension en Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slowenië</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Republiek van Slowenië</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard en Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slowakye</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slowaakse Republiek</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Siërra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republiek van Siërra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Republiek van San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republiek van Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalië</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federale Republiek van Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Suriname</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Republiek van Suriname</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Suid-Soedan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republiek van Suid-Soedan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tomé en Principe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Demokratiese Republiek van Sao Tomé en Principe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republiek van El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Siriese Arabiese Republiek</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks- en Caicos-eilande</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Tsjad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republiek van Tsjad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Franse Suidelike Gebiede</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togolese Republiek</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thailand</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Koninkryk van Thailand</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadjikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republiek van Tadjikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Oos-Timor</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Demokratiese Republiek van Oos-Timor</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Toerkmenië</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisië</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Republiek van Tunisië</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Koninkryk van Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad en Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republiek van Trinidad en Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Toewaloe</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Provinsie van Sjina</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Provinsie van Sjina</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzanië, Verenigde Republiek van</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Verenigde Republiek van Tanzanië</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Oekraïne</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Republiek van Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Klein afgeleë eilande van die Verenigde State van Amerika</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Verenigde State</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Verenigde State van Amerika</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Oostelike Republiek van Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Oesbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Republiek van Oesbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Vatikaan</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>St. Vincent en die Grenadine</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Maagde-eilande, Britse</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Britse Maagde-eilande</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Maagde-eilande, VSA</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>VSA se Maagde-eilande</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Viëtnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Sosialistiese Republek van Viëtnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republiek van Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis en Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Onafhanklike Staat van Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republiek van Jemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Suid-Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Republiek van Suid-Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambië</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republiek van Zambië</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republiek van Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/ar.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/ar.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..ffa5a999d94acda0c724b5b226451cbed8fcc4a7
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/ar.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="ar" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>أندورا</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>إمارة أندورا</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>الإمارات العربيّة المتحدّة</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>أفغانستان</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>جمهوريّة أفغانستان الإسلاميّة</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>أنتيغوا و باربودا</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>أنغويلا</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>ألبانيا</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>جمهوريّة ألبانيا</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>أرمينيا</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>جمهوريّة أرمينيا</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>أنغولا</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>جمهوريّة أنغولا</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>القطب الجنوبي</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>الأرجنتين</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>الجمهوريّة الأرجنتينيّة</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>صاموا الأمريكيّة</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>النّمسا</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>جمهوريّة النّمسا</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>أستراليا</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>أروبا</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>جزر آلاند</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>أذربيجان</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>جمهوريّة أذربيجان</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>البوسنة و الهرسك</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>جمهوريّة البوسنة و الهرسك</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>بربادوس</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>بنغلادش</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>جمهوريّة بنغلادش الشّعبيّة</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>بلجيكا</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>مملكة بلجيكا</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>بوركينا فاصو</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>بلغاريا</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>جمهوريّة بلغاريا</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>البحرين</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>مملكة البحرين</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>بوروندي</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>جمهوريّة بوروندي</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>بنين</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>جمهوريّة بنين</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>سان بارتليمي</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>برمودا</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>بروناي دار السّلام</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>جمهورية بوليفيا</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>جمهورية بوليفيا</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>بونير وسانت يوستاتيوس وسابا</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>بونير وسانت يوستاتيوس وسابا</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>البرازيل</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>جمهوريّة البرازيل الاتّحاديّة</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>جزر البهاما</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>كومنولث البهاما</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>بوتان</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>مملكة بوتان</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>جزيرة بوفي</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>بوتسوانا</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>جمهوريّة بوتسوانا</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>روسيا البيضاء</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>جمهوريّة روسيا البيضاء</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>بيليز</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>كندا</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>جزر الكوكوس</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>الكونغو، جمهوريّة الكونغو الدّيموقراطيّة</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>جمهورية إفريقيّا الوسطى</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>الكونغو</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>جمهوريّة الكونغو</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>سويسرا</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>الاتّحاد السّويسري</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>ساحل العاج</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>جمهوريّة ساحل العاج</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>جزر كوك</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>تشيلي</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>جمهوريّة تشيلي</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>الكاميرون</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>جمهوريّة الكاميرون</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>الصّين</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>جمهوريّة الصّين الشّعبيّة</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>كولومبيا</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>جمهوريّة كولومبيا</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>كوستاريكا</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>جمهوريّة كوستاريكا</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>كوبا</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>جمهوريّة كوبا</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>الرأس الأخضر</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>جمهورية الرأس الأخضر</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>جزر كوراكاو</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>جزر كوراكاو</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>جزر الكريسماس</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>قبرص</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>جمهوريّة قبرص</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>التشيك</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>جمهوريّة التّشيك</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>ألمانيا</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>جمهوريّة ألمانيا الاتّحاديّة</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>جيبوتي</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>جمهوريّة جيبوتي</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>الدّنمارك</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>مملكة الدّنمارك</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>دومينيكا</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>كومنولث دومينيكا</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>جمهوريّة الدّومينيكان</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>الجزائر</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>الجمهورية الجزائرية الديمقراطية الشعبية</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>الإكوادور</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>جمهوريّة الإكوادور</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>إستونيا</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>جمهوريّة إستونيا</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>مصر</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>جمهوريّة مصر العربيّة</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>الصّحراء الغربيّة</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>إريتريا</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>دولة إريتريا</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>إسبانيا</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>مملكة إسبانيا</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>إثيوبيا</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>جمهوريّة إثيوبيا الدّيموقراطيّة الاتّحاديّة</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>فنلندا</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>جمهوريّة فنلندا</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>فيجي</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>جمهورية فيجي</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>جزر فولكلاند (مالفيناس)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>ميكرونيزيا، ولايات ميكرونيزيا الموحّدة</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>ولايات ميكرونيزيا الموحّدة</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>جزر الفارو</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>فرنسا</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>جمهوريّة الفرنسيّة</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>الغابون</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>الجمهوريّة الغابونيّة</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>المملكة المتّحدة</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>المملكة المتّحدة لبريطانيا العظمى و أيرلندا الشّماليّة</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>غرينادا</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>جورجيا</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>غيانا الفرنسيّة</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>جزيرة جويرزني</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>غانا</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>جمهوريّة غانا</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>جبل طارق</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>غرينلاند</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>غامبيا</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>جمهورية غامبيا</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>غينيا</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>جمهوريّة غينيا</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>جوادالوبّي</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>غينيا الاستوائيّة</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>جمهوريّة غينيا الاستوائيّة</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>اليونان</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>الجمهوريّة الهلنستيّة</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>جورجيا الجنوبيّة و جزر ساندويتش الجنوبيّة</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>غواتيمالا</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>جمهوريّة غواتيمالا</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>جوام</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>غينيا بيساو</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>جمهوريّة غينيا بيساو</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>غويانا</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>جمهوريّة غويانا</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>هونغ كونغ</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>هونج كونج المنطقة الصّينيّة الإداريّة الخاصّة</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>جزيرة هيرد وجزر مَكْدونالد</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>هندوراس</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>جمهوريّة هندوراس</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>كرواتيا</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>جمهوريّة كرواتيا</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>هايتي</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>جمهوريّة هايتي</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>المجر (هنغاريا)</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>المجر (هنغاريا)</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>إندونيسيا</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>جمهوريّة اندونيسيا</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>أيرلندا</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>إسرائيل</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>دولة إسرائيل</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>آيزل أف مان</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>الهند</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>جمهوريّة الهند</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>مقاطعة المحيط الهندي البريطانيّة</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>العراق</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>جمهوريّة العراق</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>إيران، الجمهوريّة الإسلاميّة الإيرانيّة</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>الجمهورية الإسلاميّة الإيرانيّة</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>آيسلندا</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>جمهوريّة آيسلندا</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>إيطاليا</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>الجمهوريّة الإيطاليّة</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>جيرسي</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>جامايكا</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>الأردن</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>المملكة الأردنيّة الهاشميّة</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>اليابان</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>كينيا</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>جمهوريّة كينيا</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>قيرغزستان</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>الجمهوريّة القيرغزيّة</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>كمبوديا</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>مملكة كمبوديا</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>كيريباتي</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>جمهوريّة كيريباتي</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>جزر القمر</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>إتّحاد جزر القمر</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>سانت كيتس و نيفس</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>كوريا، جمهورية كوريا الشّعبيّة الدّيموقراطيّة</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>جمهوريّة كوريا الشّعبيّة الدّيموقراطيّة</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>كوريا، جمهوريّة كوريا</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>الكويت</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>دولة الكويت</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>جزر الكيمان</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>كازاخستان</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>جمهوريّة كازاخستان</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>جمهوريّة لاو الدّيموقراطيّة الشّعبيّة</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>لبنان</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>الجمهوريّة اللّبنانيّة</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>سانت لوسيا</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>ليشتنشتاين</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>إمارة ليشتنشتاين</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>سريلانكا</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>جمهوريّة سريلانكا الاشتراكيّة الدّيموقراطيّة</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>ليبيريا</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>جمهوريّة ليبيريا</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>ليسوتو</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>مملكة ليسوتو</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>لثوانيا</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>جمهوريّة لثوانيا</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>لوكسمبورغ</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>دوقيّة لوكسمبورغ الكبرى</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>لاتفيا</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>جمهوريّة لاتفيا</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>ليبيا</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>ليبيا</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>المغرب</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>المملكة المغربيّة</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>موناكو</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>إمارة موناكو</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>جمهورية مولدوفا</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>جمهوريّة مولدوفا</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>المنتنيغرو</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>المنتنيغرو</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>سانت مارتين (القطاع الفرنسي)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>مدغشقر</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>جمهوريّة مدغشقر</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>جزر المارشال</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>جمهوريّة جزر المارشال</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>مقدونيا الشمالية</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>جمهوريّة مقدونيا الشمالية</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>مالي</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>جمهوريّة مالي</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>ميانمار</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>جمهورية اتحاد ميانمار</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>منغوليا</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>مكّاو</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>مكّاو المنطقة الصّينيّة الإداريّة الخاصّة</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>جزر ماريانا الشّماليّة</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>كومنولث جزر ماريانا الشّماليّة</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>مارتينيك</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>موريتانيا</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>جمهوريّة موريتانيا الإسلاميّة</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>مونتسيرات</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>مالطة</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>جمهوريّة مالطة</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>موريشيوس</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>جمهوريّة موريشيوس</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>جزر المالديف</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>جمهوريّة جزر المالديف</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>ملاوي</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>جمهوريّة ملاوي</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>المكسيك</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>الولايات المكسيكيّة المتّحدة</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>ماليزيا</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>موزمبيق</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>جمهوريّة موزمبيق</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>ناميبيا</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>جمهوريّة ناميبيا</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>نيو قلدونيا</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>النّيجر</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>جمهوريّة النّيجر</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>جزيرة نورفولك</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>نيجيريا</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>جمهوريّة نيجيريا الاتّحاديّة</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>نيكاراجوا</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>جمهوريّة نيكاراغوا</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>هولندا</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>مملكة هولندا</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>النّرويج</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>مملكة النّرويج</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>نيبال</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>جمهورية النيبال الاتحادية الديموقراطيّة</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>ناورو</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>جمهوريّة ناورو</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>نيوي</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>نيوي</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>نيوزيلاندا</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>عمان</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>سلطنة عمان</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>بنما</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>جمهوريّة بنما</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>البيرو</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>جمهوريّة البيرو</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>بولينيسيا الفرنسيّة</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>بابوا غينيا الجديدة</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>دولة بابوا غينيا الجديدة المستقلة</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>الفلبّين</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>جمهوريّة الفيلبّين</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>باكستان</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>جمهوريّة باكستان الإسلاميّة</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>بولندا</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>جمهوريّة بولندا</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>سانت بيير و ميكيلون</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>بتكيرن</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>بورتوريكو</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>دولة فلسطين</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>دولة فلسطين</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>البرتغال</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>الجمهوريّة البرتغاليّة</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>بالاو</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>جمهوريّة بالاو</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>الباراغواي</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>جمهوريّة الباراغواي</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>قطر</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>دولة قطر</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>ريونيون</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>رومانيا</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>صربية</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>جمهوريّة صربية</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>الاتّحاد الرّوسي</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>رواندا</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>الجمهوريّة الرّوانديّة</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>السّعوديّة</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>المملكة العربيّة السّعوديّة</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>جزر سولومن</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>السّيشل</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>جمهوريّة السّيشل</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>السّودان</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>جمهوريّة السّودان</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>السّويد</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>مملكة السّويد</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>سنغافورة</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>جمهوريّة سنغافورة</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>ساينت هيلينا، تريستان دا كونا</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>سلوفينيا</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>جمهوريّة سلوفينيا</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>سفالبارد و جان ماين</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>سلوفاكيا</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>جمهورية سلوفاكيا</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>سيراليون</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>جمهوريّة سيراليون</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>سان مارينو</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>جمهوريّة سان مارينو</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>السّنغال</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>جمهوريّة السّنغال</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>الصّومال</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>جمهورية الصومال الفيدرالية</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>سورينام</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>جمهوريّة سورينام</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>جنوب السّودان</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>جمهورية جنوب السّودان</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>ساو تومي و برنسبي</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>جمهوريّة ساو تومي و برنسبي الدّيموقراطيّة</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>السّلفادور</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>جمهوريّة السّلفادور</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>سانت مارتن (الجزء الهولندي)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>سانت مارتن (الجزء الهولندي)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>الجمهوريّة العربيّة السّوريّة</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>إسواتيني</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>مملكة إسواتيني</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>جزر التّرك و الكايكوس</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>تشاد</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>جمهوريّة تشاد</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>المقاطعات الفرنسيّة الجنوبيّة</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>توغو</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>الجمهوريّة التّوغويّة</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>تايلاند</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>مملكة تايلاند</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>طاجيكستان</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>جمهوريّة طاجيكستان</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>جزر توكيلو</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>تيمور-ليستي</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>جمهوريّة تيمور-ليستي الدّيموقراطيّة</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>تركمانستان</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>تونس</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>الجمهورية التونسية</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>تونغا</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>مملكة تونغا</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>ترينيداد و توباغو</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>جمهوريّة ترينيداد و توباغو</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>توفالو</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>تايوان، محافظة صينيّة</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>تايوان، محافظة صينيّة</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>تنزانيا، جمهوريّة تنزانيا المتّحدة</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>جمهوريّة تنزانيا المتّحدة</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>أوكرانيا</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>أوغندا</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>جمهوريّة أوغندا</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>جزر الولايات المتّحدة الصّغرى النّائية</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>الولايات المتّحدة</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>الولايات المتّحدة الأميركيّة</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>الأوروغواي</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>جمهوريّة الأوروغواي الشّرقيّة</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>أوزبكستان</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>جمهوريّة أوزبكستان</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>المقعد المقدّس (ولاية مدينة الفاتيكان)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>سانت فنسنت و جزر الغرينادين</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>جمهورية فنزويلا البوليفارية</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>جمهوريّة فنزويلّا</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>فيرجن، جزر فيرجن البريطانيّة</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>جزر فيرجن البريطانيّة</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>فيرجن، جزر فيرجن الأميركيّة</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>جزر فيرجن الأميركيّة</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>الفييتنام</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>جمهوريّة الفييتنام الاشتراكيّة</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>فانواتو</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>جمهوريّة فانواتو</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>واليس و فوتونا</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>صاموا</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>دولة صاموا المستقلّة</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>اليمن</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>جمهوريّة اليمن</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>مايوت</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>جنوب إفريقيا</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>جمهوريّة جنوب إفريقيا</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>زامبيا</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>جمهوريّة زامبيا</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>زمبابوي</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>جمهوريّة زمبابوي</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/bg.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/bg.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..7397597ed09becef72508501357f31647550f105
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/bg.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="bg" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Андора</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Княжество Андора</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Обединени арабски емирства</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Афганистан</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Ислямска република Афганистан</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Антигуа и Барбуда</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Ангила</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Албания</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Република Албания</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Армения</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Република Армения</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Ангола</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Република Ангола</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Антарктика</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Аржентина</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Аржентинска република</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Американска Самоа</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Австрия</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Република Австрия</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Австралия</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Аруба</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Аландски острови</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Азербайджан</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Република Азербайджан</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Босна и Херцеговина</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Република Босна и Херцеговина</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Барбадос</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Бангладеш</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Народна република Бангладеш</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Белгия</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Кралство Белгия</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Буркина Фасо</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>България</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Република България</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Бахрейн</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Кралство Бахрейн</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Бурунди</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Република Бурунди</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Бенин</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Република Бенин</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Свети Вартоломей</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Бермуда</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Бруней</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Боливия, Многонационална държава</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Многонационална държава Боливия</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>О-ви Бонер, Св. Евстатий и Саба</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>О-ви Бонер, Св. Евстатий и Саба</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Бразилия</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Съюзна република Бразилия</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Бахами</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Бахамски острови</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Бутан</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Кралство Бутан</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Остров Буве</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Ботсуана</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Република Ботсуана</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Беларус</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Република Беларус</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Белиз</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Канада</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Кокосови острови</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Конго, Демократична република</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Централноафриканска Република</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Конго</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Република Конго</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Швейцария</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Швейцарска конфедерация</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Кот д'Ивоар</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Република Кот д'Ивоар</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Острови Кук</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Чили</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Република Чили</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Камерун</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Република Камерун</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Китай</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Народна република Китай</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Колумбия</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Република Колумбия</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Коста Рика</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Република Коста Рика</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Куба</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Република Куба</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Кабо Верде</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Република Кабо Верде</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Кюрасао</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Кюрасао</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Коледни острови</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Кипър</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Република Кипър</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Чехия</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Чешка република</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Германия</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Федерална република Германия</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Джибути</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Република Джибути</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Дания</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Кралство Дания</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Доминика</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Обединение Доминика</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Доминиканска република</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Алжир</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Народна демократична република Алжир</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Еквадор</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Република Еквадор</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Естония</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Република Естония</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Египет</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Арабска република Египет</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Западна Сахара</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Еритрея</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Еритрея</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Испания</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Кралство Испания</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Етиопия</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Федерална демократична република Етиопия</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Финландия</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Република Финландия</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Фиджи</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Република Фиджи</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Фолклендски Острови (Малвини)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Микронезия, Обединени щати</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Обединени щати Микронезия</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Острови Фаро</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Франция</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Френска република</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Габон</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Габонска Република</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Обединено кралство</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Обединено кралство на Великобритания и северна Ирландия</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Гренада</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Грузия</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Френска Гвиана</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Гърнсей</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Гана</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Република Гана</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Гибралтар</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Гренландия</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Гамбия</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Република Гамбия</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Гвинея</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Република Гвинея</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Гваделупа</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Екваториална Гвинея</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Република Екваториална Гвинея</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Гърция</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Елинска република</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Южна Джорджия и Южни Сандвичеви острови</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Гватемала</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Република Гватемала</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Гуам</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Гвинея-Бисау</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Република Гвинея-Бисау</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Гияна</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Република Гияна</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Хонг Конг</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Специален административен регион на Китай Хонг Конг</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Острови Хърд и МакДоналд</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Хондурас</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Република Хондурас</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Хърватия</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Република Хърватия</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Хаити</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Република Хаити</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Унгария</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Унгария</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Индонезия</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Република Индонезия</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ирландия</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Израел</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Израелска държава</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Айл ъф мен</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Индия</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Република Индия</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Английски територии в индийския океан</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Ирак</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Република Ирак</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Иран, Ислямска република</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Ислямска република Иран</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Исландия</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Република Исландия</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Италия</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Италианска република</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Джърси</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Ямайка</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Йордания</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Хашемитско кралство на Йордания</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Япония</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Кения</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Република Кения</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Киргизстан</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Киргизска република</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Камбоджа</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Кралство Камбоджа</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Кирибати</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Република Кирибати</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Комори</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Съюз на Комори</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Свети Китс и Невис</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Корея, Демократична народна република</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Демократична народна република Корея</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Корея, Република</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Кувейт</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Кувейтска държава</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Кайманови острови</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Казахстан</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Република Казахстан</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Демократична република на народа на Лао</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Лебанон</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Лебанска република</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Санта Лучия</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Лихтенщайн</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Княжество Лихтенщайн</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Шри Ланка</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Демократична социалистическа република Шри Ланка</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Либерия</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Република Либерия</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Лесото</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Кралство Лесото</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Литва</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Република Литва</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Люксембург</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Велико херцогство Люксембург</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Латвия</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Република Латвия</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Либия</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Либия</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Мароко</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Кралство Мароко</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Монако</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Княжество Монако</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Молдова, Република</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Република Молдова</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Черна гора</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Черна гора</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Свети Мартин (френска част)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Мадагаскар</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Република Мадагаскар</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Маршалски острови</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Република на маршалските острови</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Северна Македония</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Република Северна Македония</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Мали</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Република Мали</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Мянмар</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Република Мианмар</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Монголия</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Макао</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Макаоски специален административен регион на Китай</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Северни марианови Острови</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Обединение на северните марианови острови</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Мартиника</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Мавритания</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Ислямска република Мавритания</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Монсерат</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Малта</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Република Малта</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Мавриций</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Република Мавриций</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Малдиви</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Република Малдиви</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Малави</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Република Малави</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Мексико</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Съединени мексикански щати</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Малайзия</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Мозамбик</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Република Мозамбик</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Намибия</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Република Намибия</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Нова Каледония</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Нигер</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Република Нигер</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Остров Норфолк</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Нигерия</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Федерална република Нигерия</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Никарагуа</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Република Никарагуа</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Холандия</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Кралство Холандия</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Норвегия</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Кралство Норвегия</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Непал</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Федерална демократична република Непал</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Науру</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Република Науру</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Нию</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Нию</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Нова Зеландия</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Оман</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Султанат Оман</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Панама</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Република Панама</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Перу</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Република Перу</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Френска Полинезия</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Папуа Нова Гвинея</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Независима държава Папуа Нова Гвинея</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Филипини</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Република Филипини</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Пакистан</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Ислямска република Пакистан</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Полша</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Република Полша</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Свети Пиер и Микелон</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Питкеърн</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Пуерто Рико</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Палестина, държава</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Държавата Палестина</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Португалия</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Република Португалия</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Палау</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Република Палау</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Парагвай</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Република Парагвай</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Катар</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Катарска държава</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Риюниън</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Румъния</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Сърбия</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Република Сърбия</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Руска федерация</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Руанда</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Руандска република</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Саудитска Арабия</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Кралство Саудитска Арабия</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Соломонови острови</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Сейшели</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Република Сейшели</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Судан</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Република Судан</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Швеция</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Кралство Швеция</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Сингапур</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Република Сингапур</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Света Елена, Възнесение и Тристан да Куня</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Словения</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Република Словения</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Свалбард и Ян Майен</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Словакия</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Словашка република</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Сиера Леоне</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Република Сиера Леоне</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>Сан Марино</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Република Сан Марино</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Сенегал</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Република Сенегал</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Сомалия</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Федерална република Сомалия</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Суринам</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Република Суринам</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Южен Судан</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Република Южен Судан</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Сао Томе и Принсипи</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Демократична република Сао Томе и Принсипи</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Ел Салвадор</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Република Ел Салвадор</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Синт Мартен (холандска част)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Синт Мартен (холандска част)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Сирийска арабска република</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Есватини</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Кралство Есватини</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Острови Тюрк и Кайкос</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Чад</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Република Чад</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Френски южни територии</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Того</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Тогоска република</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Тайланд</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Кралство Тайланд</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Таджикистан</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Република Таджикистан</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Токелау</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Тимор-Лест</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Демократична република Тимор-Лест</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Туркменистан</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Тунис</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Република Тунис</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Тонга</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Кралство Тонга</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Тринидад и Тобаго</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Република Тринидад и Тобаго</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Тувалу</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Тайван, Китайска провинция</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Тайван, Китайска провинция</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Танзания, Обединена република</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Обединена република Танзания</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Украйна</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Уганда</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Република Уганда</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Обединени малки острови по крайбрежието на САЩ</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Съединени щати</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Съединени американски щати</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Уругвай</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Източна република Уругвай</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Узбекистан</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Република Узбекистан</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Ватикана</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Свети Винсент и Гренадин</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Венецуела, Боливарска република</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Боливарска република Венецуела</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Вирджински острови, Британски</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Британски вирджински острови</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Вирджински острови, САЩ</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Вирджински острови на САЩ</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Виетнам</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Социалистическа република Виетнам</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Вануату</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Република Вануату</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Острови Уолис и Футуна</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Самоа</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Независима самоаска държава</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Йемен</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Република Йемен</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Майот</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Южна Африка</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Република Южна Африка</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Замбия</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Република Замбия</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Зимбабве</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Република Зимбабве</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/bs.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/bs.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..27ccb850eba809c27742a9e7ba2703a4acbcfc74
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/bs.countries.xlf
@@ -0,0 +1,1679 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="bs" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andora</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Kneževina Andora</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Ujedinjeni Arapski Emirati</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Islamska Republika Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua i Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanija</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republika Albanija</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenija</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republika Armenija</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republika Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktik</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Republika Argentina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Američka Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austrija</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republika Austrija</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australija</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ã…land Ostrva</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbejdžan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republika Azerbejdžan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosna i Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republika Bosna i Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladeš</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Narodna Republika Bangladeš</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgija</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Kraljevina Belgija</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bugarska</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republika Bugarska</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Kraljevina Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republika Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republika Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Bruneji</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivija, Plurinacionalna država</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Plurinacionalna država Bolivija</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius i Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius i Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Federativna Republika Brazil</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahami</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Komonvelt Bahama</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Butan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Kraljevina Butan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Ostrvo Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Bocvana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republika Bocvana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bjelorusija</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republika Bjelorusija</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kokosova (Kilingova) ostrva</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Demokratska Republika Kongo</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Centralnoafrička Republika</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republika Kongo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Å vicarska</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Å vajcarska Konfederacija</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Obala Slonovače</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republika Obale Slonovače</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Kukova Ostrva</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>ÄŒile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republika ÄŒile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republika Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Kina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Narodna Republika Kina</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbija</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republika Kolumbija</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kostarika</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republika Kostarika</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republika Kuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Uskršnje ostrvo</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Kipar</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republika Kipar</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Češka Republika</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Njemačka</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Savezna Republika Njemačka</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Džibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republika Džibuti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Denmark</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Kraljevina Danska</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Komonvelt Dominike</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikanska Republika</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Alžir</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Narodna Demokratska Republika Alžir</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekvador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republika Ekvador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonija</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republika Estonija</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egipat</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Arapska Republika Egipat</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Zapadna Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritreja</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>the State of Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Å panija</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Kraljevina Å panija</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopija</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Federalna Demokratska Republika Etijopija</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finska</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republika Finska</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidži</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republika Fiji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandsko otočje</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Federalne Države Mikronezije</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Federativne Države Mikronezije</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Farska ostrva</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francuska</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Republika Francuska</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Republika Gabonska</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Velika Britanija</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Ujedinjeno Kraljevstvo Velike Britanije i Sjeverne Irske</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gruzija</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Francuska Gvajana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Gernzi</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Gana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Republika Gana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grenland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambija</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republika Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Gvadalupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ekvatorijalna Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republika Ekvatorijalna Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grčka</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Grčka Republika</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>South Georgia i South Sandwich Ostrva</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Gvatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republika Gvatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Gvineja Bisau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republika Gvineja Bisao</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Gvajana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Republika Gvajana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hong Kong Specijalna Administrativna Regija Kine</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heard Ostrvo i McDonald Ostrva</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republika Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Hrvatska</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republika Hrvatska</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republika Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Mađarska</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Mađarska</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonezija</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Republika Indonezija</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irska</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Izrael</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Država Izrael</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Ostrvo Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indija</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Republika Indija</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Britansko-Indijska Okeanska Teritorija</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Republika Irak</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Islamska Republika Iran</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Islamska Republika Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Island</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Republika Island</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italija</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Republika Italia</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Džerzi</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamajka</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordan</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Hašemitska Kraljevina Jordan</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japan</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenija</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Republika Kenija</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Republika Kirgizija</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kraljevina Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Republika Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komori</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Unija Komorosa</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts i Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Koreja, Demokratska Narodna Republika</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Demokratska Narodna Republika Koreja</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Koreja, Republika</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuvajt</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Država Kuvajt</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kajmanska ostrva</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazahstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Republika Kazahstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Narodna Demokratska Republika Lao</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Liban</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Republika Liban</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Lihtenštajn</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Kneževina Lihtenštajn</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Å ri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Demokratska Socijalistička Republika Šri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberija</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republika Liberija</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Kraljevina Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litvanija</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Republika Litvanija</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luksemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Velika Vojvodina Luksemburg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Latvija</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Republika Lavtija</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libija</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libija</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Kraljevina Maroko</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Kneževina Monako</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldova, Republika</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Republika Moldavija</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Crna Gora</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Crna Gora</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Sveti Martin (Francuski dio)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Republika Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Maršalska Ostrva</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republika Maršalska Ostrva</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republika Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republika Myanmara</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolija</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makau</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Makao Specijalna Administrativna Regija Kine</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Sjeverna Marijanska ostrva</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Komonvelt Sjevernih Marijanskih Ostrva</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinik</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritanija</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Islamska Republika Mauritanija</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Republika Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauricijus</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republika Mauricijus</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldivi</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Republika Maldivi</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malavi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Republika Malavi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Sjedinjene Meskičke Države (Meksiko)</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malezija</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Republika Mozambik</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibija</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Republika Namibija</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nova Kaledonija</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republika Niger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolk ostrvo</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigerija</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Federalna Republika Nigerija</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragva</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Republika Nikaragva</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Nizozemska</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Kraljevina Holandija</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norveška</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Kraljevina Norveška</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Federalna Demokratska Republika Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Republika Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Novi Zeland</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanat Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republika Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Republika Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Francuska Polinezija</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Nova Gvineja</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Independent State of Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipini</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Republika Filipini</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Islamska Republika Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Poljska</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Republika Poljska</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint Pierre i Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Portoriko</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>the State of Palestine</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Republika Portugal</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republika Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paragvaj</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Republika Paragvaj</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Država Katar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumunija</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Srbija</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republika Srbija</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Ruska Federacija</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Republika Ruanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudijska Arabija</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Kraljevina Saudijska Arabija</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Solomoska ostrva</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Sejšelsko otočje</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republika Sejšeli</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Republika Sudan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Å vedska</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Kraljevina Å vedska</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Republika Singapur</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Sveta Helena, Ascension i Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenija</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Republika Slovenija</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard i Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovačka</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovačka Republika</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republika Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Republika San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republika Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalija</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federal Republic of Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Republika Surinam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Južni Sudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republic of South Sudan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tome i Principe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Demokratska Republika Sao Tome i Principe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republika El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Holandski dio)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Holandski dio)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Sirijska Arapska Republika</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks i Caicos Ostrva</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>ÄŒad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republika ÄŒad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Francuske Južne Teritorije</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Republika Togolese</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tajland</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Kraljevina Tajland</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadžikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republika Tadžikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Istočni Timor</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Demokratska Republika Istočni Timor</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunis</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Republika Tunis</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Kraljevstvo Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad i Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republika Trinidad i Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Kineska Provincija Tajvan</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Kineska Provincija Tajvan</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Ujedinjena Republika Tanzanija</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Ujedinjena Republika Tanzanija</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukrajina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Republika Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>United States Minor Outlying Islands</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>SAD</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Sjedinjene Američke Države</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Urugvaj</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Istočna Republika Urugvaj</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Republika Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Vatikan</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent i Grenadines</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venecuela, Bolivarijska Republika</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Bolivarijska Republika Venecuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Djevičanska Ostrva (Britanska)</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Britanska Djevičanska Ostrva</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Djevičanska Ostrva (Američka)</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Djevičanska Ostrva Sjedinjenih Država</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vijetnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Socijalistička Republika Vijetnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republika Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis i Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Nezavisna Država Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republika Jemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Južna Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Južnoafrička Republika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambija</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republika Zambija</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabve</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republika Zimbabve</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/ca.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/ca.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..fb00c9c098ab9e731b99d983c94cafec372757fa
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/ca.countries.xlf
@@ -0,0 +1,1687 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="ca" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Principat d'Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Unió dels Emirats Àrabs</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>República Islàmica d'Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua i Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albània</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>República d'Albània</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armènia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>República d'Armènia</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>República d'Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antàrtida</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>República Argentina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samoa Americana</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Àustria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>República d'Àustria</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Austràlia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Illes Aland</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaitjan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>República d'Azerbaitjan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bòsnia i Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>República de Bòsnia i Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangla Desh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>República Popular de Bangla Desh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Bèlgica</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Regne de Bèlgica</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgària</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>República de Bulgària</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Regne de Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>República de Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benín</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>República de Benín</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei (Negara Brunei Darussalam)</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolívia, Estat Plurinacional de</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Estat Plurinacional de Bolívia</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius i Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius i Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>República Federal del Brasil</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahames</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Commonwealth de les Bahames</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Regne de Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Illa Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>República de Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bielorússia</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>República de Bielorússia</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canadà</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Illes Cocos (Keeling)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Congo, La República Democràtica del</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>República Centreafricana</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Congo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>República del Congo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Suïssa</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Confederació Suïssa</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Costa de Vori</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>República de Costa de Vori</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Illes Cook</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Xile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>República de Xile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Camerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>República del Camerun</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Xina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>República Popular de la Xina</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colòmbia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>República de Colòmbia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>República de Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>República de Cuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cap Verd</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>República de Cap Verd</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Illa Christmas</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Xipre</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>República de Xipre</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Txèquia</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>República Txeca</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Alemanya</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>República Federal d'Alemanya</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>República de Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Dinamarca</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Regne de Dinamarca</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Commonwealth de Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>República Dominicana</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algèria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>República Democràtica Popular d'Algèria</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Equador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>República d'Equador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estònia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>República d'Estònia</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egipte</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>República Àrab d'Egipte</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Sàhara Occidental</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Estat d'eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Espanya</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Regne d'Espanya</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiòpia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>República Federal Democràtica d'Etiòpia</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlàndia</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>República de Finlàndia</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>República de Fiji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Illes Malvines (Falkland)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Micronèsia, Estats Federats de</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Estats Federats de Micronèsia</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Illes Fèroe</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>França</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>República Francesa</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>República Gabonesa</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Regne Unit</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Regne Unit de la Gran Bretanya i Irlanda del Nord</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Geòrgia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guaiana Francesa</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>República de Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Groenlàndia</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gàmbia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>República de Zàmbia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>República de Guinea</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadalupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Guinea Equatorial</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>República de Guinea Equatorial</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grècia</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>República Hel·lènica</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Illes Geòrgia del Sud i Sandwich del Sud</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>República de Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>República de Guinea Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>República Cooperativa de Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Regió administrativa especial Xinesa de Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Illa Heard i Illes McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Hondures</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>República d'Hondures</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Croàcia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>República de Croàcia</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haití</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>República d'Haití</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hongria</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hongria</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonèsia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>República d'Indonèsia</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlanda</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Estat d'Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Illa de Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Índia</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>República de l'Índia</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Territori Britànic de l'Oceà Índic</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Iraq</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>República de l'Iraq</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>República Islàmica de l'Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islàndia</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>República d'Islàndia</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Itàlia</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>República Italiana</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordània</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Regne Haiximita de Jordània</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japó</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>República de Kenya</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirguizistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>República del Kirguizistan</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Cambodja</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Regne de Cambodja</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>República de Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comores</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Unió de les Comores</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Christopher i Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Corea del Nord</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>República Democràtica Popular de Corea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Corea del Sud</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Estat de Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Illes Caiman</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakhstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>República del Kazakhstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>República Democràtica Popular de Laos</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Líban</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>República Libanesa</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Principat de Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>República Socialista Democràtica de Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Libèria</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>República de Libèria</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Regne de Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituània</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>República de Lituània</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Gran Ducat de Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letònia</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>República de Letònia</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Líbia</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Líbia</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marroc</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Regne del Marroc</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Mònaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Principat de Mònaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldàvia, República de</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>República de Moldàvia</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint Martin (part francesa)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>República de Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Illes Marshall</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>República de les Illes Marshall</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Macedònia del Nord</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>República de Lituània del Nord</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>República de Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>República de Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongòlia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macau</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Regió Administrativa Especial Xinesa de Macau</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Illes Marianes del Nord</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Commonwealth de les Illes Marianes del Nord</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinica</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritània</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>República Islàmica de Mauritània</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>República de Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Maurici</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>República de Maurici</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldives</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>República de Maldives</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>República de Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mèxic</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Estats Units Mexicans</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malàisia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Moçambic</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>República de Moçambic</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namíbia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>República de Namíbia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nova Caledònia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Níger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>República del Níger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Illa Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigèria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>República Federal de Nigèria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>República de Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Països Baixos</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Regne dels Països Baixos</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Noruega</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Regne de Noruega</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>República Federal Democràtica del Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>República de Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nova Zelanda</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanat d'Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panamà</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>República de Panamà</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Perú</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>República de Perú</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polinèsia francesa</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Nova Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Estat Independent de Papua Nova Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipines</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>República de les Filipines</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>República Islàmica de Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polònia</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>República de Polònia</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint Pierre i Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestina, Estat de</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Estat de Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>República Portuguesa</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>República de Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguai</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>República de Paraguai</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Estat de Qatar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Reunió</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Romania</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Sèrbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>República de Sèrbia</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Federació Russa</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>República Rwandesa</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Aràbia Saudita</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Regne d'Aràbia Saudita</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Illes Salomó</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>República de Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>República del Sudan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Suècia</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Regne de Suècia</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>República de Singapur</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Saint Helena, Ascension i Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Eslovènia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>República d'Eslovènia</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard i Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Eslovàquia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>República Eslovaca</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>República de Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>República de San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>República del Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somàlia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>República Federal de Somàlia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>República de Surinam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sudan del Sud</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>República del Sudan del Sud</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tome i Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>República Democràtica de Sâo Tomé i Príncipe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>República d'El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (part neerlandesa)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (part neerlandesa)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>República Àrab Síria</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Illes Turks i Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Txad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>República del Txad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Territoris Francesos del Sud</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>República Togolesa</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tailàndia</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Regne de Tailàndia</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadjikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>República de Tadjikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor Oriental</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>República Democràtica de Timor Oriental</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunísia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>República de Tunísia</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Regne de Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinitat i Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>República de Trinitat i Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Província de Xina</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Província de Xina</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzània, República Unida de</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>República Unida de Tanzània</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ucraïna</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>República d'Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Illes Perifèriques Menors dels EUA</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Estats Units</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Estats Units d'Amèrica</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguai</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>República Oriental d'Uruguai</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>República d'Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Santa Seu (Estat del Vaticà)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent i les Grenadines</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Veneçuela, República Bolívariana de</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>República Bolívariana de Veneçuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Illes Verges, Britàniques</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Illes Verges Britàniques</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Illes Verges, EUA</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Illes Verges nordamericanes</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>República Socialista de Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>República de Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis i Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Estat Independent de Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Iemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>República de Iemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Sudàfrica</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>República de Sudàfrica</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zàmbia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>República de Zàmbia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>República de Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/ch.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/ch.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..56a6a2422db1e4a8a0835e8f6b5c2dbe0debf8e8
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/ch.countries.xlf
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="ch" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenia</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austria</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazil</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Alemaña</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>España</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlandia</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Micronesia</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francia</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guåhån</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesia</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italia</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Chapan</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituania</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Notte Mariånas</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Perú</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipinas</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polaki</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Estados Unidus</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..00bb0ebbdf4e8f5d8475f69ede2c78b34d8950df
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/countries.xlf
@@ -0,0 +1,1273 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AW.name" resname="AW.name">
+        <source>Aruba</source>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name">
+        <source>Afghanistan</source>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name">
+        <source>Islamic Republic of Afghanistan</source>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name">
+        <source>Angola</source>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name">
+        <source>Republic of Angola</source>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name">
+        <source>Anguilla</source>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name">
+        <source>Ã…land Islands</source>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name">
+        <source>Albania</source>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name">
+        <source>Republic of Albania</source>
+      </trans-unit>
+      <trans-unit id="AD.name" resname="AD.name">
+        <source>Andorra</source>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name">
+        <source>Principality of Andorra</source>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name">
+        <source>United Arab Emirates</source>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name">
+        <source>Argentina</source>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name">
+        <source>Argentine Republic</source>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name">
+        <source>Armenia</source>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name">
+        <source>Republic of Armenia</source>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name">
+        <source>American Samoa</source>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name">
+        <source>Antarctica</source>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name">
+        <source>French Southern Territories</source>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name">
+        <source>Antigua and Barbuda</source>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name">
+        <source>Australia</source>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name">
+        <source>Austria</source>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name">
+        <source>Republic of Austria</source>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name">
+        <source>Azerbaijan</source>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name">
+        <source>Republic of Azerbaijan</source>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name">
+        <source>Burundi</source>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name">
+        <source>Republic of Burundi</source>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name">
+        <source>Belgium</source>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name">
+        <source>Kingdom of Belgium</source>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name">
+        <source>Benin</source>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name">
+        <source>Republic of Benin</source>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name">
+        <source>Burkina Faso</source>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name">
+        <source>Bangladesh</source>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name">
+        <source>People's Republic of Bangladesh</source>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name">
+        <source>Bulgaria</source>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name">
+        <source>Republic of Bulgaria</source>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name">
+        <source>Bahrain</source>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name">
+        <source>Kingdom of Bahrain</source>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name">
+        <source>Bahamas</source>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name">
+        <source>Commonwealth of the Bahamas</source>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name">
+        <source>Bosnia and Herzegovina</source>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name">
+        <source>Republic of Bosnia and Herzegovina</source>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name">
+        <source>Saint Barthélemy</source>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name">
+        <source>Belarus</source>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name">
+        <source>Republic of Belarus</source>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name">
+        <source>Belize</source>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name">
+        <source>Bermuda</source>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name">
+        <source>Bolivia, Plurinational State of</source>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name">
+        <source>Plurinational State of Bolivia</source>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name">
+        <source>Brazil</source>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name">
+        <source>Federative Republic of Brazil</source>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name">
+        <source>Barbados</source>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name">
+        <source>Brunei Darussalam</source>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name">
+        <source>Bhutan</source>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name">
+        <source>Kingdom of Bhutan</source>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name">
+        <source>Bouvet Island</source>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name">
+        <source>Botswana</source>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name">
+        <source>Republic of Botswana</source>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name">
+        <source>Central African Republic</source>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name">
+        <source>Canada</source>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name">
+        <source>Cocos (Keeling) Islands</source>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name">
+        <source>Switzerland</source>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name">
+        <source>Swiss Confederation</source>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name">
+        <source>Chile</source>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name">
+        <source>Republic of Chile</source>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name">
+        <source>China</source>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name">
+        <source>People's Republic of China</source>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name">
+        <source>Côte d'Ivoire</source>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name">
+        <source>Republic of Côte d'Ivoire</source>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name">
+        <source>Cameroon</source>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name">
+        <source>Republic of Cameroon</source>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name">
+        <source>Congo, The Democratic Republic of the</source>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name">
+        <source>Congo</source>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name">
+        <source>Republic of the Congo</source>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name">
+        <source>Cook Islands</source>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name">
+        <source>Colombia</source>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name">
+        <source>Republic of Colombia</source>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name">
+        <source>Comoros</source>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name">
+        <source>Union of the Comoros</source>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name">
+        <source>Cabo Verde</source>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name">
+        <source>Republic of Cabo Verde</source>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name">
+        <source>Costa Rica</source>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name">
+        <source>Republic of Costa Rica</source>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name">
+        <source>Cuba</source>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name">
+        <source>Republic of Cuba</source>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name">
+        <source>Curaçao</source>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name">
+        <source>Curaçao</source>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name">
+        <source>Christmas Island</source>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name">
+        <source>Cayman Islands</source>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name">
+        <source>Cyprus</source>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name">
+        <source>Republic of Cyprus</source>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name">
+        <source>Czechia</source>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name">
+        <source>Czech Republic</source>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name">
+        <source>Germany</source>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name">
+        <source>Federal Republic of Germany</source>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name">
+        <source>Djibouti</source>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name">
+        <source>Republic of Djibouti</source>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name">
+        <source>Dominica</source>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name">
+        <source>Commonwealth of Dominica</source>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name">
+        <source>Denmark</source>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name">
+        <source>Kingdom of Denmark</source>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name">
+        <source>Dominican Republic</source>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name">
+        <source>Algeria</source>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name">
+        <source>People's Democratic Republic of Algeria</source>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name">
+        <source>Ecuador</source>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name">
+        <source>Republic of Ecuador</source>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name">
+        <source>Egypt</source>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name">
+        <source>Arab Republic of Egypt</source>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name">
+        <source>Eritrea</source>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name">
+        <source>the State of Eritrea</source>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name">
+        <source>Western Sahara</source>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name">
+        <source>Spain</source>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name">
+        <source>Kingdom of Spain</source>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name">
+        <source>Estonia</source>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name">
+        <source>Republic of Estonia</source>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name">
+        <source>Ethiopia</source>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name">
+        <source>Federal Democratic Republic of Ethiopia</source>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name">
+        <source>Finland</source>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name">
+        <source>Republic of Finland</source>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name">
+        <source>Fiji</source>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name">
+        <source>Republic of Fiji</source>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name">
+        <source>Falkland Islands (Malvinas)</source>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name">
+        <source>France</source>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name">
+        <source>French Republic</source>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name">
+        <source>Faroe Islands</source>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name">
+        <source>Micronesia, Federated States of</source>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name">
+        <source>Federated States of Micronesia</source>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name">
+        <source>Gabon</source>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name">
+        <source>Gabonese Republic</source>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name">
+        <source>United Kingdom</source>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name">
+        <source>Georgia</source>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name">
+        <source>Guernsey</source>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name">
+        <source>Ghana</source>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name">
+        <source>Republic of Ghana</source>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name">
+        <source>Gibraltar</source>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name">
+        <source>Guinea</source>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name">
+        <source>Republic of Guinea</source>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name">
+        <source>Guadeloupe</source>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name">
+        <source>Gambia</source>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name">
+        <source>Republic of the Gambia</source>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name">
+        <source>Guinea-Bissau</source>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name">
+        <source>Republic of Guinea-Bissau</source>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name">
+        <source>Equatorial Guinea</source>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name">
+        <source>Republic of Equatorial Guinea</source>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name">
+        <source>Greece</source>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name">
+        <source>Hellenic Republic</source>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name">
+        <source>Grenada</source>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name">
+        <source>Greenland</source>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name">
+        <source>Guatemala</source>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name">
+        <source>Republic of Guatemala</source>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name">
+        <source>French Guiana</source>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name">
+        <source>Guam</source>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name">
+        <source>Guyana</source>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name">
+        <source>Republic of Guyana</source>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name">
+        <source>Hong Kong</source>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name">
+        <source>Hong Kong Special Administrative Region of China</source>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name">
+        <source>Heard Island and McDonald Islands</source>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name">
+        <source>Honduras</source>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name">
+        <source>Republic of Honduras</source>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name">
+        <source>Croatia</source>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name">
+        <source>Republic of Croatia</source>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name">
+        <source>Haiti</source>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name">
+        <source>Republic of Haiti</source>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name">
+        <source>Hungary</source>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name">
+        <source>Hungary</source>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name">
+        <source>Indonesia</source>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name">
+        <source>Republic of Indonesia</source>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name">
+        <source>Isle of Man</source>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name">
+        <source>India</source>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name">
+        <source>Republic of India</source>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name">
+        <source>British Indian Ocean Territory</source>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name">
+        <source>Ireland</source>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name">
+        <source>Iran, Islamic Republic of</source>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name">
+        <source>Islamic Republic of Iran</source>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name">
+        <source>Iraq</source>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name">
+        <source>Republic of Iraq</source>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name">
+        <source>Iceland</source>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name">
+        <source>Republic of Iceland</source>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name">
+        <source>Israel</source>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name">
+        <source>State of Israel</source>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name">
+        <source>Italy</source>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name">
+        <source>Italian Republic</source>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name">
+        <source>Jamaica</source>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name">
+        <source>Jersey</source>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name">
+        <source>Jordan</source>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name">
+        <source>Hashemite Kingdom of Jordan</source>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name">
+        <source>Japan</source>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name">
+        <source>Kazakhstan</source>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name">
+        <source>Republic of Kazakhstan</source>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name">
+        <source>Kenya</source>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name">
+        <source>Republic of Kenya</source>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name">
+        <source>Kyrgyzstan</source>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name">
+        <source>Kyrgyz Republic</source>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name">
+        <source>Cambodia</source>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name">
+        <source>Kingdom of Cambodia</source>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name">
+        <source>Kiribati</source>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name">
+        <source>Republic of Kiribati</source>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name">
+        <source>Saint Kitts and Nevis</source>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name">
+        <source>Korea, Republic of</source>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name">
+        <source>Kuwait</source>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name">
+        <source>State of Kuwait</source>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name">
+        <source>Lao People's Democratic Republic</source>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name">
+        <source>Lebanon</source>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name">
+        <source>Lebanese Republic</source>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name">
+        <source>Liberia</source>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name">
+        <source>Republic of Liberia</source>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name">
+        <source>Libya</source>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name">
+        <source>Libya</source>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name">
+        <source>Saint Lucia</source>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name">
+        <source>Liechtenstein</source>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name">
+        <source>Principality of Liechtenstein</source>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name">
+        <source>Sri Lanka</source>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name">
+        <source>Lesotho</source>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name">
+        <source>Kingdom of Lesotho</source>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name">
+        <source>Lithuania</source>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name">
+        <source>Republic of Lithuania</source>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name">
+        <source>Luxembourg</source>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name">
+        <source>Grand Duchy of Luxembourg</source>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name">
+        <source>Latvia</source>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name">
+        <source>Republic of Latvia</source>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name">
+        <source>Macao</source>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name">
+        <source>Macao Special Administrative Region of China</source>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name">
+        <source>Saint Martin (French part)</source>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name">
+        <source>Morocco</source>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name">
+        <source>Kingdom of Morocco</source>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name">
+        <source>Monaco</source>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name">
+        <source>Principality of Monaco</source>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name">
+        <source>Moldova, Republic of</source>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name">
+        <source>Republic of Moldova</source>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name">
+        <source>Madagascar</source>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name">
+        <source>Republic of Madagascar</source>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name">
+        <source>Maldives</source>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name">
+        <source>Republic of Maldives</source>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name">
+        <source>Mexico</source>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name">
+        <source>United Mexican States</source>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name">
+        <source>Marshall Islands</source>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name">
+        <source>Republic of the Marshall Islands</source>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name">
+        <source>North Macedonia</source>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name">
+        <source>Republic of North Macedonia</source>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name">
+        <source>Mali</source>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name">
+        <source>Republic of Mali</source>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name">
+        <source>Malta</source>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name">
+        <source>Republic of Malta</source>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name">
+        <source>Myanmar</source>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name">
+        <source>Republic of Myanmar</source>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name">
+        <source>Montenegro</source>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name">
+        <source>Montenegro</source>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name">
+        <source>Mongolia</source>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name">
+        <source>Northern Mariana Islands</source>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name">
+        <source>Mozambique</source>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name">
+        <source>Republic of Mozambique</source>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name">
+        <source>Mauritania</source>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name">
+        <source>Islamic Republic of Mauritania</source>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name">
+        <source>Montserrat</source>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name">
+        <source>Martinique</source>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name">
+        <source>Mauritius</source>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name">
+        <source>Republic of Mauritius</source>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name">
+        <source>Malawi</source>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name">
+        <source>Republic of Malawi</source>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name">
+        <source>Malaysia</source>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name">
+        <source>Mayotte</source>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name">
+        <source>Namibia</source>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name">
+        <source>Republic of Namibia</source>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name">
+        <source>New Caledonia</source>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name">
+        <source>Niger</source>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name">
+        <source>Republic of the Niger</source>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name">
+        <source>Norfolk Island</source>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name">
+        <source>Nigeria</source>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name">
+        <source>Federal Republic of Nigeria</source>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name">
+        <source>Nicaragua</source>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name">
+        <source>Republic of Nicaragua</source>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name">
+        <source>Niue</source>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name">
+        <source>Niue</source>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name">
+        <source>Netherlands</source>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name">
+        <source>Kingdom of the Netherlands</source>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name">
+        <source>Norway</source>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name">
+        <source>Kingdom of Norway</source>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name">
+        <source>Nepal</source>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name">
+        <source>Federal Democratic Republic of Nepal</source>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name">
+        <source>Nauru</source>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name">
+        <source>Republic of Nauru</source>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name">
+        <source>New Zealand</source>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name">
+        <source>Oman</source>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name">
+        <source>Sultanate of Oman</source>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name">
+        <source>Pakistan</source>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name">
+        <source>Islamic Republic of Pakistan</source>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name">
+        <source>Panama</source>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name">
+        <source>Republic of Panama</source>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name">
+        <source>Pitcairn</source>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name">
+        <source>Peru</source>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name">
+        <source>Republic of Peru</source>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name">
+        <source>Philippines</source>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name">
+        <source>Republic of the Philippines</source>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name">
+        <source>Palau</source>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name">
+        <source>Republic of Palau</source>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name">
+        <source>Papua New Guinea</source>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name">
+        <source>Independent State of Papua New Guinea</source>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name">
+        <source>Poland</source>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name">
+        <source>Republic of Poland</source>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name">
+        <source>Puerto Rico</source>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name">
+        <source>Korea, Democratic People's Republic of</source>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name">
+        <source>Democratic People's Republic of Korea</source>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name">
+        <source>Portugal</source>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name">
+        <source>Portuguese Republic</source>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name">
+        <source>Paraguay</source>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name">
+        <source>Republic of Paraguay</source>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name">
+        <source>Palestine, State of</source>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name">
+        <source>the State of Palestine</source>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name">
+        <source>French Polynesia</source>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name">
+        <source>Qatar</source>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name">
+        <source>State of Qatar</source>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name">
+        <source>Réunion</source>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name">
+        <source>Romania</source>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name">
+        <source>Russian Federation</source>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name">
+        <source>Rwanda</source>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name">
+        <source>Rwandese Republic</source>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name">
+        <source>Saudi Arabia</source>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name">
+        <source>Kingdom of Saudi Arabia</source>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name">
+        <source>Sudan</source>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name">
+        <source>Republic of the Sudan</source>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name">
+        <source>Senegal</source>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name">
+        <source>Republic of Senegal</source>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name">
+        <source>Singapore</source>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name">
+        <source>Republic of Singapore</source>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name">
+        <source>South Georgia and the South Sandwich Islands</source>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name">
+        <source>Svalbard and Jan Mayen</source>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name">
+        <source>Solomon Islands</source>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name">
+        <source>Sierra Leone</source>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name">
+        <source>Republic of Sierra Leone</source>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name">
+        <source>El Salvador</source>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name">
+        <source>Republic of El Salvador</source>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name">
+        <source>San Marino</source>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name">
+        <source>Republic of San Marino</source>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name">
+        <source>Somalia</source>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name">
+        <source>Federal Republic of Somalia</source>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name">
+        <source>Saint Pierre and Miquelon</source>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name">
+        <source>Serbia</source>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name">
+        <source>Republic of Serbia</source>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name">
+        <source>South Sudan</source>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name">
+        <source>Republic of South Sudan</source>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name">
+        <source>Sao Tome and Principe</source>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name">
+        <source>Suriname</source>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name">
+        <source>Republic of Suriname</source>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name">
+        <source>Slovakia</source>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name">
+        <source>Slovak Republic</source>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name">
+        <source>Slovenia</source>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name">
+        <source>Republic of Slovenia</source>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name">
+        <source>Sweden</source>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name">
+        <source>Kingdom of Sweden</source>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name">
+        <source>Eswatini</source>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name">
+        <source>Kingdom of Eswatini</source>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name">
+        <source>Sint Maarten (Dutch part)</source>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name">
+        <source>Sint Maarten (Dutch part)</source>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name">
+        <source>Seychelles</source>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name">
+        <source>Republic of Seychelles</source>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name">
+        <source>Syrian Arab Republic</source>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name">
+        <source>Turks and Caicos Islands</source>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name">
+        <source>Chad</source>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name">
+        <source>Republic of Chad</source>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name">
+        <source>Togo</source>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name">
+        <source>Togolese Republic</source>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name">
+        <source>Thailand</source>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name">
+        <source>Kingdom of Thailand</source>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name">
+        <source>Tajikistan</source>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name">
+        <source>Republic of Tajikistan</source>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name">
+        <source>Tokelau</source>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name">
+        <source>Turkmenistan</source>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name">
+        <source>Timor-Leste</source>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name">
+        <source>Democratic Republic of Timor-Leste</source>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name">
+        <source>Tonga</source>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name">
+        <source>Kingdom of Tonga</source>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name">
+        <source>Trinidad and Tobago</source>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name">
+        <source>Republic of Trinidad and Tobago</source>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name">
+        <source>Tunisia</source>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name">
+        <source>Republic of Tunisia</source>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name">
+        <source>Türkiye</source>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name">
+        <source>Republic of Türkiye</source>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name">
+        <source>Tuvalu</source>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name">
+        <source>Taiwan, Province of China</source>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name">
+        <source>Taiwan, Province of China</source>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name">
+        <source>Tanzania, United Republic of</source>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name">
+        <source>United Republic of Tanzania</source>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name">
+        <source>Uganda</source>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name">
+        <source>Republic of Uganda</source>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name">
+        <source>Ukraine</source>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name">
+        <source>United States Minor Outlying Islands</source>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name">
+        <source>Uruguay</source>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name">
+        <source>Eastern Republic of Uruguay</source>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name">
+        <source>United States</source>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name">
+        <source>United States of America</source>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name">
+        <source>Uzbekistan</source>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name">
+        <source>Republic of Uzbekistan</source>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name">
+        <source>Holy See (Vatican City State)</source>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name">
+        <source>Saint Vincent and the Grenadines</source>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name">
+        <source>Venezuela, Bolivarian Republic of</source>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name">
+        <source>Bolivarian Republic of Venezuela</source>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name">
+        <source>Virgin Islands, British</source>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name">
+        <source>British Virgin Islands</source>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name">
+        <source>Virgin Islands, U.S.</source>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name">
+        <source>Virgin Islands of the United States</source>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name">
+        <source>Viet Nam</source>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name">
+        <source>Socialist Republic of Viet Nam</source>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name">
+        <source>Vanuatu</source>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name">
+        <source>Republic of Vanuatu</source>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name">
+        <source>Wallis and Futuna</source>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name">
+        <source>Samoa</source>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name">
+        <source>Independent State of Samoa</source>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name">
+        <source>Yemen</source>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name">
+        <source>Republic of Yemen</source>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name">
+        <source>South Africa</source>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name">
+        <source>Republic of South Africa</source>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name">
+        <source>Zambia</source>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name">
+        <source>Republic of Zambia</source>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name">
+        <source>Zimbabwe</source>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name">
+        <source>Republic of Zimbabwe</source>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/cs.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/cs.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..ad741e3aceb5788dd9b09477002b4ad6d25ce043
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/cs.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="cs" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Andorrské knížectví</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Spojené arabské emiráty</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghánistán</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Afghánistánská islámská republika</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua a Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albánie</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Albánská republika</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Arménie</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Arménská republika</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Angolská republika</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktida</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentinská republika</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Americká Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Rakousko</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Rakouská republika</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Austrálie</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ålandské ostrovy</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Ázerbájdžán</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Ázerbájdžánská republika</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosna a Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republika Bosna a Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladéš</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Bangladéšská lidová republika</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgie</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Belgické království</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulharsko</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Bulharská republika</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrajn</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Bahrajnské království</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Burundská republika</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Beninská republika</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Svatý Bartoloměj</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermudy</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunej</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Mnohonárodní stát Bolívie</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Mnohonárodní stát Bolívie</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Svatý Eustach a Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Svatý Eustach a Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazílie</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Brazilská federativní republika</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamy</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Bahamské společenství</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhútán</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Bhútánské království</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvetův ostrov</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Botswanská republika</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bělorusko</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Běloruská republika</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kokosové ostrovy</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Konžská demokratická republika</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Středoafrická republika</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Konžská republika</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Švýcarsko</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Švýcarská konfederace</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Pobřeží slonoviny</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republika Pobřeží slonoviny</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cookovy ostrovy</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Chilská republika</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Kamerunská republika</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Čína</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Čínská lidová republika</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbie</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Kolumbijská republika</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kostarika</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Kostarická republika</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Kubánská republika</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Kapverdské ostrovy</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Kapverdská republika</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Vánoční ostrov</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Kypr</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Kyperská republika</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>ÄŒesko</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Česká republika</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Německo</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Spolková republika Německo</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Džibutsko</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Džibutská republika</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Dánsko</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Dánské království</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Dominické společenství</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikánská republika</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Alžírsko</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Alžírská lidová demokratická republika</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekvádor</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Ekvádoská republika</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonsko</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Estonská republika</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egypt</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Egyptská arabská republika</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Západní Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Stát Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Španělsko</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Španělské království</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopie</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Etiopská federativní demokratická republika</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finsko</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Finská republika</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidži</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Fidžijská republika</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falkandské ostrovy (Malvíny)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronésie, federativní státy</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Federativní státy Mikronésie</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Faerské ostrovy</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francie</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Francouzská republika</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gabonská republika</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Spojené království</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Spojené království Velké Británie a Severního Irska</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gruzie</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Francouzská Guayana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Ghanská republika</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grónsko</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambie</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Gambijská republika</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Guinejská republika</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Rovníková Guinea</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republika Rovníková Guinea</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Řecko</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Řecká republika</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Jižní Georgie a Jižní Sandwichovy ostrovy</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Guatemalská republika</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republika Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Guyanská republika</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hongkong, zvláštní administrativní oblast Číny</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heardův a McDonaldovy ostrovy</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Honduraská republika</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Chorvatsko</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Chorvatská republika</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Haitská republika</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Maďarsko</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Maďarsko</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonésie</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Indonéská republika</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irsko</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Izrael</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Stát Izrael</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Ostrov Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indie</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Indická republika</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Britské indickooceánské území</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irák</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Irácká republika</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Írán, islámská republika</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Íránská islámská republika</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Island</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Islandská republika</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Itálie</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Italská republika</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamajka</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordánsko</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Jordánské hášimovské království</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japonsko</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Keňa</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Keňská republika</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kyrgyzstán</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kyrgyzská republika</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kambodžské království</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Kiribatská republika</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komory</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Komorský svaz</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Svatý Kryštof a Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Korea, lidově demokratická republika</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Korejská lidově demokratická republika</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Korea, republika</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuvajt</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Stát Kuvajt</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kajmanské ostrovy</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazachstán</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Kazachstánská republika</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laoská lidově demokratická republika</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libanonská republika</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Svatá Lucie</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Lichtenštejnsko</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Lichtenštejnské knížectví</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Šrí Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Šrílanská demokratická socialistická republika</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Libérie</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Liberijská republika</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Lesothské království</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litva</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Litevská republika</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Lucembursko</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Lucemburské velkovévodství</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Lotyšsko</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Lotyšská republika</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libye</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libye</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Marocké království</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Monacké knížectví</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavská republika</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Moldavská republika</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Černá Hora</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Černá Hora</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Svatý Martin (francouzská část)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Madagaskarská republika</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshallovy ostrovy</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republika Marshallovy ostrovy</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Severní Makedonie</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republika Severní Makedonie</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Maliská republika</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republika Myanmarský svaz</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolsko</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Macao, zvláštní administrativní oblast Číny</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Severní Mariany</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Společenství Severních Marian</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinik</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritánie</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Mauritánská islámská republika</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Maltská republika</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauricius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Mauricijská republika</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maledivy</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Maledivská republika</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Malawská republika</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Spojené státy mexické</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malajsie</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mosambik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Mosambická republika</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibie</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Namibijská republika</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nová Kaledonie</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Nigerská republika</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolkský ostrov</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigérie</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Nigerijská federativní republika</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Nikaragujská republika</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Nizozemsko</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Nizozemské království</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norsko</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Norské království</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepál</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Nepálská federativní demokratická republika</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Naurská republika</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nový Zéland</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omán</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Ománský sultanát</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Panamská republika</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Peruánská republika</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Francouzská Polynésie</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Nová Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Nezávislý stát Papua-Nová Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipíny</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Filipínská republika</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pákistán</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Pákistánská islámská republika</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polsko</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Polská republika</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Svatý Pierre a Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairnovy ostrovy</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Portoriko</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestinský stát</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Stát Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugalsko</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugalská republika</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Palauská republika</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Paraguayská republika</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Stát Katar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumunsko</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Srbsko</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Srbská republika</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Ruská federace</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Rwandská republika</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saúdská Arábie</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Saúdskoarabské království</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Å alamounovy ostrovy</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychely</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Seychelská republika</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Súdán</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Súdánská republika</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Švédsko</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Švédské království</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Singapurská republika</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Svatá Helena, Ascension a Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovinsko</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Slovinská republika</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard a Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovensko</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovenská republika</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republika Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Sanmarinská republika</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Senegalská republika</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somálsko</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Somálská federativní republika</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Surinamská republika</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Jižní Súdán</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Jihosúdánská republika</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Svatý Tomáš a Princův ostrov</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Demokratická republika Svatý Tomáš a Princův ostrov</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Salvadorská republika</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Svatý Martin (nizozemská část)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Svatý Martin (nizozemská část)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Syrská arabská republika</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Svazijsko</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Svazijské království</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks a Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>ÄŒad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Čadská republika</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Francouzská jižní území</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Tožská republika</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thajsko</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Thajské království</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tádžikistán</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Tádžická republika</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Východní Timor</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Demokratická republika Východní Timor</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistán</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisko</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Tuniská republika</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Království Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad a Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republika Trinidad a Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tchaj-wan, provincie Číny</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tchaj-wan, provincie Číny</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzanie, sjednocená republika</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Sjednocená tanzanská republika</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukrajina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Ugandská republika</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Menší odlehlé ostrovy Spojených států</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Spojené státy</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Spojené státy americké</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Uruguayská východní republika</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistán</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Uzbecká republika</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Svatý stolec (Vatikánský městský stát)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Svatý Vincenc a Grenadiny</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Bolívarovská republika Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Bolívarovská republika Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Panenské ostrovy, britské</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Britské Panenské ostrovy</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Panenské ostrovy, americké</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Americké Panenské ostrovy</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Vietnamská socialistická republika</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Vanuatská republika</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis a Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Nezávislý stát Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Jemenská republika</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Jihoafrická republika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Jihoafrická republika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambie</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Zambijská republika</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Zimbabwská republika</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/cy.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/cy.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..bd7d3b57e77d8e05fececff54258436c8e802dda
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/cy.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="cy" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Tywysogaeth Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Emiriaethau Arabaidd Unedig</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Gweriniaeth Islamaidd Pacistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua ac Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albania</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Gweriniaeth Albania</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Gweriniaeth Armenia</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Gweriniaeth Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarctica</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Yr Ariannin</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Gweriniaeth yr Ariannin</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>American Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Awstria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Gweriniaeth Awstria</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Awstralia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ynysoedd Ã…land</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaijan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Gweriniaeth Azerbaijan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnia a Herzegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Gweriniaeth Bosnia a Herzegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Gweriniaeth Pobl Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Gwlad Belg</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Brenhiniaeth Belg</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bwlgaria</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Gweriniaeth Bwlgaria</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Teyrnas Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Gweriniaeth Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Gweriniaeth Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei Darussalam</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolifia, Gwladwriaeth Amlgenedlaethol</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Gwladwriaeth Amlgenedlaethol Bolifia</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius a Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius a Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Gweriniaeth Ffedereiddiol Brasil</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Y Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Cymanwlad y Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Brenhiniaeth Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Ynys Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Gweriniaeth Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Belarws</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Gweriniaeth Belarws</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belîs</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Ynysoedd Cocos (Keeling)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Congo, Gweriniaeth Ddemocrataidd y</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Gweriniaeth Canol Affrica</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Congo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Gweriniaeth y Congo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Y Swistir</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Y Conffederasiwn Swisaidd</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Côte d'Ivoire</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Gweriniaeth Côte d'Ivoire</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Ynysoedd Cook</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Gweriniaeth Chile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Cameroon</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Gweriniaeth Cameroon</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Tsieina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Gweriniaeth Pobl Tseina</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Gweriniaeth Colombia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Gweriniaeth Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Ciwba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Gweriniaeth Ciwba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Penrhyn Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Gweriniaeth Penrhyn Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Ynys y Nadolig</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Cyprus</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Gweriniaeth Cyprus</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Tsiecia</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Y Weriniaeth Tsiec</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Yr Almaen</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Gweriniaeth Ffederal yr Almaen</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Gweriniaeth Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Denmarc</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Brenhiniaeth Denmarc</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Cymanwlad Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Gweriniaeth Dominica</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algeria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Gweriniaeth Democratic Pobl Algeria</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecwador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Gweriniaeth Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Gweriniaeth Estonia</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Yr Aifft</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Gweriniaeth Arabaidd yr Aifft</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Gorllewin Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Gwladwriaeth Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Sbaen</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Brenhiniaeth Sbaen</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Ethiopia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Gweriniaeth Democratic Ffederal Ethiopia</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Y Ffindir</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Gweriniaeth y Ffindir</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Ffiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Gweriniaeth Fiji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Ynysoedd y Falklands (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Micronesia, Taleithiau Cyfunol</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Taleithiau Cyfunol Micronesia</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Ynysoedd y Ffaro</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Ffrainc</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Gweriniaeth Ffrainc</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gweriniaeth Gabon</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Y Deyrnas Unedig</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Teyrnas Unedig Prydain Fawr a Gogledd Iwerddon</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guiana Ffrangeg</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Gweriniaeth Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Greenland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Gweriniaeth Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Gweriniaeth Guinea</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Guinea Cyhydeddol</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Gweriniaeth Guinea Cyhydeddol</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Groeg</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Gweriniaeth Groeg</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>De Georgia ac Ynysoedd De Sandwich</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Gwatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Gweriniaeth Gwatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Gweriniaeth Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Gweriniaeth Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hong Kong, Rhanbarth Gweinyddol Arbennig o Tseina</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Ynys Heard ac Ynysoedd McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Gweriniaeth Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Croatia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Gweriniaeth Croatia</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Gweriniaeth Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hwngari</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hwngari</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Gweriniaeth Indonesia</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Iwerddon</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Talaith Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Ynys Manaw</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>India</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Gweriniaeth India</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>British Indian Ocean Territory</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irac</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Gweriniaeth Irac</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, Gweriniaeth Islamaidd</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Gweriniaeth Islamaidd Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Gwlad yr Iâ</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Gweriniaeth Gwlad yr Iâ</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Yr Eidal</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Gweriniaeth yr Eidal</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Gwlad Yr Iorddonen</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Gweriniaeth Hashemeit yr Iorddonen</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japan</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Gweriniaeth Kenya</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kyrgyzstan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Gweriniaeth Kyrgyz</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Cambodia</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Brenhiniaeth Cambodia</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Gweriniaeth y Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comoros</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Undeb y Comoros</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts a Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Korea (Gweriniaeth Democrataidd Pobl)</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Gweriniaeth Democratic Corëa</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Corëa, Gweriniaeth</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Coweit</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Talaith Coweit</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Ynysoedd y Cayman</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakhstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Gweriniaeth Kazakhstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Gweriniaeth Ddemocrataidd y Bobl Lao</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Lebanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Gweriniaeth Lebanon</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Tywysogaeth Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Gweriniaeth Sosialaidd Democrataidd Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Gweriniaeth Liberia</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Brenhiniaeth Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lithwania</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Gweriniaeth Lithwania</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Lwcsembwrg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Archddugiaeth Lwcsembwrg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Latfia</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Gweriniaeth Latfia</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Moroco</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Brenhiniaeth Morocco</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Tywysogaeth Monaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldofa, Gweriniaeth</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Gweriniaeth Moldova</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint Martin (rhan Ffrengig)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Gweriniaeth Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Ynysoedd Marshall</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Gweriniaeth Ynysoedd Marshall</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Gogledd Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Gweriniaeth Gogledd Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Gweriniaeth Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Gweriniaeth Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Rhanbarth Gweinyddol Arbennig o Tseina Macao</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Ynysoedd Northern Mariana</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Cymanwlad Ynysoedd Gogleddol Mariana</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Gweriniaeth Islamaidd Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Gweriniaeth Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Gweriniaeth Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldives</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Gweriniaeth y Maldives</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Gweriniaeth Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mecsico</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Taleithiau Unedig Mecsico</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malaysia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambique</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Gweriniaeth Mozambique</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Gweriniaeth Namibia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Caledonia Newydd</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Gweriniaeth Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Ynys Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Gweriniaeth Ffederal Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Gweriniaeth Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Yr Iseldiroedd</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Brenhiniaeth yr Iseldiroedd</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norwy</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Brenhiniaeth Norwy</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Gweriniaeth Ddemocrataidd Ffederal Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Gweriniaeth Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Seland Newydd</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Swltaniaeth Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Gweriniaeth Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Periw</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Gweriniaeth Periw</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polynesia Ffrangeg</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Guinea Newydd</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Talaith Annibynol Papua Gini Newydd</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Pilipinas</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Gweriniaeth y Pilipinas</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pacistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Gweriniaeth Islamaidd Pacistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Gwlad Pwyl</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Gweriniaeth Gwlad Pwyl</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint Pierre a Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestina, Gwladwriaeth</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Gwladwriaeth Palesteina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portiwgal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Gweriniaeth Portiwgal</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Gweriniaeth Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Gweriniaeth Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Talaith Qatar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rwmania</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Gweriniaeth Serbia</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Ffederasiwn Rwsia</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Gweriniaeth Rwanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudi Arabia</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Gweriniaeth Saudi Arabia</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Ynysoedd Solomon</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Gweriniaeth y Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Y Swdan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Gweriniaeth y Swdan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Sweden</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Gweriniaeth y Swdan</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapore</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Gweriniaeth Singapore</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Saint Helena, Dyrchafael a Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slofenia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Gweriniaeth Slofenia</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard a Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slofacia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Gweriniaeth Slofacaidd</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Gweriniaeth Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Gweriniaeth San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Gweriniaeth Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Gweriniaeth Ffederal Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Suriname</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Gweriniaeth y Suriname</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>De Swdan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Gweriniaeth De Swdan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tome a Principe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Gweriniaeth Democrataidd Sao Tome a Principe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Gweriniaeth El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Rhan Iseldiraidd)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Rhan Iseldiraidd)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Gweriniaeth Arabaidd Syria</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Eswatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Deyrnas Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Ynysoedd y Turks a Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Chad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Gweriniaeth Chad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>French Southern Territories</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Gweriniaeth Togo</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Gwlad Thai</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Brenhiniaeth Gwlad Thai</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tajikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Gweriniaeth Tajikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Gweriniaeth Democratic Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Twnisia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Gweriniaeth Twnisia</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Brenhiniaeth Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad a Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Gweriniaeth Trinidad a Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Talaith o Tseina</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Talaith o Tseina</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzania, Gweriniaeth Unedig</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Gweriniaeth Unedig Tanzania</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Wcrain</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Gweriniaeth Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Mân Ynysoedd Pellenig yr Unol Daleithiau</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Yr Unol Daleithiau</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Unol Daleithiau America</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Gweriniaeth Dwyreiniol Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Wsbecistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Gweriniaeth Wsbecistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Yr Esgobaeth Sanctaidd (Talaith Dinas y Fatican)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent a'r Grenadines</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Gweriniaeth Bolifaraidd</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Gweriniaeth Bolifiaraidd Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Ynysoedd Virgin, Prydeinig</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Ynysoedd Virgin Prydain</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Ynysoedd Virgin, U.D.A.</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Ynysoedd Virgin Unol Daleithiau America</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Fietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Gweriniaeth Sosialaidd Fietnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Gweriniaeth Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis a Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Talaith Annibynol Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Gweriniaeth Yemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>De Affrica</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Gweriniaeth De Affrica</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Gweriniaeth Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Gweriniaeth Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/da.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/da.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..2301ebbc0315bbd26596a3c817f869ea9f060a98
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/da.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="da" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Fyrstendømmet Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Forenede Arabiske Emirater</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Den Islamiske Republik Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua og Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanien</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republikken Albanien</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenien</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republikken Armenien</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republikken Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktis</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentinske Republik</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Amerikansk Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Østrig</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republikken Østrig</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australien</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ã…land</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Aserbajdsjan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republikken Aserbajdsjan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnien-Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republikken Bosnien-Herzegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Folkerepublikken Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgien</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Kongeriget Belgien</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgarien</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republikken Bulgarien</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Kongedømmet Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republikken Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republikken Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Sankt Bartolomæus</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivia, Den Plurinationale Stat</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Den Plurinationale Stat Bolivia</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius og Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius og Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasilien</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Den Føderative Republik Brasilien</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Commonwealth of the Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Kongedømmet Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvet-øen</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republikken Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Hviderusland</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republikken Hviderusland</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Cocosøerne (Keelingøerne)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Den Demokratiske Republik Congo</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Centralafrikanske Republik</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Congo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republikken Congo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Schweiz</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Det Schweiziske Forbund</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Elfenbenskysten</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republikken Elfenbenskysten</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cookøerne</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republikken Chile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Cameroun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republikken Cameroon</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Kina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Folkerepublikken Kina</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republikken Colombia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republikken Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republikken Cuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Kap Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republikken Kap Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Juleøen</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Cypern</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republikken Cypern</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Tjekkiet</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Tjekkiet</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Tyskland</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Forbundsrepublikken Tyskland</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republikken Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danmark</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Kongeriget Danmark</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Commonwealth of Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikanske Republik</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algeriet</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Den Demokratiske Folkerepublik Algeriet</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republikken Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estland</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republikken Estland</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egypten</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Den Arabiske Republik Egypten</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Vestsahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Staten Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spanien</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Kongeriget Spanien</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopien</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Den Føderative Demokratiske Republik Etiopien</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finland</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republikken Finland</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republikken Fiji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandsøerne (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronesiens Forenede Stater</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Mikronesiens Forenede Stater</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Færøerne</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Frankrig</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Den Franske Republik</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Den Gabonesiske Republik</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Storbritannien</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Det Forenede Kongerige Storbritannien og Nordirland</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgien</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Fransk Guyana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Republikken Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grønland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republikken Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republikken Guinea</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ækvatorialguinea</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republikken Ækvatorialguinea</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grækenland</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Den Hellenske Republik</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>South Georgia og De Sydlige Sandwichøer</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republikken Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republikken Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Republikken Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Det Særlige Administrative Område Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heard-øen og McDonald-øerne</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republikken Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroatien</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republikken Kroatien</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republikken Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungarn</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungarn</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesien</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Republikken Indonesien</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irland</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Staten Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Isle of Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indien</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Republikken Indien</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Det britiske territorium i Det Indiske Ocean</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Republikken Irak</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, Den Islamiske Republik</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Den Islamiske Republik Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Island</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Republikken Island</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italien</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Den Italienske Republik</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordan</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Det Hashemitiske Kongerige Jordan</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japan</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Republikken Kenya</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgisistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Den Kirgisiske Republik</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Cambodja</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kongeriget Cambodia</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Republikken Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comorerne</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Unionen Comorerne</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Sankt Kitts og Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Korea, Den Demokratiske Folkerepublik</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Den Demokratiske Folkerepublik Korea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Korea, Republikken</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Staten Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Caymanøerne</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kasakhstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Republikken Kasakhstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Lao, Folkets Demokratiske Republik</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Den Libanesiske Republik</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Sankt Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Fyrstendømmet Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Den Demokratiske Socialistiske Republik Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republikken Liberia</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Kongeriget Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litauen</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Republikken Litauen</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxembourg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Storhertugdømmet Luxembourg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letland</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Republikken Letland</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libyen</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libyen</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marokko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Kongeriget Marokko</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Fyrstendømmet Monaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldova, Republikken</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Republikken Moldova</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Sankt Martin (Fransk del)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Republikken Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshalløerne</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republikken Marshalløerne</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Nordmakedonien</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republikken Nordmakedonien</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republikken Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Burma</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republikken Burma</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongoliet</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Det Særlige Administrative Område Macao</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Nordmarianerne</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Nordmarianerne</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauretanien</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Den Islamiske Republik Mauretanien</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Republikken Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republikken Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldiverne</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Republikken Maldiverne</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Republikken Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexico</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>De Forenede Mexicanske Stater</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malaysia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mocambique</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Republikken Mozambique</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Republikken Namibia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Ny Kaledonien</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republikken Niger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolk Øen</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Forbundsrepublikken Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Republikken Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Holland</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Kongeriget Nederlandene</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norge</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Kongeriget Norge</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Den Føderale Demokratiske Republik Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Republikken auru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>New Zealand</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanatet Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republikken Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Republikken Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Fransk Polynesien</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Ny Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Den Uafhængige Stat Papua Ny Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filippinerne</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Republikken Filippinerne</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Den Islamiske Republik Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polen</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Republikken Polen</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Sankt Pierre og Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palæstina, staten</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Staten Palæstina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Den Portugisiske Republik</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republikken Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Republikken Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Staten Qatar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumænien</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbien</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republikken Serbien</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Russiske føderation</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Den Rwandiske Republik</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudi-Arabien</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Kongeriget Saudi-Arabien</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Salomonøerne</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychellerne</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republikken Seychellerne</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Republikken Sudan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Sverige</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Kongeriget Sverige</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapore</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Republikken Singapore</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Sankt Helena, Ascension og Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenien</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Republikken Slovenien</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard og Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovakiet</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Den Slovakiske Republik</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republikken Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Republikken San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republikken Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Forbundsrepublikken Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Republikken Surinam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sydsudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republikken Sydsudan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>São Tomé og Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Den Demokratiske Republik São Tomé og Príncipe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republikken El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (hollandsk del)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (hollandsk del)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Syriske Arabiske Republik</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Eswatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kongeriget Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks- og Caicosøerne</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Tchad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republikken Tchad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Sydlige Franske Territorier</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Den Togolesiske Republik</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thailand</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Kongeriget Thailand</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadsjikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republikken Tadsjikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Den Demokratiske Republik Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunesien</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Den Tunesiske Republik</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Kongeriget Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad og Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republikken Trinidad og Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Den Kinesiske Provins</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Den Kinesiske Provins</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzania, Den Forenede Republik</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Den Forenede Republik Tanzania</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukraine</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Republikken Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>USA's ydre småøer</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>USA</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Amerikas Forenede Stater</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Den Østlige Republik Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Usbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Republikken Usbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Vatikanstaten</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Sankt Vincent og Grenadinerne</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Den Bolivariske Republik Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Den Bolivariske Republik Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Britiske Jomfruøer, De</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Britiske Jomfruøer, De</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Amerikanske Jomfruøer, De</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Amerikanske Jomfruøer, De</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Den Socialistiske Republik Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republikken Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis og Futunaøerne</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Den Uafhængige Stat Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republikken Yemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Sydafrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Republikken Sydafrika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republikken Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republikken Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/de.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/de.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..34d65178a6f0f7c128bf5de96e20773863b8fd54
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/de.countries.xlf
@@ -0,0 +1,1695 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="de" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Fürstentum Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Vereinigte Arabische Emirate</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Islamische Republik Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua und Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanien</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republik Albanien</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenien</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republik Armenien</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republik Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktis</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentinien</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentinische Republik</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Amerikanisch-Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Österreich</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republik Österreich</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australien</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ã…land-Inseln</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Aserbaidschan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republik Aserbaidschan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnien und Herzegowina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Bosnien und Herzegowina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesch</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Volksrepublik Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgien</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Königreich Belgien</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgarien</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republik Bulgarien</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Königreich Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republik Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republik Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint-Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei Darussalam</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivien, Plurinationaler Staat</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Plurinationaler Staat Bolivien</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius und Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius und Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasilien</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Föderative Republik Brasilien</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Commonwealth der Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Königreich Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvet-Insel</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botsuana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republik Botsuana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Weißrussland</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republik Weißrussland</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kokos-(Keeling-)Inseln</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Demokratische Republik Kongo</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Zentralafrikanische Republik</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republik Kongo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Schweiz</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Schweizerische Eidgenossenschaft</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Côte d'Ivoire</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republik Côte d'Ivoire</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cookinseln</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republik Chile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republik Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>China</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Volksrepublik China</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbien</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republik Kolumbien</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republik Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republik Kuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republik Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Weihnachtsinseln</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Zypern</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republik Zypern</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Tschechien</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Tschechische Republik</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Deutschland</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Bundesrepublik Deutschland</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Dschibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republik Dschibuti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Dänemark</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Königreich Dänemark</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Commonwealth Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikanische Republik</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algerien</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Demokratische Volksrepublik Algerien</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republik Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estland</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republik Estland</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Ägypten</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Arabische Republik Ägypten</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Westsahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Staat Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spanien</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Königreich Spanien</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Äthiopien</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Demokratische Bundesrepublik Äthiopien</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finnland</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republik Finnland</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidschi</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republik Fidschi</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandinseln (Malwinen)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronesien, Föderierte Staaten von</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Föderierte Staaten von Mikronesien</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Färöer-Inseln</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Frankreich</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Französische Republik</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabun</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gabunische Republik</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Vereinigtes Königreich</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Vereinigtes Königreich Großbritannien und Nordirland</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgien</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Französisch-Guyana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Republik Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grönland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republik Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republik Guinea</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Äquatorialguinea</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republik Äquatorialguinea</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Griechenland</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Hellenische Republik</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>South Georgia und die Südlichen Sandwichinseln</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republik Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republik Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Kooperative Republik Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Sonderverwaltungsregion Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heard und McDonaldinseln</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republik Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroatien</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republik Kroatien</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republik Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungarn</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungarn</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesien</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Republik Indonesien</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irland</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Staat Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Insel Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indien</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Republik Indien</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Britisches Territorium im Indischen Ozean</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Republik Irak</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, Islamische Republik</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Islamische Republik Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Island</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Republik Island</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italien</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Italienische Republik</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaika</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordanien</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Haschemitisches Königreich Jordanien</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japan</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Republik Kenia</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgisistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgisische Republik</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodscha</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Königreich Kambodscha</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Republik Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komoren</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Vereinigung der Komoren</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>St. Kitts und Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Korea, Demokratische Volksrepublik</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Demokratische Volksrepublik Korea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Korea, Republik</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Staat Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Cayman-Inseln</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kasachstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Republik Kasachstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laos, Demokratische Volksrepublik</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libanesische Republik</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>St. Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Fürstentum Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Demokratische sozialistische Republik Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republik Liberia</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Königreich Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litauen</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Republik Litauen</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Großherzogtum Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Lettland</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Republik Lettland</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libyen</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libyen</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marokko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Königreich Marokko</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Fürstentum Monaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldau, Republik</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Republik Moldau</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint Martin (Französischer Teil)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Republik Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshallinseln</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republik Marshallinseln</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Nordmazedonien</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republik Nordmazedonien</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republik Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republik Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolei</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Sonderverwaltungsregion Macao</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Nördliche Marianen</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Commonwealth Nördliche Mariana-Inseln</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauretanien</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Islamische Republik Mauretanien</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Republik Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republik Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Malediven</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Republik Malediven</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Republik Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Vereinigte Mexikanische Staaten</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malaysia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mosambik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Republik Mosambik</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Republik Namibia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Neukaledonien</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republik Niger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolkinsel</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Bundesrepublik Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Republik Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Niederlande</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Königreich der Niederlande</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norwegen</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Königreich Norwegen</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Demokratische Bundesrepublik Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Republik Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Neuseeland</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanat Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republik Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Republik Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Französisch-Polynesien</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua-Neuguinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Unabhängiger Staat Papua-Neuguinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Philippinen</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Republik der Philippinen</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Islamische Republik Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polen</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Republik Polen</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>St. Pierre und Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palästina, Staat</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Staat Palästina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugiesische Republik</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republik Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Republik Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Staat Katar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumänien</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbien</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republik Serbien</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Russische Föderation</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Republik Ruanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudi-Arabien</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Königreich Saudi-Arabien</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Salomoninseln</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychellen</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republik Seychellen</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Republik Sudan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Schweden</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Königreich Schweden</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Republik Singapur</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>St. Helena, Ascension und Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slowenien</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Republik Slowenien</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard und Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slowakei</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slowakische Republik</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republik Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Republik San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republik Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Bundesrepublik Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Suriname</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Republik Suriname</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Südsudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republik Südsudan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>São Tomé und Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Demokratische Republik São Tomé und Príncipe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republik El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Saint-Martin (Niederländischer Teil)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Saint-Martin (Niederländischer Teil)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Syrien, Arabische Republik</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Eswatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Königreich Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks- und Caicosinseln</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Tschad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republik Tschad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Französische Süd- und Antarktisgebiete</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Republik Togo</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thailand</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Königreich Thailand</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadschikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republik Tadschikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Demokratische Republik Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunesien</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Tunesische Republik</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Königreich Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name" approved="yes">
+        <source>Türkiye</source>
+        <target>Türkei</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republik Türkei</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad und Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republik Trinidad und Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Chinesische Provinz</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Chinesische Provinz</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tansania, Vereinigte Republik</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Vereinigte Republik Tansania</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukraine</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Republik Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>United States Minor Outlying Islands</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Vereinigte Staaten</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Vereinigte Staaten von Amerika</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Republik Östlich des Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Usbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Republik Usbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Heiliger Stuhl (Staat Vatikanstadt)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>St. Vincent und die Grenadinen</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Bolivarische Republik</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Bolivarische Republik Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Britische Jungferninseln</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Britische Jungferninseln</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Amerikanische Jungferninseln</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Amerikanische Jungferninseln</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Sozialistische Republik Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republik Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis und Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Unabhängiger Staat Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republik Jemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Südafrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Republik Südafrika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Sambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republik Sambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Simbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republik Simbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/el.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/el.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..ee558ae7de1b911037ad57857a4efa6fd2f1ca4b
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/el.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="el" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Ανδόρρα</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Πριγκιπάτο της Ανδόρρας</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Ηνωμένα Αραβικά Εμιράτα</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Αφγανιστάν</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Ισλαμική Δημοκρατία του Αφγανιστάν</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Αντίγκουα και Μπαρμπούντα</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Ανγκουίλα</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Αλβανία</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Δημοκρατία της Αλβανίας</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Αρμενία</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Δημοκρατία της Αρμενίας</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Ανγκόλα</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Δημοκρατία της Ανγκόλα</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Ανταρκτική</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Αργεντινή</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Δημοκρατία της Αργεντινής</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Αμερικανική Σαμόα</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Αυστρία</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Αυστριακή Δημοκρατία</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Αυστραλία</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Αρούμπα</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Νήσοι Ώλαντ</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Αζερμπαϊτζάν</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Δημοκρατία του Αζερμπαϊτζάν</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Βοσνία και Ερζεγοβίνη</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Δημοκρατία της Βοσνίας-Ερζεγοβίνης</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Μπαρμπάντος</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Μπανγκλαντές</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Λαϊκή Δημοκρατία του Μπανγκλαντές</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Βέλγιο</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Βασίλειο του Βελγίου</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Μπουρκίνα Φάσο</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Βουλγαρία</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Δημοκρατία της Βουλγαρίας</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Μπαχρέιν</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Βασίλειο του Μπαχρέιν</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Μπουρούντι</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Δημοκρατία του Μπουρούντι</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Μπενίν</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Δημοκρατία του Μπενίν</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Άγιος Βαρθολομαίος</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Βερμούδες</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Μπρουνέι Νταρουσαλάμ</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Βολιβία, Πολυεθνική Πολιτεία της</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Πολυεθνική Πολιτεία της Βολιβίας</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Μποναίρ, Άγιος Ευστράτιος και Σάμπα</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Μποναίρ, Άγιος Ευστράτιος και Σάμπα</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Βραζιλία</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Ομόσπονδη Δημοκρατία της Βραζιλίας</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Μπαχάμες</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Κοινοπολιτεία των Μπαχαμών</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Μπουτάν</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Βασίλειο του Μπουτάν</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Νήσος Μπουβέ</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Μποτσουάνα</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Δημοκρατία της Μποτσουάνας</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Λευκορωσία</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Δημοκρατία της Λευκορωσίας</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Μπελίζ</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Καναδάς</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Νήσοι Κόκος (Κήλινγκ)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Κονγκό, Λαϊκή Δημοκρατία του</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Δημοκρατία Κεντρικής Αφρικής</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Κονγκό</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Δημοκρατία του Κονγκό</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Ελβετία</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Ελβετική Συνομοσπονδία</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Ακτή Ελεφαντοστού</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Δημοκρατία της Ακτής του Ελεφαντοστού</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Νήσοι Κουκ</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Χιλή</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Δημοκρατία της Χιλής</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Καμερούν</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Δημοκρατία του Καμερούν</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Κίνα</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Λαϊκή Δημοκρατία της Κίνας</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Κολομβία</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Δημοκρατία της Κολομβίας</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Κόστα Ρίκα</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Δημοκρατία της Κόστα Ρίκα</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Κούβα</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Δημοκρατία της Κούβας</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Πράσινο Ακρωτήριο</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Δημοκρατία του Πράσινου Ακρωτηρίου</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Κουρασάο</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Κουρασάο</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Νήσοι Χριστουγέννων</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Κύπρος</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Κυπριακή Δημοκρατία</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Τσεχία</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Τσεχική Δημοκρατία</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Γερμανία</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Ομοσπονδιακή Δημοκρατία της Γερμανίας</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Τζιμπουτί</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Δημοκρατία του Τζιμπουτί</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Δανία</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Βασίλειο της Δανίας</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Ντομίνικα</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Κοινοπολιτεία της Ντομίνικα</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Δομινικανή Δημοκρατία</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Αλγερία</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Λαϊκη Δημοκρατία της Αλγερίας</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ισημερινός</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Δημοκρατία του Ισημερινού</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Εσθονία</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Δημοκρατία της Εσθονίας</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Αίγυπτος</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Αραβική Δημοκρατία της Αιγύπτου</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Δυτική Σαχάρα</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Ερυθραία</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Κράτος της Ερυθραίας</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Ισπανία</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Βασίλειο της Ισπανίας</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Αιθιοπία</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Ομοσπονδιακή Λαϊκή Δημοκρατία της Αιθιοπίας</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Φινλανδία</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Δημοκρατία της Φινλανδίας</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Φίτζι</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Δημοκρατία των Φίντζι</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Νήσοι Φώκλαντ (Μαλβίνες)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Μικρονησία, Ομόσπονδες Πολιτείες της</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Ομόσπονδες Πολιτείες της Μικρονησίας</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Νησιά Φερόε</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Γαλλία</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Γαλλική Δημοκρατία</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Γκαμπόν</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Δημοκρατία της Γκαμπόν</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Ηνωμένο Βασίλειο</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Ηνωμένο Βασίλειο της Μεγάλης Βρετανίας και της Βόρειας Ιρλανδίας</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Γρενάδα</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Γεωργία</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Γαλλική Γουιάνα</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Γκέρνσεϊ</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Γκάνα</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Δημοκρατία της Γκάνας</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Γιβραλτάρ</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Γροιλανδία</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Γκάμπια</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Δημοκρατία της Γκάμπια</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Γουινέα</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Δημοκρατία της Γουινέας</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Γουαδελούπη</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ισημερινή Γουινέα</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Δημοκρατία της Ισημερινής Γουινέας</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Ελλάδα</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Ελληνική Δημοκρατία</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Νήσοι Νότια Γεωργία και Νότιες Σάντουιτς</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Γουατεμάλα</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Δημοκρατία της Γουατεμάλας</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Γκουάμ</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Γουινέα-Μπισσάου</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Δημοκρατία της Γουινέας-Μπισσάου</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Γουιάνα</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Δημοκρατία της Γουιάνας</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Χονγκ Κονγκ</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Χονγκ Κονγκ Ειδική Διοικητική Περιοχή της Κίνας</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Νήσος Χερντ και Νήσοι ΜακΝτόναλντ</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Ονδούρα</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Δημοκρατία της Ονδούρας</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Κροατία</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Δημοκρατία της Κροατίας</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Αϊτή</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Δημοκρατία της Αϊτής</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Ουγγαρία</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Ουγγαρία</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Ινδονησία</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Δημοκρατία της Ινδονησίας</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ιρλανδία</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Ισραήλ</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Κράτος του Ισραήλ</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Νήσος του Μαν</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Ινδία</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Δημοκρατία της Ινδίας</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Βρετανικό Έδαφος Ινδικού Ωκεανού</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Ιράκ</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Δημοκρατία του Ιράκ</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Ιράν, Ισλαμική Δημοκρατία του</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Ισλαμική Δημοκρατία του Ιράν</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Ισλανδία</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Δημοκρατία της Ισλανδίας</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Ιταλία</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Ιταλική Δημοκρατία</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Τζέρσεϊ</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Τζαμάικα</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Ιορδανία</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Χασεμιτικό Βασίλειο της Ιορδανίας</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Ιαπωνία</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Κένυα</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Δημοκρατία της Κένυας</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Κιργιζία</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Δημοκρατία της Κιργιζίας</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Καμπότζη</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Βασίλειο της Καμπότζης</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Κιριμπάτι</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Δημοκρατία του Κιριμπάτι</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Κομόρες</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Ένωση των Κομορών</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Άγιος Χριστόφορος και Νέβις</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Κορέα, Λαοκρατική Δημοκρατία της</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Λαοκρατική Δημοκρατία της Κορέας</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Κορέα, Δημοκρατία της</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Κουβέιτ</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Κράτος του Κουβέιτ</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Νησιά Κέιμαν</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Καζακστάν</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Δημοκρατία του Καζακστάν</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Λαϊκή Δημοκρατία του Λάος</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Λίβανος</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Δημοκρατία του Λιβάνου</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Αγία Λουκία</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Λίχτενσταϊν</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Πριγκιπάτο του Λιχτενστάιν</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Σρι Λάνκα</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Λαϊκή Σοσιαλιστική Δημοκρατία της Σρι Λάνκα</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Λιβερία</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Δημοκρατία της Λιβερίας</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Λεσότο</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Βασίλειο του Λεσόθο</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Λιθουανία</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Δημοκρατία της Λιθουανίας</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Λουξεμβούργο</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Μεγάλο Δουκάτο του Λουξεμβούργου</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Λετονία</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Δημοκρατία της Λετονίας</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Λιβύη</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Λιβύη</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Μαρόκο</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Βασίλειο του Μαρόκου</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Μονακό</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Πριγκιπάτο του Μονακό</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Μολδαβίας, Δημοκρατία της</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Δημοκρατία της Μολδαβίας</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Μαυροβούνιο</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Μαυροβούνιο</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Άγιος Μαρτίνος (Γαλλικό τμήμα)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Μαδαγασκάρη</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Δημοκρατία της Μαδαγασκάρης</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Νήσοι Μάρσαλ</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Δημοκρατία των Νήσων Μάρσαλ</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Βόρεια Μακεδονία</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Δημοκρατία της Βόρειας Μακεδονίας</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Μάλι</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Δημοκρατία του Μάλι</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Μιανμάρ</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Δημοκρατία της Μιανμάρ</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Μογγολία</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Μακάο</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Μακάο Ειδική Διοικητική Περιοχή της Κίνας</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Βόρειες Μαριάνες Νήσοι</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Κοινοπολιτεία των Νήσων Βορείων Μαριάννων</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Μαρτινίκα</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Μαυριτανία</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Ισλαμική Δημοκρατία της Μαυριτανίας</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Μοντσεράτ</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Μάλτα</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Δημοκρατία της Μάλτας</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Μαυρίκιος</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Δημοκρατία του Μαυρικίου</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Μαλδίβες</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Δημοκρατία των Μαλδιβών</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Μαλάουι</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Δημοκρατία του Μαλάουι</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Μεξικό</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Ηνωμένες Πολιτείες του Μεξικού</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Μαλαισία</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Μοζαμβίκη</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Δημοκρατία της Μοζαμβίκης</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Ναμίμπια</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Δημοκρατία της Ναμίμπιας</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Νέα Καληδονία</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Νίγηρας</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Δημοκρατία του Νίγηρα</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Νήσος Νόρφολκ</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Νιγηρία</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Ομοσπονδιακή Δημοκρατία της Νιγηρίας</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Νικαράγουα</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Δημοκρατία της Νικαράγουας</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Ολλανδία</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Βασίλειο των Κάτω Χωρών</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Νορβηγία</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Βασίλειο της Νορβηγίας</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Νεπάλ</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Ομοσπονδιακή Λαϊκή Δημοκρατία του Νεπάλ</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Ναουρού</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Δημοκρατία του Ναουρού</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Νιούεϊ</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Νιούεϊ</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Νέα Ζηλανδία</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Ομάν</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Σουλτανάτο του Ομάν</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Παναμάς</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Δημοκρατία του Παναμά</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Περού</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Δημοκρατία του Περού</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Γαλλική Πολυνησία</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Παπούα Νέα Γουινέα</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Ανεξάρτητο Κράτος της Παπούα Νέα Γουινέα</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Φιλιππίνες</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Δημοκρατία των Φιλιππινών</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Πακιστάν</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Ισλαμική Δημοκρατία του Πακιστάν</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Πολωνία</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Δημοκρατία της Πολωνίας</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Σαιν Πιερ και Μικελόν</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Πίτκαϊρν</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Πουέρτο Ρίκο</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Παλαιστίνη</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Κράτος της Παλαιστίνης</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Πορτογαλία</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Πορτογαλική Δημοκρατία</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Παλάου</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Δημοκρατία του Παλάου</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Παραγουάη</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Δημοκρατία της Παραγουάης</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Κατάρ</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Κράτος του Κατάρ</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Ρεϋνιόν</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Ρουμανία</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Σερβία</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Δημοκρατία της Σερβίας</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Ρωσική Ομοσπονδία</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ρουάντα</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Δημοκρατία της Ρουάντα</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Σαουδική Αραβία</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Βασίλειο της Σαουδικής Αραβίας</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Νήσοι Σολομώντα</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Σεϋχέλλες</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Δημοκρατία των Σεϋχελλών</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Σουδάν</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Δημοκρατία του Σουδάν</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Σουηδία</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Βασίλειο της Σουηδίας</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Σιγκαπούρη</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Δημοκρατία της Σιγκαπούρης</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Σεντ Ελένα, Ασενσιόν και Τριστάν ντα Κούνχα</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Σλοβενία</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Δημοκρατία της Σλοβενίας</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Σβάλμπαρντ και Γιαν Μαγέν</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Σλοβακία</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Δημοκρατία της Σλοβακίας</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Σιέρα Λεόνε</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Δημοκρατία της Σιέρρα Λεόνε</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>Άγιος Μαρίνος</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Δημοκρατία του Αγίου Μαρίνου</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Σενεγάλη</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Δημοκρατία της Σενεγάλης</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Σομαλία</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Ομοσπονδιακή Δημοκρατία της Σομαλίας</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Σουρινάμ</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Δημοκρατία του Σουρινάμ</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Νότιο Σουδάν</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Δημοκρατία του Νότιου Σουδάν</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Σάο Τομέ και Πρίνσιπε</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Λαϊκή Δημοκρατία του Σάο Τομέ και Πρίνσιπε</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Ελ Σαλβαδόρ</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Δημοκρατία του Ελ Σαλβαδόρ</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Άγιος Μαρτίνος (Ολλανδικό τμήμα)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Άγιος Μαρτίνος (Ολλανδικό τμήμα)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Αραβική Δημοκρατία της Συρίας</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Εσουατίνι</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Βασίλειο του Εσουατίνι</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Τερκς και Κάικος Νήσοι</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Τσαντ</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Δημοκρατία του Τσαντ</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Γαλλικά Νότια Εδάφη</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Τόγκο</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Δημοκρατία του Τόγκο</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Ταϊλάνδη</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Βασίλειο της Ταϊλάνδης</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Τατζικιστάν</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Δημοκρατία του Τατζικιστάν</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Τοκελάου</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Τιμόρ-Λέστε</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Λαϊκη Δημοκρατία του Ανατολικού Τιμόρ</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Τουρκμενιστάν</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Τυνησία</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Δημοκρατία της Τυνησίας</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Τόνγκα</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Βασίλειο της Τόνγκα</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Τρινιντάντ και Τομπάγκο</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Δημοκρατία Τρινιδάδ και Τομπάγκο</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Τουβαλού</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Ταϊβάν, Επαρχία της Κίνας</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Ταϊβάν, Επαρχία της Κίνας</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Τανζανία, Ενωμένη Δημοκρατία της</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Ενωμένη Δημοκρατία της Τανζανίας</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ουκρανία</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Ουγκάντα</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Δημοκρατία της Ουγκάντας</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Απομακρυσμένες Νησίδες των Ηνωμένων Πολιτειών</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Ηνωμένες Πολιτείες</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Ηνωμένες Πολιτείες Αμερικής</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Ουρουγουάη</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Ανατολική Δημοκρατία της Ουρουγουάης</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Ουζμπεκιστάν</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Δημοκρατία του Ουζμπεκιστάν</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Αγία Έδρα (το Κράτος της Πόλεως του Βατικανού)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Άγιος Βικέντιος και Γρεναδίνες</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Βενεζουέλα, Βολιβαριανή Δημοκρατία της</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Βολιβαριανή Δημοκρατία της Βενεζουέλας</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Παρθένοι Νήσοι, Βρετανικές</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Βρετανικές Παρθένοι Νήσοι</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Παρθένοι Νήσοι, Η.Π.Α.</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Παρθένοι Νήσοι των Ηνωμένων Πολιτειών</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Βιετνάμ</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Σοσιαλιστική Δημοκρατία του Βιετνάμ</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Βανουάτου</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Δημοκρατία του Βανουάτου</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Ουαλίς και Φουτούνα</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Σαμόα</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Ανεξάρτητο Κράτος της Σαμόα</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Υεμένη</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Δημοκρατία της Υεμένης</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Μαγιότ</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Νότια Αφρική</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Δημοκρατία της Νότιας Αφρικής</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Ζάμπια</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Δημοκρατία της Ζάμπιας</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Ζιμπάμπουε</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Δημοκρατία της Ζιμπάμπουε</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/eo.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/eo.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..3b82ab09a7347a2ce4b42a680d0b669ae7628658
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/eo.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="eo" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andoro</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Princolando Andoro</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Unuiĝintaj Arabaj Emirlandoj</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganio</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Islama Respubliko Afganio</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigvo-Barbudo</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Angvilo</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanio</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Respubliko Albanio</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenio</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Respubliko Armenio</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angolo</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Respubliko Angolo</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarkto</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentino</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentina Respubliko</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Usona Samoo</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>AÅ­strio</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Respubliko AÅ­strio</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>AÅ­stralio</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Arubo</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Alando</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbajĝano</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Respubliko Azerbajĝano</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnio kaj Hercegovino</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Respubliko Bosnio kaj Hercegovino</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbado</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladeŝo</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Popola Respubliko Bangladeŝo</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgio</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Reĝlando Belgio</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkino</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgario</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Respubliko Bulgario</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Barejno</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Reĝlando Barejno</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundo</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Respubliko Burundo</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benino</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Respubliko Benino</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Sankta-Bartolomeo</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermudoj</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunejo</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivio, Plurnacia Åœtato</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Plurnacia Åœtato Bolivio</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonero, Sankta-EÅ­stakio kaj Sabo</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonero, Sankta-EÅ­stakio kaj Sabo</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazilo</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Federacia Respubliko Brazilo</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamoj</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Regnaro Bahamoj</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Butano</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Reĝlando Butano</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Buvetinsulo</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Bocvano</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Respubliko Bocvano</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Belorusio</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Respubliko Belorusio</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belizo</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanado</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kokosinsuloj</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Demokratia Respubliko Kongo</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Centr-Afrika Respubliko</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Respubliko Kongo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Svislando</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Svisa Konfederacio</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Ebur-Bordo</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Respubliko Ebur-Bordo</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Kukinsuloj</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Ĉilio</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Respubliko Ĉilio</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kameruno</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Respubliko Kameruno</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Ĉinio</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Popola Respubliko Ĉinio</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolombio</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Respubliko Kolombio</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kostariko</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Respubliko Kostariko</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kubo</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Respubliko Kubo</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Kabo-Verdo</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Respubliko Kabo-Verdo</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Kuracao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Kuracao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Kristnaskinsulo</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Kipro</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Respubliko Kipro</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Ĉeĥio</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Ĉeĥio</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Germanio</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Federacia Respubliko Germanio</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Äœibutio</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Respubliko Äœibutio</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danio</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Reĝlando Danio</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominiko</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Regnaro Dominiko</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Domingo</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Alĝerio</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Popola Demokratia Respubliko Alĝerio</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekvadoro</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Respubliko Ekvadoro</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonio</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Respubliko Estonio</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egiptio</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Araba Respubliko Egiptio</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Okcidenta Saharo</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritreo</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>la Åœtato Eritreo</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Hispanio</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Reĝlando Hispanio</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopio</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Federacia Demokratia Respubliko Etiopio</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finnlando</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Respubliko Finnlando</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiĝioj</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Respubliko Fiĝiaj Insuloj</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandoj (Malvinoj)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronezio, Federaciaj Åœtatoj de</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Federaciaj Åœtatoj de Mikronezio</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Ferooj</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francio</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Franca Respubliko</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabono</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gabona Respubliko</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Britio</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Unuiĝinta Reĝlando de Britio kaj Nord-Irlando</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenado</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Kartvelio</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Franca Gviano</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Gernezejo</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ganao</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Respubliko Ganao</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Äœibraltaro</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Gronlando</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambio</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Respubliko Gambio</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Gvineo</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Respubliko Gvineo</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Gvadelupo</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ekvatora Gvineo</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Respubliko Ekvatora Gvineo</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grekio</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Helena Respubliko</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Sud-Georgio kaj Sud-Sandviĉinsuloj</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Gvatemalo</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Respubliko Gvatemalo</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Gvamo</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Gvineo BisaÅ­a</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Respubliko Gvineo BisaÅ­a</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Gujano</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Respubliko Gujano</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Honkongo</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Honkongo Speciala Administra Regiono de Ĉinio</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Herda kaj Makdonaldaj Insuloj</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduro</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Respubliko Honduro</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroatio</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Respubliko Kroatio</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haitio</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Respubliko Haitio</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungario</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungario</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonezio</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Respubliko Indonezio</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlando</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israelo</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Åœtato Israelo</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Manksinsulo</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Barato</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Respubliko Barato</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Brita Hindoceana Teritorio</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irako</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Respubliko Irako</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Irano, Islama Respubliko</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Islama Respubliko Irano</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islando</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Respubliko Islando</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italio</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Itala Respubliko</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Ä´erzejo</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamajko</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordanio</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Jordanio</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japanio</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenjo</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Respubliko Kenjo</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgizio</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgiza Respubliko</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kamboĝo</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Reĝlando Kamboĝo</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribato</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Respubliko Kiribato</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komoroj</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Unio de la Komoroj</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Sankta-Kito kaj Neviso</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Koreio, Demokratia Popola Respubliko</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Demokratia Popola Respubliko Koreio</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Koreio, Respubliko</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuvajto</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Åœtato Kuvajto</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kejmanoj</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazaĥio</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Respubliko Kazaĥio</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laosa Popola Demokratia Respubliko</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libano</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libana Respubliko</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Sankta-Lucio</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liĥtenŝtejno</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Princlando Liĥtenŝtejno</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri-Lanko</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Demokratia Socialisma Respubliko Sri-Lanko</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberio</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Respubliko Liberio</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Reĝlando Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litovio</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Respubliko Litovio</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luksemburgio</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Granda Duklando Luksemburgio</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Latvio</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Respubliko Latvio</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libio</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libio</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Reĝlando Maroko</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Princlando Monako</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavio, Respubliko</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Respubliko Moldavio</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Sankta-Marteno (franca parto)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskaro</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Respubliko Madagaskaro</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marŝaloj</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Respubliko Marŝalaj Insuloj</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Nord-Makedonio</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Respubliko Nord-Makedonio</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Malio</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Respubliko Malio</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Mjanmao</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Respubliko Mjanmao</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolio</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Makao Speciala Administra Regiono de Ĉinio</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Nord-Marianoj</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Regnaro de la Nordaj Marianaj Insuloj</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martiniko</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>MaÅ­ritanio</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Islama Respubliko MaÅ­ritanio</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Moncerato</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malto</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Respubliko Malto</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>MaÅ­ricio</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Respubliko MaÅ­ricio</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldivoj</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Respubliko Maldivoj</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malavio</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Respubliko Malavio</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Unuiĝintaj Meksikaj Ŝtatoj</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malajzio</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambiko</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Respubliko Mozambiko</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibio</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Respubliko Namibio</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nov-Kaledonio</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niĝero</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Respubliko Niĝero</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolkinsulo</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Niĝerio</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Federacia Respubliko Niĝerio</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragvo</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Respubliko Nikaragvo</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Nederlando</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Reĝlando Nederlando</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norvegio</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Reĝlando Norvegio</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepalo</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Federacia Demokratia Respubliko Nepalo</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauro</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Respubliko Nauro</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niuo</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niuo</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nov-Zelando</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omano</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanlando Omano</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panamo</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Respubliko Panamo</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peruo</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Respubliko Peruo</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Franca Polinezio</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papuo-Nov-Gvineo</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Sendependa Åœtato Papuo-Nov-Gvineo</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipinoj</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Respubliko Filipinoj</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistano</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Islama Respubliko Pakistano</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Pollando</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Respubliko Pollando</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Sankta-Piero kaj Mikelono</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitkarna Insulo</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto-Riko</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestino, Åœtato</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>la Åœtato Palestino</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugalio</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugala Respubliko</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>PalaÅ­o</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Respubliko PalaÅ­o</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paragvajo</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Respubliko Paragvajo</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Kataro</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Åœtato Kataro</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Reunio</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumanio</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbio</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Respubliko Serbio</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Rusa Federacio</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruando</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Ruanda Respubliko</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>SaÅ­da Arabio</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Reĝlando Saŭda Arabio</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Salomonoj</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Sejŝeloj</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Respubliko Sejŝeloj</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudano</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Respubliko Sudano</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Svedio</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Reĝlando Svedio</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapuro</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Respubliko Singapuro</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Sankta-Heleno</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenio</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Respubliko Slovenio</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbardo kaj Jan-Majen-insulo</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovakio</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovaka Respubliko</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Siera-Leono</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Respubliko Siera-Leono</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San-Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Respubliko San-Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegalo</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Respubliko Senegalo</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalio</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federacia Respubliko Somalio</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinamo</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Respubliko Surinamo</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sud-Sudano</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Respubliko Sud-Sudano</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao-Tomeo kaj Principeo</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Demokratia Respubliko Sao-Tomeo kaj Principeo</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Salvadoro</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Respubliko Salvadoro</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sankta-Marteno (nederlanda parto)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sankta-Marteno (nederlanda parto)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Siria Araba Respubliko</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Svazilando</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Reĝlando Svazilando</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turkoj kaj Kajkoj</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Ĉado</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Respubliko Ĉado</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Francaj Sudaj Teritorioj</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Toga Respubliko</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tajlando</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Reĝlando Tajlando</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Taĝikio</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Respubliko Taĝikio</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelao</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Orienta Timoro</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Demokratia Respubliko Orienta Timoro</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenio</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunizio</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Respubliko Tunizio</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tongo</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Reĝlando Tongo</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidado kaj Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Respubliko de Trinidado kaj Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalo</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajvano, Provinco de Ĉinio</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajvano, Provinco de Ĉinio</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzanio, Unuiĝinta Respubliko</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Unuiĝinta Respubliko Tanzanio</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukrainio</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Ugando</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Respubliko Ugando</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Usonaj Malgrandaj Insuloj</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Usono</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Usono</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Urugvajo</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Orienta Respubliko Urugvajo</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekio</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Respubliko Uzbekio</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Sankta Seĝo (Vatikano)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Sankta-Vincento kaj la Grenadinoj</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuelo, Bolivara Respubliko</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Bolivara Respubliko Venezuelo</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Virgulininsuloj, Britaj</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Britaj Virgulininsuloj</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Virgulininsuloj, Usonaj</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Usonaj Virgulininsuloj</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vjetnamio</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Socialisma Respubliko Vjetnamio</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatuo</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Respubliko Vanuatuo</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Valiso kaj Futuno</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoo</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Sendependa Åœtato Samoo</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemeno</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Respubliko Jemeno</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Majoto</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Sud-Afriko</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Respubliko Sud-Afriko</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambio</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Respubliko Zambio</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabvo</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Respubliko Zimbabvo</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/es.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/es.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..1f385d7c008a08d2992f18d2c4a56d404d0b770f
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/es.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="es" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Principado de Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Emiratos Árabes Unidos</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistán</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>República Islámica de Afganistán</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua y Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguila</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albania</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>República de Albania</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>República de Armenia</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>República de Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antártida</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>República Argentina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samoa Estadounidense</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>República de Austria</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Islas Äland</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaiyán</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>República de Azerbaiyán</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnia y Herzegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>República de Bosnia y Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladés</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>República Popular de Bangladés</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Bélgica</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Reino de Bélgica</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burquina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>República de Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Baréin</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Reino de Baréin</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>República de Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benín</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>República de Benín</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>San Bartolomé</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Islas Bermudas</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei Darussalam</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivia, Estado plurinacional de</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Estado plurinacional de Bolivia</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Islas BES (Caribe Neerlandés)</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Islas BES (Caribe Neerlandés)</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>República Federativa de Brasil</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Commonwealth de las Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bután</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Reino de Bután</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Isla Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botsuana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>República de Botsuana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bielorrusia</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>República de Bielorrusia</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belice</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canadá</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Islas Cocos (Keeling)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Congo, República Democrática del</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>República Centroafricana</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Congo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>República del Congo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Suiza</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Confederación Suiza</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Costa de Marfíl</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>República de Costa de Marfíl</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Islas Cook</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>República de Chile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Camerún</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>República del Camerún</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>China</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>República Popular China</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>República de Colombia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>República de Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>República de Cuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>República de Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curazao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curazao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Isla de Navidad</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Chipre</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>República de Chipre</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Chequia</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>República Checa</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Alemania</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>República Federal de Alemania</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Yibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>República de Yibuti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Dinamarca</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Reino de Dinamarca</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Commonwealth de Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>República Dominicana</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algeria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>República Democrática Popular de Argelia</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>República del Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>República de Estonia</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egipto</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>República Árabe de Egipto</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Sahara Occidental</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Estado de Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>España</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Reino de España</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopía</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>República Federal Democrática de Etiopía</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlandia</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>República de Finlandia</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiyi</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>República de Fiyi</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Islas Falkland (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Micronesia, Estados Federados de</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Estados Federados de Micronesia</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Islas Feroe</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francia</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>República Francesa</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabón</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>República Gabonesa</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Reino Unido</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Reino Unido de Gran Bretaña e Irlanda del Norte</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Granada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guayana Francesa</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>República de Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Groenlandia</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>República de Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>República de Guinea</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadalupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Guinea Ecuatorial</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>República de Guinea Ecuatorial</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grecia</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>República Helénica</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Islas Georgias del Sur y Sándwich del Sur</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>República de Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bisáu</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>República de Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>República de Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Región Administrativa Especial China de Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Islas Heard y McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>República de Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Croacia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>República de Croacia</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haití</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>República de Haití</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungría</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungría</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>República de Indonesia</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlanda</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Estado de Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Isla de Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>India</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>República de la India</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Territorio Británico del Océano Índico</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>República de Irak</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Irán, República islámica de</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>República Islámica de Irán</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islandia</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>República de Islandia</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italia</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>República Italiana</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordania</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Reino Hachemí de Jordania</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japón</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>República de Kenia</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirguistán</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>República Kirguiza</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Camboya</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Reino de Camboya</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>República de Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comores, Islas</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Unión de las Comores</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>San Cristóbal y Nieves</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Corea, República Democrática Popular de</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>República Popular Democrática de Corea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Corea, República de</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Estado de Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Islas Caimán</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazajistán</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>República de Kazajistán</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>República Democrática Popular de Lao</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Líbano</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>República Libanesa</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Santa Lucía</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Principado de Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>República Socialista Democrática de Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>República de Liberia</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Reino de Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituania</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>República de Lituania</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxemburgo</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Gran Ducado de Luxemburgo</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letonia</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>República de Letonia</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marruecos</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Reino de Marruecos</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Mónaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Principado de Mónaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavia, República de</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>República de Moldavia</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>San Martín (zona francesa)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>República de Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Islas Marshall</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>República de las Islas Marshall</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Macedonia del Norte</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>República de Macedonia del Norte</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Malí</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>República de Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Birmania</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>República de la Unión de Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Región Administrativa Especial China de Macao</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Islas Marianas del Norte</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Commonwealth de las Islas Marianas del Norte</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinica</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>República Islámica de Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>República de Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauricio</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>República de Mauricio</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Islas Maldivas</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>República de Maldivas</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malaui</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>República de Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>México</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Estados Unidos Mexicanos</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malasia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambique</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>República de Mozambique</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>República de Namibia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nueva Caledonia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>República del Níger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Isla Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>República Federal de Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>República de Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Países Bajos</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Reino de los Países Bajos</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Noruega</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Reino de Noruega</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>República Federal Democrática de Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>República de Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nueva Zelanda</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omán</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanato de Omán</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panamá</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>República de Panamá</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Perú</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>República del Perú</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polinesia Francesa</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papúa Nueva Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Estado Independiente de Papúa Nueva Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipinas</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>República de Filipinas</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistán</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>República Islámica de Pakistán</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polonia</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>República de Polonia</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>San Pedro y Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestina, Estado de</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Estado de Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>República Portuguesa</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palaos</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>República de Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>República del Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Catar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Estado de Qatar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Reunión</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumanía</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>República de Serbia</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Federación Rusa</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>República de Ruanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Arabia Saudí</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Reino de Arabia Saudí</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Islas Salomón</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>República de las Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudán</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>República de Sudán</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Suecia</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Reino de Suecia</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>República de Singapur</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Santa Elena, Ascensión y Tristán de Acuña</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Eslovenia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>República de Eslovenia</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard y Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Eslovaquia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>República Eslovaca</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leona</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>República de Sierra Leona</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>República de San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>República del Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>República Federal de Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinám</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>República de Surinam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sudán del Sur</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>República de Sudán del Sur</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Santo Tomé y Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>República Democrática de Santo Tomé y Príncipe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>República de El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Isla de San Martín (zona holandsea)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Isla de San Martín (zona holandsea)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>República árabe de Siria</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Esuatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Reino de Esuatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Islas Turcas y Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Chad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>República del Chad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Territorios Franceses del Sur</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>República Togolesa</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tailandia</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Reino de Tailandia</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tayikistán</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>República de Tayikistán</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor Oriental</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>República Democrática de Timor Oriental</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistán</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunez</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>República de Túnez</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Reino de Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad y Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>República de Trinidad y Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwán, Provincia de China</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwán, Provincia de China</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzania, República unida de</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>República Unida de Tanzania</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ucrania</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>República de Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Islas Ultramarinas Menores de Estados Unidos</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Estados Unidos</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Estados Unidos de América</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>República Oriental del Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistán</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>República de Uzbekistán</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Santa Sede (Ciudad Estado del Vaticano)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>San Vicente y las Granadinas</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, República Bolivariana de</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>República Bolivariana de Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Islas Vírgenes, Británicas</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Islas Vírgenes Británicas</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Islas Vírgenes, de EEUU</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Islas Vírgenes de los Estados Unidos</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>República Socialista de Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>República de Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis y Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Estado Independiente de Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>República del Yemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Sudáfrica</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>República de Sudáfrica</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>República de Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabue</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>República de Zimbabue</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/et.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/et.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..39df2a1ad70d35fd807238156a1f0cde6ba9e4c3
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/et.countries.xlf
@@ -0,0 +1,1695 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="et" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Andorra Vürstiriik</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Araabia Ãœhendemiraadid</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Afganistani Islamivabariik</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua ja Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albaania</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Albaania Vabariik</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armeenia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Armeenia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Angola Vabariik</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktis</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentina Vabariik</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Ameerika Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Austria Vabariik</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Austraalia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ahvenamaa</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Aserbaidžaan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Aserbaidžaani Vabariik</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnia ja Hertsegoviina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Bosnia ja Hertsegoviina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Bangladeshi Rahvavabariik</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgia</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Belgia Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaaria</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Bulgaaria Vabariik</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Bahreini Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Burundi Vabariik</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Benini Vabariik</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint-Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei Darussalami Riik</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Boliivia Paljurahvuseline Riik</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Boliivia Paljurahvuseline Riik</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius ja Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius ja Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasiilia</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Brasiilia Liitvabariik</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahama</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Bahama Ãœhendus</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Bhutani Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvet' saar</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Botswana Vabariik</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Valgevene</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Valgevene Vabariik</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kookossaared</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongo Demokraatlik Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Kesk-Aafrika Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Kongo Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Å veits</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Šveitsi Konföderatsioon</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Elevandiluurannik (Côte d'Ivoire)</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Côte d'Ivoire'i Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cooki saared</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>TÅ¡iili</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>TÅ¡iili Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Kameruni Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Hiina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Hiina Rahvavabariik</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Colombia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Costa Rica Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Kuuba Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Roheneemesaared (Cabo Verde)</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Cabo Verde Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Jõulusaar</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Küpros</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Küprose Vabariik</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>TÅ¡ehhi</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>TÅ¡ehhi</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Saksamaa</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Saksamaa Liitvabariik</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Djibouti Vabariik</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Taani</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Taani Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Dominica Ãœhendus</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikaani Vabariik</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Alžeeria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Alžeeria Demokraatlik Rahvavabariik</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Ecuadori Vabariik</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Eesti</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Eesti Vabariik</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egiptus</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Egiptuse Araabia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Lääne-Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Eritrea Riik</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Hispaania</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Hispaania Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etioopia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Etioopia Demokraatlik Liitvabariik</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Soome</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Soome Vabariik</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidži</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Fidži Vabariik</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandi saared</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikroneesia</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Mikroneesia Liiduriigid</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Fääri saared</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Prantsusmaa</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Prantsuse Vabariik</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gaboni Vabariik</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Suurbritannia</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Suurbritannia ja Põhja-Iiri Ühendkuningriik</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gruusia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Prantsuse Guajaana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Ghana Vabariik</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Gröönimaa</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Gambia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Guinea Vabariik</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ekvatoriaal-Guinea</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Ekvatoriaal-Guinea Vabariik</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Kreeka</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Kreeka Vabariik</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Lõuna-Georgia ja Lõuna-Sandwichi saared</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Guatemala Vabariik</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Guinea-Bissau Vabariik</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Guyana Vabariik</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hiina Rahvavabariigi Hongkongi erihalduspiirkond</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heard ja McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Hondurase Vabariik</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Horvaatia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Horvaatia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Haiti Vabariik</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungari</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungari</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indoneesia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Indoneesia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Iirimaa</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Iisrael</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Iisraeli Riik</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>India</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>India Vabariik</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Briti India ookeani ala</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Iraak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Iraagi Vabariik</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iraan</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Iraani Islamivabariik</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Island</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Islandi Vabariik</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Itaalia</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Itaalia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordaania</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Jordaania Hašimiidi Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Jaapan</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Kenya Vabariik</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kõrgõzstan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgiisi Vabariik</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kambodža Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Kiribati Vabariik</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komoorid</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Komoori Liit</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts ja Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Põhja-Korea</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Korea Rahvademokraatlik Vabariik</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Lõuna-Korea (Korea Vabariik)</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuveit</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Kuveidi Riik</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kaimanisaared</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kasahstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Kasahstani Vabariik</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laose Demokraatlik Rahvavabariik</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Liibanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Liibanoni Vabariik</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Liechtensteini Vürstiriik</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Sri Lanka Demokraatlik Sotsialistlik Vabariik</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Libeeria</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Libeeria Vabariik</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Lesotho Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Leedu</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Leedu Vabariik</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luksemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Luksemburgi Suurhertsogiriik</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Läti</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Läti Vabariik</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Liibüa</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Liibüa</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Maroko Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Monaco Vürstiriik</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldova Vabariik</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Moldova Vabariik</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint Martin (Prantsuse osa)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Madagaskari Vabariik</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshalli Saared</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Marshalli Saarte Vabariik</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Põhja-Makedoonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Põhja-Makedoonia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Mali Vabariik</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Myanmari Liidu Vabariik</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongoolia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Aomen</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Hiina Rahvavabariigi Aomeni erihalduspiirkond</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Põhja-Mariaanid</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Põhja-Mariaani Ühendus</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritaania</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Mauritaania Islamivabariik</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Malta Vabariik</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Mauritiuse Vabariik</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldiivid</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Maldiivi Vabariik</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Malawi Vabariik</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mehhiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Mehhiko Ãœhendriigid</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malaisia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mosambiik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Mosambiigi Vabariik</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namiibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Namiibia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Uus-Kaledoonia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Nigeri Vabariik</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Nigeeria Liitvabariik</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Nicaragua Vabariik</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Holland</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Madalmaade Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norra</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Norra Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Nepali Demokraatlik Liitvabariik</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Nauru Vabariik</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Uus-Meremaa</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omaan</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Omaani Sultaniriik</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Panama Vabariik</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peruu</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Peruu Vabariik</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Prantsuse Polüneesia</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Paapua Uus-Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Paapua Uus-Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipiinid</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Filipiini Vabariik</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Pakistani Islamivabariik</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Poola</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Poola Vabariik</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint-Pierre ja Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestiina Riik</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Palestiina Riik</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugali Vabariik</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Belau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Belau Vabariik</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Paraguay Vabariik</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Katari Riik</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumeenia</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Serbia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Venemaa Föderatsioon</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Rwanda Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudi Araabia</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Saudi Araabia Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Saalomoni Saared</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seišellid</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Seišelli Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudaan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Sudaani Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Rootsi</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Rootsi Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Singapuri Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Saint Helena, Ascension ja Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Sloveenia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Sloveenia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard ja Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovakkia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovaki Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Sierra Leone Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>San Marino Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Senegali Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somaalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Somaali Föderatiivne Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Suriname</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Suriname Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Lõuna-Sudaan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Lõuna-Sudaani Vabariik</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>São Tomé ja Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>São Tomé ja Príncipe Demokraatlik Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>El Salvadori Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Hollandi osa)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Hollandi osa)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Süüria Araabia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Svaasimaa</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>eSwatini Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turksi ja Caicose saared</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>TÅ¡aad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>TÅ¡aadi Vabariik</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Prantsuse Lõunaalad</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togo Vabariik</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tai</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Tai Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadžikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Tadžikistani Vabariik</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Ida-Timor (Timor-Leste)</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Timor-Leste Demokraatlik Vabariik</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Türkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tuneesia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Tuneesia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Tonga Kuningriik</target>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name" approved="yes">
+        <source>Türkiye</source>
+        <target>Türgi</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Türgi Vabariik</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad ja Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Trinidadi ja Tobago Vabariik</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tansaania</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Tansaania Ãœhendvabariik</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukraina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Uganda Vabariik</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Ãœhendriikide hajasaared</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Ameerika Ãœhendriigid</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Ameerika Ãœhendriigid</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Uruguay Idavabariik</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Usbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Usbekistani Vabariik</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Püha Tool (Vatikani Linnriik)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent ja Grenadiinid</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela Bolívari Vabariik</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Venezuela Bolívari Vabariik</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Briti Neitsisaared</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Briti Neitsisaared</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>USA Neitsisaared</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Ãœhendriikide Neitsisaared</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Vietnami Sotsialistlik Vabariik</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Vanuatu Vabariik</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis ja Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Samoa Iseseisvusriik</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jeemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Jeemeni Vabariik</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Lõuna-Aafrika Vabariik</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Lõuna-Aafrika Vabariik</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Sambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Sambia Vabariik</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Zimbabwe Vabariik</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/eu.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/eu.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..2662dec6a32d9d22da6c14367a7ce41f08576944
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/eu.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="eu" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Andorrako Printzerria</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Arabiar Emirerri Batuak</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Afganistango Errepublika Islamiarra</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua eta Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albania</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Albaniako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Armeniako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Angolako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antartika</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentinar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Amerikar Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Austriako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ã…land uharteak</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaijan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Azerbaijango Errepublika</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnia eta Herzegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Bosnia eta Herzegovinako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Bangladeshko Herri Errepublika</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgika</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Belgikako Erresuma</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Bulgariako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Bahraingo Erresuma</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Burundiko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Beningo Errepublika</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei Darussalam</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivia, Nazio-anitzeko Estatua</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Nazio anitzeko Boliviako Estatua</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius eta Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius eta Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Brasilgo Errepublika Federala</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamak</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Bahametako Commonwealth</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Bhutango Erresuma</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvet uhartea</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Botswanako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bielorrusia</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Bielorrusiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Cocos (Keeling) uharteak</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongoko Herri Errepublika Demokratikoa</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Afrika Erdiko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Kongoko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Suitza</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Suitzar Konfederakundea</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Boli Kosta</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Boli Kostako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cook uharteak</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Txile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Txileko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Kamerungo Errepublika</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Txina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Txinako Herri Errepublika</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolonbia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Kolonbiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Costa Ricako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Kubako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Cabo Verdeko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Christmas uhartea</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Zipre</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Zipreko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Txekia</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Txekiar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Alemania</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Alemaniako Errepublika Federala</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Djibutiko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danimarka</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Danimarkako Erresuma</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Dominikako Commonwealth</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Aljeria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Aljeriako Herri Errepublika Demokratikoa</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Ekuadorko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Estoniako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egipto</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Egiptoko Arabiar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Mendebaldeko Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Eritreako Estatua</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Espainia</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Espaniako Erresuma</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Etiopiako Errepublika Demokratiko Federala</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlandia</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Finlandiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Fijiko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falkland uharteak (Malvina uharteak)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronesia, Estatu Federatuak</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Mikronesiako Estatu Federatuak</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Faroe uharteak</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Frantzia</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Frantziako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gaboneko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Erresuma Batua</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Britainia Handiko eta Ipar Irlandako Erresuma Batua</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guyana Frantsesa</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Ghanako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Groenlandia</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Gambiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Ginea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Gineako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadalupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ekuatore Ginea</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Ekuatore Gineako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grezia</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Heleniar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Hegoaldeko Georgia eta Hegoaldeko Sandwich uharteak</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Guatemalako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Ginea Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Ginea Bissauko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Guyanako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hong Kong Txinako Administrazio Bereziko Lurraldea</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heard eta McDonald uharteak</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Hondurasko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroazia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Kroaziako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Haitiko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungaria</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungaria</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Indonesiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlanda</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Israelgo Estatua</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Man uhartea</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>India</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Indiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Indiar Ozeanoko Lurralde Britainiarra</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Irakeko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, Islamiar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Irango Islamiar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islandia</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Islandiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italia</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Italiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaika</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordania</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Jordaniako Haxemi Erresuma</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japonia</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Kenyako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgizistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgizistango Errepublika</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kanbodia</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kanbodiako Erresuma</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Kiribatiko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komoreak</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Komoreetako Batasuna</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts eta Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Korea, Herri Errepublika Demokratikoa</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Koreako Herri Errepublika Demokratikoa</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Korea, Errepublika</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Kuwaiteko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kaiman uharteak</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakhstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Kazakhstango Errepublika</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laoseko Herri Errepublika Demokratikoa</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libano</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libanoko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Santa Luzia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Liechtensteingo Printzerria</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Sri Lankako Errepublika Sozialista Demokratikoa</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Liberiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Lesothoko Erresuma</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituania</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Lituaniako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxenburgo</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Luxemburgoko Dukerri Handia</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letonia</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Letoniako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Marokoko Erresuma</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Monakoko Printzerria</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavia, Errepublika</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Moldaviako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint Martin (Frantziar zatia)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Madagaskarko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshall uharteak</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Marshall Uharteetako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Ipar Mazedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Ipar Mazedoniako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Maliko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Myanmarreko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macau</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Macauko Txinaren Administrazio Berezi Lurraldea</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Iparraldeko Mariana Uharteak</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Iparraldeko Mariana Uharteetako Commonwealth</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinika</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Mauritaniako Errepublika Islamiarra</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Maltako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Maurizio</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Maurizioko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldivak</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Maldivetako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Malawiko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Mexikoko Estatu Batuak</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malasia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozanbike</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Mozanbikeko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Namibiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Kaledonia Berria</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Nigerko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolk uhartea</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Nigeriako Errepublika Federala</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Nikaraguako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Herbehereak</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Herbehereetako Erresuma</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norvegia</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Norvegiako Erresuma</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Nepalgo Errepublika Demokratiko Federala</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Nauruko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Zeelanda Berria</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Omango Sultanerria</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Panamako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Peruko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Frantziar Polinesia</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Ginea Berria</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Papua Ginea Berriko Estatu Burujabea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipinak</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Filipinetako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Pakistango Islamiar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polonia</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Poloniako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint Pierre eta Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestinako Estatua</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Palestinako Estatua</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugalgo Errepublika</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Palauko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguai</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Paraguaiko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Qatarko Estatua</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Errumania</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Serbiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Errusiar Federakundea</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Ruandako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudi Arabia</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Saudi Arabiako Erresuma</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Salomon uharteak</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelleak</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Seychelleetako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Sudango Errepublika</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Suedia</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Suediako Erresuma</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Singapurko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Santa Helena, Ascension eta Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Eslovenia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Esloveniako errepublika</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard eta Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Eslovakia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Eslovakiar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leona</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Sierra Leonako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>San Marinoko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Senegalgo Errepublika</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Somaliako Errepublika Federala</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Surinamgo Errepublika</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Hegoaldeko Sudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Hegoaldeko Sudango Errepublika</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tome eta Principe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Sao Tome eta Principeko Errepublika Demokratikoa</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>El Salvadorko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Saint Martin (Holandar zatia)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Saint Martin (Holandar zatia)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Siriako Arabiar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Eswatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Eswatiniko Erresuma</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turk eta Caicos uharteak</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Txad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Txadeko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Hegoaldeko Lurralde Frantsesak</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togoko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tailandia</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Tailandiako Erresuma</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tajikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Tajikistango Errepublika</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Ekialdeko Timor</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Ekialdeko Timorko Errepublika Demokratikoa</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Tunisiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Tongako Erresuma</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad eta Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Trinidad eta Tobagoko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Txinako Probintzia</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Txinako Probintzia</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzania, Errepublika Batua</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Tanzaniako Errepublika Batua</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukrania</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Ugandako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Ameriketako Estatu Batuetako itsasoz haraindiko uharteak</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Estatu Batuak</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Ameriketako Estatu Batuak</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguai</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Uruguaiko Ekialdeko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Uzbekistango Errepublika</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Egoitza Santua (Vatikano Hiria)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent eta Grenadinak</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Bolibartar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Venezuelako Bolibartar Errepublika</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Birjina uharteak, Britainiarrak</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Birjina uharte britainiarrak</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Birjina uharteak, A.E.B.</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Birjina uharte Estatu Batuetakoak</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Vietnamgo Errepublika Sozialista</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Vanuatuko Errepublika</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis eta Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Samoako Estatu Burujabea</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Yemengo Errepublika</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Hegoafrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Hegoafrikako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Zambiako Errepublika</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Zimbabweko Errepublika</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/fa.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/fa.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..7da228a4f67979e7e344c76df2d52edf036ff531
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/fa.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="fa" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>آندورا</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>پادشاهی آندورا</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>امارات متحده عربی</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>افغانستان</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>جمهوری اسلامی افغانستان</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>آنتیگوا و باربودا</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>آنگیل</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>آلبانی</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>جمهوری آلبانی</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>ارمنستان</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>جمهوری ارمنستان</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>آنگولا</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>جمهوری آنگولا</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>جنوبگان</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>آرژانتین</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>جمهوری آرژانتین</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>ساموآی آمریکایی</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>اتریش</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>جمهوری اتریش</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>استرالیا</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>آروبا</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>جزایر آلند</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>آذربایجان</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>جمهوری آذربایجان</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>بوسنی و هرزگوین</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>جمهوری بوسنی و هرزگوین</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>باربادوس</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>بنگلادش</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>جمهوری دموکراتیک خلق بنگلادش</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>بلژیک</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>پادشاهی بلژیک</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>بورکینافاسو</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>بلغارستان</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>جمهوری بلغارستان</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>بحرین</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>پادشاهی بحرین</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>بوروندی</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>جمهوری بوروندی</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>بنین</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>جمهوری بنین</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>سنت بارتلمی</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>برمودا</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>برونئی دارالسلام</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>بولیویا، چند ایالتی</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>چند ایالتی بولیویا</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>بنیر، سنت یوستتیوس</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>بنیر، سنت یوستتیوس</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>برزیل</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>جمهوری فدرال برزیل</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>باهاما</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>مشترک المنافع باهاما</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>بوتان</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>پادشاهی بوتان</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>جزیرهٔ بووت</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>بوتسوانا</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>جمهوری بوتسوانا</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>بلاروس</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>جمهوری بلاروس</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>بلیز</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>کانادا</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>جزایر کوکوس</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>جمهوری دموکراتیک کنگو</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>جمهوری آفریقای مرکزی</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>کونگو</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>جمهوری کنگو</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>سوئیس</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>اتحادیه سویس</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>ساحل عاج</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>جمهوری ساحل عاج</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>جزایر کوک</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>شیلی</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>جمهوری شیلی</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>کامرون</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>جمهوری کامرون</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>چین</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>جمهوری خلق چین</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>کلمبیا</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>جمهوری کلمبیا</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>کاستاریکا</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>جمهوری کاستاریکا</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>کوبا</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>جمهوری کوبا</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>کیپ‌ورد</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>جمهوری کیپ‌ورد</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>کوراسائو</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>کوراسائو</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>جزیرهٔ کریسمس</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>قبرس</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>جمهوری قبرس</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Ú†Ú©</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>جمهوری چک</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>آلمان</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>جمهوری فدرال آلمان</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>جیبوتی</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>جمهوری جیبوتی</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>دانمارک</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>پادشاهی دانمارک</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>دومینیکا</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>مشترک المنافع دومینیکا</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>جمهوری دومینیکن</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>الجزایر</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>جمهوری دموکراتیک خلق الجزایر</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>اکوادور</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>جمهوری اکوادور</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>استونی</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>جمهوری استونی</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>مصر</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>جمهوری عربی مصر</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>صحرای غربی</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>اریتره</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>فلسطین</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>اسپانیا</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>پادشاهی اسپانیا</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>اتیوپی</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>جمهوری فدرال دموکراتیک اتیوپی</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>فنلاند</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>جمهوری فنلاند</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>فیجی</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>جمهوری فیجی</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>جزایر فالکلند(مالویناس)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>میکرونزی، ایالات فدرال</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>ایالات فدرال میکرونزی</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>جزایر فارو</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>فرانسه</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>جمهوری فرانسه</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>گابون</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>جمهوری گابونس</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>انگلستان</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>پادشاهی متحد بریتانیای کبیر و ایرلند شمالی</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>گرانادا</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>گرجستان</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>گویان فرانسه</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>گرنزی</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>غنا</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>جمهوری غنا</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>گیبرالتار</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>گروئنلند</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>گامبیا</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>جمهوری زامبیا</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>گینه</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>جمهوری گینه</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>گوادلوپ</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>گینهٔ استوایی</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>جمهوری گینه استوایی</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>یونان</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>جمهوری هلنیک</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>جورجیای جنوبی و جزایر ساندویچ جنوبی</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>گواتمالا</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>جمهوری گواتمالا</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>گوام</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>گینهٔ بیسائو</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>جمهوری گینهٔ بیسائو</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>گویان</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>جمهوری گویان</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>هنگ کنگ</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>هنگ کنگ منطقه اداری ویژه چین</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>جزیرهٔ هرد و جزایر مک‌دونالد</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>هندوراس</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>جمهوری هندوراس</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>کرواسی</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>جمهوری کرواسی</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>هاییتی</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>جمهوری هائیتی</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>مجارستان</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>مجارستان</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>اندونزی</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>جمهوری اندونزی</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>ایرلند</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>اسراییل</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>دولت اسرائیل</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>جزیره من</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>هندوستان</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>جمهوری هند</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>مستعمره‌های انگلستان در اقیانوس هند</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>عراق</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>جمهوری عراق</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>ایران، جمهوری اسلامی</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>جمهوری اسلامی ایران</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>ایسلند</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>جمهوری ایسلند</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>ایتالیا</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>جمهوری ایتالیا</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>جرسی</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>جاماییکا</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>اردن</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>پادشاهی هاشمی اردن</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>ژاپن</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>کنیا</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>جمهوری کنیا</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>قرقیزستان</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>جمهوری قرقیزستان</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>کامبوج</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>پادشاهی کامبوج</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>کیریباتی</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>جمهوری کیریباتی</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>کومورو</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>اتحادیه کومور</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>سن کیتس و نویس</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>کره، جمهوری دموکراتیک خلق</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>جمهوری دموکراتیک خلق کره</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>جمهوری کره</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>کویت</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>کشور کویت</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>جزایر کِیمن</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>قزاقستان</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>جمهوری قزاقستان</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>جمهوری دموکراتیک خلق لائو</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>لبنان</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>جمهوری لبنان</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>سن لوسیا</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>لیختن‌اشتاین</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>پادشاهی لیختن‌اشتاین</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>سری‌لانکا</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>جمهوری دموکراتیک سوسیالیستی سری لانکا</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>لیبریا</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>جمهوری لیبریا</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>لسوتو</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>پادشاهی لسوتو</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>لیتوانی</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>جمهوری لیتوانی</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>لوگزامبورگ</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>لوکزامبورگ</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>لتونی</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>جمهوری لتونی</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>لیبی</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>لیبی</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>مراکش</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>پادشاهی مراکش</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>موناکو</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>پادشاهی موناکو</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>مولداوی، جمهوری</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>جمهوری مولداوی</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>مونته نگرو</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>مونته نگرو</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>سنت مارتین (بخش فرانسوی)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>ماداگاسکار</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>جمهوری ماداگاسکار</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>جزایر مارشال</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>جمهوری جزایر مارشال</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>مقدونیه شمالی</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>جمهوری مقدونیه شمالی</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>مالی</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>جمهوری مالی</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>میانمار</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>جمهوری میانمار</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>مغولستان</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>ماکائو</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>موناکو منطقه تحت مدیریت چین</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>جزایر ماریانای شمالی</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>مشترک المنافع جزایر ماریانای شمالی</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>مارتینیک</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>موریتانی</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>جمهوری اسلامی موریتانی</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>مونت‌سرات</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>جزیره مالت</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>جمهوری مالت</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>موریتیوس</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>جمهوری موریس</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>مالدیو</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>جمهوری مالدیو</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>مالاوی</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>جمهوری مالاوی</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>مکزیک</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>ایالات متحده مکزیک</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>مالزی</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>موزامبیک</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>جمهوری موزامبیک</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>نامیبیا</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>جمهوری نامیبیا</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>کالدونیای جدید</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>نیجر</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>جمهوری نیجر</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>جزیرهٔ نورفولک</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>نیجریه</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>جمهوری فدرال نیجریه</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>نیکاراگوئه</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>جمهوری نیکاراگوئه</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>هلند</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>پادشاهی هلند</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>نروژ</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>پادشاهی نروژ</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>نپال</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>جمهوری دموکراتیک فدرال نپال</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>نائورو</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>جمهوری نائورو</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>نیوئه</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>نیوئه</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>نیوزیلند</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>عمان</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>پادشاهی عمان</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>پاناما</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>جمهوری پاناما</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>پرو</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>جمهوری پرو</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>پلی‌نزی فرانسه</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>پاپوا گینهٔ نو</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>دولت مستقل پاپوآ گینهٔ نو</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>فیلیپین</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>جمهوری فیلیپین</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>پاکستان</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>جمهوری اسلامی پاکستان</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>لهستان</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>جمهوری لهستان</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>سنت پیر و میکلون</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>پیتکایرن</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>پورتو ریکو</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>فلسطین</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>فلسطین</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>پرتغال</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>جمهوری پرتغال</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>پالائو</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>جمهوری پالائو</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>پاراگوئه</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>جمهوری پاراگوئه</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>قطر</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>دولت قطر</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>رئونیون</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>رومانی</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>صربستان</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>جمهوری صربستان</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>روسیه فدرال</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>رواندا</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>جمهوری رواندس</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>عربستان سعودی</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>پادشاهی عربستان سعودی</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>جزایر سلیمان</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>سیشل</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>جمهوری سیشل</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>سودان</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>جمهوری سودان</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>سوئد</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>پادشاهی سوئد</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>سنگاپور</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>جمهوری سنگاپور</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>سنت هلنا, Ascension و Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>اسلوونی</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>جمهوری اسلوونی</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>اسوالبارد و جان ماین</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>اسلواکی</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>جمهوری اسلواکی</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>سیرالئون</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>جمهوری سیرالئون</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>سان مارینو</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>جمهوری سن مارینو</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>سنگال</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>جمهوری سنگال</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>سومالی</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>جمهوری فدرال سومالی</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>سورینام</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>جمهوری سورینام</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>سودان جنوبی</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>جمهوری سودان جنوبی</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>سائو تومه و پرینسیپه</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>جمهوری دموکراتیک تومه و پرینسیپ</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>السالوادور</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>جمهوری السالوادور</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>سنت مارتین (بخش آلمانی)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>سنت مارتین (بخش آلمانی)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>جمهوری عربی سوریه</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>پادشاهی سوازیلند</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>پادشاهی سوازیلند</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>جزایر ترک و کایکوس</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>چاد</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>جمهوری چاد</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>مستعمره‌های جنوبی فرانسه</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>توگو</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>جمهوری تگلز</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>تایلند</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>پادشاهی تایلند</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>تاجیکستان</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>جمهوری تاجیکستان</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>توکلائو</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>تیمور شرقی</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>جمهوری دموکراتیک جزایر تیمور</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>ترکمنستان</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>تونس</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>جمهوری تونس</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>تونگا</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>پادشاهی تونگا</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>ترینیداد و تُباگو</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>جمهوری ترینیداد و تُباگو</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>تووالو</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>تایوان ، استانی از چین</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>تایوان ، استانی از چین</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>تانزانیا، جمهوری متحده</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>جمهوری متحده تانزانیا</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>اکراین</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>اوگاندا</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>جمهوری اوگاندا</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>جزایر کوچک دورافتادهٔ ایالات متحده</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>ایالات متحدهٔ آمریکا</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>ایالات متحدهٔ آمریکا</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>اروگوئه</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>جمهوری شرقی اروگوئه</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>ازبکستان</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>جمهوری ازبکستان</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>دولت شهر واتیکان</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>سن وینسنت و گرنادین</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>ونزوئلا، جمهوری بولیواری</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>جمهوری بولیواری ونزوئلا</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>جزایر ویرجین ، بریتانیا</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>جزایر ویرجین انگلستان</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>جزایر ویرجین ایالات متحده</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>جزایر ویرجین ایالات متحده آمریکا</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>ویتنام</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>جمهوری سوسیالیستی ویتنام</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>وانواتو</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>جمهوری وانواتو</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>والیس و فیوتونا</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>ساموا</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>دولت مستقل ساموآ</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>یمن</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>جمهوری یمن</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>مایوت</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>آفریقای جنوبی</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>جمهوری آفریقای جنوبی</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>زامبیا</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>جمهوری زامبیا</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>زیمبابوه</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>جمهوری زیمبابوه</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/fi.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/fi.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..d423f632a79f9d5bc52ddde14be510c3e40ec555
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/fi.countries.xlf
@@ -0,0 +1,1679 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="fi" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Andorran ruhtinaskunta</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Yhdistyneet arabiemiirikunnat</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Afganistanin islamilainen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua ja Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albania</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Albanian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Armenian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Angolan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktis</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentiina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentiinan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Amerikan Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Itävalta</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Itävallan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ahvenanmaa</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaidžan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Azerbaidžanin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnia-Hertsegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Bosnia-Hertsegovinan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Bangladeshin kansantasavalta</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgia</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Belgian kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Bulgarian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Bahrainin kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Burindin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Beninin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei Darussalamin valtio</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivia, monikansallinen valtio</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Bolivian monikansallinen valtio</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius ja Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius ja Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasilia</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Brasilian liittotasavalta</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahama</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Bahaman liittovaltio</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Bhutanin kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvet'nsaari</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Botswanan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Valko-Venäjä</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Valko-Venäjän tasavalta</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kookossaaret</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongon demokraattinen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Keski-Afrikan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Kongon tasavalta</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Sveitsi</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Sveitsin valaliitto</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Norsunluurannikko</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Norsunluurannikon tasavalta</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cookinsaaret</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Chilen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Kamerunin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Kiina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Kiinan kansantasavalta</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Kolumbian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Costa Rican tasavalta</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Kuuban tasavalta</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Joulusaari</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Kypros</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Kyproksen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>TÅ¡ekin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Saksa</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Saksan liittotasavalta</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Djiboutin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Tanska</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Tanskan kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Dominican liittovaltio</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikaaninen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algeria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Algerian demokraattinen kansantasavalta</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Ecuadorin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Viro</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Viron tasavalta</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egypti</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Egyptin arabitasavalta</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Länsi-Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>the State of Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Espanja</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Espanjan kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Etiopian demokraattinen liittotasavalta</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Suomi</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Suomen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidži</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Fidžin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandinsaaret</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronesian liittovaltio</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Mikronesian liittovaltio</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Färsaaret</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Ranska</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Ranskan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gabonin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Yhdistynyt kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Ison-Britannian ja Pohjois-Irlannin yhdistynyt kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Ranskan Guayana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Ghanan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grönlanti</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Guinean tasavalta</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Päiväntasaajan Guinea</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Päiväntasaajan Guinean tasavalta</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Kreikka</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Helleenien tasavalta</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Etelä-Georgia ja Eteläiset Sandwichinsaaret</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Guatemalan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Guinea-Bissaun tasasvalta</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Guyanan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Kiinan kansantasavallan erityishallintoalue Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heard ja McDonaldinsaaret</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Hondurasin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroatia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Kroatian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Haitin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Unkari</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Unkari</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Indonesian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlanti</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Israelin valtio</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Mansaari</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Intia</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Intian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Brittiläinen Intian valtameren alue</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Irakin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iranin islamilainen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Iranin islamilainen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islanti</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Islannin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italia</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Italian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaika</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordania</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Jordanian hašemiittinen kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japani</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Kenian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgisia</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgisian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kambodžan kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Kiribatin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komorit</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Komorien liitto</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts ja Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Korean demokraattinen kansantasavalta</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Korean demokraattinen kansantasavalta</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Korean tasavalta</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Kuwaitin valtio</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Caymansaaret</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Kazakstanin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laos</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libanonin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Liechtensteinin ruhtinaskunta</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Sri Lankan demokraattinen sosialistinen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Liberian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Lesothon kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Liettua</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Liettuan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Luxemburgin suurherttuakunta</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Latvia</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Latvian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marokko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Marokon kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Monacon ruhtinaskunta</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldovan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Moldovan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint-Martin (ranskalainen osa)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Madagaskarin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshallinsaaret</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Marshallinsaarten tasavalta</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Malin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Myanmarin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Kiinan kansantasavallan erityishallintoalue Macao</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Pohjois-Mariaanit</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Pohjois-Mariaanien liittovaltio</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Mauritanian islamilainen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Maltan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Mauritiuksen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Malediivit</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Malediivien tasavalta</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Malawin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Meksikon yhdysvallat</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malesia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mosambik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Mosambikin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Namibian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Uusi-Kaledonia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Nigerin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolkinsaari</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Nigerian liittotasavalta</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Nicaraguan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Alankomaat</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Alankomaiden kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norja</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Norjan kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Nepalin demokraattinen liittotasavalta</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Naurun tasavalta</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Uusi-Seelanti</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Omanin sulttaanikunta</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Panaman tasavalta</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Perun tasavalta</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Ranskan Polynesia</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua-Uusi-Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Independent State of Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filippiinit</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Filippiinien tasavalta</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Pakistanin islamilainen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Puola</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Puolan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint-Pierre ja Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>the State of Palestine</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugali</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugalin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Palaun tasavalta</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Paraguayn tasavalta</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Qatarin valtio</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Romania</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Serbian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Venäjän federaatio</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Ruandan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudi-Arabia</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Saudi-Arabian kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Salomonsaaret</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychellit</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Seychellien tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Sudanin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Ruotsi</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Ruotsin kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapore</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Singaporen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Saint Helena, Ascension ja Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Slovenian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard ja Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovakia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovakian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Sierra Leonen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>San Marinon tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Senegalin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federal Republic of Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Suriname</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Surinamen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Etelä-Sudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Etelä-Sudanin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>São Tomé ja Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>São Tomén ja Príncipen demokraattinen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>El Salvadorin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (hollantilainen osa)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (hollantilainen osa)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Syyrian arabitasavalta</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks- ja Caicossaaret</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>TÅ¡ad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>TÅ¡adin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Ranskan eteläiset alueet</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togon tasavalta</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thaimaa</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Thaimaan kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadžikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Tadžikistanin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Itä-Timor</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Itä-Timorin demokraattinen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Tunisian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Tongan kuningaskunta</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad ja Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Trinidadin ja Tobagon tasavalta</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Kiinan provinssi</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Kiinan provinssi</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tansanian yhdistynyt tasavalta</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Tansanian yhdistynyt tasavalta</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukraina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Ugandan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Yhdysvaltain pienet erillissaaret</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Yhdysvallat</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Amerikan yhdysvallat</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Uruguayn itäinen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Uzbekistanin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Pyhä istuin (Vatikaanivaltio)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent ja Grenadiinit</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuelan bolivariaanien tasavalta</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Venezuelan bolivariaanien tasavalta</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Neitsytsaaret, Brittiläiset</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Brittiläiset Neitsytsaaret</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Neitsytsaaret, Yhdysvaltain</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Yhdysvaltain Neitsytsaaret</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Vietnamin sosialistinen tasavalta</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Vanuatun tasavalta</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis ja Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Samoan itsenäinen valtio</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Jemenin tasavalta</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Etelä-Afrikka</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Etelä-Afrikan tasavalta</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Sambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Sambian tasavalta</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Zimbabwen tasavalta</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/fo.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/fo.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..2e4056121ad2f5f84327b2e4e8bff7bba7dc547a
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/fo.countries.xlf
@@ -0,0 +1,563 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="fo" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Sameindu arabisku emiratini</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua og Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albania</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenia</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktis</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Sámoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Eysturríki</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Avstralia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Áland</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Aserbajdsjan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnia-Hersegovina</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesj</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgia</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasilia</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Butan</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botsvana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Hvítarussland</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belis</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Miðafrikalýðveldið</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Sveis</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Kili</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Kina</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolombia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kosta Rika</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Kýpros</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Kekkia</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Týskland</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danmørk</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Domingo lýðveldið</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekvador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estland</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egyptaland</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spania</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopia</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finnland</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republic of Fiji</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Føroyar</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Frakland</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ekvator Guinea</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grikkaland</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Gujana</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroatia</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungarn</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungarn</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Írland</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Ísrael</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Ísland</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italia</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jameika</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenja</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgisia</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodja</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komorooyggjarnar</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts og Nevis</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuvait</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kasakstan</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lusia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liktenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litava</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luksemborg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Lettland</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marokko</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldova, Republic of</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshalloyggjarnar</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Móritania</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Móritius</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldivuoyggjarnar</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malavi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksiko</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Maleisia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mosambik</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Niðurlond</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Noreg</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Federal Democratic Republic of Nepal</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Ný Sæland</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Perú</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Nýguinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Independent State of Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipsoyggjar</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Pólland</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguei</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumenia</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudi-Arábia</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Sálomonoyggjarnar</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seyskelloyggjarnar</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Svøríki</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapor</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federal Republic of Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>South Sudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republic of South Sudan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tome og Prinsipi</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Kjad</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadsjikistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunesia</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad og Tobago</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukreina</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Sambandsríki Amerika</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Sambandsríkini Amerika</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguei</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Usbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Vatikanríki</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vinsent og Grenadinoyggjar</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Bolivarian Republic of</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Sámoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Suðurafrika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Sambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Simbabvi</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/fr.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/fr.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..c41b2a8715ecdb00335ab8ce52a9278bd674c31d
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/fr.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="fr" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorre</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Principauté d'Andorre</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Émirats arabes unis</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>République islamique d'Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua-et-Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanie</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>République d'Albanie</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Arménie</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>République d'Arménie</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>République d'Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarctique</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentine</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>République d'Argentine</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samoa américaines</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Autriche</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>République d'Autriche</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australie</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ã…land, ÃŽles</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaïdjan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>République d'Azerbaïdjan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnie-Herzégovine</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>République de Bosnie et Herzégovine</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbade</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>République populaire du Bengladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgique</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Royaume de Belgique</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgarie</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>République de Bulgarie</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahreïn</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Royaume de Bahreïn</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>République du Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Bénin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>République du Bénin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint-Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermudes</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunéi Darussalam</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivie, état plurinational de</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>État plurinational de Bolivie</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Saint-Eustache et Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Saint-Eustache et Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brésil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>République fédérale du Brésil</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Commonwealth des Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhoutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Royaume du Bouthan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>île Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>République du Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bélarus</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>République du Bélarus</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Cocos (Keeling), ÃŽles</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>République démocratique du Congo</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>République centrafricaine</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>République du Congo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>République du Congo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Suisse</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Confédération helvétique</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Côte d'Ivoire</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>République de Côte d'Ivoire</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>îles Cook</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chili</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>République du Chili</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Cameroun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>République du Cameroun</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Chine</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>République populaire de Chine</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombie</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>République de Colombie</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>République du Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>République de Cuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cap-Vert</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>République du Cap-Vert</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Christmas, ÃŽle</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Chypre</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>République de Chypre</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Tchéquie</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>République tchèque</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Allemagne</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>République fédérale d'Allemagne</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>République de Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danemark</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Royaume du Danemark</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominique</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Commonwealth de la Dominique</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>République dominicaine</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algérie</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>République algérienne démocratique et populaire</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Équateur</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>République d'Équateur</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonie</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>République d'Estonie</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Égypte</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>République arabe d'Égypte</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Sahara occidental</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Érythrée</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>l'État d'Érythrée</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Espagne</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Royaume d'Espagne</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Éthiopie</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>République fédérale démocratique d'Éthiopie</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlande</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>République de Finlande</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>République des Fidji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Malouines, ÃŽles (Falkland)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Micronésie, États fédérés de</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>États fédérés de Micronésie</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>îles Féroé</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>France</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>République française</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>République gabonaise</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Royaume-Uni</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Royaume-Uni de Grande-Bretagne et d'Irlande du Nord</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenade</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Géorgie</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guyane française</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernesey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>République du Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Groënland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambie</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>République de Gambie</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinée</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>République de Guinée</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Guinée Équatoriale</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>République de Guinée Équatoriale</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grèce</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>République grecque</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Géorgie du Sud et les îles Sandwich du Sud</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>République du Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinée-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>République de Guinée-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>République de Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Région spéciale administrative chinoise de Hong-Kong</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>îles Heard-et-MacDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>République du Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Croatie</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>République de Croatie</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haïti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>République de Haïti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hongrie</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hongrie</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonésie</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>République d'Indonésie</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlande</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israël</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>État d'Israël</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>ÃŽle de Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Inde</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>République d'Inde</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Territoire britannique de l'océan Indien</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>République d'Iraq</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, République islamique d'</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>République islamique d'Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islande</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>République d'Islande</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italie</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>République italienne</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaïque</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordanie</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Royaume hachémite de Jordanie</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japon</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>République du Kenya</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirghizistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>République kirghize</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Cambodge</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Royaume du Cambodge</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>République de Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comores</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Union des Comores</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint-Christophe-et-Niévès</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Corée, République populaire démocratique de</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>République démocratique populaire de Corée</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Corée, République de</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Koweït</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>État du Koweït</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>îles Caïmans</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakhstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>République du Kazakhstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Lao, République démocratique populaire</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Liban</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>République libanaise</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Sainte-Lucie</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Principauté du Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>République démocratique socialiste de Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Libéria</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>République du Libéria</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Royaume du Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituanie</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>République de Lituanie</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxembourg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Grand-duché du Luxembourg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Lettonie</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>République de Lettonie</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libye</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libye</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroc</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Royaume du Maroc</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Principauté de Monaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldova, République de</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>République de Moldova</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Monténégro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Monténégro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint-Martin (partie française)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>République de Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>ÃŽles Marshall</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>République des Îles Marshall</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Macédoine du Nord</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>République de Macédoine du Nord</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>République du Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Birmanie</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>République de Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolie</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macau</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Région spéciale administrative chinoise de Macao</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>ÃŽles Mariannes du Nord</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Commonwealth des îles Mariannes du Nord</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritanie</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>République islamique de Mauritanie</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malte</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>République de Malte</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Maurice</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>République de l'Île Maurice</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldives</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>République des Maldives</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>République du Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexique</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>États-Unis du Mexique</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malaisie</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambique</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>République du Mozambique</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibie</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>République de Namibie</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nouvelle-Calédonie</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>République du Niger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>île Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>République fédérale du Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>République du Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Pays-Bas</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Royaume des Pays-Bas</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norvège</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Royaume de Norvège</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Népal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>République fédérale démocratique du Népal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>République de Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Nioue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Nioue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nouvelle-Zélande</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanat d'Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>République du Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Pérou</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>République du Pérou</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polynésie française</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papouasie-Nouvelle-Guinée</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>État indépendant de Papouasie-Nouvelle-Guinée</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Philippines</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>République des Philippines</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>République islamique du Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Pologne</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>République de Pologne</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint-Pierre-et-Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>ÃŽles Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Porto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestine, État de</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>l'État de Palestine</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>République portugaise</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palaos</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>République de Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>République du Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>État du Qatar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion, Île de la</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Roumanie</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbie</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>République de Serbie</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Russie, Fédération de</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>République rwandaise</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Arabie saoudite</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Royaume d'Arabie saoudite</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Salomon, ÃŽles</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>République des Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Soudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>République du Soudan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Suède</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Royaume de Suède</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapour</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>République de Singapour</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Sainte-Hélène, Ascension et Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovénie</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>République de Slovénie</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard et île Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovaquie</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>République slovaque</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>République de Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>Saint-Marin</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>République de San Marin</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Sénégal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>République du Sénégal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalie</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>République fédérale de Somalie</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>République du Surinam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Soudan du Sud</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>République du Soudan du Sud</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tomé-et-Principe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>République démocratique de Sao Tomé et Principe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>République d'El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Saint-Martin (partie néerlandaise)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Saint-Martin (partie néerlandaise)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Syrienne, République arabe</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Eswatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Royaume d’Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>îles Turques-et-Caïques</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Tchad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>République du Tchad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Terres australes françaises</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>République togolaise</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thaïlande</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Royaume de Thaïlande</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadjikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>République du Tadjikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor oriental</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>République démocratique du Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkménistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisie</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>République de Tunisie</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Royaume des Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinité-et-Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>République de Trinité et Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taïwan, province de Chine</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taïwan, province de Chine</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzanie, République unie de</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>République unie de Tanzanie</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukraine</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Ouganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>République d'Ouganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Îles mineures éloignées des États-Unis</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>États-Unis</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>États-Unis d'Amérique</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>République orientale d'Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Ouzbékistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>République d'Ouzbékistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Saint-Siège (état de la cité du Vatican)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint-Vincent-et-les-Grenadines</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Vénézuela, république bolivarienne du</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>République bolivarienne du Vénézuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>ÃŽles Vierges britanniques</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>ÃŽles Vierges britanniques</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Îles Vierges, États-Unis</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Îles Vierges des États-Unis d'Amérique</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Viêt Nam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>République socialiste du Viet Nam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>République du Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis et Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>État indépendant de Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yémen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>République du Yémen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Afrique du Sud</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>République d'Afrique du Sud</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambie</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>République de Zambie</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>République du Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/gl.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/gl.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..853bc1137c75576e21a95780f3ee7abeec127fb0
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/gl.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="gl" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Principado de Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Emiratos Árabes Unidos</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistán</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>República Islámica de Afganistán</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antiga e Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguila</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albania</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>República de Albania</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>República de Armenia</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>República de Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antártida</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Arxentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>República Arxentina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samoa Americana</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>República de Austria</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Illas Ã…land</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Acerbaixán</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>República de Acerbaixán</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnia e Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>República de Bosnia e Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>República Popular de Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Bélxica</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Reino de Bélxica</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burquina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>República de Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Reino de Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>República de Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>República de Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>San Bartolomé</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Illas Bermudas</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei Darussalam</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivia, Estado Plurinacional da</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Estado Plurinacional da Bolivia</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, San Eustaquio e Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, San Eustaquio e Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>República Federativa do Brasil</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Comunidade das Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bután</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Reino de Bután</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Illa Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botsuana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>República de Botsuana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bielorrusia</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>República de Bielorrusia</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belice</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canadá</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Illas Cocos (Keeling)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Congo, República Democrática do</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>República Centroafricana</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Congo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>República do Congo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Suíza</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Confederación Suíza</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Costa de Marfín</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>República da Costa de Marfín</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Illas Cook</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>República de Chile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Camerún</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>República de Camerún</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>China</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>República Popular China</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>República de Colombia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>República de Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>República de Cuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Illa Christmas</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Chipre</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>República de Chipre</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Chequia</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>República Checa</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Alemaña</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>República Federal de Alemaña</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Xibutí</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>República de Xibutí</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Dinamarca</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Reino de Dinamarca</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Comunidade de Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>República Dominicana</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Alxeria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>República Democrática Popular de Alxeria</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>República de Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>República de Estonia</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Exipto</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>República Árabe de Exipto</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Sahara Occidental</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Estado de Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>España</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Reino de España</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopía</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>República Democrática Federal de Etiopía</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlandia</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>República de Finlandia</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fixi</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>República de Fidxi</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Illas Falkland (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Micronesia, Estados Federados de</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Estados Federados de Micronesia</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Illas Feroe</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francia</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>República Francesa</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabón</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>República do Gabón</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Reino Unido</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Reino Unido da Grande Bretaña e Irlanda do Norte</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Granada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Xeorxia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Güiana Francesa</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>República de Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Xibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grenlandia</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>República de Guinea</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadalupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Guinea Ecuatorial</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>República de Guinea Ecuatorial</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grecia</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>República Helénica</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Xeorxia do Sul e as Illas Sandwich do Sul</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>República de Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>República de Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Güiana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>República da Güiana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hong Kong Rexión Administrativa Especial de China</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Illa Heard e Illas McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>República de Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Croacia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>República de Croacia</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haití</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>República de Haití</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungría</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungría</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>República de Indonesia</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlanda</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Estado de Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Illa de Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>A India</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>República da India</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Territorio Británico do Océano Índico</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Iraq</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>República de Iraq</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Irán, República Islámica de</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>República Islámica de Irán</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islandia</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>República de Islandia</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italia</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>República Italiana</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Xamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Xordania</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Reino Hashemita de Xordania</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Xapón</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Quenia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>República de Quenia</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Quirgizistán</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>República Quirguíz</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Camboxa</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Reino de Camboxa</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Quiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>República de Quiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comores</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Unión das Comores</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>San Cristobo e Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Corea, República Democrática Popular de</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>República Democrática Popular de Corea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Corea, República de</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuvait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Estado de Kuvait</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Illas Caimán</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakhstán</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>República de Kazakhstán</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>República Democrática Popular de Lao</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Líbano</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>República Libanesa</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Santa Lucía</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Principado de Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>República Socialista Democrática de Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>República de Liberia</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Reino de Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituania</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>República de Lituania</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxemburgo</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Gran Ducado de Luxemburgo</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letonia</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>República de Letonia</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marrocos</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Reino de Marrocos</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Mónaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Principado de Mónaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavia, República de</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>República de Moldavia</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>San Martiño (parte francesa)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>República de Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Illas Marshall</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>República das Illas Marshall</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>República de Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Birmania</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>República de Birmania</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macau</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Macau Rexión Administrativa Especial de China</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Illas Marianas do Norte</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Comunidade das Illas Marianas do Norte</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinica</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>República Islámica de Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>República de Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauricio</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>República de Mauricio</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldivas</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>República das Illas Maldivas</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malaui</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>República de Malaui</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>México</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Estados Unidos de México</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malasia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambique</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>República de Mozambique</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>República de Namibia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nova Caledonia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Níxer</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>República do Níxer</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Illa Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nixeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>República Federal de Nixeria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>República de Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Países Baixos</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Reino dos Países Baixos</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Noruega</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Reino de Noruega</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>República Democrática Federal de Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>República de Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nova Celandia</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omán</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanado de Omán</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panamá</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>República de Panamá</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Perú</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>República de Perú</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polinesia Francesa</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papúa Nova Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Estado Independente de Papúa Nova Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipinas</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>República das Filipinas</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Paquistán</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>República Islámica de Paquistán</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polonia</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>República de Polonia</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>San Pedro e Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Porto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestina, Estado de</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>o Estado de Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>República Portuguesa</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>República de Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguai</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>República do Paraguai</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Estado de Qatar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Reunión</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Romanía</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>República de Serbia</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Federación Rusa</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>República de Ruanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Arabia Saudí</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Reino de Arabia Saudí</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Illas Salomón</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seichelles</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>República das Seichelles</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudán</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>República de Sudán</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Suecia</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Reino de Suecia</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>República de Singapur</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Santa Helena, Ascensión e Tristán da Cuña</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Eslovenia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>República de Eslovenia</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard e Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Eslovaquia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>República Eslovaca</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Serra Leoa</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>República de Serra Leoa</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>República de San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>República de Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>República Federal de Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>República de Surinam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sudán do Sur</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>República de Sudán do Sur</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>San Tomé e Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>República Democrática de San Tomé e Príncipe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>O Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>República do Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>San Martiño (parte holandesa)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>San Martiño (parte holandesa)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>República Árabe de Siria</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Suacilandia</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Illas Turcos e Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Chad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>República do Chad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Territorios Franceses do Sul</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>República de Togo</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tailandia</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Reino de Tanzania</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Taxiquistán</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>República de Taxiquistán</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Toquelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor Leste</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>República Democrática de Timor Leste</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistán</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunicia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>República de Tunicia</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Reino de Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trindade e Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>República de Trindade e Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwán, Provincia de China</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwán, Provincia de China</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzania, República Unida de</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>República Unida de Tanzania</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ucraína</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>República de Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Illas Exteriores Menores dos Estados Unidos de América</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Estados Unidos de América</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Estados Unidos de América</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguai</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>República Oriental do Uruguai</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbequistán</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>República de Uzbequistán</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Santa Sé (Cidade Estado do Vaticano)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>San Vicente e as Granadinas</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, República Bolivariana de</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>República Bolivariana de Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Illas Virxes Británicas</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Illas Virxes Británicas</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Illas Virxes, EE.UU.</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Illas Virxes dos Estados Unidos de América</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>República Socialista de Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>República de Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis e Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Estado Independente de Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Iemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>República do Iemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Maiote</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>África do Sur</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>República Surafricana</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>República de Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabue</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>República de Zimbabue</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/he.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/he.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..d69aefcc20582ece390338b8eaf77b9badaeb032
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/he.countries.xlf
@@ -0,0 +1,1695 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="he" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>אנדורה</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>נסיכות אנדורה</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>איחוד האמירויות הערביות</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>אפגניסטן</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>הרפובליקה האיסלמית של אפגניסטן</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>אנטיגואה וברבודה</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>אנגווילה</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>אלבניה</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>הרפובליקה של אלבניה</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>ארמניה</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>הרפובליקה של ארמניה</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>אנגולה</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>הרפובליקה של אנגולה</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>אנטרקטיקה</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>ארגנטינה</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>הרפובליקה הארגנטינאית</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>סמואה האמריקנית</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>אוסטריה</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>הרפובליקה של אוסטריה</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>אוסטרליה</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>ארובה</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>אולנד</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>אזרבייג׳ן</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>הרפובליקה של אזרביג'ן</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>בוסניה והרצגובינה</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>הרפובליקה של בוסניה והרצגובינה</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>ברבדוס</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>בנגלדש</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>רפובליקת העם של בנגלדש</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>בלגיה</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>ממלכת בלגיה</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>בורקינה פאסו</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>בולגריה</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>הרפובליקה של בוגלריה</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>בחריין</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>ממלכת בחריין</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>בורונדי</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>הרפובליקה של בורונדי</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>בנין</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>הרפובליקה של בנין</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>סנט ברתלמי</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>ברמודה</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>ברונאי דרוסלאלם</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>בוליביה, המדינה הרב לאומית של</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>המדינה הרב לאומית של בוליביה</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>בונייר, סנט אוסטתיוס וסאבא</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>בונייר, סנט אוסטתיוס וסאבא</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>ברזיל</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>הרפובליקה הפדרטיבית של ברזיל</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>בהמאס</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>בהאמס</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>בהוטן</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>ממכלת בהוטן</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>בובה</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>בוטסואנה</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>הרפובליקה של בוטסוואנה</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>בלארוס</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>הרפובליקה של בלרוס</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>בליז</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>קנדה</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>איי קוקוס</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>קונגו, הרפובליקה הדמוקרטית של</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>הרפובליקה המרכז־אפריקאית</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>קונגו</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>הרפובליקה של קונגו</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>שווייץ</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>הקונפדרציה השווצרית</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>חוף השנהב</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>רפובליקת חוף השנהב</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>איי קוק</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>צ'ילה</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>הרפובליקה של צ'ילה</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>קמרון</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>הרפובליקה של קמרון</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>סין</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>הרפובליקה העממית של סין</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>קולומביה</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>הרפובליקה של קולומביה</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>קוסטה ריקה</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>הרפובליקה של קוסטה ריקה</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>קובה</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>הרפובליקה של קובה</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>קאבו ורדה</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>הרפובליקה של קאבו ורדה</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>קוראסאו</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>קוראסאו</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>איי חג המולד</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>קפריסין</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>הרפובליקה של קפריסין</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>צ'כיה</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>צ׳כיה</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>גרמניה</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>גרמניה</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>ג׳יבוטי</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>הרפובליקה של ג׳יבוטי</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>דנמרק</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>הממלכה של דנמרק</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>דומיניקה</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>דומיניקה</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>הרפובליקה הדומיניקנית</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>אלג'יריה</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>הרפובליקה האלג'יראית הדמוקרטית העממית</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>אקוודור</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>הרפובליקה של אקוודור</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>אסטוניה</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>הרפובליקה של אסטוניה</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>מצרים</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>מצרים</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>סהרה המערבית</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>אריתריאה</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>מדינת אריתריאה</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>ספרד</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>ממלכת ספרד</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>אתיופיה</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>הרפובליקה הפדרלית הדמוקרטית של אתיופיה</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>פינלנד</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>הרפובליקה של פינלנד</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>פיג'י</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>הרפובליקה של פיג'י</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>איי פוקלנד</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>מיקרונזיה</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>מיקרונזיה</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>איי פארו</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>צרפת</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>צרפת</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>גבון</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>הרפובליקה הגבונית</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>הממלכה המאוחדת</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>הממלכה המאוחדת של בריטניה הגדולה וצפון אירנלד</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>גרנדה</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>גאורגיה</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>גיאנה הצרפתית</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>גרנזי</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>גאנה</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>הרפובליקה של גאנה</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>גיברלטר</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>גרינלנד</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>גמביה</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>הרפובליקה של גמביה</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>גינאה</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>הרפובליקה של גינאה</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>גוואדלופ</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>גינאה המשוונית</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>הרפובליקה של גינאה המשוונית</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>יוון</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>יוון</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>איי ג׳ורג׳יה הדרומית ואיי סנדוויץ׳ הדרומיים</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>גואטמלה</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>הרפובליקה של גואטמלה</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>גואם</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>גינאה ביסאו</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>הרפובליקה של גינאה בסאו</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>גיאנה</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>הרפובליקה של גויאנה</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>הונג קונג</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>האיזור המנהלי הונג קונג של סין</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>האי הרד ואיי מקדונלד</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>הונדורס</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>הרפובליקה של הונדורס</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>קרואטיה</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>הרפובליקה של קרואטיה</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>האיטי</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>הרפובליקה של האיטי</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>הונגריה</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>הונגריה</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>אינדונזיה</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>הרפובליקה של אינדונזיה</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>אירלנד</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>ישראל</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>מדינת ישראל</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>האי מאן</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>הודו</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>הרפובליקה של הודו</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>הטריטוריה הבריטית באוקיינוס ההודי</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>עיראק</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>הרפובליקה של עירק</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>אירן, הרפובליקה האיסלמית של</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>הרפובליקה האיסלמית של אירן</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>איסלנד</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>הרפובליקה של איסלנד</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>איטליה</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>הרפובליקה האיטלקית</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>ג'רזי</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>ג'מייקה</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>ירדן</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>הממלכה ההאשמית של ירדן</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>יפן</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>קניה</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>הרפובליקה של קניה</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>קירגיזסטן</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>הרפובליקה הקירג'יזית</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>קמבודיה</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>הממלכה של קמבודיה</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>קיריבטי</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>הרפובליקה של קיריבטי</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>קומורו</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>האיחוד של קומורוס</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>סנט קיטס ונוויס</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>קוריאה, דמוקרטיית העם של</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>הרפובליקה הדמוקרטית של העם של קוריאה</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>קוריאה, הרפובליקה של</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>כווית</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>מדינת כווית</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>איי קיימן</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>קזחסטן</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>הרפובליקה של קזחסטאן</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>לאוס</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>לבנון</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>הרפובליקה הלבנונית</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>סנט לוסיה</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>ליכטנשטיין</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>נסיכות ליכטנשטיין</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>סרי לנקה</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>הרפובליקה הסוציאל דמוקרטית של סרי לאנקה</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>ליבריה</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>הרפובליקה של ליבריה</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>לסוטו</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>ממלכת לסותו</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>ליטא</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>הרפובליקה של ליטואניה</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>לוקסמבורג</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>הדוקסות של לוקסנבורג</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>לטביה</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>הרפובליקה של לטביה</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>לוב</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>לוב</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>מרוקו</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>ממלכת מרוקו</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>מונקו</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>הנסיכות של מונקו</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>מולדובה, הרפובליקה של</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>הרפובליקה של מולדובה</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>מונטנגרו</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>מונטנגרו</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>סן מרטן</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>מדגסקר</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>הרפובליקה של מדגסקר</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>איי מרשל</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>הרפובליקה של איי מרשל</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>צפון קלדוניה</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>הרפובליקה של צפון מקדוניה</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>מאלי</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>הרפובליקה של מלי</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>מיאנמר</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>הרפובליקה של מיאנמר</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>מונגוליה</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>מאקאו</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>האיזור הניהולי המיוחד מאקאו של סין</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>איי מריאנה הצפוניים</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>איי מרינה הצפוניים</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>מרטיניק</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>מאוריטניה</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>הרפובליקה האיסלמית של מאוריטניה</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>מונטסראט</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>מלטה</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>הרפובליקה של מלטה</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>מאוריציוס</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>הרפובליקה של מאוריציוס</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>האיים המלדיביים</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>הרפובליקה של מלדויס</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>מלאווי</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>הרפובליקה של מלאוי</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>מקסיקו</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>מדינות מקסיקניות המאוחדות</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>מלזיה</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>מוזמביק</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>הרפובליקה של מוזמביק</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>נמיביה</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>הרפובליקה של נמיביה</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>קלדוניה החדשה</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>ניז׳ר</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>הרפובליקה של ניז'ר</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>נורפוק</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>ניגריה</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>הרפובליקה הפדרלית של ניגריה</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>ניקרגואה</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>הרפובליקה של ניקרגואה</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>הולנד</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>הממלכה של ההולנדים</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>נורווגיה</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>הממלכה של נורבגיה</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>נפאל</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>הרפובליקה הפדרלית דמוקרטית של נפאל</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>נאורו</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>הרפובליקה של נאורו</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>ניואה</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>ניואה</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>ניו זילנד</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>עומאן</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>הסולטנות של עומן</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>פנמה</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>הרפובליקה של פנמה</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>פרו</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>הרפובליקה של פרו</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>פולינזיה הצרפתית</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>פפואה גינאה החדשה</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>המדינה העצמאית של פפואה גינאה החדשה</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>הפיליפינים</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>הרפובליקה של הפיליפינים</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>פקיסטן</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>הרפובליקה האיסלמית של פקיסטן</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>פולין</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>הרפובליקה של פולין</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>סן פייר ומיקלון</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>פיטקרן</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>פוארטו ריקו</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>פסלטין, מדינת</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>מדינת פלסטין</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>פורטוגל</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>הרפובליקה הפורטוגזית</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>פלאו</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>הרפובליקה של פלאו</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>פרגוואי</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>הרפובליקה של פרגוואי</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>קטר</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>קטר</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>ראוניון</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>רומניה</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>סרביה</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>הרפובליקה של סרביה</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>הפדרציה הרוסית</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>רואנדה</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>הרפובליקה הרואנדית</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>ערב הסעודית</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>הממלכה של ערב הסעודית</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>איי שלמה</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>סיישל</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>הרפובליקה של איי סיישל</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>סודאן</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>הרפובליקה של סודן</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>שוודיה</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>הממלכה של שבדיה</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>סינגפור</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>הרפובליקה של סינגפור</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>סנט הלנה, אסנשן וטריסטן דה קונה</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>סלובניה</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>הרפובליקה של סלובניה</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>סוולברד ויאן מאין</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>סלובקיה</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>הרפובליקה הסלובקית</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>סיירה לאון</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>הרפובליקה של סיירה ליאון</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>סן מרינו</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>הרפובליקה של סאן מרינו</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>סנגל</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>הרפובליקה של סנגל</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>סומליה</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>הרפובליקה הפדרלית של סומליה</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>סורינאם</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>הרפובליקה של סורינאם</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>דרום סודאן</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>הרפובליקה של דרום סודן</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>סאו טומה ופרינסיפה</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>הרפובליקה הדמוקרטית של סאו טומה ופרינסיפה</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>אל סלוודור</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>אל סלבדור</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>סנט מארטן (החלק ההולנדי)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>סנט מארטן (החלק ההולנדי)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>הרפובליקה הערבית הסורית</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>אסווטני</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>ממלכת אסווטיני</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>איי טרקס וקייקוס</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>צ׳אד</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>הרפובליקה של צ'ד</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>הטריטוריות הדרומיות של צרפת</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>טוגו</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>הרפובליקה הטוגוליזית</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>תאילנד</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>ממלכת תאילנד</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>טג׳יקיסטן</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>הרפובליקה של טג'יקיסטן</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>טוקלאו</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>טימור מזרח</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>הרפובליקה הדמוקרטית של טימר מזרח</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>טורקמניסטן</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>תוניסיה</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>הרפובליקה של טוניסיה</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>טונגה</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>ממלכת טונגה</target>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name" approved="yes">
+        <source>Türkiye</source>
+        <target>טורקיה</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>הרפובליקה של טורקיה</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>טרינידד וטובגו</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>הרפובליקה של טרינידד וטובגו</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>טובאלו</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>טאייואן, מחוז של סין</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>טאייואן, מחוז של סין</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>טנזניה, הרפובליקה המאוחדת של</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>הרפובליקה המאוחדת של טנזניה</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>אוקראינה</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>אוגנדה</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>הרפובליקה של אוגנדה</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>האיים המרוחקים הקטנים של ארצות הברית</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>ארצות הברית</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>ארצות הברית</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>אורוגוואי</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>הרפובליקה מזרחית של אורוגאי</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>אוזבקיסטן</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>הרפובליקה של אוזבקיסטן</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>וותיקן</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>סנט וינסנט והגרנדינים</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>ונצואלה, הרפובליקה הבוליוריאנית של</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>הרפובליקה הבוליוריאנית של ונצואלה</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>איי הבתולה (בריטיים)</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>איי הבתולה הבריטיים</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>איי הבתולה (ארה״ב)</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>איי הבתולה של ארה"ב</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>ויטנאם</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>הרפובליקה הסוציאליסטית של ויאטנם</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>ונואטו</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>הרפובליקה של ואנואטו</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>ואליס ופוטונה</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>סמואה</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>המדינה העצמאית של סמואה</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>תימן</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>הרפובליקה של תימן</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>מיוט</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>דרום אפריקה</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>הרפובליקה של דרום אפריקה</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>זמביה</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>הרפובליקה של זמביה</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>זימבבואה</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>הרפובליקה של זימבבואה</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/hi.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/hi.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..292f1959045e2e0fc30a62eed90b51c44066d4cc
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/hi.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="hi" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>अण्डोरा</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>प्रिन्सपलिटी ऑफ एन्डोर्रा</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>संयुक्त अरब अमीरात</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>अफ़्गानिस्तान</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>इस्लामिक रिपब्लिक ऑफ अफ़्ग़ानिस्तान</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>अण्टीगुआ और बारबूडा</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>अंगुइला</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>अल्बानिया</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>रिपब्लिक ऑफ अल्बानिया</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>आर्मीनिया</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>रिपब्लिक ऑफ आर्मेनिया</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>अंगोला</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>रिपब्लिक ऑफ अंगोला</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>अंटार्कटिका</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>अर्जेण्टीना</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>अर्जेन्टीन रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>अमेरिकी समोआ</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>ऑस्ट्रिया</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>रिपब्लिक ऑफ ऑस्ट्रिया</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>ऑस्ट्रेलिया</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>अरूबा</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>ऑलैण्ड द्वीपसमूह</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>अज़रबैजान</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>रिपब्लिक ऑफ अजरबैजान</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>बॉस्निया और हर्ज़ेगोविना</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>रिपब्लिक ऑफ बोस्निया एंड हर्ज़ेगोविना</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>बारबाडोस</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>बांग्लादेश</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>पीपल्स रिपब्लिक ऑफ बांग्लादेश</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>बेल्जियम</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>किंगडम ऑफ बेल्जियम</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>बुर्किना फासो</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>बुल्गारिया</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>रिपब्लिक ऑफ बुल्गारिया</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>बहरीन</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>किंगडम ऑफ बहरीन</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>बुरुण्डी</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>रिपब्लिक ऑफ बुरून्डी</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>बेनिन</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>रिपब्लिक ऑफ बेनिन</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>सेंट बार्थेलेमी</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>बरमूडा</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>ब्रुनेई दरउस्सलाम</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>बोलिविया, प्लॊरिनेशनल स्टेट ऑफ़</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>प्लॊरिनेशनल स्टेट ऑफ़ बोलिविया</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>बोनैर, सिंट यूस्टेटीयस एंड साबा</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>बोनैर, सिंट यूस्टेटीयस एंड साबा</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>ब्राज़ील</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>फेडरेटिव रिपब्लिक ऑफ ब्राज़ील</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>बहामास</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>कॉमनवेल्थ ऑफ द बहामास</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>भूटान</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>किंगडम ऑफ भूटान</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>बोउवेट आइलैंड</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>बोत्सवाना</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>रिपब्लिक ऑफ बोट्सवाना</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>बेलारूस</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>रिपब्लिक ऑफ बेलारूस</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>बेलीज़</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>कनाडा</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>कोकोस (कीलिंग) द्वीपसमूह</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>कांगो, द डेमोक्रेटिक रिपब्लिक ऑफ द</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>मध्य अफ़्रीकी गणराज्य</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>कॉंगो</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>कांगो गणराज्य</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>स्विट्ज़रलैण्ड</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>स्विस कॉन्फेडरेशन</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>कोयटे डी वोयरे</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>रिपब्लिक ऑफ कोटे डी वायरे</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>कुक द्वीपसमूह</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>चिली</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>रिपब्लिक ऑफ चिली</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>कैमरुन</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>रिपब्लिक ऑफ कैमरून</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>चीन</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>चीनी जनवादी गणराज्य</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>कोलम्बिया</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>रिपब्लिक ऑफ कोलम्बिया</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>कोस्टा रीका</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>रिपब्लिक ऑफ कोस्टा रिका</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>क्यूबा</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>रिपब्लिक ऑफ क्यूबा</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>काबो वर्डे</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>रिपब्लिक ऑफ काबो वर्डे</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>कुराकाओ</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>कुराकाओ</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>क्रिसमस आइलैन्ड</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>साइप्रस</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>रिपब्लिक ऑफ साइप्रस</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>चेकिया</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>चेक गणराज्य</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>जर्मनी</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>फेडरल रिपब्लिक ऑफ जर्मनी</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>जिबूती</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>रिपब्लिक ऑफ द्जिवबौटी</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>डेनमार्क</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>किंगडम ऑफ डेनमार्क</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>डोमिनिका</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>कॉमनवेल्थ ऑफ डोमिनिका</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>डोमिनिकन गणराज्य</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>अल्जीरिया</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>पीपल्स डेमोक्रेटिक रिपब्लिक ऑफ अल्जीरिया</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>ईक्वाडोर</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>रिपब्लिक ऑफ इक्वाडोर</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>एस्टोनिया</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>रिपब्लिक ऑफ एस्टोनिया</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>मिस्र</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>अरब रिपब्लिक ऑफ इजिप्ट</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>पश्चिमी सहारा</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>इरित्रिया</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>स्टेट ऑफ़ एरिट्रेया</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>स्पेन</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>किंगडम ऑफ स्पेन</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>इथियोपिया</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>फेडेरल डेमोक्रेटिक रिपब्लिक ऑफ इथियोपिया</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>फ़िनलैण्ड</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>रिपब्लिक ऑफ फिनलैंड</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>फ़िजी</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>रिपब्लिक ऑफ फिजी</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>फॉकलैंड आइलैंड्स (मालविनास)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>माइक्रोनीसिया, फेडेरेटड स्टेट्स ऑफ</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>माइक्रोनेशिया के संघीकृत राज्य</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>फ़रो द्वीपसमूह</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>फ़्रान्स</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>फ्रेंच रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>गबॉन</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>गाबोनीज़ रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>यूनाइटेड किंगडम</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>यूनाइटेड किंगडम ऑफ ग्रेट ब्रिटेन एन्ड नॉर्दर्न आयरलैन्ड</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>ग्रेनाडा</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>जॉर्जिया</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>फ़्रान्सीसी गुयाना</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>ग्वेर्नसे</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>घाना</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>रिपब्लिक ऑफ घाना</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>जिब्राल्टर</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>ग्रीनलैण्ड</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>गाम्बिया</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>गाम्बिया गणराज्य</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>गिनी</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>रिपब्लिक ऑफ गिनी</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>गुआदेलूप</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>भूमध्यरेखीय गिनी</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>रिपब्लिक ऑफ इक्विटोरियल गिनी</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>यूनान</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>हेलेनिक रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>दक्षिण जॉर्जिया एवं दक्षिण सैंडविच द्वीप समूह</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>ग्वाटेमाला</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>रिपब्लिक ऑफ ग्वाटेमाला</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>गुआम</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>गिनी-बिसाऊ</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>रिपब्लिक ऑफ गिनी-बिसाउ</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>गयाना</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>रिपब्लिक ऑफ गुयाना</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>हांगकांग</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>हाँग काँग स्पेशल ऐडमिनिस्ट्रेटिव रीजन ऑफ चाइना</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>हर्ड द्वीप और मैकडोनाल्ड द्वीप</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>हौण्डुरस</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>रिपब्लिक ऑफ होन्डुरास</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>क्रोएशिया</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>रिपब्लिक ऑफ क्रोएशिया</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>हैती</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>रिपब्लिक ऑफ हैती</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>हंगरी</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>हंगरी</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>इंडोनेशिया</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>रिपब्लिक ऑफ इंडोनेशिया</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>आयरलैण्ड</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>इज़राइल</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>स्टेट ऑफ इज़राइल</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>मनुष्य का टापू</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>भारत</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>भारतीय गणराज्य</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>ब्रिटिश हिंद महासागर क्षेत्र</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>इराक़</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>रिपब्लिक ऑफ ईराक़</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>ईरान, इस्लामिक रिपब्लिक ऑफ</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>इस्लामिक रिपब्लिक ऑफ इरान</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>आइसलैण्ड</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>रिपब्लिक ऑफ आइसलैन्ड</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>इटली</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>इटालिय रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>जर्सी</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>जमैका</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>जॉर्डन</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>हशेमाइट किंगडम ऑफ जॉर्डन</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>जापान</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>कीनिया</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>रिपब्लिक ऑफ केन्या</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>किर्गिज़स्तान</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>किरगीज़ रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>कम्बोडिया</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>किंगडम ऑफ कंबोडिया</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>किरिबाती</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>रिपब्लिक ऑफ किरिबाती</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>कोमोरोस</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>यूनियन ऑफ द कोमोरोस</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>सन्त किट्स और नेविस</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>कोरिया, डेमोक्रेटिक पीपल्स रिपब्लिक ऑफ</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>डेमेक्रेटिक पीपल्स रिपब्लिक ऑफ कोरिया</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>कोरिया, रिपब्लिक ऑफ</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>कुवैत</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>स्टेट ऑफ कुवैत</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>केमन द्वीपसमूह</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>कज़ाख़िस्तान</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>रिपब्लिक ऑफ कज़ाख्सतान</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>लाओ पीपल्स डेमोक्रेटिक रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>लेबनान</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>लेबानीज़ रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>सेंट लूसिया</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>लिक्टेन्स्टाइन</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>प्रिन्सीपलिटी ऑफ लीखटेन्सटीन</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>श्रीलंका</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>डेमोक्रेटिक सोशलिस्ट रिपब्लिक ऑफ श्री लंका</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>लाइबेरिया</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>रिपब्लिक ऑफ लाइबेरिया</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>लेसोथो</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>किंगडम ऑफ लेसोथो</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>लिथुआनिया</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>रिपब्लिक ऑफ लिथुआनिया</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>लक्ज़मबर्ग</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>ग्रान्ड डची ऑफ लक्ज़मबर्ग</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>लातविया</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>रिपब्लिक ऑफ लात्विया</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>लीबिया</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>लीबिया</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>मोरक्को</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>किंगडम ऑफ मोरक्को</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>मोनैको</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>प्रिंसिपालिटी ऑफ मोनाको</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>मोल्डोवा, रिपब्लिक ऑफ</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>रिपब्लिक ऑफ मॉलदोवा</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>मॉन्टेनीग्रो</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>मॉन्टेनीग्रो</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>सेंट मार्टिन (फ्रेंच भाग)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>मेडागास्कर</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>रिपब्लिक ऑफ मैडागास्कर</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>मार्शल आइलैंड्स</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>रिपब्लिक ऑफ द मार्शल आइलैंड्स</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>उत्तर मैसेडोनिया</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>उत्तर मैसेडोनिया गणराज्य</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>माली</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>रिपब्लिक ऑफ माली</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>म्यान्मार</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>रिपब्लिक ऑफ म्यान्मार</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>मंगोलिया</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>मकाउ</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>मकाउ स्पेशल एडमिनिस्ट्रेटिव रीजन ऑफ चाइना</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>उत्तरी मारियाना द्वीप</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>कॉमनवेल्थ ऑफ द नॉरदर्न मारियाना आइलैन्ड्स</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>मार्टीनिक</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>मॉरीतानिया</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>इस्लामिक रिपब्लिक ऑफ मॉरिटानिया</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>मॉण्टसेराट</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>माल्टा</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>रिपब्लिक ऑफ माल्टा</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>मॉरिशस</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>रिपब्लिक ऑफ मॉरिशस</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>मालदीव</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>रिपब्लिक ऑफ मालदीव्स</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>मलावी</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>रिपब्लिक ऑफ मालावी</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>मेक्सिको</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>यूनाइटेड मेक्सिकन स्टेट्स</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>मलेशिया</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>मोज़ाम्बीक</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>रिपब्लिक ऑफ मोज़ाम्बीक़</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>नामीबिया</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>रिपब्लिक ऑफ नामीबिया</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>नया कैलेडोनिया</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>नाइजर</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>रिपब्लिक ऑफ द नाइजर</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>नॉर्फ़ोक द्वीप</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>नाईजीरिया</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>फेडेरल रिपब्लिक ऑफ नाइजीरिया</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>निकारागुआ</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>रिपब्लिक ऑफ निकारागुआ</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>नीदरलैण्ड</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>किंगडम ऑफ द नीदरलैंड्स</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>नॉर्वे</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>किंगडम ऑफ नॉर्वे</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>नेपाल</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>फेडेरल डेमोक्रेटिक रिपब्लिक ऑफ इथियोपिया</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>नौरु</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>रिपब्लिक ऑफ नाउरु</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>निउए</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>निउए</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>न्यूज़ीलैण्ड</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>ओमान</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>सल्तनत ऑफ ओमान</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>पनामा</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>रिपब्लिक ऑफ पनामा</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>पेरू</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>रिपब्लिक ऑफ पेरू</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>फ़्रान्सी पॉलिनेशिया</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>पापुआ न्यू गिनी</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>पापुआ न्यू गिनी का स्वतंत्र राज्य</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>फ़िलीपीन्स</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>रिपब्लिक ऑफ द फिलीपीन्स</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>पाकिस्तान</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>इस्लामिक रिपब्लिक ऑफ पाकिस्तान</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>पोलैंड</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>रिपब्लिक ऑफ पोलैन्ड</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>साँ-प्येर और मीकेलों</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>पिटकायर्न</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>प्युर्तो रिको</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>पैलेस्टाइन, स्टेट ऑफ़</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>स्टेट ऑफ़ पैलेस्टाइन</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>पुर्तगाल</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>पोर्टुगीज़ रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>पलाउ</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>रिपब्लिक ऑफ पलाऊ</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>पैराग्वे</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>रिपब्लिक ऑफ पैरागुए</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>क़तर</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>स्टेट ऑफ क़तर</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>रेयूनियों</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>रोमानिया</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>सर्बिया</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>रिपब्लिक ऑफ सर्बिया</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>रशियन फेडेरशन</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>रवाण्डा</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>रवांडीज़ रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>सउदी अरब</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>किंगडम ऑफ सउदी अरबिया</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>सोलोमन द्वीपसमूह</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>सेशेल्स</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>रिपब्लिक ऑफ सेशेल्स</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>सूडान</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>रिपब्लिक ऑफ द सूडान</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>स्वीडन</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>किंगडम ऑफ स्वीडन</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>सिंगापुर</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>रिपब्लिक ऑफ सिंगापुर</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>सेंट हेलेना, असेंशन और त्रिस्तान दा कुन्हा</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>स्लोवेनिया</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>रिपब्लिक ऑफ स्लोवेनिया</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>स्वालबार्ड एन्ड जैन माएन</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>स्लोवाकिया</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>स्लोवाक रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>सिएरा लियोन</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>रिपब्लिक ऑफ सिएरा लियोन</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>सान मारिनो</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>रिपब्लिक ऑफ सैन मरीनो</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>सेनेगल</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>रिपब्लिक ऑफ सेनेगल</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>सोमालिया</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>सोमालिया संघीय गणराज्य</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>सूरीनाम</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>रिपब्लिक ऑफ द सूरीनाम</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>दक्षिण सूडान</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>रिपब्लिक ऑफ साउथ सूडान</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>साओ तोमे और प्रिन्सिपी</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>डेमेक्रेटिक रिपब्लिक ऑफ साओ टोम एन्ड प्रिन्सिप</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>अल साल्वाडोर</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>रिपब्लिक ऑफ अल साल्वाडोर</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>सेंट मार्टिन (डच भाग)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>सेंट मार्टिन (डच भाग)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>सीरियन अरब रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>एस्वाटिनी</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>एस्वाटिनी का साम्राज्य</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>तुर्क और केकोस द्वीपसमूह</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>चाड</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>रिपब्लिक ऑफ चैड</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>फ्रेंच साउदर्न टेरीटरीज़</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>टोगो</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>टोगोलीज़ रिपब्लिक</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>थाईलैण्ड</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>किंगडम ऑफ थाईलैंड</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>ताजिकिस्तान</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>रिपब्लिक ऑफ ताजिकिस्तान</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>टोकेलाऊ</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>तिमोर-लेस्टे</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>डेमोक्रेटिक रिपब्लिक ऑफ तिमोर-लेस्टे</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>तुर्कमेनिस्तान</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>ट्यूनिशिया</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>रिपब्लिक ऑफ ट्यूनीशिया</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>टोंगा</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>किंगडम ऑफ टौंगा</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>त्रिनिदाद और टोबैगो</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>रिपब्लिक ऑफ त्रिनिदाद और टोबैगो</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>तुवालू</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>ताइवान, प्रोविन्स ऑफ चाइना</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>ताइवान, प्रोविन्स ऑफ चाइना</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>तंज़ानिया, यूनाइटेड रिपब्लिक ऑफ</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>यूनाइटेड रिपब्लिक ऑफ तंज़ानिया</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>युक्रेन</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>युगाण्डा</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>रिपब्लिक ऑफ यूगान्डा</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>संयुक्त राज्य अमेरिका के छोटे दूरस्थ द्वीपसमूह</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>संयुक्त राज्य</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>संयुक्त राज्य अमेरिका</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>उरुग्वे</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>ईस्टर्न रिपब्लिक ऑफ उरुगुए</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>उज़्बेकिस्तान</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>रिपब्लिक ऑफ उज़्बेकिस्तान</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>होली सी (वैटिकन सिटी स्टेट)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>सन्त विन्सेण्ट और ग्रेनाडाइन्स</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>रिपब्लिक ऑफ वेनेज़ुएला, बोलिवारियन</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>बोलिवारियन रिपब्लिक ऑफ वेनेज़ुएला</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>वर्जिन आइलैंड्स, ब्रिटिश</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>ब्रिटिश वर्जिन द्वीपसमूह</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>वर्जिन आइलैंड्स, यू.एस.</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>वर्जिन आइलैंड्स ऑफ द यूनाइटेड स्टेट्स</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>वियतनाम</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>सोशलिस्ट रिपब्लिक ऑफ वियतनाम</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>वानूआटू</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>रिपब्लिक ऑफ वनुआतू</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>वालिस और फ्यूटुना</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>समोआ</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>इन्डिपेन्डेन्ट स्टेट ऑफ समोआ</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>यमन</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>रिपब्लिक ऑफ यमन</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>मेयोट</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>दक्षिण अफ़्रीका</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>रिपब्लिक ऑफ साउथ अफ्रीका</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>ज़ाम्बिया</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>रिपब्लिक ऑफ ज़ाम्बिया</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>ज़िम्बाब्वे</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>रिपब्लिक ऑफ ज़िम्बाब्वे</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/hr.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/hr.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..65500a1e6c8201c77e1f97d6d92abd168431c017
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/hr.countries.xlf
@@ -0,0 +1,1695 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="hr" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andora</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Kneževina Andora</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Ujedinjeni Arapski Emirati</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Islamska Republika Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua i Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguila</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanija</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republika Albanija</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenija</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republika Armenija</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republika Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktika</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentinska Republika</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Američka Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austrija</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republika Austrija</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australija</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Alandski otoci</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbajdžan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republika Azerbajdžan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosna i Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republika Bosna i Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladeš</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Narodna Republika Bangladeš</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgija</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Kraljevina Belgija</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bugarska</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republika Bugarska</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Kraljevina Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republika Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republika Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Sveti Bartolomej</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermudi</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunej Darussalam</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivija, Plurinacionalna država</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Plurinacionalna država Bolivija</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sveti Eustahije i Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sveti Eustahije i Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Savezna Republika Brazil</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahami</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Commonwealth Bahama</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Butan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Kraljevina Butan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Otok Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Bocvana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republika Bocvana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bjelorusija</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republika Bjelorusija</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Cocos (Keeling) otoci</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongo, Demokratska Repubilika</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Srednjoafrička Republika</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republika Kongo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Å vicarska</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Å vicarska Konfederacija</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Obala Bjelokosti</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republika Obale Bjelokosti</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cookovo Otočje</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>ÄŒile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republika ÄŒile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republika Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Kina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Narodna Republika Kina</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbija</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republika Kolumbija</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kostarika</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republika Kostarika</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republika Kuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Zelenortski otoci</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republika Kabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Božićni Otok</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Cipar</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republika Cipar</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Češka</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Češka Republika</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Njemačka</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Savezna Republika Njemačka</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Džibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republika Džibuti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danska</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Kraljevina Danska</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Commonwealth Dominike</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikanska Republika</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Alžir</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Narodna Demokratska Republika Alžir</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekvador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republika Ekvador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonija</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republika Estonija</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egipat</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Arapska Republika Egipat</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Zapadna Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritreja</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Država Eritreja</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Å panjolska</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Kraljevina Å panjolska</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopija</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Savezna Demokratska Republika Etiopija</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finska</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republika Finska</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidži</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republika Fidži</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandski otoci</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronezija, Savezne Države</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Savezne Države Mikronezije</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Farski otoci</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francuska</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Republika Francuska</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Republika Gabon</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Ujedinjeno Kraljevstvo</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Ujedinjeno Kraljevstvo Velike Britanije i Sjeverne Irske</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gruzija</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Francuska Gijana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Gana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Republika Gana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grenland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambija</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republika Gambija</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republika Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Gvadalupa</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ekvatorijalna Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republika Ekvatorijalna Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grčka</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Helenska Republika</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Južna Georgija i otočje Južni Sandwich</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Gvatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republika Gvatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Gvineja Bisau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republika Gvineja Bisau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Gvajana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Republika Gvajana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hong Kong posebna upravna regija Narodne Republike Kine</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Otok Heard i otočje McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republika Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Hrvatska</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republika Hrvatska</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republika Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Mađarska</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Mađarska</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonezija</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Republika Indonezija</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irska</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Izrael</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Država Izrael</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Otok Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indija</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Republika Indija</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Britanski Indijskooceanski teritorij</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Republika Irak</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, Islamska Republika</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Islamska Republika Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Island</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Republika Island</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italija</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Talijanska Republika</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamajka</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordan</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Kraljevina Jordan</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japan</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenija</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Republika Kenija</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgiska Republika</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kraljevina Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Republika Kirbati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komori</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Unija Komorâ</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Sveti Kristofor i Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Koreja, Demokratska Narodna Republika</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Demokratska Narodna Republika Koreja</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Koreja, Republika</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuvajt</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Država Kuvajt</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kajmanski otoci</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazahstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Republika Kazahstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laoska Narodna Demokratska Republika</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libanonska Republika</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Sveta Lucija</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Lihtenštajn</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Kneževina Lihtenštajn</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Å ri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Demokratska Socijalištička Republika Šri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberija</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republika Liberija</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Kraljevina Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litva</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Republika Litva</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luksemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Kneževina Luksemburg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Latvija</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Republika Latvija</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libija</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libija</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Kraljevina Maroko</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Kneževina Monako</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavija, Republika</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Republika Moldavija</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Crna Gora</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Crna Gora</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Sveti Martin (francuski dio)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Republika Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Maršalovi otoci</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republika Maršalovi Otoci</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Sjeverna Makedonija</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republika Sjeverna Makedonija</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republika Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Mjanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republika Mjanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolija</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Posebna upravna regija Makao</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Sjevernomarijanski otoci</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Commonwealth Sjevernomarijanskog otočja</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinik</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauretanija</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Islamska Republika Mauretanija</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Republika Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauricijus</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republika Mauricijus</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldivi</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Republika Maldivi</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malavi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Republika Malavi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Sjedinjene Meksičke Države</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malezija</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Republika Mozambik</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibija</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Republika Namibija</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nova Kaledonija</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republika Niger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Otok Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigerija</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Savezna Republika Nigerija</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragva</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Republika Nikaragva</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Nizozemska</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Kraljevina Nizozemska</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norveška</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Kraljevina Norveška</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Savezna Demokratska Republika Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Republika Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Novi Zeland</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanat Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republika Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Republika Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Francuska Polinezija</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Nova Gvineja</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Nezavisna Država Papua Nova Gvineja</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipini</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Republika Filipini</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Islamska Republika Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Poljska</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Republika Poljska</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Sveti Petar i Mikelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairnovo Otočje</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Portoriko</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestina</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Država Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugalska Republika</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republika Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paragvaj</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Republika Paragvaj</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Država Katar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumunjska</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Srbija</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republika Srbija</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Ruska Federacija</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Ruandska Republika</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudijska Arabija</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Kraljevina Saudijska Arabija</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Salomonski Otoci</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Sejšeli</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republika Sejšeli</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Republika Sudan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Å vedska</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Kraljevina Å vedska</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Republika Singapur</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Sveta Helena, Ascension i Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenija</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Republika Slovenija</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard i Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovačka</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovačka Republika</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sijera Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republika Sijera Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Republika San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republika Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalija</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Savezna Republika Somalija</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Republika Surinam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Južni Sudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republika Južni Sudan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sveti Toma i Princip</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Demokratska Republika Sveti Toma i Princip</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republika El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sveti Martin (nizozemski dio)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sveti Martin (nizozemski dio)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Sirijska Arapska Republika</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Esvatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kraljevina Esvatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Otoci Turks i Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>ÄŒad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republika ÄŒad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Francuski Južni Teritoriji</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togoanska Republika</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tajland</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Kraljevina Tajland</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadžikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republika Tadžikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Istočni Timor</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Demokratska Republika Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunis</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Republika Tunis</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Kraljevina Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name" approved="yes">
+        <source>Türkiye</source>
+        <target>Turska</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republika Turska</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad i Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republika Trinidad i Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajvan (provincija, NR Kina)</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajvan (provincija, NR Kina)</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzanija</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Ujedinjena Republika Tanzanija</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukrajina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Republika Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Američki mali izvanjski otoci</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Sjedinjene Države</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Sjedinjene Američke Države</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Urugvaj</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Istočna Republika Urugvaj</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Republika Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Vatikan (Država Vatikanskoga Grada)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Sveti Vincent i Grenadini</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Bolivarska Republika</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Bolivarijanska Republika Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Djevičanski Otoci, Britanski</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Britanski Djevičanski Otoci</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Djevičanski Otoci, SAD</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Američki Djevičanski Otoci</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vijetnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Socijalistička Republika Vijetnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republika Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis i Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Nezavisna Država Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republika Jemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Južnoafrička Republika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Republika Južna Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambija</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republika Zambija</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabve</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republika Zimbabve</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/hu.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/hu.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..12bc471bcfa737333014c31cad1148cdb1962647
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/hu.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="hu" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Andorrai Fejedelemség</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Egyesült Arab Emírségek</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganisztán</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Afgán Iszlám Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua és Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albánia</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Albán Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Örményország</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Örmény Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Angolai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktisz</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentína</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentin Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Amerikai Szamoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Ausztria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Osztrák Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Ausztrália</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ã…land-szigetek</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbajdzsán</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Azeri Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosznia-Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Bosznia-hercegovinai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Banglades</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Bangladesi Népi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgium</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Belga Királyság</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgária</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Bolgár Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Bahrein Királyság</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Burundi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Benini Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei Darussalam Állam</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolíviai Többnemzetiségű Állam</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Bolíviai Többnemzetiségű Állam</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Saint Eustatius és Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Saint Eustatius és Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazília</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Brazil Szövetségi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahama-szigetek</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Bahamai Közösség</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhután</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Bhutáni Királyság</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvet-sziget</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Botswanai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Fehéroroszország</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Fehérorosz Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kókusz (Keeling)-szigetek</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongói Demokratikus Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Közép-afrikai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongó</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Kongói Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Svájc</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Svájci Államszövetség</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Elefántcsontpart</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Elefántcsontparti Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cook-szigetek</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Chilei Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Kameruni Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Kína</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Kínai Népköztársaság</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Kolumbiai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Costa Rica-i Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Kubai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Zöld-foki-szigetek</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Zöld-foki Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Karácsony-sziget</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Ciprus</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Ciprusi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Csehország</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Cseh Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Németország</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Német Szövetségi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Dzsibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Dzsibuti Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Dánia</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Dán Királyság</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Dominikai Közösség</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algéria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Algériai Demokratikus Népi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Ecuadori Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Észtország</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Észt Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egyiptom</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Egyiptomi Arab Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Nyugat-Szahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Eritrea Állam</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spanyolország</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Spanyol Királyság</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiópia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Etióp Demokratikus Szövetségi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finnország</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Finn Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidzsi-szigetek</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Fidzsi-szigeteki Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falkland-szigetek (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronézia, Államszövetség</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Mikronéziai Szövetségi Államok</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Feröer</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Franciaország</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Francia Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gaboni Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Egyesült Királyság</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Nagy-Britannia és Észak-Írország Egyesült Királysága</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Grúzia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Francia Guyana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghána</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Ghánai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltár</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grönland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Gambiai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Guineai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Egyenlítői-Guinea</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Egyenlítői-guineai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Görögország</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Görög Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Déli-Georgia és Déli-Sandwich-szigetek</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Guatemalai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Bissau-Guinea</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Bissau-guineai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Guyanai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hongkong, a Kínai Népköztársaság különleges közigazgatási területe</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heard-sziget és McDonald-szigetek</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Hondurasi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Horvátország</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Horvát Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Haiti Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Magyarország</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Magyarország</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonézia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Indonéz Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Írország</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Izrael</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Izraeli Állam</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>India</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Indiai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Brit Indiai-óceáni Terület</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Iraki Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Irán, Iszlám Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Iráni Iszlám Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Izland</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Izlandi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Olaszország</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Olasz Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordánia</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Jordán Hásimita Királyság</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japán</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Kenyai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgizisztán</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgiz Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodzsa</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kambodzsai Királyság</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Kiribati Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comore-szigetek</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Comore-szigeteki Unió</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts és Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Koreai Népi Demokratikus Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Koreai Népi Demokratikus Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Koreai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuvait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Kuvaiti Állam</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kajmán-szigetek</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazahsztán</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Kazah Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laoszi Népi Demokratikus Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libanoni Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Liechtensteini Fejedelemség</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Srí Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Srí Lanka-i Demokratikus Szocialista Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Libéria</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Libériai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Lesothói Királyság</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litvánia</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Litván Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Luxemburgi Nagyhercegség</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Lettország</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Lett Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Líbia</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Líbia</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marokkó</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Marokkói Királyság</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Monacói Hercegség</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldovai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Moldovai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegró</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegró</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint Martin (francia oldal)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaszkár</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Madagaszkári Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshall-szigetek</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Marshall-szigeteki Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Észak-Macedónia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Észak-Macedóniai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Mali Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Mianmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Mianmari Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongólia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makaó</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Makaó, a Kínai Népköztársaság különleges közigazgatási területe</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Északi-Mariana-szigetek</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Északi Mariana-szigeteki Közösség</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritánia</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Mauritániai Iszlám Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Málta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Máltai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Mauritiusi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldív-szigetek</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Maldív-szigeteki Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Malawi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexikó</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Mexikói Egyesült Államok</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malajzia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Mozambiki Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namíbia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Namíbiai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Új-Kaledónia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Nigeri Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolk-sziget</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigéria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Nigériai Szövetségi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Nicaraguai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Hollandia</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Holland Királyság</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norvégia</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Norvég Királyság</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepál</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Nepáli Demokratikus Szövetségi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Naurui Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Új-Zéland</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omán</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Ománi Szultánság</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Panamai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Perui Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Francia Polinézia</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Pápua Új-Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Pápua Új-Guinea Független Állam</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Fülöp-szigetek</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Fülöp-szigeteki Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakisztán</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Pakisztáni Iszlám Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Lengyelország</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Lengyel Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint-Pierre és Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn-szigetek</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palesztina</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Palesztina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugália</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugál Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Palaui Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Paraguayi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Katari Állam</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Románia</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Szerbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Szerb Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Orosz Föderáció</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Ruandai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Szaúd-Arábia</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Szaúd-arábiai Királyság</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Salamon-szigetek</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelle-szigetek</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Seychelle Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Szudán</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Szudáni Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Svédország</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Svéd Királyság</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Szingapúr</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Szingapúri Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Szent Ilona, Ascension és Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Szlovénia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Szlovén Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard-szigetek és Jan Mayen-sziget</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Szlovákia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Szlovák Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Sierra Leone Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>San Marino Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Szenegál</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Szenegáli Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Szomália</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Szomáliai Szövetségi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Suriname</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Suriname Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Dél-Szudán</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Dél-szudáni Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>São Tomé és Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>São Tomé és Príncipe Demokratikus Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Salvadori Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Szent Martin (holland oldal)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Szent Martin (holland oldal)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Szíriai Arab Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Szváziföld</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Szváziföldi Királyság</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks- és Caicos-szigetek</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Csád</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Csádi Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Francia déli területek</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togói Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thaiföld</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Thaiföldi Királyság</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tádzsikisztán</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Tádzsik Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau-szigetek</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Kelet-Timor</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Kelet-timori Demokratikus Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Türkmenisztán</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunézia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Tunéziai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Tongai Királyság</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad és Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Trinidad és Tobago Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajvan, kínai tartomány</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajvan, kínai tartomány</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzánia, Egyesült Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Tanzániai Egyesült Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukrajna</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Ugandai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Az Amerikai Egyesült Államok lakatlan külbirtokai</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Egyesült Államok</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Amerikai Egyesült Államok</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Uruguayi Keleti Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Üzbegisztán</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Üzbég Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Szentszék (Vatikánvárosi Állam)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent és a Grenadine-szigetek</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuelai Bolivári Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Venezuelai Bolivári Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Brit Virgin-szigetek</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Brit Virgin-szigetek</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Amerikai Virgin-szigetek</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Amerikai Virgin-szigetek</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnám</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Vietnámi Szocialista Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Vanuatui Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis és Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Szamoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Szamoai Független Állam</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Jemeni Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Dél-Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Dél-afrikai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Zambiai Köztársaság</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Zimbabwei Köztársaság</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/is.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/is.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..aa1525da915138c2e12dfd9c221d8872818fa080
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/is.countries.xlf
@@ -0,0 +1,1695 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="is" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Furstadæmið Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Sameinuðu arabísku furstadæmin</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Íslamska lýðveldið Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antígva og Barbúda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Angvíla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanía</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Lýðveldið Albanía</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenía</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Lýðveldið Armenía</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angóla</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Lýðveldið Angóla</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Suðurskautslandið</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentína</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Lýðveldið Argentína</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Bandarísku Samóaeyjar</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austurríki</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Lýðveldið Austurríki</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Ástralía</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Arúba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Álandseyjar</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Aserbaídsjan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Lýðveldið Aserbaídsjan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnía og Hersegóvína</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Lýðveldið Bosnía og Herzegóvína</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladess</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Alþýðulýðveldið Bangladess</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgía</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Konungsríkið Belgía</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Búrkína Fasó</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Búlgaría</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Lýðveldið Búlgaría</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Barein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Konungsríkið Barein</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Búrúndí</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Lýðveldið Búrúndí</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benín</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Lýðveldið Benín</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Sankti Bartelemí</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermúda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brúnei Darussalam</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bólivía, fjölþjóðaríkið</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Fjölþjóðaríkið Bólivía</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sankti Eustatius og Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sankti Eustatius og Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasilía</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Sambandslýðveldið Brasilía</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamaeyjar</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Samveldisríki Bahamaeyja</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bútan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Konungsríkið Bútan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouveteyja</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botsvana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Lýðveldið Botsvana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Hvítarússland</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Lýðveldið Hvítarússland</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belís</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kókoseyjar (Keeling-eyjar)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongó, sambandslýðveldið</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Miðafríkulýðveldið</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongó</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Lýðveldið Kongó</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Sviss</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Svissneska ríkjasambandið</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Fílabeinsströnd</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Lýðveldið Fílabeinsströnd</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cook-eyjar</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Síle</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Lýðveldið Síle</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerún</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Lýðveldið Kamerún</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Kína</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Alþýðulýðveldið Kína</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kólumbía</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Lýðveldið Kólumbía</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kosta Ríka</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Lýðveldið Kosta-Ríka</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kúba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Lýðveldið Kúba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Grænhöfðaeyjar</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Lýðveldið á Grænhöfðaeyjum</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Jólaeyja</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Kýpur</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Lýðveldið Kýpur</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Tékkland</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Lýðveldið Tékkland</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Þýskaland</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Sambandslýðveldið Þýskaland</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djíbútí</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Lýðveldið Djíbútí</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danmörk</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Konungsríkið Danmörk</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dóminíka</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Samveldisríkið Dóminíka</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dóminíkanska lýðveldið</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Alsír</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Alþýðulýðveldið Alsír</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekvador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Lýðveldið Ekvador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Eistland</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Lýðveldið Eistland</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egyptaland</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Arabíska lýðveldið Egyptaland</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Vestur-Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Erítrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Erítreuríki</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spánn</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Spænska konungsríkið</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Eþíópía</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Sambandsalþýðulýðveldið Eþíópía</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finnland</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Lýðveldið Finnland</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fídjieyjar</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Lýðveldið Fídji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandseyjar (Malvinaeyjar)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Míkrónesía, Sambandsríki</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Sambandsríki Míkrónesíu</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Færeyjar</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Frakkland</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Lýðveldið Frakkland</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Lýðveldið Gabon</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Bretland</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Samveldi Stóra-Bretlands og Norður-Írlands</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgía</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Franska Gvæjana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Gana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Lýðveldið Gana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gíbraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grænland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambía</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Lýðveldið Gambía</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Gínea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Lýðveldið Gínea</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Gvadalúp</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Miðbaugs-Gínea</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Lýðveldið Miðbaugs-Gínea</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grikkland</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Helleníska lýðveldið</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Suður-Georgía og Suður-Sandvíkureyjar</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Gvatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Lýðveldið Gvatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Gvam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Gínea-Bissá</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Lýðveldið Gínea-Bissá</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Gvæjana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Lýðveldið Gvæjana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hong Kong sérstakt stjórnsýslusvæði Kína</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heard og McDonaldseyjar</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Hondúras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Lýðveldið Hondúras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Króatía</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Lýðveldið Króatía</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haítí</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Lýðveldið Haítí</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungverjaland</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungverjaland</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indónesía</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Lýðveldið Indónesía</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Írland</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Ísrael</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Ísraelsríki</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Eyjan Mön</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indland</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Lýðveldið Indland</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Bresku Indlandshafseyjar</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Írak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Lýðveldið Írak</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Íran, íslamska lýðveldið</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Íslamska lýðveldið Íran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Ísland</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Lýðveldið Ísland</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Ítalía</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Lýðveldið Ítalía</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaíka</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jórdanía</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Hasemíta konungsríkið í Jórdaníu</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japan</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenía</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Lýðveldið Kenía</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgisistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgíska lýðveldið</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambódía</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Konungsríkið Kambódía</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kíribatí</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Lýðveldið Kíribatí</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Kómoreyjar</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Kómoreyjasambandið</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Sankti Kitts og Neviseyjar</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Norður-Kórea, sambandsalþýðulýðveldið</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Sambandsalþýðulýðveldið Norður-Kórea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Lýðveldið Suður-Kórea</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kúveit</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Kúveitríki</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Caymaneyjar</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kasakstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Lýðveldið Kasakstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Alþýðulýðveldið Laó</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Líbanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Lýðveldið Líbanon</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Sankti Lúsía</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Furstadæmið Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Srí Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Sambandsríki sósíalíska lýðveldisins Srí Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Líbería</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Lýðveldið Líbería</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesótó</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Konungsríkið Lesótó</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litháen</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Lýðveldið Litháen</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Lúxemborg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Stórhertogadæmið Lúxemborg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Lettland</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Lýðveldið Lettland</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Líbýa</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Líbýa</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marokkó</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Konungsríkið Marokkó</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Mónakó</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Furstadæmið Mónakó</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldóvíska lýðveldið</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Lýðveldið Moldóvía</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Svartfjallaland</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Svartfjallaland</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Sankti Martin (franski hluti)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Lýðveldið Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshalleyjar</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Lýðveldi Marshalleyja</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Norður-Makedónía</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Lýðveldið Norðurmakedónía</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Malí</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Lýðveldið Malí</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Mjanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Lýðveldið Mjanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongólía</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makaó</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Makaó sérstakt stjórnsýslusvæði Kína</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Norður-Maríanaeyjar</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Samveldisríki Norður-Maríanaeyja</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martiník</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Máritanía</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Íslamska lýðveldið Máritanía</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Lýðveldið Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Máritíus</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Lýðveldið Máritus</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldíveyjar</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Lýðveldi Maldíveyja</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malaví</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Lýðveldið Malaví</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexíkó</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Bandaríki Mexíkó</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malasía</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mósambík</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Lýðveldið Mósambík</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibía</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Lýðveldið Namibía</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nýja-Kaledónía</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Níger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Lýðveldið Níger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolkeyja</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nígería</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Sambandslýðveldið Nígería</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Níkaragva</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Lýðveldið Níkaragva</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Holland</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Konungsríkið Niðurlönd</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Noregur</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Norska konungsríkið</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Sambandsalþýðulýðveldið Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nárú</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Lýðveldið Nárú</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nýja-Sjáland</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Óman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Soldánsdæmið Óman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Lýðveldið Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Perú</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Lýðveldið Perú</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Franska Pólýnesía</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papúa Nýja-Gínea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Sjálfstætt ríki Papúa Nýju-Gíneu</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filippseyjar</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Lýðveldi Filippseyja</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Íslamska lýðveldið Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Pólland</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Lýðveldið Pólland</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Sankti Pierre og Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitkairn-eyja</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Ríko</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestína</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Palestínuríki</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portúgal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Lýðveldið Portúgal</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palá</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Lýðveldið Palá</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paragvæ</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Lýðveldið Paragvæ</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Katarríki</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rúmenía</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbía</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Lýðveldið Serbía</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Rússneska sambandið</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rúanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Lýðveldið Rúanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Sádí-Arabía</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Konungsríkið Sádí-Arabía</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Salómonseyjar</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelles-eyjar</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Lýðveldi Seychelles-eyja</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Súdan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Lýðveldið Súdan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Svíþjóð</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Sænska konungsríkið</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapúr</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Lýðveldið Singapúr</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Sankti Helena, Ascension og Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slóvenía</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Lýðveldið Slóvenía</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbarði og Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slóvakía</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Lýðveldið Slóvakía</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Síerra Leóne</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Lýðveldið Síerra Leóne</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marínó</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Lýðveldið San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Lýðveldið Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Sómalía</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Sambandslýðveldið Sómalía</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Súrínam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Lýðveldið Súrínam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Suður-súdan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Lýðveldið Suður-súdan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Saó Tóme og Prinsípe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Sambandslýðveldi Saó Tóme og Prinsípe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Lýðveldið El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sankti Maarten (hollenski hluti)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sankti Maarten (hollenski hluti)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Sýrlenska arabalýðveldið</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Esvatiní (Svasíland)</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Konungsríkið Esvatiní (Svasíland)</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks- og Kaikós-eyjar</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Tsjad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Lýðveldið Tsjad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Frönsku suðurhafshéruðin</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Tógó</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Lýðveldið Tógo</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tæland</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Konungsríkið Tæland</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadsíkistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Lýðveldið Tadsíkistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tókelá</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Tímor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Sambandslýðveldið Tímor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Túrkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Túnis</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Lýðveldið Túnis</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Konungsríkið Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name" approved="yes">
+        <source>Türkiye</source>
+        <target>Tyrkland</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Lýðveldið Tyrkland</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trínidad og Tóbagó</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Lýðveldið Trínidad og Tóbagó</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Túvalú</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tævan, hérað í Kína</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tævan, hérað í Kína</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tansanía, sameinaða lýðveldið</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Sameinaða lýðveldið Tansanía</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Úkraína</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Úganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Lýðveldið Úganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Ytri-smáeyjar Bandaríkjanna</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Bandaríkin</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Bandaríki Norður-Ameríku</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Úrúgvæ</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Austurlýðveldi Úrúgvæ</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Úsbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Lýðveldið Úsbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Borgríkið Vatíkanið</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Sankti Vincent og Grenadineeyjar</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venesúela, bólívaríska lýðveldið</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Bólívaríska lýðveldið Venesúela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Jómfrúareyjar, bresku</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Bresku Jómfrúaeyjar</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Jómfrúareyjar, BNA</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Bandarísku Jómfrúareyjar</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Víetnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Sósíalíska lýðveldið Víetnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatú</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Lýðveldið Vanuatú</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis- og Fútúnaeyjar</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samóa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Sjálfstætt ríki Samóa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Lýðveldið Jemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayott</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Suður-Afríka</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Lýðveldið Suður Afríka</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Sambía</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Lýðveldið Sambía</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Simbabve</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Lýðveldið Simbabve</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/it.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/it.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..1b692c8f80c295f250665248292ecfc91af989bb
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/it.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="it" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Principato d'Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Emirati Arabi Uniti</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Repubblica islamica dell'Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua e Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albania</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Repubblica d'Albania</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Repubblica d'Armenia</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Repubblica d'Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antartide</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Repubblica argentina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samoa americane</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Repubblica d'Austria</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Isole Ã…land</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaigian</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Repubblica dell'Azerbaigian</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnia-Erzegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Bosnia ed Erzegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Repubblica popolare del Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgio</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Regno del Belgio</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Repubblica di Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Regno del Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Repubblica del Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Repubblica del Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barts</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivia, Stato Plurinazionale della</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Stato Plurinazionale della Bolivia</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Paesi Bassi caraibici</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Paesi Bassi caraibici</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasile</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Repubblica Federale del Brasile</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Commonwealth delle Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Regno del Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Isola Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Repubblica del Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bielorussia</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Repubblica di Bielorussia</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Isole Cocos (Keeling)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Repubblica democratica del Congo</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Repubblica Centrafricana</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Congo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Repubblica del Congo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Svizzera</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Confederazione svizzera</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Costa d'Avorio</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Repubblica della Costa d'Avorio</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Isole Cook</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Cile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Repubblica del Cile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Camerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Repubblica del Camerun</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Cina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Repubblica Popolare Cinese</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Repubblica di Colombia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Repubblica di Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Repubblica di Cuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Capo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Repubblica di Capo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Isola di Natale</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Cipro</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Repubblica di Cipro</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Cechia</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Repubblica Ceca</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Germania</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Repubblica Federale di Germania</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Gibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Repubblica di Gibuti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danimarca</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Regno di Danimarca</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Commonwealth di Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Repubblica Dominicana</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algeria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Repubblica Democratica Popolare di Algeria</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Repubblica dell'Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Repubblica d'Estonia</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egitto</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Repubblica araba d'Egitto</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Sahara occidentale</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Repubblica dell'Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spagna</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Regno di Spagna</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Repubblica Federale Democratica d'Etiopia</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlandia</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Repubblica di Finlandia</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Figi</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Repubblica di Figi</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Isole Falkland (Malvine)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Micronesia</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Stati federati di Micronesia</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Isole Fær Øer</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francia</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Repubblica francese</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Repubblica Gabonese</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Regno Unito</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Regno Unito di Gran Bretagna e d'Irlanda del Nord</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guyana francese</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Repubblica del Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibilterra</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Groenlandia</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Repubblica del Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Repubblica di Guinea</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadalupa</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Guinea equatoriale</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Repubblica della Guinea Equatoriale</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grecia</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Repubblica Ellenica</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Georgia del Sud e Isole Sandwich Australi</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Repubblica del Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Repubblica di Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Repubblica Cooperativa di Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Regione amministrativa speciale di Hong Kong della Repubblica Popolare Cinese</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Isole Heard e McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Repubblica dell'Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Croazia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Repubblica di Croazia</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Repubblica di Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungheria</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungheria</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Repubblica d'Indonesia</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlanda</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israele</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Stato d'Israele</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Isola di Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>India</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Repubblica dell'India</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Territorio britannico dell'Oceano Indiano</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Iraq</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Repubblica d'Iraq</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Repubblica Islamica dell'Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islanda</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Repubblica d'Islanda</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italia</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Repubblica Italiana</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Giamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Giordania</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Regno Hascimita di Giordania</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Giappone</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Repubblica del Kenya</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirghizistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Repubblica del Kirghizistan</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Cambogia</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Regno di Cambogia</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Repubblica di Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comore</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Unione delle Comore</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts e Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Corea del Nord</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Repubblica democratica popolare di Corea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Corea del sud</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Stato del Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Isole Cayman</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakistan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Repubblica del Kazakistan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laos</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libano</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Repubblica libanese</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Principato del Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Repubblica Democratica Socialista dello Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Repubblica di Liberia</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Regno del Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituania</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Repubblica di Lituania</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Lussemburgo</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Granducato di Lussemburgo</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Lettonia</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Repubblica di Lettonia</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marocco</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Regno del Marocco</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Principato di Monaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavia</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Repubblica di Moldavia</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint-Martin (Francia)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Repubblica del Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Isole Marshall</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Repubblica delle Isole Marshall</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Macedonia del Nord</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Repubblica di Macedonia del Nord</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Repubblica del Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Birmania</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Repubblica cooperativistica di Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Regione Amministrativa Speciale di Macao della Repubblica Popolare Cinese</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Isole Marianne Settentrionali</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Commonwealth delle Isole Marianne settentrionali</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinica</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Repubblica islamica di Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Repubblica di Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Maurizio</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Repubblica di Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldive</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Repubblica delle Maldive</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Repubblica del Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Messico</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Stati Uniti Messicani</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malaysia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambico</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Repubblica del Mozambico</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Repubblica di Namibia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nuova Caledonia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Repubblica del Niger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Isola Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Repubblica federale della Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Repubblica di Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Paesi Bassi</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Regno dei Paesi Bassi</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norvegia</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Regno di Norvegia</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Repubblica federale democratica del Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Repubblica di Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nuova Zelanda</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanato dell'Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Repubblica di Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Perù</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Repubblica del Perù</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polinesia francese</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Nuova Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Stato indipendente di Papua Nuova Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filippine</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Repubblica delle Filippine</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Repubblica islamica del Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polonia</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Repubblica di Polonia</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint-Pierre e Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Portorico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestina, Stato di</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Stato di Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portogallo</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Repubblica del Portogallo</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Repubblica di Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Repubblica del Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Stato del Qatar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Riunione</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Romania</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Repubblica di Serbia</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Russia</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Repubblica del Ruanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Arabia Saudita</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Regno dell'Arabia Saudita</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Isole Salomone</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Repubblica delle Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Repubblica del Sudan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Svezia</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Regno di Svezia</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapore</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Repubblica di Singapore</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Sant'Elena, Ascensione e Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Repubblica di Slovenia</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard e Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovacchia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Repubblica slovacca</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Repubblica della Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Repubblica di San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Repubblica del Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Repubblica federale di Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Suriname</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Repubblica di Suriname</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sudan del sud</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Repubblica del Sudan del Sud</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>São Tomé e Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Repubblica democratica di São Tomé e Príncipe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Repubblica di El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Olanda)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Olanda)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Siria</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Eswatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Regno di Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Isole Turks e Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Ciad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Repubblica del Ciad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Territori francesi meridionali</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Repubblica del Togo</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thailandia</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Regno di Thailandia</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tagikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Repubblica del Tagikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor Est</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Repubblica Democratica di Timor Est</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Repubblica tunisina</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Regno di Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad e Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Repubblica di Trinidad e Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Repubblica di Cina</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Repubblica di Cina</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzania</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Repubblica unita di Tanzania</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ucraina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Repubblica dell'Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Isole minori esterne degli Stati Uniti d'America</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Stati Uniti</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Stati Uniti d'America</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Repubblica orientale dell'Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Repubblica dell'Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Santa Sede (Stato della Città del Vaticano)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent e Grenadine</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Repubblica bolivariana del</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Repubblica bolivariana del Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Isole Vergini, Regno Unito</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Isole Vergini britanniche</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Isole Vergini, U.S.A.</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Isole Vergini statunitensi</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Repubblica socialista del Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Repubblica di Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis e Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Stato indipendente di Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Repubblica dello Yemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Sudafrica</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Repubblica sudafricana</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Repubblica dello Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Repubblica dello Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/ja.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/ja.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..2ee12111bbc960f9fcff8a310301575bc6f2a0ab
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/ja.countries.xlf
@@ -0,0 +1,1683 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="ja" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>アンドラ</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>アンドラ公国</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>アラブ首長国連邦</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>アフガニスタン</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>アフガニスタン・イスラム共和国</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>アンティグア・バーブーダ</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>アングイラ</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>アルバニア</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>アルバニア共和国</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>アルメニア</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>アルメニア共和国</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>アンゴラ</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>アンゴラ共和国</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>南極大陸</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>アルゼンチン</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>アルゼンチン共和国</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>米領サモア</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>オーストリア</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>オーストリア共和国</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>オーストラリア連邦</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>アルーバ</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>オーランド諸島</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>アゼルバイジャン</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>アゼルバイジャン共和国</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>ボスニア・ヘルツェゴビナ</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>ボスニアヘルツコビナ共和国</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>バルバドス</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>バングラデシュ</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>バングラデシュ人民共和国</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>ベルギー</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>ベルギー王国</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>ブルキナファソ</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>ブルガリア</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>ブルガリア共和国</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>バーレーン</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>バーレーン王国</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>ブルンジ</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>ブルンジ共和国</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>ベナン</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>ベナン共和国</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>サンバルテルミ</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>バーミューダ</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>ブルネイ・ダルサラーム国</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>ボリビア多民族国</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>ボリビア多民族国</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>ボネール、シントユースタティウス及びサバ</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>ボネール、シントユースタティウス及びサバ</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>ブラジル</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>ブラジル連邦共和国</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>バハマ</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>バハマ国</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>ブータン</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>ブータン王国</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>ブーベ島</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>ボツワナ</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>ボツワナ共和国</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>ベラルーシ</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>ベラルーシ共和国</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>ベリーズ</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>カナダ</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>ココス (キーリング) 諸島</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>コンゴ民主共和国</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>中央アフリカ共和国</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>コンゴ</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>コンゴ共和国</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>スイス</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>スイス連邦</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>コートジボワール</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>コートジボワール共和国</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>クック諸島</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>チリ</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>チリ共和国</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>カメルーン</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>カメルーン共和国</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>中国</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>中華人民共和国</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>コロンビア</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>コロンビア共和国</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>コスタリカ</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>コスタリカ共和国</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>キューバ</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>キューバ共和国</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>カーボヴェルデ</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>カーボヴェルデ共和国</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>キュラソー</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>キュラソー</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>クリスマス島</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>キプロス</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>キプロス共和国</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>チェコ共和国</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>ドイツ</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>ドイツ連邦共和国</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>ジブチ</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>ジブチ共和国</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>デンマーク</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>デンマーク王国</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>ドミニカ</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>ドミニカ国</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>ドミニカ共和国</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>アルジェリア</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>アルジェリア民主人民共和国</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>エクアドル</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>エクアドル共和国</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>エストニア</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>エストニア共和国</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>エジプト</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>エジプト・アラブ共和国</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>西サハラ</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>エリトリア国</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>エリトリア国</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>スペイン</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>スペイン王国</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>エチオピア</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>エチオピア連邦民主共和国</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>フィンランド</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>フィンランド共和国</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>フィジー</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>フィジー共和国</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>フォークランド諸島 (マルビナス)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>ミクロネシア連邦</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>ミクロネシア連邦</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>フェロー諸島</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>フランス</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>フランス共和国</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>ガボン</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>ガボン共和国</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>英国</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>グレートブリテン及び北アイルランド連合王国</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>グレナダ</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>グルジア</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>仏領ギアナ</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>ガーンジー</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>ガーナ</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>ガーナ共和国</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>ジブラルタル</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>グリーンランド</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>ガンビア</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>ギニア</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>ギニア共和国</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>グアドループ</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>赤道ギニア</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>赤道ギニア共和国</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>ギリシャ</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>ギリシア共和国</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>サウスジョージア及びサウスサンドウィッチ諸島</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>グアテマラ</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>グアテマラ共和国</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>グアム</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>ギニアビサウ</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>ギニアビサウ共和国</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>ガイアナ</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>ガイアナ共和国</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>香港</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>香港・中国特別行政区</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>ハード島及びマクドナルド諸島</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>ホンジュラス</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>ホンジュラス共和国</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>クロアチア</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>クロアチア共和国</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>ハイチ</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>ハイチ共和国</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>ハンガリー</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>ハンガリー</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>インドネシア</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>インドネシア共和国</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>アイルランド</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>イスラエル</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>イスラエル国</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>マン島</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>インド</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>インド共和国</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>英国インド洋領土</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>イラク</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>イラク共和国</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>イラン・イスラム共和国</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>イラン・イスラム共和国</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>アイスランド</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>アイスランド共和国</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>イタリア</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>イタリア共和国</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>ジャージー</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>ジャマイカ</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>ヨルダン</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>ヨルダン・ハシェミット王国</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>日本</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>ケニア</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>ケニア共和国</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>キルギスタン</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>キルギス共和国</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>カンボジア</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>カンボジア王国</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>キリバス</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>キリバス共和国</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>コモロ</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>コモロ連合</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>セントクリストファー・ネーヴィス</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>朝鮮民主主義人民共和国</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>朝鮮民主主義人民共和国</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>大韓民国 (韓国)</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>クウェート</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>クウェート国</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>ケイマン諸島</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>カザフスタン</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>カザフスタン共和国</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>ラオス人民民主共和国</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>レバノン</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>レバノン共和国</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>セントルシア</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>リヒテンシュタイン</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>リヒテンシュタイン公国</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>スリランカ</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>スリランカ民主社会主義共和国</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>リベリア</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>リベリア共和国</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>レソト</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>レソト王国</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>リトアニア</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>リトアニア共和国</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>ルクセンブルク</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>ルクセンブルク大公国</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>ラトビア</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>ラトビア共和国</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>リビア</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>リビア</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>モロッコ</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>モロッコ王国</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>モナコ</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>モナコ公国</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>モルドバ共和国</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>モルドバ共和国</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>モンテネグロ</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>モンテネグロ</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>サンマルタン (仏領)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>マダガスカル</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>マダガスカル共和国</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>マーシャル諸島</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>マーシャル諸島共和国</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>マリ</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>マリ共和国</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>ミャンマー</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>ミャンマー共和国</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>モンゴル国</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>マカオ</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>マカオ・中国特別行政区</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>北マリアナ諸島</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>北マリアナ諸島連邦</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>マルティニーク</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>モーリタニア</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>モーリタニア・イスラム共和国</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>モントセラト</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>マルタ</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>マルタ共和国</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>モーリシャス</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>モーリシャス共和国</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>モルディブ</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>モルディブ共和国</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>マラウイ</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>マラウイ共和国</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>メキシコ</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>メキシコ合衆国</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>マレーシア</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>モザンビーク</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>モザンビーク共和国</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>ナミビア</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>ナミビア共和国</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>ニューカレドニア</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>ニジェール</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>ニジェール共和国</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>ノーフォーク島</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>ナイジェリア</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>ナイジェリア連邦共和国</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>ニカラグア</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>ニカラグア共和国</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>オランダ</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>オランダ王国</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>ノルウェー</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>ノルウェー王国</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>ネパール</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>ネパール連邦民主共和国</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>ナウル</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>ナウル共和国</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>ニウエ</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>ニウエ</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>ニュージーランド</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>オマーン</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>オマーン国</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>パナマ</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>パナマ共和国</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>ペルー</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>ペルー共和国</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>仏領ポリネシア</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>パプアニューギニア</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>パプアニューギニア独立国</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>フィリピン</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>フィリピン共和国</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>パキスタン</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>パキスタン・イスラム共和国</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>ポーランド</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>ポーランド共和国</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>サンピエール及びミクロン</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>ピトケアン</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>プエルトリコ</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>パレスチナ</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>パレスチナ自治区</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>ポルトガル</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>ポルトガル共和国</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>パラオ</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>パラオ共和国</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>パラグアイ</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>パラグアイ共和国</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>カタール</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>カタール国</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>レユニオン</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>ルーマニア</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>セルビア</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>セルビア共和国</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>ロシア連邦</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>ルワンダ</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>ルワンダ共和国</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>サウジアラビア</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>サウジアラビア王国</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>ソロモン諸島</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>セーシェル</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>セーシェル共和国</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>スーダン</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>スーダン共和国</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>スウェーデン</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>スウェーデン王国</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>シンガポール</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>シンガポール共和国</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>セントヘレナ、アセンション及びトリスタン・ダ・クーニャ</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>スロベニア</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>スロベニア共和国</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>スヴァールバル及びヤンマイエン</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>スロバキア</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>スロバキア共和国</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>シエラレオネ</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>シエラレオネ共和国</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>サンマリノ</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>サンマリノ共和国</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>セネガル</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>セネガル共和国</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>ソマリア</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>ソマリア連邦共和国</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>スリナム</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>スリナム共和国</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>南スーダン</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>南スーダン共和国</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>サントメ・プリンシペ</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>サントメ・プリンシペ民主共和国</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>エルサルバドル</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>エルサルバドル共和国</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>サンマルタン (オランダ領)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>サンマルタン (オランダ領)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>シリア・アラブ共和国</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>タークス及びカイコス諸島</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>チャド</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>チャド共和国</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>フランス南方領土</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>トーゴ</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>トーゴ共和国</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>タイ</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>タイ王国</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>タジキスタン</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>タジキスタン共和国</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>トケラウ</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>東ティモール</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>東ティモール民主共和国</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>トルクメニスタン</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>チュニジア</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>チュニジア共和国</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>トンガ</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>トンガ王国</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>トリニダード・トバゴ</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>トリニダード・トバゴ共和国</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>ツバル</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>中国領・台湾</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>中国領・台湾</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>タニザニア連合共和国</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>タンザニア連合共和国</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>ウクライナ</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>ウガンダ</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>ウガンダ共和国</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>アメリカ合衆国外諸島</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>米国</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>アメリカ合衆国</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>ウルグアイ</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>ウルグアイ東方共和国</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>ウズベキスタン</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>ウズベキスタン共和国</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>聖庁 (バチカン市国)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>セントビンセント及びグレナディーン諸島</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>ベネズエラ・ボリバル共和国</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>ベネズエラ・ボリバル共和国</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>英領ヴァージン諸島</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>英領ヴァージン諸島</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>米領ヴァージン諸島</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>米領ヴァージン諸島</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>ベトナム</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>ベトナム社会主義共和国</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>バヌアツ</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>バヌアツ共和国</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>ワリー及びフテュナ</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>サモア</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>サモア独立国</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>イエメン</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>イエメン共和国</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>マヨット</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>南アフリカ</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>南アフリカ共和国</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>ザンビア</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>ザンビア共和国</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>ジンバブエ</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>ジンバブエ共和国</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/ka.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/ka.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..ce2e95de946e72a63b426cc8dfe16626532da2d3
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/ka.countries.xlf
@@ -0,0 +1,1695 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="ka" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>ანდორა</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>ანდორას სამთავრო</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>არაბთა გაერთიანებული საამიროები</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>ავღანეთი</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>ავღანეთის ისლამური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>ანტიგუა და ბარბუდა</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>ანგილა</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>ალბანეთი</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>ალბანეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>სომხეთი</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>სომხეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>ანგოლა</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>ანგოლას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>ანტარქტიკა</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>არგენტინა</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>არგენტინის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>ამერიკული სამოა</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>ავსტრია</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>ავსტრიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>ავსტრალია</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>არუბა</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>ალანდის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>აზერბაიჯანი</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>აზერბაიჯანის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>ბოსნია და ჰერცეგოვინა</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>ბოსნია-ჰერცოგოვინას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>ბარბადოსი</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>ბანგლადეში</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>ბანგლადეშის სახალხო რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>ბელგია</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>ბელგიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>ბურკინა-ფასო</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>ბულგარეთი</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>ბულგარეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>ბაჰრეინი</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>ბაჰრეინის სამეფო</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>ბურუნდი</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>ბურუნდის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>ბენინი</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>ბენინის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>სენ-ბართლემი</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>ბერმუდა</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>ბრუნეი დარუსალამი</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>პლურინაციონალური ქვეყანა ბოლივია</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>ბოლივიის მრავლობითი სახელმწიფო</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>ბონერი, სენტ ევსტატუსი და საბა</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>ბონერი, სენტ ევსტატუსი და საბა</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>ბრაზილია</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>ბრაზილიის ფედერალური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>ბაჰამის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>ბაჰამის თანამეგობრობა</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>ბუტანი</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>ბუტანის სამეფო</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>ბუვეტის კუნძული</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>ბოტსვანა</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>ბოცვანას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>ბელარუსი</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>ბელარუსიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>ბელიზი</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>კანადა</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>ქოქოსის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>კონგო, დემოკრატიული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>ცენტრალური აფრიკის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>კონგო</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>კონგოს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>შვეიცარია</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>შვეიცარიის კონფედერაცია</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>კოტ-დ'ივუარი</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>კოტ-დ'ივუარის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>კუკის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>ჩილე</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>ჩილეს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>კამერუნი</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>კამერუნის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>ჩინეთი</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>ჩინეთის სახალხო რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>კოლუმბია</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>კოლუმბიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>კოსტა-რიკა</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>კოსტა-რიკას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>კუბა</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>კუბის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>კაბო-ვერდე</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>კაბო-ვერდეს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>კიურასაო</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>კიურასაო</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>შობის კუნძული</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>კვიპროსი</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>კვიპროსის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>ჩეხეთი</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>ჩეხეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>გერმანია</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>გერმანიის ფედერალური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>ჯიბუტი</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>ჯიბუტის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>დანია</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>დანიის სამეფო</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>დომინიკა</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>დომინიკის თანამეგობრობა</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>დომინიკის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>ალჟირი</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>ალჟირის სახალხო დემოკრატიული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>ეკვადორი</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>ეკვადორის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>ესტონეთი</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>ესტონეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>ეგვიპტე</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>ეგვიპტის არაბული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>დასავლეთი საჰარა</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>ერიტრეა</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>სახელმწიფო ერიტრეა</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>ესპანეთი</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>ესპანეთის სამეფო</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>ეთიოპია</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>ეთიოპიის ფედერალური დემოკრატიული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>ფინეთი</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>ფინეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>ფიჯი</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>ფიჯის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>ფოლკლენდის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>მიკრონეზიის ფედერალური შტატები</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>მიკრონეზიის ფედერალური შტატები</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>ფაროს კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>საფრანგეთი</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>საფრანგეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>გაბონი</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>გაბონის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>გაერთიანებული სამეფო</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>დიდი ბრიტანეთისა და ჩრდილოეთ ირლანდიის გაერთიანებული სამეფო</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>გრენადა</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>საქართველო</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>საფრანგეთის გვიანა</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>გერნსი</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>განა</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>განას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>გიბრალტარი</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>გრენლანდია</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>გამბია</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>გამბიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>გვინეა</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>გვინეას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>გვადელუპა</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>ეკვატორული გვინეა</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>ეკვატორიული გვინეას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>საბერძნეთი</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>საბერძნეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>სამხრეთ ჯორჯია და სამხრეთ სენდვიჩის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>გვატემალა</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>გვატემალას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>გუამი</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>გვინეა-ბისაუ</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>გვინეა-ბისაუს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>გაიანა</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>გაიანას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>ჰონგ-კონგი</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>ჰონგ-კონგის სპეციალური ადმინისტრაციული რეგიონი ჩინეთში</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>ჰერდის და მაკდონალდის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>ჰონდურასი</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>ჰონდურასის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>ხორვატია</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>ხორვატიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>ჰაიტი</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>ჰაიტის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>უნგრეთი</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>უნგრეთი</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>ინდონეზია</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>ინდონეზიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>ირლანდია</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>ისრაელი</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>ისრაელის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>მენის კუნძული</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>ინდოეთი</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>ინდოეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>ბრიტანეთის ინდოეთის ოკეანის ტერიტორია</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>ერაყი</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>ერაყის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>ირანის ისლამური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>ირანის ისლამური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>ისლანდია</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>ისლანდიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>იტალია</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>იტალიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>ჯერსი</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>იამაიკა</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>იორდანია</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>იორდანიის ჰაშემიტური სამეფო</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>იაპონია</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>კენია</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>კენიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>ყირგიზეთი</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>ყირგიზეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>კამბოჯა</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>კამბოდიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>კირიბატი</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>კირიბათის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>კომორის კუნძულების კავშირი</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>კომოროს კავშირი</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>სენტ-კიტსი და ნევისი</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>კორეის სახალხო-დემოკრატიული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>კორეის სახალხო-დემოკრატიული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>კორეა, რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>ქუვეითი</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>ქუვეითი</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>კაიმანის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>ყაზახეთი</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>ყაზახეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>ლაოს სახალხო დემოკრატიული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>ლიბანი</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>ლიბანის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>სენტ-ლუსია</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>ლიხტენშტეინი</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>ლიხტენშტაინის სამთავრო</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>შრი-ლანკა</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>შრი-ლანკას დემოკრატიული სოციალისტური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>ლიბერია</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>ლიბერიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>ლესოთო</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>ლესოთოს სამეფო</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>ლიტვა</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>ლიტვის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>ლუქსემბურგი</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>ლუქსემბურგის დიდი საჰერცოგო</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>ლატვია</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>ლატვიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>ლიბია</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>ლიბია</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>მაროკო</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>მოროკოს სამეფო</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>მონაკო</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>მონაკოს სამთავრო</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>მოლდოვის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>მოლდოვას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>მონტენეგრო</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>მონტენეგრო</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>სენ-მარტინი (ფრანგული ნაწილი)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>მადაგასკარი</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>მადაგასკარის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>მარშალის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>მარშალის კუნძულების რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>ჩრდილოეთ მაკედონია</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>ჩრდილოეთ მაკედონიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>მალი</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>მალის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>მიანმარი</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>მიანმარის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>მონღოლეთი</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>მაკაო</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>მაკაო, ჩინეთის საგანგებო ადმინისტრაციული რეგიონი</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>ჩრდილოეთ მარიანას კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>ჩრდილო მარიანას კუნძულების თანამეგობრობა</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>მარტინიკა</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>მავრიტანია</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>მავრიტანიის ისლამური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>მონსერატი</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>მალტა</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>მალტის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>მავრიკი</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>მავრიკის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>მალდივები</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>მალდივების რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>მალავი</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>მალავის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>მექსიკა</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>მექსიკის შეერთებული შტატები</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>მალაიზია</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>მოზამბიკი</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>მოზამბიკის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>ნამიბია</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>ნამიბიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>ახალი კალედონია</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>ნიგერი</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>ნიგერის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>ნორფოლკი</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>ნიგერია</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>ნიგერიის ფედერალური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>ნიკარაგუა</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>ნიკარაგუას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>ნიდერლანდები</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>ნიდერლანდების სამეფო</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>ნორვეგია</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>ნორვეგიის სამეფო</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>ნეპალი</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>ნეპალის ფედერალური დემოკრატიული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>ნაურუ</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>ნაურუს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>ნიუე</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>ნიუე</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>ახალი ზელანდია</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>ომანი</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>ომანის სასულთნო</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>პანამა</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>პანამას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>პერუ</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>პერუს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>საფრანგეთის პოლინეზია</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>პაპუა-ახალი გვინეა</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>პაპუა ახალი გვინეას დამოუკიდებელი სახელმწიფო</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>ფილიპინები</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>ფილიპინების რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>პაკისტანი</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>პაკისტანის ისმალური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>პოლონეთი</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>პოლონეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>სენ-პიერი და მიქელონი</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>პიტკარინი</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>პუერტო-რიკო</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>პალესტინის სახელმწიფო</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>პალესტინის სახელმწიფო</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>პორტუგალია</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>პორტუგალიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>პალაუ</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>პალაუს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>პარაგვაი</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>პარაგვაის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>კატარი</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>კატარის სახელმწიფო</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>რეიუნიონი</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>რუმინეთი</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>სერბეთი</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>სერბეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>რუსეთის ფედრაცია</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>რუანდა</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>რვანდას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>საუდის არაბეთი</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>საუდის არაბეთის სამეფო</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>სოლომონის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>სეიშელის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>სეიშელის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>სუდანი</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>სუდანის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>შვედეთი</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>შვედეთის სამეფო</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>სინგაპური</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>სინგაპურის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>სენტ ჰელენა, ასცენსიონი და ტრისტან და კუნჰა</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>სლოვენია</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>სლოვენიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>შპიცბერგენი და იან-მაიენი</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>სლოვაკეთი</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>სლოვაკეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>სიერა-ლეონე</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>სიერა-ლეონეს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>სან-მარინო</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>სან-მარინოს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>სენეგალი</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>სენეგალის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>სომალი</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>სომალიის ფედერალური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>სურინამი</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>სურინამის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>სამხრეთ სუდანი</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>სამხრეთ სუდანის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>საო-ტომე და პრინსიპი</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>სან ტომე და პრინსიპეს დემოკრატიული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>სალვადორი</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>ელ-სალვადორის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>სენ-მარტინი (დანიური ნაწილი)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>სენ-მარტინი (დანიური ნაწილი)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>სირიის არაბული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>ესვატინი</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>ესვატინის სამეფო</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>ტერქსისა და კაიკოსის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>ჩადი</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>ჩადის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>ფრანგული სამხრეთ ტერიტორიები</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>ტოგო</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>ტოგოს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>ტაილანდი</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>ტაილანდის სამეფო</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>ტაჯიკეთი</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>ტაჯიკეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>ტოკელაუ</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>აღმოსავლეთი ტიმორი</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>ტიმორ-ლეშტის დემოკრატიული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>თურქმენეთი</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>ტუნისი</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>ტუნისის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>ტონგა</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>ტონგას სამეფო</target>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name" approved="yes">
+        <source>Türkiye</source>
+        <target>თურქეთი</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>თურქეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>ტრინიდადი და ტობაგო</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>ტრინიდადის და ტობაგოს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>ტუვალუ</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>ტაივანი, ჩინეთის პროვინცია</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>ტაივანი, ჩინეთის პროვინცია</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>ტანზანიის გაერთიანებული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>ტანზანიის გაერთიანებული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>უკრაინა</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>უგანდა</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>უგანდას რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>აშშ-ის მიმდებარე მცირე კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>ამერიკის შეერთებული შტატები</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>ამერიკის შეერთებული შტატები</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>ურუგვაი</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>ურუგვაის აღმოსავლური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>უზბეკეთი</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>უზბეკეთის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>წმიდა საყდარი (ქალაქი-სახელმწიფო ვატიკანი)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>სენტ-ვინსენტი და გრენადინები</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>ვენესუელის ბოლივარული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>ვენესუელის ბოლივარული რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>ვირჯინის კუნძულები, ბრიტანეთის</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>ბრიტანეთის ვირჯინის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>ვირჯინის კუნძულები, ა.შ.შ.</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>შეერთებული შტატების ვირჯინის კუნძულები</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>ვიეტ-ნამი</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>ვიეტ-ნამის სოციალისტური რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>ვანუატუ</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>ვანუატუს რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>უოლისი და ფუტუნა</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>სამოა</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>სამოას დამოუკიდებელი სახელმწიფო</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>იემენი</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>იემენის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>მაიოტა</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>სამხრეთ აფრიკის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>სამხრეთ აფრიკის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>ზამბია</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>ზამბიის რესპუბლიკა</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>ზიმბაბვე</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>ზიმბაბვეს რესპუბლიკა</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/kl.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/kl.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..0d91e21bb7b57dac81ab93ba7a481bb3f969448f
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/kl.countries.xlf
@@ -0,0 +1,391 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="kl" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>United Arab Emirates</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albania</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austria</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australia</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaijan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnia and Herzegovina</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgium</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazil</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Belarus</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canada</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Switzerland</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>People's Republic of China</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombia</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Cyprus</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Czech Republic</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Germany</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Denmark</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egypt</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spain</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finland</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Faroe Islands</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>France</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>United Kingdom</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgia</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Greenland</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Greece</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Croatia</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungary</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungary</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesia</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ireland</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>India</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Iraq</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Iceland</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italy</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordan</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japan</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakhstan</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Lebanon</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lithuania</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxembourg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Latvia</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolia</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexico</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Netherlands</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norway</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>New Zealand</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Philippines</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Poland</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Romania</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudi Arabia</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Sweden</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapore</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenia</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovakia</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Suriname</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thailand</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukraine</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>United States of America</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yemen</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/km.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/km.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..673ed1d195474330d2b84b237983d93defca9dbd
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/km.countries.xlf
@@ -0,0 +1,1687 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="km" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>អង់ដូរ៉ា</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>ព្រះ​រាជាណាចក្រ​អង់ដូរ៉ា​</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>អារ៉ាប់​រួម</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>អាហ្គានីស្ថាន</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>សាធារណ​រដ្ឋ​អ៊ីស្លាម​ប៉ាគីស្ថាន</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>អង់ទីហ្គា និង បារប៊ុយដា</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>អង់ហ្ស៊ីឡា</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>អាល់បានី</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>សាធារណ​រដ្ឋ​អាល់បានី</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>អាមេនី</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>សាធារណរដ្ឋ​អាមេនី</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>អង់ហ្គោឡា</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>សាធារណ​រដ្ឋ​អង់ហ្គោឡា</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>អង់តាទីកា</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>អាហ្សង់ទីន</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>សាធារណរដ្ឋ​អាហ្សង់ទីន</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>អាមេរិក​សាមូអា</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>អូទ្រីស</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>សាធារណរដ្ឋ​អូទ្រីស</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>អូស្ត្រាលី</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>អារូបា</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>កោះ​អាឡង់</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>អាហ្ស៊ែរបែហ្សង់</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>សាធារណរដ្ឋ​​អាហ្ស៊ែរបែហ្សង់</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>បូស្ន៊ី និង ​ហឺហ្ស៊េហ្គោវីណា</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>សាធារណ​រដ្ឋ​បូស្ន៊ី និង ​ហឺហ្ស៊េហ្គោវីណា</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>បារបាដូស</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>បង់ក្លាដេស</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>សាធារណ​រដ្ឋ​ប្រជាមានិត​បង់ក្លាដេស</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>បែល​ហ្ស៊ិក</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>ព្រះរាជាណាចក្រ​បែល​ហ្ស៊ិក</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>ប៊ូរគីណាហ្វាសូ</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>ប៊ុលហ្គារី</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>សាធារណរដ្ឋ​ប៊ុលហ្គារី​</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>បារ៉ែន</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>ព្រះរាជាណាចក្រ​​បារ៉ែន</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>ប៊ូរុនឌី</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>សាធារណរដ្ឋ​ប៊ូរុនឌី</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>បេណាំង</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>សាធារណរដ្ឋ​បេណាំង</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>សាន​បាទេលេមី</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>ប៊េរមូដា</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>ប្រ៊ុយណេ​ដារុយសាឡឹម</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivia, Plurinational State of</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Plurinational State of Bolivia</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>បូស្នី ស៊ីន អ៊ីស្តាំធូស និង​សាបា</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>បូស្នី ស៊ីន អ៊ីស្តាំធូស និង​សាបា</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>ប្រេស៊ីល</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>សហព័ន្ធ​​សាធារណរដ្ឋ​ប្រេស៊ីល</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>បាហាម៉ាស</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>ចក្រភព​បាហាម៉ាស</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>ប៊ូតាន</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>ព្រះរាជាណាចក្រ​ប៊ូតាន</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>កោះ​ប៊ូវ៉ែ</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>បុតស្វាណា</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>សាធារណ​រដ្ឋ​បុតស្វាណា</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>បេឡារុស្ស</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>សាធារណរដ្ឋ​​បេឡារុស្ស</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>បេលីហ្ស</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>កាណាដា</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>កោះ​កូកូ (ឃីលីង)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>សាធារណរដ្ឋ​ប្រជាធិបតេយ្យ​កុងហ្គោ</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>សាធារណរដ្ឋ​អាហ្វ្រិក​កណ្ដាល</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>កុងហ្គោ</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>សាធារណរដ្ឋ​កុងហ្គោ</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>ស្វ៊ីស</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>សម្ព័ន្ធ​ស្វីស</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>កូតេឌីវ័រ</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>សាធារណរដ្ឋ​កូតេឌីវ័រ</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>កោះកូក</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>ឈីលី</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>សាធារណរដ្ឋ​ឈីលី​</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>កាមេរ៉ូន</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>សាធារណរដ្ឋ​កាមេរ៉ូន</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>áž…áž·áž“</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>សាធារណរដ្ឋ​ប្រជាមានិត​ចិន</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>កូឡុំប៊ី</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>សាធារណ​រដ្ឋ​កូឡុំប៊ី</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>កូស្តារីកា</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>សាធារណរដ្ឋ​កូស្តារីកា</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>គុយបា</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>សាធារណរដ្ឋ​គុយបា</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>កាបវែរ</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>សាធារណរដ្ឋ​កាបវែរ</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>កោះ​គ្រីស្តម៉ាស</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>ស៊ីពរ៍</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>សាធារណរដ្ឋ​ស៊ីពរ៍​</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>ឆេក</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>សាធារណរដ្ឋ​ឆេក</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>អាល្លឺម៉ង់</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>សហព័ន្ធ​សាធារណ​រដ្ឋ​អាល្លឺម៉ង់</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>ហ្ស៊ីបូទី</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>សាធារណរដ្ឋ​ហ្ស៊ីបូទី</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>ដាណឺម៉ាក</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>ព្រះរាជាណាចក្រ​ដាណឺម៉ាក</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>ដូមីនីកា</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>ចក្រភព​ដូមីនីកា</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>សាធារណរដ្ឋ​ដូមីនីកែន</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>អាល់ហ្សេរី</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>សាធារណ​រដ្ឋ​ប្រជាមានិត​ប្រជាធិបតេយ្យ​​អាល់ហ្សេរី​</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>អេក្វាឌ័រ</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>សាធារណរដ្ឋ​អេក្វាឌ័រ​</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>អេស្តូនី</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>សាធារណរដ្ឋ​អេស្តូនី</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>អេហ្ស៊ីប</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>សាធារណរដ្ឋ​អារាប់​​អេហ្ស៊ីប</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>សាហារ៉ា​ខាងលិច</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>អេរីទ្រា</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>រដ្ឋ​អេរីទ្រា</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>អេស្ប៉ាញ</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>ព្រះរាជាណាចក្រ​អេស្ប៉ាញ</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>អេត្យូពី</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>​​សហព័ន្ធ​សាធារណរដ្ឋ​ប្រជាធិបតេយ្យ​អេត្យូពី</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>ហ្វាំងឡង់</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>សាធារណរដ្ឋ​ហ្វាំងឡង់​</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>ហ្វីហ្ស៊ី</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>សាធារណរដ្ឋ​​ហ្វីជី</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>កោះ​ហ្វ៉កឡង់ (ម៉ាល់វីណា)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>​មីក្រូណេស៊ី​ រដ្ឋ​សហព័ន្ថ​នៃ</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>​រដ្ឋ​សហព័ន្ថ​មីក្រូណេស៊ី</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>កោះ​ហ្វារ៉ូ</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>បារាំង</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>សាធារណរដ្ឋ​បារាំង​</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>ហ្គាបុង</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>សាធារណរដ្ឋ​ហ្គាបុង</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>ចក្រភព​អង់គ្លេស</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>ចក្រភព​អង់គ្លេស ​និងអៀរឡង់​ខាងជើង​</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>ហ្គ្រីណាដា</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>ហ្សកហ្ស៊ី</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>ហ្គូអ៊ីយ៉ាណា​បារាំង</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>ហ្គាណា</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>សាធារណរដ្ឋ​ហ្គាណា</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>ហ្គីប្រាល់តា</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>ហ្គ្រីនលែន</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>ហ្គាំប៊ី</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>ហ្គីណេ</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>សារធារណរដ្ឋ​ហ្គីណេ</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>ហ្គូអាដឺលូប៉េ</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>ហ្គីណេ​អេក្វាទ័រ</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>សាធារណរដ្ឋ​ហ្គីណេ​អេក្វាទ័រ</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>ក្រិក</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>សាធារណរដ្ឋ​ក្រិក</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>ហ្សកហ្ស៊ី​ខាង​ត្បូង និង កោះសាំងវិច​ខាង​ត្បូង</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>ហ្គាតេម៉ាឡា</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>សាធារណរដ្ឋ​ហ្គាតេម៉ាឡា</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>ហ្គាម</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>ហ្គីណេប៊ីសៅ</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>សាធារណរដ្ឋ​ហ្គីណេប៊ីសៅ</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>ហ្គីយ៉ាណា</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>សាធារណរដ្ឋ​ហ្គីយ៉ាណា​</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>ហុងកុង</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>ហុងកុង​តំបន់​ត្រួតត្រា​ពិសេស​របស់​ចិន</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>កោះ​ហ៊ើដ និង កោះ​ម៉ាកដូណាល់</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>ហុងឌូរ៉ាស់</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>សាធារណរដ្ឋ​ហុងឌូរ៉ាស់</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>ក្រូអាត</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>សាធារណរដ្ឋ​ក្រូអាត</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>ហៃទី</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>សាធារណរដ្ឋ​ហៃទី​</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>ហុងគ្រី</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>ហុងគ្រី</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>ឥណ្ឌូនេស៊ី</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>សាធារណរដ្ឋ​ឥណ្ឌូនេស៊ី</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>អៀរឡង់</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>អ៊ីស្រាអែល</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>រដ្ន​អ៊ីស្រាអែល</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Isle of Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>ឥណ្ឌា</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>សាធារណរដ្ឋ​ឥណ្ឌា​</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>អាណាចក្រ​​មហា​សមុទ្រ​ឥណ្ឌា ចក្រភព​អង់គ្លេស</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>អ៊ីរ៉ាក់</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>សាធារណរដ្ឋ​អ៊ីរ៉ាក់​</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>​អ៊ីរ៉ង់ សាធារណ​រដ្ឋ​អ៊ីស្លាម​នៃ</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>សាធារណ​រដ្ឋ​អ៊ីស្លាម​អ៊ីរ៉ង់</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>អ៊ីស្លង់</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>សាធារណរដ្ឋ​អ៊ីស្លង់</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>អ៊ីតាលី</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>សាធារណ​រដ្ឋ​អ៊ីតាលី</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>ចាម៉ៃកា</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>ហ្ស៊កដង់</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>ព្រះរាជាណាចក្រ​ហ្ស៊កដង់​</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>ជប៉ុន</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>កេនយ៉ា</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>សាធារណរដ្ឋ​កេនយ៉ា</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>គៀរហ្គីស្តង់</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>សាធារណ​រដ្ឋ​គៀរហ្គីស្តង់</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>កម្ពុជា</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>ព្រះរាជាណាចក្រ​កម្ពុជា</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>គិរិបាទី</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>សាធារណរដ្ឋ​គិរិបាទី</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>កុំម៉ូរ៉ូស</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>សហភាព​​កុំម៉ូរ៉ូស​</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>សង់ឃីត និង នេវីស</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>កូរ៉េ សាធារណ​រដ្ឋ​ប្រជាមានិត​ប្រជាធិបតេយ្យ​​នៃ</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>សាធារណ​រដ្ឋ​ប្រជាមានិត​ប្រជាធិបតេយ្យ​កូរ៉េ</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>កូរ៉េ សាធារណរដ្ឋ​នៃរ៉េ</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>គុយវ៉ែត</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>រដ្ឋ​គុយវ៉ែត</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>កោះ​កៃម៉ាន</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>កាហ្សាក់ស្តង់</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>សាធារណរដ្ឋ​កាហ្សាក់ស្តង់</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>សាធារណ​រដ្ឋ​ប្រជាធិបតេយ្យ​​ប្រជាមានិត​ឡាវ</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>លីបង់</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>សាធារណរដ្ឋ​លីបង់</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>សង់លូស៊ីយ៉ា</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>លិចទេនស្តែន</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>ព្រះរាជាណាចក្រ​លិចទេនស្តែន​</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>ស្រីលង្កា</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>សាធារណរដ្ឋ​សង្គមនិយម​ប្រជាធិបតេយ្យ​​ស្រីលង្កា</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>លីបេរីយ៉ា</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>សាធារណរដ្ឋ​លីបេរីយ៉ា</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>ឡេសូតូ</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>ព្រះរាជាណាចក្រ​ឡេសូតូ</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>លីទុយអានី</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>សាធារណរដ្ឋ​លីទុយអានី</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>លុចហ្សំបួរ</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>ព្រះរាជាណាចក្រ​លុចហ្សំបួរ</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>ឡាតវីយ៉ា</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>សាធារណរដ្ឋ​ឡាតវីយ៉ា</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>លីបេរីយ៉ា</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>លីបេរីយ៉ា</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>ម៉ារ៉ុក</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>ព្រះរាជាណាចក្រ​ម៉ារ៉ុក</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>ម៉ូណាកូ</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>ព្រះរាជាណាចក្រ​​ម៉ូណាកូ</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>សាធារណ​រដ្ឋ​​ម៉ាសេដូនី</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>សាធារណរដ្ឋ​ម៉ុលដូវ៉ា</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>​ម៉ុងតេណេក្រូ</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>​ម៉ុងតេណេក្រូ</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>សាន​ម៉ាទីន (ផ្នែក​របស់​បារាំង)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>ម៉ាដាហ្គាស្ការ</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>សាធារណរដ្ឋ​ម៉ាដាហ្គាស្ការ</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>កោះ​ម៉ាស្យល</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>សាធារណរដ្ឋ​កោះ​ម៉ាស្យល</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>ម៉ាលី</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>សាធារណរដ្ឋ​ម៉ាលី</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>មីយ៉ាន់ម៉ា</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>សាធារណរដ្ឋ​មីយ៉ាន់ម៉ា</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>ម៉ុងហ្គោលី</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>ម៉ាកាវ</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>ម៉ាកាវ​តំបន់​ត្រួតត្រា​ពិសេស​របស់​ចិន</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>កោះ​ម៉ារៀណា​ភាគ​ខាង​ជើង</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>ចក្រភព​កោះ​ម៉ារៀណា​ភាគ​ខាង​ជើង</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>ម៉ារទីនីគ</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>ម៉ូរីតានី</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>សាធារណ​រដ្ឋ​អ៊ីស្លាម​ម៉ូរីតានី​</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>ម៉ុងសេរ៉ា</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>ម៉ាល់តា</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>សាធារណរដ្ឋ​ម៉ាល់តា</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>ម៉ូរីទុស</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>សាធារណរដ្ឋ​ម៉ូរីទុស</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>ម៉ាល់ឌីវ</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>សាធារណរដ្ឋ​ម៉ាល់ឌីវ</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>ម៉ាឡាវី</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>សាធារណរដ្ឋ​ម៉ាឡាវី​</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>ម៉ិចស៊ិក</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>សហរដ្ឋ​ម៉ិចស៊ិក</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>ម៉ាឡេស៊ី</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>ម៉ូហ្សាំប៊ិក</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>សាធារណរដ្ឋ​ម៉ូហ្សាំប៊ិក</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>ណាមីប៊ី</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>សាធារណរដ្ឋ​ណាមីប៊ី</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>នូវែលកាលេដូនី</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>នីហ្សេរ</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>សាធារណរដ្ឋ​នីហ្សេរ</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>កោះណរហ្វក</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>នីហ្សេរីយ៉ា</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>សហព័ន្ធ​សាធារណរដ្ឋ​​នីហ្សេរីយ៉ា</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>នីការ៉ាហ្គ័រ</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>សាធារណរដ្ឋ​នីការ៉ាហ្គ័រ</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>​ហូល្លង់</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>ព្រះរាជាណាចក្រ​​​ហូល្លង់</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>ន័រវែស</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>ព្រះរាជាណាចក្រ​ន័រវែស</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>នេប៉ាល់</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>​​សហព័ន្ធ​សាធារណរដ្ឋ​ប្រជាធិបតេយ្យណេប៉ាល់</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>ណូរុ</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>សាធារណរដ្ឋ​ណូរុ</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>នីវ</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>នីវ</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>នូវែលហ្សេឡង់</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>អូម៉ង់</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>អ៊ីស្លាម​អូម៉ង់</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>ប៉ាណាម៉ា</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>សាធារណរដ្ឋ​ប៉ាណាម៉ា</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>ប៉េរ៉ូ</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>សាធារណរដ្ឋ​ប៉េរ៉ូ</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>ប៉ូលីនេស៊ី​បារាំង</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>ប៉ាពូញូវហ្គីណេ</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Independent State of Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>ហ្វីលីពីន</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>សាធារណរដ្ឋ​ហ្វីលីពីន​</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>ប៉ាគីស្ថាន</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>សាធារណ​រដ្ឋ​អ៊ីស្លាម​ប៉ាគីស្ថាន</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>ប៉ូឡូញ</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>សាធារណរដ្ឋ​ប៉ូឡូញ</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>សង់ព្យែរ និង មីគុយអេឡុង</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>ពីតខាយរិន</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>ព័រតូរីកូ</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>រដ្ឋប៉ាឡេស្ទីន</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>រដ្ឋ​ប៉ាឡេស្ទីន</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>ព័រទុយហ្គាល់</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>សាធារណរដ្ឋ​ព័រទុយហ្គាល់</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>ប៉ាឡូ</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>សាធារណរដ្ឋ​ប៉ាឡូ</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>ប៉ារ៉ាហ្គាយ</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>សាធារណរដ្ឋ​ប៉ារ៉ាហ្គាយ</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>កាតារ</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>រដ្ឋ​កាតារ</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>រេអុយញ៉ុង</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>រូម៉ានី</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>ស៊ែរប៊ី</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>សាធារណរដ្ឋស៊ែរប៊ី</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>សហព័ន្ធ​រុស្ស៊ី</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>រវ៉ាន់ដា</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>សាធារណរដ្ឋ​រវ៉ាន់ដា</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>អារ៉ាប៊ីសាអ៊ូឌីត</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>ព្រះរាជាណាចក្រ​អារ៉ាប៊ីសាអ៊ូឌីត</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>កោះ​សូឡូម៉ូន</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>សីស្ហែល</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>សាធារណរដ្ឋ​សីស្ហែល</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>ស៊ូដង់</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>សាធារណរដ្ឋ​ស៊ូដង់</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>ស៊ុយអែត</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>ព្រះរាជាណាចក្រ​ស៊ុយអែត</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>សាំងហ្គាពួរ</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>សាធារណរដ្ឋ​សាំងហ្គាពួរ</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Saint Helena, Ascension and Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>ស្លូវ៉ានី</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>សាធារណរដ្ឋ​ស្លូវ៉ានី</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>ស្វាល់បាត និង ហ្សង់ម៉ាយេន</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>ស្លូវ៉ាគី</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>សាធារណរដ្ឋ​ស្លូវ៉ាគី</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>សេរ៉ាឡេអូន</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>សាធារណរដ្ឋ​សេរ៉ាឡេអូន</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>សាន់ម៉ារីណូ</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>សាធារណរដ្ឋ​សាន់ម៉ារីណូ</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>សេណេហ្គាល់</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>សាធារណរដ្ឋ​សេណេហ្គាល់</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>សូម៉ាលី</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federal Republic of Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>ស៊ូរីណាមី</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>សាធារណរដ្ឋ​ស៊ូរីណាមី</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>ស៊ូដង់​ខាង​ត្បូង</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>សាធារណរដ្ឋ​ស៊ូដង់​ខាង​ត្បូង</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>សៅតូម និង ព្រីនស៊ីព</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>សាធារណ​រដ្ឋ​ប្រជាធិបតេយ្យ​​សៅតូម និង ព្រីនស៊ីព</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>អែលសាល់វ៉ាឌ័រ</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>សាធារណរដ្ឋ​អែលសាល់វ៉ាឌ័រ</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>សាន​ម៉ាទីន (ផ្នែក​របស់ហុល្លង់)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>សាន​ម៉ាទីន (ផ្នែក​របស់ហុល្លង់)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>សាធារណរដ្ឋ​ស៊ីរីយ៉ា​​អារាប់</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>កោះ​ទួក និង កៃកូស</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>ឆាដ</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>សាធារណរដ្ឋ​ឆាដ</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>អាណាចក្រ​ខាង​ត្បូង​បារាំង</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>តូហ្គោ</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>សាធារណ​រដ្ឋ​តូហ្គោ</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>ថៃ</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>ព្រះរាជាណាចក្រ​ថៃ</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>តាហ្ស៊ីគីស្តង់</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>សាធារណរដ្ឋ​តាហ្ស៊ីគីស្តង់​</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>តូកេឡាអ៊ូ</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>ទីម័រ</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>សាធារណរដ្ឋ​ប្រជាធិបតេយ្យ​​ទីម័រ</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>ទួគមេនីស្តង់</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>ទុយណេស៊ី</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>សាធារណរដ្ឋ​ទុយណេស៊ី</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>តុងហ្គោ</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>ព្រះរាជាណាចក្រ​តុងហ្គោ</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>ទ្រីនីដាដ និង​ តូបាហ្គោ</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>សាធារណរដ្ឋ​ទ្រីនីដាដ និង​ តូបាហ្គោ</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>ទុយវ៉ាលុយ</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>តៃវ៉ាន់​ ខេត្ត​នៃ​ប្រទេស​ចិន</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>តៃវ៉ាន់​ ខេត្ត​នៃ​ប្រទេស​ចិន</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>​តង់ហ្សានី​សាធារណ​រដ្ឋ​រួម​នៃ</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>សាធារណ​រដ្ឋ​រួម​តង់ហ្សានី​</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>អ៊ុយក្រែន</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>អ៊ូហ្គង់ដា</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>សាធារណរដ្ឋ​អ៊ូហ្គង់ដា</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>កោះ​តូច​នៅ​ឆ្ងាយ​ពី​សហរដ្ឋ​អាមេរិក</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>សហរដ្ឋ​អាមេរិក</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>សហរដ្ឋ​អាមេរិក</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>អ៊ុយរ៉ាហ្គាយ</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>សាធារណរដ្ឋ​អ៊ុយរ៉ាហ្គាយ​ខាងកើត</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>អ៊ូហ្សបេគីស្តង់</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>សាធារណរដ្ឋ​អ៊ូហ្សបេគីស្តង់</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>ហូលីស៊ី (រដ្ឋ​របស់បូរី​វ៉ាទីកង់)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>សង់វាំងសង់ និង ហ្គ្រីណាឌីន</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>សាធារណរដ្ឋ​បូលីវី​នៃ​វ៉េណេហ្ស៊ុយអេឡា</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>សាធារណរដ្ឋ​បូលីវី​នៃ​វ៉េណេហ្ស៊ុយអេឡា</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>កោះ​វីជីន ចក្រភពអង់គ្លេស</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>ចក្រភពអង់គ្លេស ​កោះ​វីជីន</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>កោះវីជីន ​សហរដ្ឋ​អាមេរិក</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>កោះវីជីន​នៃ​សហរដ្ឋ​អាមេរិក</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>វៀតណាម</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>សាធារណរដ្ឋ​សង្គមនិយម​វៀតណាម</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>វ៉ានុយអាទុយ</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>សាធារណរដ្ឋ​វ៉ានុយអាទុយ</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>វ៉ាលីស​និង​ហ្វុយទុយណា</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>សាមូអា</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>រដ្ឋ​ឯករាជ្យ​សាមូអា</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>យេមែន</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>សាធារណ​រដ្ឋ​យេមែន</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>ម៉ាយុត</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>អាហ្វ្រិក​ខាងត្បូង</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>សាធារណរដ្ឋ​អាហ្វ្រិក​ខាងត្បូង</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>ហ្សាំប៊ី</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>សាធារណរដ្ឋ​ហ្សាំប៊ី</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>ហ្ស៊ីមបាវ៉េ</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>សាធារណរដ្ឋ​ហ្ស៊ីមបាវ៉េ</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/ko.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/ko.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..79c6c241fced739e7cf46dc6e6a774c5b51eda93
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/ko.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="ko" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>안도라</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>안도라 공국</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>아랍에미리트</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>아프가니스탄</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>아프가니스탄 이슬람 공화국</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>앤티가 바부다</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>앵귈라</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>알바니아</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>알바니아 공화국</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>아르메니아</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>아르메니아 공화국</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>앙골라</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>앙골라 공화국</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>남극</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>아르헨티나</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>아르헨티나 공화국</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>아메리칸사모아</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>오스트리아</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>오스트리아 공화국</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>오스트레일리아</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>아루바</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>올란드 제도</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>아제르바이잔</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>아제르바이잔 공화국</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>보스니아 헤르체고비나</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>보스니아 헤르체고비나 공화국</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>바베이도스</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>방글라데시</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>방글라데시 인민 공화국</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>벨기에</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>벨기에 왕국</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>부르키나파소</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>불가리아</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>불가리아 공화국</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>바레인</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>바레인 왕국</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>부룬디</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>부룬디 공화국</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>베냉</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>베냉 공화국</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>생바르텔레미</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>버뮤다</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>브루나이 다루살람</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>볼리비아 다국가 연합국</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>볼리비아 다국가 연합국</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>보네르, 신트외스타티위스, 사바 섬</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>보네르, 신트외스타티위스, 사바 섬</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>브라질</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>브라질 연방 공화국</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>바하마</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>바하마 연방</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>부탄</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>부탄 왕국</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>부베 섬</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>보츠와나</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>보츠와나 공화국</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>벨라루스</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>벨라루스 공화국</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>벨리즈</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>캐나다</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>코코스 제도</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>콩고 민주 공화국</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>중앙아프리카 공화국</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>콩고</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>콩고 공화국</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>스위스</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>스위스 연방</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>코트디부아르</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>코트디부아르 공화국</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>쿡 제도</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>ì¹ ë ˆ</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>칠레 공화국</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>카메룬</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>카메룬 공화국</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>중국</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>중화인민공화국</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>콜롬비아</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>콜롬비아 공화국</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>코스타리카</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>코스타리카 공화국</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>ì¿ ë°”</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>쿠바 공화국</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>카보베르데</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>카보베르데 공화국</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>퀴라소</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>퀴라소</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>크리스마스 섬</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>키프로스</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>키프로스 공화국</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>ì²´ì½”</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>체코 공화국</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>독일</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>독일 연방 공화국</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>지부티</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>지부티 공화국</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>덴마크</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>덴마크 왕국</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>도미니카 연방</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>도미니카 연방</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>도미니카 공화국</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>알제리</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>알제리 인민 민주주의 공화국</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>에콰도르</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>에콰도르 공화국</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>에스토니아</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>에스토니아 공화국</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>이집트</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>이집트 아랍 공화국</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>서사하라</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>에리트레아</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>에리트레아 공화국</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>스페인</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>스페인 왕국</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>에티오피아</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>에티오피아 연방 민주 공화국</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>핀란드</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>핀란드 공화국</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>피지</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>피지 공화국</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>포클랜드 제도 (말비나스)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>미크로네시아 연방</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>미크로네시아 연방</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>페로 제도</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>프랑스</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>프랑스 공화국</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>가봉</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>가봉 공화국</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>영국</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>대영제국</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>그레나다</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>조지아</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>프랑스령 기아나</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>건지 섬</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>가나</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>가나 공화국</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>지브롤터</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>그린란드</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>감비아</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>감비아 공화국</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>기니</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>기니 공화국</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>과들루프</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>적도 기니</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>적도 기니 공화국</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>그리스</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>그리스 공화국</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>사우스조지아 사우스샌드위치 제도</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>과테말라</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>과테말라 공화국</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>괌</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>기니비사우</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>기니비사우 공화국</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>가이아나</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>가이아나 공화국</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>홍콩</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>홍콩, 중국의 특별 행정구</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>허드 맥도널드 제도</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>온두라스</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>온두라스 공화국</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>크로아티아</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>크로아티아 공화국</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>아이티</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>아이티 공화국</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>헝가리</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>헝가리</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>인도네시아</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>인도네시아 공화국</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>아일랜드</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>이스라엘</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>이스라엘</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>맨 섬</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>인도</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>인도 공화국</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>영국령 인도양 지역</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>이라크</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>이라크 공화국</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>이란 이슬람 공화국</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>이란 이슬람 공화국</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>아이슬란드</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>아이슬란드 공화국</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>이탈리아</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>이탈리아 공화국</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>저지 섬</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>자메이카</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>요르단</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>요르단 하심 왕국</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>일본</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>케냐</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>케냐 공화국</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>키르기스스탄</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>키르기스 공화국</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>캄보디아</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>캄보디아 왕국</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>키리바시</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>키리바시 공화국</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>코모로</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>코모로 연방</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>세인트키츠 네비스</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>조선민주주의인민공화국</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>조선민주주의인민공화국</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>대한민국</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>쿠웨이트</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>쿠웨이트</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>케이맨 제도</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>카자흐스탄</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>카자흐스탄 공화국</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>라오 인민 민주주의 공화국</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>레바논</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>레바논 공화국</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>세인트루시아</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>리히텐슈타인</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>리히텐슈타인 공국</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>스리랑카</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>스리랑카 민주 사회주의 공화국</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>라이베리아</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>라이베리아 공화국</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>레소토</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>레소토 왕국</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>리투아니아</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>리투아니아 공화국</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>룩셈부르크</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>룩셈부르크 대공국</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>라트비아</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>라트비아 공화국</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>리비아</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>리비아</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>모로코</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>모로코 왕국</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>모나코</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>모나코 공국</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>몰도바 공화국</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>몰도바 공화국</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>몬테네그로</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>몬테네그로</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>생마르탱 (프랑스령)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>마다가스카르</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>마다가스카르 공화국</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>마셜 제도</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>마셜 제도 공화국</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>북마케도니아</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>북마케도니아 공화국</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>말리</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>말리 공화국</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>미얀마</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>미얀마 공화국</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>몽골</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>마카오</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>마카오, 중국의 특별 행정구</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>북마리아나 제도</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>북마리아나 제도 연방</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>마르티니크</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>모리타니</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>모리타니 이슬람 공화국</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>몬트세랫</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>몰타</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>몰타 공화국</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>모리셔스</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>모리셔스 공화국</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>몰디브</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>몰디브 공화국</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>말라위</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>말라위 공화국</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>멕시코</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>멕시코 합중국</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>말레이시아</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>모잠비크</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>모잠비크 공화국</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>나미비아</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>나미비아 공화국</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>누벨칼레도니</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>니제르</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>니제르 공화국</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>노퍽 섬</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>나이지리아</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>나이지리아 연방 공화국</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>니카라과</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>니카라과 공화국</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>네덜란드</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>네덜란드 왕국</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>노르웨이</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>노르웨이 왕국</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>네팔</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>네팔 연방 민주 공화국</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>나우루</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>나우루 공화국</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>니우에</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>니우에</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>뉴질랜드</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>오만</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>오만 이슬람왕국</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>파나마</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>파나마 공화국</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>페루</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>페루 공화국</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>프랑스령 폴리네시아</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>파푸아뉴기니</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>파푸아뉴기니 독립국</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>필리핀</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>필리핀 공화국</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>파키스탄</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>파키스탄 이슬람 공화국</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>폴란드</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>폴란드 공화국</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>생피에르 미클롱</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>핏케언 제도</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>푸에르토리코</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>팔레스타인</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>팔레스타인</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>포르투갈</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>포르투갈 공화국</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>팔라우</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>팔라우 공화국</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>파라과이</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>파라과이 공화국</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>카타르</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>카타르</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>레위니옹</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>루마니아</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>세르비아</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>세르비아 공화국</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>러시아 연방</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>르완다</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>르완다 공화국</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>사우디아라비아</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>사우디아라비아 왕국</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>솔로몬 제도</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>세이셸</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>세이셸 공화국</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>수단</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>수단 공화국</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>스웨덴</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>스웨덴 왕국</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>싱가포르</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>싱가포르 공화국</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>세인트헬레나 어센션 트리스탄다쿠냐</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>슬로베니아</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>슬로베니아 공화국</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>스발바르 얀마옌 제도</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>슬로바키아</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>슬로바키아 공화국</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>시에라리온</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>시에라리온 공화국</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>산마리노</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>산마리노 공화국</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>세네갈</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>세네갈 공화국</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>소말리아</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>소말리아 연방 공화국</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>수리남</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>수리남 공화국</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>남수단</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>남수단 공화국</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>상투메 프린시페</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>상투메 프린시페 민주 공화국</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>엘살바도르</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>엘살바도르 공화국</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>신트마르턴 (네덜란드령)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>신트마르턴 (네덜란드령)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>시리아 아랍 공화국</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>에스와티니</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>에스와티니 왕국</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>터크스 케이커스 제도</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>차드</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>차드 공화국</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>프랑스령 남 자치구역</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>토고</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>토고 공화국</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>태국</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>타일랜드 왕국</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>타지키스탄</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>타지키스탄 공화국</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>토켈라우</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>동티모르</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>동티모르 민주 공화국</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>투르크메니스탄</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>튀니지</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>튀니지 공화국</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>통가</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>통가 왕국</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>트리니다드 토바고</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>트리니다드 토바고 공화국</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>투발루</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>타이완, 중국령</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>타이완, 중국령</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>탄자니아 연방 공화국</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>탄자니아 연방 공화국</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>우크라이나</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>우간다</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>우간다 공화국</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>미국령 군소 제도</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>미국</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>미국</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>우루과이</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>동 우루과이 공화국</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>우즈베키스탄</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>우즈베키스탄 공화국</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>바티칸 시티 (Holy See)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>세인트빈센트 그레나딘</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>베네수엘라 볼리바르 공화국</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>베네수엘라 볼리바르 공화국</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>버진 제도, 영국령</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>영국령 버진 제도</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>버진 제도, 미국령</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>미국령 버진 제도</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>베트남</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>베트남 사회주의 공화국</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>바누아투</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>바누아투 공화국</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>왈리스 퓌튀나</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>사모아</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>사모아</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>예멘</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>예멘 공화국</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>마요트</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>남아프리카 공화국</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>남아프리카 공화국</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>잠비아</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>잠비아 공화국</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>짐바브웨</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>짐바브웨 공화국</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/lt.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/lt.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..42bd6d3f97ab1cdabeb9163ddfa3feaf82cbfff2
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/lt.countries.xlf
@@ -0,0 +1,1683 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="lt" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andora</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Andoros Kunigaikštystė</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Jungtiniai Arabų Emyratai</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistanas</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Afganistano Islamo Respublika</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigva ir Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Angilija</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanija</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Albanijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>ArmÄ—nija</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>ArmÄ—nijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Angolos Respublika</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktida</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentinos Respublika</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Amerikos Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austrija</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Austrijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australija</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Alandai</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaidžanas</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Azerbaidžano Respublika</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnija ir Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Bosnijos ir Hercegovinos Respublika</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbadosas</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladešas</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Bangladešo Liaudies Respublika</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgija</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Belgijos KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Fasas</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgarija</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Bulgarijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahreinas</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Bahreino KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundis</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Burundžio Respublika</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Beninas</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Benino Respublika</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>San Bartelemis</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>BrunÄ—jaus Darusalamas</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivijos DaugiatautÄ— ValstybÄ—</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Bolivijos DaugiatautÄ— ValstybÄ—</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>BonairÄ—, Sint Eustatijus ir Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>BonairÄ—, Sint Eustatijus ir Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazilija</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Brazilijos FederacinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamos</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Bahamų Sandrauga</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Butanas</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Butano KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>BuvÄ— sala</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botsvana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Botsvanos Respublika</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Baltarusija</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Baltarusijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belizas</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kokosų (Kilingo) salos</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongo DemokratinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>CentrinÄ—s Afrikos Respublika</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongas</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Kongo Respublika</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Å veicarija</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Å veicarijos Konfederacija</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Dramblio Kaulo Krantas</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Dramblio Kaulo Kranto Respublika</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Kuko salos</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>ÄŒilÄ—</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>ÄŒilÄ—s Respublika</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerūnas</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Kamerūno Respublika</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Kinija</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Kinijos Liaudies Respublika</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbija</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Kolumbijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kosta Rika</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Kosta Rikos Respublika</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Kubos Respublika</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Kiurasao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Kiurasao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Kalėdų sala</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Kipras</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Kipro Respublika</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>ÄŒekijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Vokietija</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Vokietijos FederacinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Džibutis</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Džibučio Respublika</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danija</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Danijos KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Dominikos Sandrauga</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikos Respublika</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Alžyras</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Alžyro Liaudies Demokratinė Respublika</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekvadoras</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Ekvadoro Respublika</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estija</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Estijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egiptas</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Egipto Arabų Respublika</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Vakarų Sachara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>EritrÄ—ja</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>EritrÄ—jos valstybÄ—</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Ispanija</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Ispanijos KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopija</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Etiopijos FederacinÄ— DemokratinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Suomija</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Suomijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidžis</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Fidžio Respublika</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Folklando (Malvinų) salos</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronezijos FederacinÄ—s Valstijos</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Mikronezijos FederacinÄ—s Valstijos</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Farerų salos</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Prancūzija</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Prancūzijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabonas</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gabono Respublika</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>JungtinÄ— KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Jungtinė Didžiosios Britanijos ir Šiaurės Airijos Karalystė</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gruzija</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Prancūzijos Gviana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Gernsis</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Gana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Ganos Respublika</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltaras</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grenlandija</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambija</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>GvinÄ—ja</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>GvinÄ—jos Respublika</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Gvadelupa</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Pusiaujo GvinÄ—ja</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Pusiaujo GvinÄ—jos Respublika</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Graikija</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Graikijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Pietų Džordžijos ir Pietų Sandvičo salos</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Gvatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Gvatemalos Respublika</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guamas</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Bisau GvinÄ—ja</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Bisau GvinÄ—jos Respublika</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Gajana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Gajanos Respublika</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Honkongas</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Honkongas, Specialusis Kinijos administracinis regionas</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Herdo ir Makdonaldo salos</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Hondūras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Hondūro Respublika</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroatija</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Kroatijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haitis</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Haičio Respublika</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Vengrija</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Vengrija</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonezija</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Indonezijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Airija</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Izraelis</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Izraelio ValstybÄ—</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Meno sala</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indija</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Indijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Indijos Vandenyno Britų sritis</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irakas</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Irako Respublika</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Irano Islamo Respublika</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Irano Islamo Respublika</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islandija</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Islandijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italija</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Italijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Džersis</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaika</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordanija</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Jordanijos Hašimitų Karalystė</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japonija</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenija</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Kenijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgizija</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgizijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kambodžos Karalystė</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribatis</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Kiribačio Respublika</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komorai</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Komorų Sąjunga</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Sent Kitsas ir Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>KorÄ—jos Liaudies DemokratinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>KorÄ—jos Liaudies DemokratinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>KorÄ—jos Respublika</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuveitas</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Kuveito ValstybÄ—</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kaimanų salos</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazachstanas</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Kazachstano Respublika</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laoso Liaudies DemokratinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanas</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libano Respublika</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Sent Lusija</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Lichtenšteinas</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Lichtenšteino Kunigaikštytė</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Å ri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Å ri Lankos DemokratinÄ— SocialistinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberija</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Liberijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotas</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Lesoto KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lietuva</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Lietuvos Respublika</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Liuksemburgas</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Liuksemburgo Didžioji Hercogystė</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Latvija</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Latvijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libija</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libija</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marokas</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Maroko KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monakas</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Monako Kunigaikštystė</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldovos Respublika</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Moldovos Respublika</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Juodkalnija</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Juodkalnija</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>San Martenas (Prancūzijos dalis)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskaras</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Madagaskaro Respublika</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Maršalo salos</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Maršalo Salų Respublika</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Malis</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Malio Respublika</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Mianmaras</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Mianmaro Respublika</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolija</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Makao, Specialusis Kinijos administracinis regionas</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Marianos Å¡iaurinÄ—s salos</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Marianos šiaurinių salų sandrauga</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinika</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritanija</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Mauritanijos Islamo Respublika</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montseratas</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Maltos Respublika</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauricijus</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Mauricijaus Respublika</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldyvai</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Maldyvų Respublika</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malavis</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Malavio Respublika</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksika</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Meksikos JungtinÄ—s Valstijos</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malaizija</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambikas</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Mozambiko Respublika</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibija</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Namibijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Naujoji Kaledonija</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Nigeris</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Nigerio Respublika</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolko sala</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigerija</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Nigerijos FederacinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragva</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Nikaragvos Respublika</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Nyderlandai</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Nyderlandų Karalystė</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norvegija</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Norvegijos KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepalas</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Nepalo FederacinÄ— DemokratinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Nauru Respublika</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>NiujÄ—</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>NiujÄ—</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Naujoji Zelandija</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omanas</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Omano Sultonatas</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Panamos Respublika</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Peru Respublika</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Prancūzijos Polinezija</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Naujoji GvinÄ—ja</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Independent State of Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipinai</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Filipinų Respublika</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistanas</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Pakistano Islamo Respublika</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Lenkija</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Lenkijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Sen Pjeras ir Mikelonas</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitkernas</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rikas</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestinos valstybÄ—</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Palestinos valstybÄ—</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugalija</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugalijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Palau Respublika</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paragvajus</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Paragvajaus Respublika</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Kataras</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Kataro ValstybÄ—</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Reunjonas</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumunija</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbija</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Serbijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Rusijos Federacija</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Ruandos Respublika</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudo Arabija</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Saudo Arabijos KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Saliamono salos</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seišeliai</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Seišelių Respublika</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudanas</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Sudano Respublika</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Å vedija</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Å vedijos KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapūras</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Singapūro Respublika</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Šv. Elenos, Dangun Žengimo ir Tristano da Kunjos salos</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>SlovÄ—nija</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>SlovÄ—nijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbardas ir Jan Majenas</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovakija</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovakijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Siera LeonÄ—</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Siera LeonÄ—s Respublika</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marinas</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>San Marino Respublika</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegalas</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Senegalo Respublika</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalis</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federal Republic of Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinamas</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Surinamo Respublika</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Pietų Sudanas</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Pietų Sudano Respublika</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>San TomÄ— ir PrinsipÄ—</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>San TomÄ—s ir PrinsipÄ—s DemokratinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Salvadoras</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Salvadoro Respublika</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sin Martenas (Nyderalandų dalis)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sin Martenas (Nyderalandų dalis)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Sirijos Arabų Respublika</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Terkso ir Kaikoso salos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>ÄŒadas</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>ÄŒado Respublika</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Prancūzijos Pietų Sritys</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togas</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togo Respublika</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tailandas</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Tailando KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadžikistanas</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Tadžikistano Respublika</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Rytų Timoras</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Rytų Timoro Demokratinė Respublika</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>TurkmÄ—nistanas</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisas</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Tuniso Respublika</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Tongos KaralystÄ—</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidadas ir Tobagas</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Trinidado ir Tobago Respublika</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taivanas, Kinijos provincija</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taivanas, Kinijos provincija</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzanijos JungtinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Tanzanijos JungtinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukraina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Ugandos Respublika</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Jungtinių Amerikos Valstijų mažosios aplinkinės salos</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>JungtinÄ—s Amerikos Valstijos</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>JungtinÄ—s Amerikos Valstijos</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Urugvajus</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Urugvajaus Rytų Respublika</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekija</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Uzbekistano Respublika</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Å ventasis Sostas (Vatikano Miesto ValstybÄ—)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Sent Vinsentas ir Grenadinai</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venesuelos Bolivaro Respublika</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Venesuelos Bolivaro Respublika</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Mergelių salos (Britų)</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Jungtinės Karalystės Mergelių salos</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Mergelių salos (JAV)</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Jungtinių Valstijų Mergelių salos</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnamas</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Vietnamo SocialistinÄ— Respublika</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Vanuatu Respublika</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Volisas ir Futūna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Samoa Nepriklausomoji ValstybÄ—</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemenas</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Jemeno Respublika</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Majotas</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Pietų Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Pietų Afrikos Respublika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambija</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Zambijos Respublika</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>ZimbabvÄ—</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>ZimbabvÄ—s Respublika</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/lv.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/lv.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..a11c19392d106e47969191cd460df350f21cebdb
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/lv.countries.xlf
@@ -0,0 +1,1683 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="lv" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andora</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Andoras Firstiste</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Apvienotie Arābu Emirāti</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistāna</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Afganistānas Islāma Republika</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigva un Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Angilja</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albānija</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Albānijas Republika</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armēnija</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Armēnijas Republika</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Angolas Republika</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktika</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentīna</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentīnas Republika</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Amerikāņu Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austrija</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Austrijas Republika</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Austrālija</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Olande</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaidžāna</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Azerbaidžānas Republika</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnija un Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Bosnijas un Hercegovina Republika</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbadosa</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladeša</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Bangladešas Tautas Republika</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Beļģija</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Beļģijas Karaliste</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkinafaso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgārija</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Bulgārijas Republika</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahreina</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Bahreinas Karaliste</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Burundi Republika</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benina</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Beninas Republika</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Senbartelmī</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermunda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunejas Darusalamas Valsts</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolīvija, Daudznacionālā Valsts</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Daudznacionālā Valsts Bolīvija</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sintēstatiusa un Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sintēstatiusa un Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazīlija</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Brazīlijas Federatīvā Republika</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Bahamu Sadraudzība</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Butāna</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Butānas Karaliste</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Buvē Sala</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botsvana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Botsvanas Republika</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Baltkrievija</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Baltkrievijas Republika</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Beliza</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanāda</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kokosu (KÄ«linga) salas</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongo Demokrātiskā Republika</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Centrālāfrikas Republika</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Kongo Republika</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Å veice</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Šveices Konfederācija</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Kotdivuāra</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Kotdivuāras Republika</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Kuka salas</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Čīle</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Čīles Republika</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerūna</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Kamerūnas Republika</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Ķīna</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Ķīnas Tautas Republika</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbija</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Kolumbijas Republika</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kostarika</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Kostarikas Republika</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Kubas Republika</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Kirasao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Kirasao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Ziemsvētku sala</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Kipra</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Kipras Republika</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>ÄŒehijas Republika</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Vācija</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Vācijas Federatīvā Republika</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Džibutija</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Džibutijas Republika</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Dānija</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Dānijas Karaliste</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Dominikas Sadraudzība</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikānas Republika</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Alžīrija</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Alžīrijas Demokrātiskā Tautas Republika</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekvadora</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Ekvadoras Republika</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Igaunija</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Igaunijas Republika</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Ä’Ä£ipte</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Ēģiptes Arābu Republika</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Rietumsahāra</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritreja</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Eritrejas Valsts</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spānija</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Spānijas Karaliste</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopija</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Etiopijas Federatīvā Demokrātiskā Republika</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Somija</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Somijas Republika</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidži</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Fidži Republika</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Folklenda (Malvinu) salas</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronēzijas</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Mikronēzijas Federatīvās Valstis</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>FÄ“ru salas</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francija</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Francijas Republika</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabona</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gabonas Republika</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Lielbritānija</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Lielbritānijas un Ziemeļīrijas Apvienotā Karaliste</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenāda</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gruzija</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Gviāna</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>GÄ“rnsija</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Gana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Ganas Republika</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltārs</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grenlande</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambija</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Gvinejas Republika</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Gvadelupa</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ekvatoriālā Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Ekvatoriālā Gvinejas Republika</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>GrieÄ·ija</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>GrieÄ·ijas Republika</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Dienviddžordžija un Dienvidsendviču Salas</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Gvatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Gvatemalas Republika</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guama</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Gvineja-Bisava</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Gvinejas-Bisavas Republika</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Gajāna</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Gajānas Kooperatīvā Republika</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Honkonga</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Honkongas Īpašais Administratīvais Reģions</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>HÄ“rda Sala un Makdonalda Salas</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Hondurasa</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Hondurasas Republika</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Horvātija</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Horvātijas Republika</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Haiti Republika</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungārija</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungārija</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonēzija</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Indonēzijas Republika</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Īrija</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Izraēla</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Izraēlas Valsts</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Menas sala</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indija</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Indijas Republika</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Indijas Okeāna Britu teritorija</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irāka</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Irākas Republika</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Irāna</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Irānas Islāma Republika</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islande</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Islandes Republika</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Itālija</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Itālijas Republika</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Džersija</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaika</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordānija</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Jordānas Hašimītu Karaliste</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japāna</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenija</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Kenijas Republika</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgizstāna</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgizstānas Republika</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kambodžas Karaliste</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Kiribati Republika</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komoras</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Komoru Savienība</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Sentkitsa un Nevisa</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Ziemeļkoreja</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Korejas Tautas Demokrātiskā Republika</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Dienvidkoreja</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuveita</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Kuveitas Valsts</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kaimanu salas</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazahstāna</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Kazahstānas Republika</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laosa</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libāna</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libānas Republika</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Sentlūsija</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Lihtenšteina</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Lihtenšteinas Firstiste</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Å rilanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Šrilankas Demokrātiskā Sociālistiskā Republika</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Libērija</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Libērijas Republika</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Lesoto Karaliste</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lietuva</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Lietuvas Republika</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luksemburga</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Luksemburgas Lielhercogiste</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Latvija</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Latvijas Republika</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>LÄ«bija</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>LÄ«bija</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroka</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Marokas Karaliste</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Monako Firstiste</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldova</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Moldovas Republika</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Melnkalne</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Melnkalne</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Senmartēna</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskara</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Madagaskaras Republika</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Māršala salas</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Māršala Salu Republika</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Mali Republika</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Mjanma</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Mjanmas Savienība (Birma)</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolija</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Makao Īpašais Administratīvais Reģions</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Ziemeļu Marianas Salas</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Ziemeļu Marianas Salu Sadraudzība</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinika</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritānija</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Mauritānijas Islāma Republika</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrata</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Maltas Republika</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Maurīcija</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Maurīcijas Republika</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldīvija</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Maldīvijas Republika</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malāvija</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Malāvijas Republika</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksika</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Meksikas Savienotās Valstis</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malaizija</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambika</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Mozambikas Republika</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namībija</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Namībijas Republika</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Jaunkaledonija</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Nigēra</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Nigēras Republika</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolkas Sala</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigērija</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Nigērijas Federatīvā Republika</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragva</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Nikaragvas Republika</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>NÄ«derlande</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>NÄ«derlandes Karaliste</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norvēģija</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Norvēģijas Karaliste</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepāla</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Nepālas Federālā Demokrātiskā Republika</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Nauru Republika</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Jaunzēlande</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omāna</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Omānas Sultanāts</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Panamas Republika</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Peru Republika</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Franču Polinēzija</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua-Jaungvineja</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Papua Jaungvinejas neatkarīgā valsts</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipīnas</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Filipīnu Republika</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistāna</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Pakistānas Islāma Republika</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polija</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Polijas Republika</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Senpjēra un Mikelona</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitkērna</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puertoriko</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestīnas valsts</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Palestīnas valsts</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugāle</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugāles Republika</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Palau Republika</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paragvaja</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Paragvajas Republika</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katara</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Kataras Valsts</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Reinjona</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumānija</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbija</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Serbijas Republika</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Krievijas Federācija</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Ruandas Republika</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saūda Arābija</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Saūda Arābijas Karaliste</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Zālamana salas</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seišelas</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Seišelu Republika</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudāna</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Sudānas Republika</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Zviedrija</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Zviedrijas Karaliste</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapūra</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Singapūras Republika</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Svētās Helēnas Sala un Piederīgās Teritorijas</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovēnija</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Slovēnijas Republika</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbāra</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovākija</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovākijas Republika</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sjerraleone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Sjerraleones Republika</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>Sanmarīno</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Sanmarīno Republika</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegāla</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Senegālas Republika</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somālija</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Somālijas federatīvā republika</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinama</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Surinamas Republika</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Dienvidsudāna</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Dienvidsudānas republika</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Santome un Prinsipi</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Santomes un Prinsipi Demokrātiskā Republika</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Salvadora</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Salvadoras Republika</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sintmārtena (Nīderlandes daļa)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sintmārtena (Nīderlandes daļa)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>SÄ«rija</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>TÄ“rksu un Kaikosu salas</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>ÄŒada</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>ÄŒadas Republika</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Francijas Dienvidjūru Zemes</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togo Republika</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Taizeme</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Taizemes Karaliste</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadžikistāna</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Tadžikistānas Republika</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Austrumtimora</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Austrumtimoras Demokrātiskā Republika</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistāna</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisija</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Tunisijas Republika</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Tongas Karaliste</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidāda un Tobāgo</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Trinidādas un Tobāgo Karaliste</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taivāna, Ķīnas Republika</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taivāna, Ķīnas Republika</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzānija</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Tanzānijas Apvienotā Republika</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukraina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Ugandas Republika</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>ASV Mazās Aizjūras Salas</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Amerikas Savienotās Valstis</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Amerikas Savienotās Valstis</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Urugvaja</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Urugvajas Austrumu Republika</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistāna</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Uzbekistānas Republika</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Vatikāna Pilsētvalsts</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Sentvinsenta un Grenadīnas</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venecuēla</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Venecuēlas Bolivāra Republika</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Virdžīnas Salas, Britu</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Britu Virdžīnas Salas</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>ASV Virdžīnas</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Amerikas Savienoto Valstu Virdžīnu salas</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vjetnama</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Vjetnamas Sociālistiskā Republika</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Vanuatu Republika</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Volisa un Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Samoa Neatkarīgā Valsts</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemena</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Jemenas Republika</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Majota</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Dienvidāfrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Dienvidāfrikas Republika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambija</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Zambijas Republika</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabve</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Zimbabves Republika</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/mi.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/mi.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..f14a6e63af8619c2479d12cf9884ce130ed63955
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/mi.countries.xlf
@@ -0,0 +1,1211 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="mi" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Principality of Andorra</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Āwhekenetāna</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Islamic Republic of Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Arapeinia</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>TÅ«wehe Arapeinia</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Ä€menia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Tūwehe Āmenia</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Anakora</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>TÅ«wehe Anakora</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Ä€ketina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentine Republic</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Hāmoa Amerikana</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Ateria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>TÅ«wehe Ateria</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Ahitereiria</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Moutere Aaland</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Atepaihānia</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Tūwehe Atepaihānia</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Pōngia-Herekōmina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Tūwehe Pōngia-Herekōmina</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Pākaratēhi</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>People's Republic of Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Pehiamu</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>KÄ«ngitanga o Pehiamu</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Purukāria</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Tūwehe Purukāria</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Kingdom of Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Puruniti</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>TÅ«wehe Puruniti</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>PÄ“nina</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>TÅ«wehe PÄ“nina</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei Darussalam</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivia, Plurinational State of</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Plurinational State of Bolivia</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Parīhi</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Federative Republic of Brazil</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Kingdom of Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republic of Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>PÄ“rara</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>TÅ«wehe PÄ“rara</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kānata</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Congo, The Democratic Republic of the</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kōngo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Tūwehe Kōngo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Huiterangi</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Swiss Confederation</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republic of Côte d'Ivoire</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Kuki Airani</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Hiri</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Te Whenua TÅ« Wehe o Hiri</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamarūna</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Tūwehe Kamarūna</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Haina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>People's Republic of China</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Koromōpia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Tūwehe Koromōpia</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republic of Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kūpā</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Tūwehe Kūpā</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Haipara</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>TÅ«wehe Haipara</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Whenua TÄ«eke</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Tiamana</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>TÅ«wehe Whakaminenga o Tiamana</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Tipūti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Tūwehe Tipūti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Tenemāka</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Kīngitanga o Tenemāka</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekuatoa</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>TÅ«wehe Ekuatoa</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Etonia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>TÅ«wehe Etonia</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritēria</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>the State of Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Pāniora</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Kīngitanga o Pāniora</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Federal Democratic Republic of Ethiopia</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Hinerangi</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>TÅ«wehe Hinerangi</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republic of Fiji</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Moutere Faroe</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Wīwī</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Tūwehe Wīwī</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Kāpona</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gabonese Republic</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>KÄ«ngitanga Kotahi</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>KÄ«ngatanga Kotahi o Piritene Nui me Airangi ki te Raki</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Hōria</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Kaiana Wīwī</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Kōnihi</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Kāna</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Tūwehe Kāna</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Kāmaka</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Greenland</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republic of Guinea</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Kini Ekuatoria</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>TÅ«wehe Kini Ekuatoria</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Kirihi</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Hellenic Republic</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republic of Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Kuamu</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Kini Pihō</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republic of Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Kaiana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>TÅ«wehe Kaiana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongipua</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hong Kong Special Administrative Region of China</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republic of Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Koroātia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Tūwehe Koroātia</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republic of Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hanekari</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hanekari</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Initonīhia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Tūwehe Initonīhia</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Airangi</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Iharaira</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>State of Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Motu o Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Īnia</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Tūwehe Īnia</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Īrāki</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Tūwehe Īrāki</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, Islamic Republic of</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Islamic Republic of Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Tiorangi</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>TÅ«wehe Tiorangi</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Itāria</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Tūwehe Itāria</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Tōrehe</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Nipono</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>KÄ“nia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>TÅ«wehe KÄ“nia</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kamapōtia</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kīngitanga o Kamapōtia</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiripati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>TÅ«wehe Kiripati</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Korea, Democratic People's Republic of</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Democratic People's Republic of Korea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Korea, Republic of</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Katatānga</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Tūwehe Katatānga</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Lao People's Democratic Republic</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Hato Ruiha</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>RÄ«keneteina</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Principality of Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Hiri Rānaka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Democratic Socialist Republic of Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republic of Liberia</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Kingdom of Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Rituānia</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Tūwehe Rituānia</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Rakapuō</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Grand Duchy of Luxembourg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Rāwhia</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Tūwehe Rāwhia</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Moroko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>KÄ«ngitanga o Moroko</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Manako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Principality of Monaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldova, Republic of</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>TÅ«wehe Morotawa</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Marakāhia</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Whenua Tū Wehe o Marakāhia</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republic of the Marshall Islands</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Māri</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republic of Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>PÄ“ma</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>TÅ«wehe PÄ“ma</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongōria</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritānia</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Islamic Republic of Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Mārata</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Tūwehe Mārata</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Maurituhi</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republic of Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Marāwi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Tūwehe Marāwi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mehiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>United Mexican States</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Marēhia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mohapiki</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>TÅ«wehe Mohapiki</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namīpia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Tūwehe Namīpia</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republic of the Niger</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikarāhua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Tūwehe Nikarāhua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Hōrana</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Kīngitanga o Hōrana</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Nōwei</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Kīngitanga o Nōwei</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepōra</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Federal Democratic Republic of Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>TÅ«wehe Nauru</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Aotearoa</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>ÅŒmana</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanate of Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republic of Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Perū</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Tūwehe Perū</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Porinīhia Wīwī</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua NÅ«kini</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Independent State of Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Piripīni</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Tūwehe Piripīni</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakitāne</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Islamic Republic of Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Pōrana</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Tūwehe Pōrana</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Potukara</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>TÅ«wehe Potukara</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republic of Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Parakai</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>TÅ«wehe Parakai</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Romeinia</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>TÅ«wehe Serbia</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Russian Federation</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Rwandese Republic</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Hauri Arāpia</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Kingdom of Saudi Arabia</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republic of Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Hūtāne</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Tūwehe Hūtāne</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Huitene</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>KÄ«ngitanga o Huitene</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Hingapoa</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>TÅ«wehe Hingapoa</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Horowinia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>TÅ«wehe Horowinia</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Motu Svalbard me Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Horowākia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Tūwehe Horowāk</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Te Araone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republic of Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>Hato Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>TÅ«wehe Hato Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republic of Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federal Republic of Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>HÅ«riname</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>TÅ«wehe HÅ«riname</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Hūtāne-ki-te-tonga</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Tūwehe Hūtāne-ki-te-tonga</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Ao Tomi me Pirinihipi</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Democratic Republic of Sao Tome and Principe</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republic of El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republic of Chad</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Toko</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togolese Republic</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Kingdom of Thailand</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republic of Tajikistan</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>TÅ«nihia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>TÅ«wehe TÅ«nihia</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Kingdom of Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republic of Trinidad and Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>TÅ«waru</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzania, United Republic of</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>United Republic of Tanzania</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ūkareinga</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Ukānga</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Tūwehe Ukānga</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>United States Minor Outlying Islands</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Amerika</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Hononga o Amerika</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Urukuai</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Eastern Republic of Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uhipeketāne</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Tūwehe Uhipeketāne</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Holy See (Vatican City State)</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Bolivarian Republic of</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Bolivarian Republic of Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>British Virgin Islands</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Virgin Islands, U.S.</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Virgin Islands of the United States</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Whitināmu</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Socialist Republic of Viet Nam</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republic of Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Independent State of Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republic of Yemen</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Ä€wherika-ki-te-tonga</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Tūwehe Āwherika-ki-te-tonga</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republic of Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republic of Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/mk.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/mk.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..23b134bfef68c12fb9908a7fb79b5c9fe889edbf
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/mk.countries.xlf
@@ -0,0 +1,1679 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="mk" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Андора</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Кралство Андора</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Обединети арапски емирати</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Авганистан</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Исламска република Авганистан</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Антика и Барбуда</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Ангуила</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Албанија</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Република Албанија</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Ерменија</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Република Ерменија</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Ангола</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Република Ангола</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Антартика</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Аргентина</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Република Аргентина</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Американска Самоа</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Австрија</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Република Австрија</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Австралија</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Аруба</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ајланд острови</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Азербејџан</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Република Азербејџан</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Босна и Херцеговина</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Репбулика Босна и Херцеговина</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Барбадос</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Бангладеш</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Народна република Бангладеш</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Белгија</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Кралство Белгија</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Буркина Фасо</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Бугарија</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Република Бугарија</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Бахреин</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Кралството Бахреин</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Бурунди</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Република Буринди</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Бенин</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Република Бенин</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Св. Бартоломеј</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Бермуди</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Брунеи Дарусалам</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Плуринационална држава Боливија</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Плуринационална држава Боливија</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Бониаре, Св. Еустатиус и Саба</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Бониаре, Св. Еустатиус и Саба</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Бразил</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Федеративна република Бразил</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Бахами</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Комонвелт Бахами</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Бутан</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Кралство Бутан</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Бувет острови</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Боцвана</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Република Боцвана</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Белорусија</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Република Белорусија</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Белизе</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Канада</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Кокос (Килинг) острови</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Конго, демократска република</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Централно афричка република</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Конго</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Република Конго</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Швајцарија</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Швајцарска конфедерација</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Брег на слонова коста</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Република Брег на слонова коска</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Кукови острови</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Чиле</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Република Чиле</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Камерун</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Република Камерун</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Кина</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Народна република Кина</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Колумбија</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Република Колумбија</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Костарика</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Република Костарика</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Куба</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Република Куба</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Куракао</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Куракао</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Божиќни острови</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Кипар</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Република Кипар</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Чешка република</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Германија</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Федерална република Германија</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Џибути</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Република Џибути</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Данска</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Кралство Данска</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Доминикана</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Комонвелт Доминикана</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Доминиканска Република</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Алжир</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Народна демократска република Алжир</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Еквадор</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Република Еквадор</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Естонија</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Република Естонија</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Египет</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Арапска република Египет</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Северна Сахара</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Еритреа</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>the State of Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Шпанија</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Кралство Шпанија</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Етиопија</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Федерална демократска република Етиопија</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Финска</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Република Финска</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Фиџи</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Република Фиџи</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Фокландски острови (Малвини)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Микронезија</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Федерални држави на Микронезија</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Фаројски острови</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Франција</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Француска република</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Габон</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Габонска република</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Велика Британија</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Обединето кралство на Велика Британија и Северна Ирска</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Гренада</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Грузија</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Француска Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Гурнези</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Гана</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Република Гана</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Гибралтар</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Гренланд</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Гамбија</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Република Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Гуадалопе</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Екваторијална Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Република Екваторијална Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Грција</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Грчка република</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Јужна Грузија и Јужните острови</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Гватемала</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Република Гватемала</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Гуам</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Гвинеја-Бисау</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Република Гвинеја-Бисау</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Гвајана</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Република Гвајана</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Хонк Конг</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Специјален административен дел на Кина Хонг Конг</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Херд острови и Мекдоналд острови</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Хондурас</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Република Хондурас</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Хрватска</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Република Хрватска</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Хаити</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Република Хаити</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Унгарија</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Унгарија</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Индонезија</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Република Индонезија</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ирска</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Израел</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Држава Израел</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Ман остров</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Индија</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Република Индија</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Британска територија на Индиски океан</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Ирак</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Република Ирак</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Иран</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Исламска република Иран</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Исланд</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Република Исланд</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Италија</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Италијанска република</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Џерси</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Јамајка</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Џордан</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Хошемитско кралство на Јордан</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Јапонија</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Кенија</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Република Кенија</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Киргистан</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Киргистанска република</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Камбоџа</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Кралство Камбоџа</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Кирибати</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Република Кирибати</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Коморос</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Заедница на Коморос</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Св. Китс и Невис</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Кореја, Демократска народна република</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Демократска нардона република Кореја</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Кореја, Република</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Кувајт</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Држава Кувајт</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Кајмански острови</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Казакстан</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Република Казакстан</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Народна демократска република Лао</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Либан</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Либанска република</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Св. Лусија</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Линхештајн</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Кнежество Линхештајн</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Шри Ланка</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Демократска социјалистичка република Шри Ланка</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Либерија</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Република Либерија</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Лесото</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Кралство Лесото</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Литванија</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Република Литванија</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Луксембург</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Големо војводство Луксембург</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Летонија</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Република Летонија</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Либија</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Либија</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Мароко</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Кралство Мароко</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Монако</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Кнежество Монако</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Република Молдавија</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Република Молдавија</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Црна Гора</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Црна Гора</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Св. Мартин (Француски дел)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Мадагаскар</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Република Мадагаскар</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Маршалови острови</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Република Маршалови острови</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Мали</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Република Мали</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Мианмар</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Република Мјанамр</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Монголија</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Макао</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Специјален административен дел на Кина Макао</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Северна Мариана острови</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Комонвелт на северна Маријана острови</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Мартиник</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Мавританија</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Исламска република Мавританија</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Монтсерат</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Малта</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Република Малта</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Маурициус</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Република Маурициус</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Малдиви</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Република Малдиви</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Малави</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Република Малави</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Мексико</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Обединети Мексикански држави</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Малезија</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Мозамбик</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Република Мозамбик</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Намибија</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Република Намибија</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Нова Каледонија</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Нигер</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Република Нигер</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Норфолк острови</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Нигерија</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Федерална република Нигерија</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Никарагва</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Република Никарагва</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Холандија</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Кралство Холандија</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Норвешка</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Кралство Норвешка</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Непал</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Федерална демократска република Непал</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Науру</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Република Науру</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Ниуе</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Ниуе</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Нов Зеланд</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Оман</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Султанат Оман</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Панама</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Република Панама</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Перу</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Република Перу</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Франсуска Полинезија</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Папуа Нова Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Independent State of Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Филипини</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Република Филипини</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Пакистан</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Исламска република Пакистан</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Полска</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Република Полска</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Св. Пјер и Микелон</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Питкаирн</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Пуерто Рико</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>the State of Palestine</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Португалија</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Португалска република</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Палау</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Република Палау</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Парагвај</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Република Парагвај</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Катар</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Држава Катар</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Реунион</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Романија</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Србија</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Република Србија</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Руска федерација</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Руанда</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Република Руанда</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Саудиска Арабија</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Кралство Саудиска Арабија</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Соломонски острови</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Сејшели</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Република Сејшели</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Судан</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Република Судан</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Шведска</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Кралство Шведска</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Сингапур</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Република Сингапур</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Св. Хелена, вознесение и Тристан да Кунха</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Словенија</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Република Словенија</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Свалбард и Жан Мајен</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Словачка</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Словачка</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Сиера Леоне</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Република Сиера Леоне</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>Сан Марино</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Република Сан Марино</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Сенегал</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Република Сенегал</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Сомалија</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federal Republic of Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Суринаме</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Република Суринаме</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>South Sudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republic of South Sudan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Сао Томе и Принципе</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Демократска република Сао Томе и Принципе</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Ел Салвадор</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Република Ел Салвадор</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Св. Мартин (Холандски дел)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Св. Мартин (Холандски дел)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Сирија арапска република</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Туркси и Каициски острови</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Чад</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Република Чад</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Јужни француски територии</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Того</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Тоголска република</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Тајланд</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Кралство Тајланд</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Таџикистан</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Република Таџикистан</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Токелау</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Тимор-Лесте</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Демократска република Тимор-Лесте</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Туркменистан</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Тунис</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Република Тунис</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Тонга</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Кралство Тонга</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Тринидад и Тобаго</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Република Тринидад и Тобаго</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Тувалу</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Тајван, Кинеска провинција</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Тајван, Кинеска провинција</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Танзанија</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Обединета република Танзанија</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Украина</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Уганда</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Република Уганда</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Помали надворешни острови на соединетите држави</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Соединети држави</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Соединетите Американски Држави</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Уругвај</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Источна република Уругвај</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Узбекистан</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Република Узбекистан</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Држава град Ватикан</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Св. Винсент и Гренадините</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Боливариска република Венецуела</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Боливариска република Венецуела</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Девствени острови, Британски</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Британски девствени острови</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Девствени острови, САД</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Девствени острови на САД</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Виетнам</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Социјалистичка република Виетнам</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Вануату</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Република Вануату</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Валис и Футуна</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Самоа</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Независна држава Самоа</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Јемен</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Република Јемен</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Мајоте</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Јужна Африка</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Ребулика Јужна Африка</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Замбија</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Република Замбија</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Зимбабве</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Република Зимбабве</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/ms.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/ms.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..86ae4b2ee8d0b1de7d179367d4fb435cdc1d298f
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/ms.countries.xlf
@@ -0,0 +1,1155 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="ms" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Negara Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Emiriah Arab Bersatu</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Republik Islam Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua dan Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albania</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republik Albania</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republik Armenia</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republik Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antartika</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Republik Argentina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samoa Amerika</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republik Austria</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Kepulauan Ã…land</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaijan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republik Azerbaijan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnia dan Herzegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republik Bosnia dan Herzegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Republik Rakyat Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgium</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Negara Belgium</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republik Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Negara Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republik Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republik Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei Darussalam</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Belanda Caribbean</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Belanda Caribbean</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Republik Wilayah Brazil</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Komanwel Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Kingdom of Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Kepulauan Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republik Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Belarus</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republik Belarus</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kepulauan Cocos (Keeling)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Congo, The Democratic Republic of the</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Republik Afrika Tengah</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republik Kongo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Switzerland</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Côte d'Ivoire</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republik Côte d'Ivoire</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Kepulauan Cook</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republik Chile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republik Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>China</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Republik Rakyat China</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republik Colombia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republic of Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republik Cuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Kepulauan Christmas</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Cyprus</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republik Cyprus</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Republik Czech</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Jerman</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republik Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Denmark</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Kingdom of Denmark</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Commonwealth of Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Republik Dominican</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algeria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Republik Demokratik Rakyat Algeria</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republik Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republik Estonia</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Mesir</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Arab Republic of Egypt</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Sahara Barat</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Sepanyol</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Ethiopia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Republik Demokratik Persekutuan Ethiopia</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finland</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republik Finland</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republic of Fiji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Kepulauan Falkland (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Federated States of Micronesia</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Kepulauan Faroe</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Perancis</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Republik Perancis</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Republik Gabon</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>United Kingdom</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guiana Perancis</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Greenland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Guinea Khatulistiwa</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republik Equatorial Guinea</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Yunani</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Georgia Selatan dan Kepulauan Sandwich Selatan</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Pulau Heard dan Kepulauan McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroatia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republic of Croatia</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungari</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungari</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesia</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ireland</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Hindia</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Wilayah Lautan Hindi British</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Iraq</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Iceland</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Itali</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaika</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordan</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Jepun</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kyrgyzstan</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kemboja</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kingdom of Cambodia</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comoros</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Union of the Comoros</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts dan Nevis</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kepulauan Cayman</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakhstan</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Lubnan</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lithuania</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luksembourg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Latvia</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maghribi</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldova, Republic of</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Kepulauan Marshall</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republic of Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolia</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Kepulauan Mariana Utara</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldiv</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksiko</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malaysia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambik</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>New Caledonia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Pulau Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Belanda</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norway</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Federal Democratic Republic of Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>New Zealand</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polinesia Perancis</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Independent State of Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipina</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Poland</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint Pierre dan Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Feringgi</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Romania</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Arab Saudi</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Kepulauan Solomon</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Sweden</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapura</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenia</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard and Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovakia</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Siera Leon</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federal Republic of Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sudan Selatan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republic of South Sudan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tome dan Principe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republik El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Kepulauan Turks dan Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Cad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republik Cad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>French Southern Territories</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thailand</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadjikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisia</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad dan Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukraine</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Kepulauan Terpencil Kecil Amerika Syarikat</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Amerika Syarikat</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Amerika Syarikat</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent dan Grenadines</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Bolivarian Republic of</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Kepulauan Virgin British</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis dan Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yaman</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Afrika Selatan</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/nl.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/nl.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..43f753b7c7b26d1ef47ea45c99c3d554494f85e6
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/nl.countries.xlf
@@ -0,0 +1,1695 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="nl" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Vorstendom Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Verenigde Arabische Emiraten</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Islamitische Republiek Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua en Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanië</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republiek Albanië</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenië</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republiek Armenië</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republiek Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarctica</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentinië</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentijnse Republiek</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Amerikaans-Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Oostenrijk</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republiek Oostenrijk</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australië</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ã…landseilanden</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbeidzjan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republiek Azerbeidzjan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnië en Herzegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republiek Bosnië en Herzegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Volksrepubliek Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>België</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Koninkrijk België</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgarije</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republiek Bulgarije</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Koninkrijk Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republiek Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republiek Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint-Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivia, Multinationale Staat</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Multinationale Staat Bolivia</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius en Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius en Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazilië</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Federale Republiek Brazilië</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahama's</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Gemenebest van de Bahama's</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Koninkrijk Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouveteiland</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republiek Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Wit-Rusland</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republiek Belarus</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Cocoseilanden (Keelingeilanden)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Congo, Democratische Republiek</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Centraal-Afrikaanse Republiek</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Congo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republiek Congo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Zwitserland</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Zwitserse Bondsstaat</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Ivoorkust</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republiek Ivoorkust</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cookeilanden</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chili</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republiek Chili</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kameroen</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republiek Kameroen</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>China</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Volksrepubliek China</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republiek Colombia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republiek Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republiek Cuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Kaapverdië</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republiek Kaapverdië</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Christmaseiland</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Cyprus</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republiek Cyprus</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Tsjechië</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Tsjechië</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Duitsland</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Bondsrepubliek Duitsland</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republiek Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Denemarken</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Koninkrijk Denemarken</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Gemenebest van Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominicaanse Republiek</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algerije</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Democratische Volksrepubliek Algerije</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republiek Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estland</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republiek Estland</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egypte</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Arabische Republiek Egypte</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Westelijke Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Staat Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spanje</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Koninkrijk Spanje</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Ethiopië</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Federale Democratische Republiek Ethiopië</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finland</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republiek Finland</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republiek Fiji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandeilanden (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Micronesia</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Federale Staten van Micronesia</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Faeröer</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Frankrijk</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Franse Republiek</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Republiek Gabon</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Verenigd Koninkrijk</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Verenigd Koninkrijk van Groot-Brittannië en Noord-Ierland</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Frans-Guyana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Republiek Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Groenland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republiek Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinee</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republiek Guinee</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Equatoriaal-Guinea</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republiek Equatoriaal-Guinea</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Griekenland</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Helleense Republiek</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Zuid-Georgia en de Zuidelijke Sandwicheilanden</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republiek Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinee-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republiek Guinee-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Republiek Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Speciale Administratieve Regio Hongkong van de Volksrepubliek China</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heardeiland en McDonaldeilanden</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republiek Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroatië</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republiek Kroatië</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haïti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republiek Haïti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hongarije</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hongarije</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesië</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Republiek Indonesië</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ierland</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israël</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Staat Israël</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Eiland Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>India</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Republiek India</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Brits Indische Oceaanterritorium</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Republiek Irak</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Islamitische Republiek Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>IJsland</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Republiek IJsland</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italië</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Italiaanse Republiek</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordanië</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Hasjemitisch Koninkrijk Jordanië</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japan</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Republiek Kenia</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgizië</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgizische Republiek</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Cambodja</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Koninkrijk Cambodja</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Republiek Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comoren</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Unie van de Comoren</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts en Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Korea, Democratische Volksrepubliek</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Democratische Volksrepubliek Korea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Korea, Republiek</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Koeweit</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Staat Koeweit</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kaaimaneilanden</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazachstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Republiek Kazachstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laos Democratische Volksrepubliek</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Republiek Libanon</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Vorstendom Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Democratische Socialistische Republiek Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republiek Liberia</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Koninkrijk Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litouwen</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Republiek Litouwen</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Groothertogdom Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letland</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Republiek Letland</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libië</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libië</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marokko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Koninkrijk Marokko</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Vorstendom Monaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavië, Republiek</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Republiek Moldavië</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Sint-Maarten (Frans deel)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Republiek Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshalleilanden</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republiek der Marshalleilanden</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Noord-Macedonië</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republiek Noord-Macedonië</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republiek Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republiek Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolië</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macau</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Speciale Administratieve Regio Macau van de Volksrepubliek China</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Noordelijke Marianen</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Gemenebest van de Noordelijke Marianen</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritanië</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Islamitische Republiek Mauritanië</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Republiek Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republiek Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldiven</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Republiek der Maldiven</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Republiek Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexico</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Verenigde Mexicaanse Staten</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Maleisië</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambique</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Republiek Mozambique</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibië</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Republiek Namibië</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nieuw-Caledonië</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republiek Niger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Federale Republiek Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Republiek Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Nederland</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Koninkrijk der Nederlanden</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Noorwegen</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Koninkrijk Noorwegen</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Federale Democratische Republiek van Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Republiek Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nieuw-Zeeland</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanaat Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republiek Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Republiek Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Frans-Polynesië</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papoea-Nieuw-Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Onafhankelijke Staat Papua Nieuw Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipijnen</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Republiek der Filipijnen</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Islamitische Republiek Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polen</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Republiek Polen</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint-Pierre en Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairneilanden</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestina, Staat</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Staat Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugese Republiek</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republiek Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Republiek Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Staat Qatar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Roemenië</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Servië</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republiek Servië</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Rusland</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Republiek Rwanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saoedi-Arabië</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Koninkrijk Saudi-Arabië</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Salomonseilanden</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychellen</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republiek Seychellen</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Soedan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Republiek Soedan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Zweden</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Koninkrijk Zweden</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapore</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Republiek Singapore</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Sint-Helena, Ascension en Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenië</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Republiek Slovenië</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Spitsbergen en Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slowakije</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovaakse Republiek</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republiek Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Republiek San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republiek Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalië</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federale Republiek Somalië</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Suriname</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Republiek Suriname</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Zuid-Soedan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republiek Zuid-Soedan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tomé en Principe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Democratische Republiek Sao Tomé en Principe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republiek El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Nederlands deel)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Nederlands deel)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Syrië</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Eswatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Koninkrijk Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks- en Caicoseilanden</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Tsjaad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republiek Tsjaad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Franse Zuidelijke Gebieden</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Republiek Togo</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thailand</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Koninkrijk Thailand</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadzjikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republiek Tadzjikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Oost-Timor</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Democratische Republiek Oost-Timor</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunesië</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Republiek Tunesië</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Koninkrijk Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name" approved="yes">
+        <source>Türkiye</source>
+        <target>Turkije</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republiek Turkije</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad en Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republiek Trinidad en Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzania</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Verenigde Republiek Tanzania</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Oekraïne</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Oeganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Republiek Oeganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Kleine afgelegen eilanden van de Verenigde Staten</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Verenigde Staten</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Verenigde Staten van Amerika</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Oostelijke Republiek Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Oezbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Republiek Oezbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Vaticaanstad, Staat</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent en de Grenadines</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Bolivariaanse Republiek</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Bolivariaanse Republiek Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Maagdeneilanden, Britse</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Britse Maagdeneilanden</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Maagdeneilanden, Amerikaanse</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Amerikaanse Maagdeneilanden</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Socialistische Republiek Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republiek Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis en Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Onafhankelijke Staat Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republiek Jemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Zuid-Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Republiek Zuid-Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republiek Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republiek Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/pl.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/pl.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..81e05f4f302c2a93a0e075c63cf39f986a689255
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/pl.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="pl" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andora</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Księstwo Andory</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Zjednoczone Emiraty Arabskie</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Islamska Republika Afganistanu</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua i Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albania</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republika Albanii</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republika Armenii</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republika Angoli</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktyka</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentyna</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Republika Argentyńska</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samoa Amerykańskie</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republika Austrii</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Wyspy Alandzkie</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbejdżan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republika Azerbejdżanu</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bośnia i Hercegowina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republika Bośni i Hercegowiny</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesz</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Ludowa Republika Bangladeszu</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgia</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Królestwo Belgii</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bułgaria</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republika Bułgarii</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrajn</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Królestwo Bahrajnu</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republika Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republika Beninu</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint-Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermudy</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Państwo Brunei</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Boliwia - Wielonarodowe Państwo</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Wielonarodowe Państwo Boliwii</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius i Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius i Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazylia</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Federacyjna Republika Brazylii</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamy</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Wspólnota Bahamów</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Królestwo Bhutanu</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Wyspa Bouveta</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republika Botswany</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Białoruś</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republika Białorusi</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Wyspy Kokosowe (Wyspy Keelinga)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongo, Demokratyczna Republika Konga</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Republika Środkowoafrykańska</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republika Konga</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Szwajcaria</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Konfederacja Szwajcarska</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Wybrzeże Kości Słoniowej</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republika Wybrzeża Kości Słoniowej</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Wyspy Cooka</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republika Chile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republika Kamerunu</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Chiny</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Chińska Republika Ludowa</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republika Kolumbii</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kostaryka</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republika Kostaryki</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republika Kuby</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Republika Zielonego PrzylÄ…dka</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republika Zielonego PrzylÄ…dka</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Wyspa Bożego Narodzenia</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Cypr</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republika Cypru</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Czechy</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Republika Czeska</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Niemcy</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Republika Federalna Niemiec</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Dżibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republika Dżibuti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Dania</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Królestwo Danii</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Wspólnota Dominiki</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikana</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algieria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Algierska Republika Ludowo-Demokratyczna</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekwador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republika Ekwadoru</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republika Estonii</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egipt</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Egipska Republika Arabska</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Sahara Zachodnia</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Erytrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Państwo Erytrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Hiszpania</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Królestwo Hiszpanii</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Etiopska Republika Ludowo-Demokratyczna</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlandia</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republika Finlandii</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidżi</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republika Fidżi</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandy (Malwiny)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronezja</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Sfederowane Stany Mikronezji</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Wyspy Owcze</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francja</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Republika Francji</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Republika Gabońska</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Wielka Brytania</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Zjednoczone Królestwo Wielkiej Brytanii i Irlandii Północnej</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gruzja</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Gujana Francuska</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Republika Ghany</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grenlandia</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republika Gambii</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Gwinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republika Gwinei</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Gwadelupa</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Gwinea Równikowa</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republika Gwinei Równikowej</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grecja</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Republika Grecka</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Georgia Południowa i Sandwich Południowy</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Gwatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republika Gwatemali</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Gwinea Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republika Gwinei Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Gujana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Republika Gujany</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hongkong - Specjalny Region Administracyjny Chińskiej Republiki Ludowej</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Wyspy Heard i McDonalda</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republika Hondurasu</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Chorwacja</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republika Chorwacji</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republika Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Węgry</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Węgry</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonezja</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Republika Indonezji</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlandia</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Izrael</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Państwo Izrael</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Wyspa Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indie</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Republika Indii</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Brytyjskie Terytorium Oceanu Indyjskiego</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Republika Iracka</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Islamska Republika Iranu</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islandia</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Republika Islandii</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>WÅ‚ochy</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Republika WÅ‚oska</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamajka</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordania</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Haszymidzkie Królestwo Jordanii</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japonia</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Republika Kenii</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Republika Kirgiska</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodża</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Królestwo Kambodży</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Republika Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komory</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Związek Komorów</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts i Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Korea Północna</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Koreańska Republika Ludowo-Demokratyczna</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Korea Południowa</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwejt</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Państwo Kuwejt</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kajmany</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazachstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Republika Kazachstanu</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laos</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Liban</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Republika Libańska</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Księstwo Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Demokratyczno-Socjalistyczna Republika Sri Lanki</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republika Liberii</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Królestwo Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litwa</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Republika Litewska</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luksemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Wielkie Księstwo Luksemburg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Łotwa</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Republika Łotewska</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Królestwo Maroka</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Księstwo Monako</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Mołdawia - Republika</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Republika Mołdawii</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Czarnogóra</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Czarnogóra</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint-Martin (część francuska)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Republika Madagaskaru</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Wyspy Marshalla</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republika Wysp Marshalla</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Macedonia Północna</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republika Macedonii Północnej</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republika Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Mjanma</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Związek Birmański</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makau</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Makau - Specjalny Region Administracyjny Chińskiej Republiki Ludowej</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Mariany Północne</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Wspólnota Marianów Północnych</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martynika</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauretania</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Mauretańska Republika Islamska</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Republika Malty</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republika Mauritiusa</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Malediwy</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Republika Malediwów</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Republika Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksyk</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Stany Zjednoczone Meksyku</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malezja</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Republika Mozambiku</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Republika Namibii</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nowa Kaledonia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republika Nigru</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Wyspy Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Federacyjna Republika Nigerii</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Republika Nikaragui</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Holandia</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Królestwo Holandii</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norwegia</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Królestwo Norwegii</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Federalna Demokratyczna Republika Nepalu</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Republika Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nowa Zelandia</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sułtanat Omanu</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republika Panamy</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Republika Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polinezja Francuska</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua-Nowa Gwinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Niezależne Państwo Papui-Nowej Gwinei</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipiny</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Republika Filipin</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Islamska Republika Pakistanu</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polska</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Rzeczpospolita Polska</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint-Pierre i Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Portoryko</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestyna (państwo)</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Państwo Palestyna</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugalia</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Republika Portugalska</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republika Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paragwaj</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Republika Paragwaju</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Państwo Kataru</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Reunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumunia</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republika Serbii</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Federacja Rosyjska</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Republika Ruandyjska</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Arabia Saudyjska</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Królestwo Arabii Saudyjskiej</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Wyspy Salomona</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seszele</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republika Seszeli</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Republika Sudanu</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Szwecja</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Królestwo Szwecji</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Republika Singapuru</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Wyspa Świętej Heleny, Wyspa Wniebowstąpienia i Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>SÅ‚owenia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Republika SÅ‚owenii</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard i Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>SÅ‚owacja</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Republika SÅ‚owacka</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republika Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Republika San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republika Senegalu</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federalna Republika Somalii</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Republika Surinamu</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sudan Południowy</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republika Sudanu Południowego</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Wyspy Świętego Tomasza i Książęca</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Demokratyczna Republika Wysp Św. Tomasza i Książęcej</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Salwador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republika Salwadoru</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (część holenderska)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (część holenderska)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Syryjska Republika Arabska</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Eswatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Królestwo Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks i Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Czad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republika Czadu</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Francuskie Terytoria Południowe</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Republika Togijska</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tajlandia</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Królestwo Tajlandii</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadżykistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republika Tadżykistanu</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor Wschodni</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Demokratyczna Republika Timoru Wschodniego</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunezja</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Republika Tunezyjska</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Królestwo Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trynidad i Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republika Trynidadu i Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajwan, Prowincja Chińska</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajwan, Prowincja Chińska</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzania, Zjednoczona Republika</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Zjednoczona Republika Tanzanii</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukraina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Republika Ugandy</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Dalekie Wyspy Mniejsze Stanów Zjednoczonych</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Stany Zjednoczone</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Stany Zjednoczone Ameryki</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Urugwaj</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Wschodnia Republika Urugwaju</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Republika Uzbekistanu</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Watykan</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent i Grenadyny</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Wenezuela - Boliwariańska Republika</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Boliwariańska Republika Wenezueli</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Brytyjskie Wyspy Dziewicze</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Brytyjskie Wyspy Dziewicze</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Wyspy Dziewicze Stanów Zjednoczonych</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Wyspy Dziewicze Stanów Zjednoczonych</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Wietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Socjalistyczna Republika Wietnamu</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republika Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis i Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Niezależne Państwo Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republika Jemenu</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Majotta</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Republika Południowej Afryki</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Republika Południowej Afryki</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republika Zambii</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republika Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/pt-BR.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/pt-BR.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..cf123ea5343f1417a0108209f9ba10a56d646a9c
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/pt-BR.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="pt-BR" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Principado de Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Emirados Árabes Unidos</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afeganistão</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>República Islâmica do Paquistão</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antígua e Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguila</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albânia</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>República da Albânia</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armênia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>República da Armênia</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>República de Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antártida</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>República da Argentina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samoa Americana</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Áustria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>República da Áustria</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Austrália</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ilhas Ã…land</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaidjão</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>República do Azerbaidjão</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bósnia-Herzegóvina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>República da Bósnia-Herzegóvina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>República Popular de Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Bélgica</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Reino da Bélgica</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burquina</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgária</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>República da Bulgária</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Barein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Reino de Barein</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>República do Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>República de Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>São Bartolomeu</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolívia, Estado Plurinacional da</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Estado Plurinacional da Bolívia</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Saba e Santo Eustáquio</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Saba e Santo Eustáquio</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>República Federativa do Brasil</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Comunidade das Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Butão</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Reino do Butão</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Ilha Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botsuana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>República de Botsuana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bielo-Rússia</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>República da Bielo-Rússia</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canadá</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Ilhas Cocos</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Congo, República Democrática do</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>República Centro-Africana</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Congo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>República do Congo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Suíça</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Confederação Suíça</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Costa do Marfim</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>República da Costa do Marfim</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Ilhas Cook</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>República do Chile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Camarões</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>República de Camarões</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>China</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>República Popular da China</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colômbia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>República da Colômbia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>República de Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>República de Cuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>República do Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Ilha Christmas</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Chipre</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>República do Chipre</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Chéquia</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>República Tcheca</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Alemanha</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>República Federativa da Alemanha</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>República do Djibuti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Dinamarca</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Reino da Dinamarca</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Domínica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Comunidade de Domínica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>República Dominicana</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Argélia</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>República Democrática Popular da Argélia</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Equador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>República do Equador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estônia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>República da Estônia</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egito</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>República Árabe do Egito</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Saara Ocidental</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritréia</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Estado da Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Espanha</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Reino da Espanha</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiópia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>República Federativa Democrática da Etiópia</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlândia</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>República da Finlândia</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>República do Fiji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Ilhas Malvinas (Falkland)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Micronésia, Estados Federados da</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Estados Federados da Micronésia</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Ilhas Faroe</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>França</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>República da França</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabão</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>República Gabonesa</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Reino Unido</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Reino Unido de Grã-Bretanha e Irlanda do Norte</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Granada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Geórgia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guiana Francesa</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Gana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>República do Gana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Groenlândia</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gâmbia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>República da Gâmbia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guiné</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>República da Guiné</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadalupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Guiné Equatorial</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>República da Guiné Equatorial</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grécia</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>República Helênica</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Geórgia do Sul e Ilhas Sandwich do Sul</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>República da Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guiné-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>República da Guiné-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guiana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>República da Guiana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Região Administrativa Especial de Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Ilha Heard e Ilhas McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>República das Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Croácia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>República da Croácia</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>República do Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungria</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungria</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonésia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>República da Indonésia</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlanda</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Estado de Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Ilha de Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Índia</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>República da Índia</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Território Britânico do Oceano Índico</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Iraque</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>República do Iraque</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Irã, República Islâmica do</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>República Islâmica do Irã</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islândia</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>República da Islândia</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Itália</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>República da Itália</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordânia</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Reino Hashemita da Jordânia</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japão</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Quênia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>República do Quênia</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Quirguistão</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>República do Quirguistão</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Camboja</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Reino do Camboja</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>República de Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comores</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>União das Comores</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>São Cristóvão e Névis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Coreia, República Popular Democrática da</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>República Popular Democrática da Coreia</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Coreia, República da</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Estado do Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Ilhas Cayman</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Cazaquistão</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>República do Cazaquistão</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>República Popular Democrática do Laos</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Líbano</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>República do Líbano</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Santa Lúcia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Principado de Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>República Socialista Democrática de Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Libéria</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>República da Libéria</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Reino de Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituânia</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>República da Lituânia</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxemburgo</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Grão-Ducado de Luxemburgo</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letônia</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>República da Letônia</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Líbia</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Líbia</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marrocos</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Reino de Marrocos</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Mônaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Principado de Mônaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldávia, República da</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>República da Moldávia</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>São Martim (parte francesa)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>República de Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Ilhas Marshall</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>República das Ilhas Marshall</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Macedônia do Norte</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>República da Macedônia do Norte</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>República do Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>República da Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongólia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macau</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Região Administrativa Especial de Macau</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Ilhas Marianas do Norte</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Comunidade das Ilhas Marianas do Norte</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinica</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritânia</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>República Islâmica da Mauritânia</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>República de Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Maurício</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>República de Maurício</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldivas</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>República das Maldivas</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malaui</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>República de Malaui</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>México</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Estados Unidos do México</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malásia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Moçambique</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>República de Moçambique</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namíbia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>República da Namíbia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nova Caledônia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Níger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>República do Níger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Ilha Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigéria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>República Federativa da Nigéria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicarágua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>República da Nicarágua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Países Baixos</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Reino dos Países Baixos</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Noruega</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Reino da Noruega</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>República Democrática Federativa do Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>República de Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nova Zelândia</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omã</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanato de Omã</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panamá</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>República do Panamá</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>República do Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polinésia Francesa</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua-Nova Guiné</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Estado Independente da Papua-Nova Guiné</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipinas</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>República das Filipinas</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Paquistão</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>República Islâmica do Paquistão</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polônia</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>República da Polônia</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>São Pedro e Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Porto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestina, Estado da</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Estado da Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>República de Portugal</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>República de Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguai</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>República do Paraguai</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Catar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Estado de Catar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Reunião</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Romênia</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Sérvia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>República da Sérvia</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Federação Russa</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>República de Ruanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Arábia Saudita</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Reino da Arábia Saudita</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Ilhas Salomão</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>República de Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudão</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>República do Sudão</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Suécia</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Reino da Suécia</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Cingapura</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>República de Cingapura</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Santa Helena, Ascensão e Tristão da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Eslovênia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>República da Eslovênia</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard e a Ilha de Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Eslováquia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>República da Eslováquia</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Serra Leoa</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>República de Serra Leoa</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>São Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>República de São Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>República do Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somália</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>República Federativa da Somália</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Suriname</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>República do Suriname</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sudão do Sul</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>República do Sudão do Sul</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>São Tomé e Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>República Democrática de São Tomé e Príncipe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>República de El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>São Martim (parte holandesa)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>São Martim (parte holandesa)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>República Árabe da Síria</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Suazilândia</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Reino da Suazilândia</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Ilhas Turks e Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Chade</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>República do Chade</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Territórios Franceses do Sul</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>República de Togo</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tailândia</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Reino da Tailândia</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadjiquistão</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>República do Tadjiquistão</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Toquelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor Leste</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>República Democrática do Timor Leste</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turcomenistão</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunísia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>República da Tunísia</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Reino de Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidade e Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>República de Trinidade e Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Província da China</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Província da China</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzânia, República Unida da</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>República Unida da Tanzânia</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ucrânia</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>República de Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Ilhas Menores Distantes dos Estados Unidos</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Estados Unidos</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Estados Unidos da América</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguai</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>República Oriental do Uruguai</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbequistão</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>República do Uzbequistão</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Santa Sé (Cidade-Estado do Vaticano)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>São Vicente e Granadinas</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, República Bolivariana da</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>República Bolivariana da Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Ilhas Virgens Britânicas</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Ilhas Virgens Britânicas</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Ilhas Virgens dos Estados Unidos</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Ilhas Virgens dos Estados Unidos</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnã</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>República Socialista do Vietnã</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>República de Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis e Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Estado Independente de Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Iêmen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>República do Iêmen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Maiote</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>África do Sul</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>República da Africa do Sul</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zâmbia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>República de Zâmbia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbábue</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>República de Zimbábue</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/pt.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/pt.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..cd3d7275f9d70db9289fbf0450a3521264a5e796
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/pt.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="pt" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Principado de Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Emirados Árabes Unidos</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afeganistão</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>República Islâmica do Afeganistão</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antígua e Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albânia</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>República da Albânia</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Arménia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>República da Arménia</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>República de Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antártida</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>República Argentina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samoa Americana</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Áustria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>República da Áustria</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Austrália</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ilhas Alanda</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaijão</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>República do Azerbaijão</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bósnia e Herzegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>República da Bósnia-Herzegóvina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladeche</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>República Popular do Bangladeche</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Bélgica</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Reino da Bélgica</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgária</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>República da Bulgária</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Barém</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Reino do Barém</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>República do Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benim</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>República do Benim</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermudas</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolívia, Estado Plurinacional da</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Estado Plurinacional da Bolívia</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Santo Eustáquio e Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Santo Eustáquio e Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>República Federativa do Brasil</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Comunidade das Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Butão</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Reino do Butão</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Ilha Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botsuana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>República do Botsuana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bielorússia</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>República da Bielorússia</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canadá</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Ilhas Cocos</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Congo, República Democrática do</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>República Centro-Africana</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Congo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>República do Congo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Suíça</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Confederação Suíça</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Costa do Marfim</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>República da Costa do Marfim</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Ilhas Cook</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>República do Chile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Camarões</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>República dos Camarões</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>China</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>República Popular da China</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colômbia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>República da Colômbia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>República da Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>República de Cuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>República de Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curação</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curação</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Ilha Natal</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Chipre</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>República de Chipre</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Chéquia</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>República Checa</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Alemanha</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>República Federal da Alemanha</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>República do Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Dinamarca</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Reino da Dinamarca</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Comunidade da Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>República Dominicana</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Argélia</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>República Democrática e Popular da Argélia</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Equador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>República do Equador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estónia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>República da Estónia</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egito</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>República Árabe do Egito</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Saara Ocidental</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritreia</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Estados da Eritreia</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Espanha</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Reino de Espanha</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiópia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>República Democrática Federal da Etiópia</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlândia</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>República da Finlândia</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>República das Fiji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Ilhas Falkland (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Micronésia, Estados Federados da</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Estados Federados da Micronésia</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Ilhas Faroé</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>França</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>República Francesa</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabão</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>República Gabonesa</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Reino Unido</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Reino Unido da Grã-Bretanha e Irlanda do Norte</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Granada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Geórgia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guiana Francesa</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Gana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>República do Gana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Gronelândia</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gâmbia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>República da Gâmbia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guiné</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>República da Guiné</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadalupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Guiné Equatorial</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>República da Guiné Equatorial</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grécia</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>República Helénica</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Ilhas Geórgia do Sul e Sandwich do Sul</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>República da Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guiné-Bissáu</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>República da Guiné-Bissáu</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guiana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>República da Guiana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hong Kong, Região de Administração Especial da China</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Ilha Heard e Ilhas McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>República das Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Croácia</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>República da Croácia</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>República do Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungria</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungria</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonésia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>República da Indonésia</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlanda</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Estado de Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Ilha de Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Índia</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>República da Índia</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Território Britânico do Oceano Índico</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Iraque</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>República do Iraque</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Irão, República Islâmica do</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>República Islâmica do Irão</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islândia</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>República da Islândia</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Itália</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>República Italiana</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordânia</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Reino Hachemita da Jordânia</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japão</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Quénia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>República do Quénia</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Quirguistão</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>República do Quirgistão</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Camboja</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Reino do Camboja</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>República de Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comores</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>União das Comores</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>São Cristóvão e Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Coreia, República Popular Democrática da</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>República Popular Democrática da Coreia</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Coreia, República da</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Estado do Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Ilhas Caimão</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Cazaquistão</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>República do Cazaquistão</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>República Democrática Popular do Laos</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Líbano</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>República do Líbano</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Santa Lúcia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Principado do Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>República Democrática Socialista do Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Libéria</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>República da Libéria</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Reino do Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituânia</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>República da Lituânia</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxemburgo</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Grã-Ducado do Luxemburgo</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letónia</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>República da Letónia</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Líbia</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Líbia</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marrocos</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Reino de Marrocos</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Mónaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Principado do Mónaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldávia, República da</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>República da Moldávia</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>São Martin (Território Francês)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagáscar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>República de Madagáscar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Ilhas Marshall</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>República das Ilhas Marshall</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Macedónia do Norte</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>República da Macedónia do Norte</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>República do Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Birmânia</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>República da Birmânia</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongólia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macau</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Macau, Região Especial de Administração Chinesa</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Ilhas Marianas do Norte</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Comunidade das Ilhas Marianas do Norte</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinica</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritânia</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>República Islâmica da Mauritânia</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Monserrate</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>República de Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Maurícia</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>República de Maurícias</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldivas</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>República das Maldivas</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>República do Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>México</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Estados Unidos Mexicanos</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malásia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Moçambique</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>República de Moçambique</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namíbia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>República da Namíbia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nova Caledónia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Níger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>República do Níger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Ilha Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigéria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>República Federal da Nigéria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicarágua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>República da Nicarágua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Países Baixos</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Reino dos Países Baixos</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Noruega</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Reino da Noruega</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>República Democrática Federal do Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>República de Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nova Zelândia</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omã</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanato de Omã</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panamá</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>República do Panamá</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>República do Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polinésia Francesa</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Nova Guiné</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Estado Independente de Papua-Nova Guiné</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipinas</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>República das Filipinas</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Paquistão</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>República Islâmica do Paquistão</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polónia</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>República da Polónia</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint Pierre e Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Porto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestina, Estado da</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Estado da Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>República Portuguesa</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>República de Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguai</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>República do Paraguai</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Catar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Estado do Catar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Ilha Reunião</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Roménia</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Sérvia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>República da Sérvia</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Federação Russa</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>República do Ruanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Arábia Saudita</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Reino da Arábia Saudita</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Ilhas Salomão</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>República das Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudão</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>República do Sudão</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Suécia</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Reino da Suécia</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapura</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>República de Singapura</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Santa Helena, Ascensão e Tristão da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Eslovénia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>República da Eslovénia</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard e Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Eslováquia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>República Eslovaca</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Serra Leoa</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>República da Serra Leoa</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>República de San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>República do Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somália</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>República Federal da Somália</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Suriname</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>República do Suriname</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sudão do Sul</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>República do Sudão do Sul</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>São Tomé e Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>República Democrática de São Tomé e Príncipe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>República de El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>São Martinho (Países Baixos)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>São Martinho (Países Baixos)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>República Árabe Síria</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Suazilândia</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Reino da Suazilândia</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Ilhas Turcas e Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Chade</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>República do Chade</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Territórios Franceses do Sul</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>República Togolesa</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tailândia</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Reino da Tailândia</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tajiquistão</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>República do Tajiquistão</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>República Democrática de Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turquemenistão</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunísia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>República da Tunísia</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Reino de Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trindade e Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>República de Trinidade e Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Província da China</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, Província da China</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzânia, República Unida da</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>República Unida da Tanzânia</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ucrânia</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>República do Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Ilhas Menores Distantes dos Estados Unidos</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Estados Unidos</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Estados Unidos da América</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguai</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>República Oriental do Uruguai</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbequistão</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>República do Uzbequistão</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Santa Sé (Estado da Cidade do Vaticano)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>São Vicente e Granadinas</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, República Bolivariana da</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>República Bolivariana da Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Ilhas Virgens, Britânicas</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Ilhas Virgens Britânicas</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Ilhas Virgens, Estados Unidos</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Ilhas Virgens dos Estados Unidos</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietname</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>República Socialista do Vietname</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>República de Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis e Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Estado Independente de Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Iémen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>República do Iémen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>África do Sul</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>República da África do Sul</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zâmbia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>República da Zâmbia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbábue</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>República do Zimbábue</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/ro.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/ro.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..bab5af44264d0620a260639370ec6b8664e83576
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/ro.countries.xlf
@@ -0,0 +1,1687 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="ro" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andora</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Principatul Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Emiratele Arabe Unite</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Republica islamică Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua și Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albania</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republica Albania</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenia</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republica Armenia</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republica Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarctica</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Republica Argentina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samoa americană</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austria</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republica Austria</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australia</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Insulele Ã…land</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaijan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republica Azerbaijan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnia și Herțegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republica Bosnia-Herțegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>BangladeÈ™</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Republica populară Bangladeș</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgia</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Regatul Belgiei</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaria</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republica Bulgară</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Regatul Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republica Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republica Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Sfântul Bartolomeu</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermude</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivia</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Statul plurinațional al Boliviei</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius și Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius și Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazilia</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Republica federală Brazilia</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Comitatul Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Regatul Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Insula Bouvet</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republica Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bielorusia</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republica Bielorusă</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Canada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Insulele Cocos (Keeling)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Congo, Republica democrată</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Republica Central Africană</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Congo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republica Congo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Elveția</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Confederația Elvețiană</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Coasta de FildeÈ™</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republica Coasta de FildeÈ™</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Insulele Cook</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republica Chile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Camerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republica Camerun</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>China</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Republica populară Chineză</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Columbia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republica Columbia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republica Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republica Cuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Capul Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republica Capul Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Insula Crăciunului</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Cipru</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republica Cipru</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Cehia</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Cehia</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Germania</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Republica federală Germană</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republica Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danemarca</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Regatul Danemarcei</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Comitatul Dominican</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Republica Dominicană</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algeria</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Republica populară Democratică Algeria</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republica Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonia</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republica Estonă</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egipt</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Republica arabă Egipt</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Sahara de Vest</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritreea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Statul Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spania</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Regatul Spaniei</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Republica federală democrată Etiopia</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlanda</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republica Finlanda</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republica Fiji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Insulele Falkland (Insulele Malvine)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Micronesia, Statele federale ale</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Statele federale ale Microneziei</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Insulele Feroe</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Franța</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Republica Franceză</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Republica Gabon</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Regatul Unit</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Regatul Unit al Marii Britanii și Insulelor Nordice</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgia</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guiana Franceză</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Republica Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Groenlanda</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republica Guinea</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadelupa</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Guinea Ecuatorială</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republica Guinea Ecuatorială</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grecia</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Republica Elenă</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Georgia de Sud și Insulele Sandwich de sud</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republica Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republica Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Republica Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Regiunea Chineză cu administrare specială Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Insula Heard și Insulele McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republica Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Croația</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republica Croația</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republica Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungaria</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungaria</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonezia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Republica Indonezia</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlanda</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Statul Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Insula Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>India</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Republica India</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Teritoriul britanic din Oceanul Indian</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Republica Irak</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, Republica islamică</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Republica islamică Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islanda</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Republica Islanda</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italia</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Republica Italiană</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Iordania</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Regatul Hașemit Iordanian</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japonia</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Republica Kenia</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kârgâzstan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Republica kârgâză</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Cambogia</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Regatul Cambodgiei</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Republica Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comoros</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Uniunea Comoros</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts și Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Republica democrată populară Coreea</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Republica populară democrată Coreea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Republica Coreea</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuweit</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Statul Kuweit</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Insulele Caiman</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakhstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Republica Kazakhstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Republica populară democrată Lao</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Liban</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Republica Libaneză</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Sfânta Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Principatul Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Republica socialistă democrată Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republica Liberia</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Regatul Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituania</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Republica Lituania</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Marele Ducat al Luxemburgului</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letonia</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Republica Letonă</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libia</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroc</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Regatul Marocului</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Principatul Monaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldova, Republica</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Republica Moldova</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Muntenegru</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Muntenegru</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Sfântul Martin (partea franceză)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Republica Madagascar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Insulele Marshall</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republica Insulele Marshall</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republica Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republica Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolia</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Regiunea chineză cu administrare specială Macao</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Insulele Mariane de Nord</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Comitatul Insulelor Mariane Nordice</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinica</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Republica islamică Mauritania</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Republica Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Maurițius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republica Maurițius</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldive</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Republica Maldive</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Republica Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexic</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Statele Unite Mexicane</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malaezia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambic</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Republica Mozambic</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Republica Namibia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Noua Caledonie</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republica Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Insula Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Republica federală Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Republica Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Olanda</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Regatul Olandei</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norvegia</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Regatul Norvegiei</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Republica federală democrată Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Republica Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Noua Zeelandă</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanatul Omanului</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republica Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Republica Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polinezia Franceză</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Noua Guinee</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Statul Independent Papua Noua Guinee</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipine</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Republica Filipine</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Republica islamică Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polonia</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Republica Polonă</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint Pierre și Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestina, Statul</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Statul Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugalia</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Republica Portugheză</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republica Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Republica Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Statul Qatar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>România</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbia</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republica Serbia</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Federația Rusă</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Republica Rwanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Arabia Saudită</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Regatul Arabiei Saudite</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Insulele Solomon</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republica Seychelles</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Republica Sudan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Suedia</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Regatul Suediei</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapore</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Republica Singapore</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Sfânta Elena, Ascension și Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenia</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Republica Slovenă</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard și Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovacia</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Republica Slovacă</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republica Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Republica San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republica Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Republica Federală Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Republica Suriname</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sudanul de Sud</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republica Sudanului de Sud</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tome și Principe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Republica democrată Sao Tome și Principe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republica El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sfântul Martin (partea olandeză)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sfântul Martin (partea olandeză)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Republica Araba Siria</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Insulele Turks și Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Ciad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republica Ciad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Teritoriile franceze de sud</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Republica Togoleză</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tailanda</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Regatul Tailandei</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tajikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republica Tajikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timorul de Est</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Republica democrată Timorul de Est</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisia</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Republica Tunisia</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Regatul Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad și Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republica Trinidad-Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Republica Unită Tanzania</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Republica Unită Tanzania</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ucraina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Republica Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Insulele de Coasta ale Statelor Unite</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Statele Unite</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Statele Unite ale Americii</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Republica Estică Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Republica Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Vatican</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent și Grenadinele</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Republica Bolivariană</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Republica Bolivariană a Venezuelei</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Insulele virgine (britanice)</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Insulele virgine britanice</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Insulele virgine (SUA)</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Insulele virgine ale Statelor Unite</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Republica socialistă Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republica Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis și Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Statul Independent Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republica Yemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Africa de sud</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Republica Africa de sud</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republica Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republica Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/ru.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/ru.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..5f2239eb6446fd5d8fda9b94655021d076306835
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/ru.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="ru" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Андорра</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Княжество Андорра</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Объединённые Арабские Эмираты</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Афганистан</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Исламская Республика Афганистан</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Антигуа и Барбуда</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Ангвилла</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Албания</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Республика Албания</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Армения</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Республика Армения</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Ангола</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Республика Ангола</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Антарктика</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Аргентина</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Аргентинская Республика</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Американские Самоа</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Австрия</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Австрийская Республика</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Австралия</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Аруба</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Аландские острова</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Азербайджан</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Республика Азербайджан</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Босния и Герцеговина</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Республика Босния и Герцеговина</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Барбадос</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Бангладеш</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Народная Республика Бангладеш</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Бельгия</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Королевство Бельгия</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Буркина-Фасо</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Болгария</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Республика Болгария</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Бахрейн</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Королевство Бахрейн</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Бурунди</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Республика Бурунди</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Бенин</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Республика Бенин</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Сен-Бартельми</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Бермуды</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Бруней Даруссалам</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Боливия</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Многонациональное Государство Боливия</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Бонайре, Синт-Эстатиус и Саба</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Бонайре, Синт-Эстатиус и Саба</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Бразилия</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Федеративная Республика Бразилия</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Багамы</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Содружество Багамских Островов</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Бутан</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Королевство Бутан</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Остров Буве</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Ботсвана</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Республика Ботсвана</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Беларусь</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Республика Беларусь</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Белиз</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Канада</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Кокосовые острова</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Демократическая Республика Конго</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Центрально-африканская республика</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Конго</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Республика Конго</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Швейцария</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Швейцарская Конфедерация</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Кот-д'Ивуар</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Республика Кот-д'Ивуар</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Острова Кука</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Чили</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Республика Чили</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Камерун</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Республика Камерун</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Китай</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Китайская Народная Республика</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Колумбия</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Республика Колумбия</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Коста-Рика</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Республика Коста-Рика</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Куба</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Республика Куба</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Кабо-Верде</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Республика Кабо-Верде</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Кюрасао</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Кюрасао</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Остров Рождества</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Кипр</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Республика Кипр</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Чехия</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Чешская Республика</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Германия</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Федеративная Республика Германия</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Джибути</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Республика Джибути</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Дания</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Королевство Дания</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Доминика</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Содружество Доминики</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Доминиканская республика</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Алжир</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Алжирская Народная Демократическая Республика</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Эквадор</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Республика Эквадор</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Эстония</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Эстонская Республика</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Египет</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Арабская Республика Египет</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Западная Сахара</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Эритрея</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Государство Эритрея</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Испания</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Королевство Испания</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Эфиопия</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Федеративная Демократическая Республика Эфиопия</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Финляндия</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Финляндская Республика</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Фиджи</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Республика Фиджи</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Фолклендские (Мальвинские) острова</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Федеративные Штаты Микронезии</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Федеративные Штаты Микронезии</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Фарерские острова</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Франция</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Французская Республика</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Габон</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Габонская Республика</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Соединённое Королевство</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Соединённое Королевство Великобритании и Северной Ирландии</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Гренада</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Грузия</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Французская Гвиана</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Гернси</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Гана</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Республика Гана</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Гибралтар</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Гренландия</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Гамбия</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Республика Гамбия</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Гвинея</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Гвинейская Республика</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Гваделупа</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Экваториальная Гвинея</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Республика Экваториальная Гвинея</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Греция</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Греческая Республика</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Южная Джорджия и Южные Сандвичевы острова</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Гватемала</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Республика Гватемала</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Гуам</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Гвинея-Бисау</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Республика Гвинея-Бисау</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Гайана</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Республика Гайана</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Гонконг</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Осо́бый административный район Гонконг</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Остров Херд и острова МакДональд</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Гондурас</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Республика Гондурас</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Хорватия</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Республика Хорватия</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Гаити</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Республика Гаити</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Венгрия</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Венгрия</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Индонезия</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Республика Индонезия</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ирландия</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Израиль</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Государство Израиль</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Остров Мэн</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Индия</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Республика Индия</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Британская территория Индийского океана</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Ирак</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Иракская Республика</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Иран</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Исламская Респу́блика Иран</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Исландия</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Республика Исландия</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Италия</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Итальянская Республика</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Джерси</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Ямайка</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Иордания</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Иорданское Хашимитское Королевство</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Япония</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Кения</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Республика Кения</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Киргизия</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Республика Кыргызстан</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Камбоджа</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Королевство Камбоджа</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Кирибати</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Республика Кирибати</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Коморы</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Союз Коморских Островов</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Сент-Китс и Невис</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Корейская Народно-Демократическая Республика</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Корейская Народно-Демократическая Республика</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Республика Корея</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Кувейт</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Государство Кувейт</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Каймановы острова</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Казахстан</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Республика Казахстан</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Лаосская Народно-Демократическая Республика</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Ливан</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Ливанская Республика</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Сент-Люсия</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Лихтенштейн</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Княжество Лихтенштейн</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Шри-Ланка</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Демократическая Социалистическая Республика Шри-Ланка</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Либерия</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Республика Либерия</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Лесото</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Королевство Лесото</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Литва</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Литовская Республика</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Люксембург</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Великое Герцогство Люксембург</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Латвия</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Латвийская Республика</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Ливия</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Ливия</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Марокко</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Королевство Марокко</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Монако</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Княжество Монако</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Республика Молдова</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Республика Молдова</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Черногория</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Черногория</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Сен-Мартен (Франция)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Мадагаскар</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Республика Мадагаскар</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Маршалловы острова</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Респу́блика Маршалловы Острова</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Северная Македония</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Республика Северная Македония</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Мали</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Республика Мали</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Мьянма</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Республика Мьянма</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Монголия</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Макао</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Специальный Административный район Макао</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Острова северной Марианы</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Содружество Северных Марианских островов</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Мартиника</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Мавритания</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Исламская Республика Мавритания</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Монтсеррат</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Мальта</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Республика Мальта</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Маврикий</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Республика Маврикий</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Мальдивы</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Мальдивская Республика</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Малави</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Республика Малави</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Мексика</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Мексиканские Соединённые Штаты</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Малайзия</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Мозамбик</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Республика Мозамбик</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Намибия</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Республика Намибия</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Новая Каледония</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Нигер</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Республика Нигер</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Остров Норфолк</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Нигерия</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Федеративная Республика Нигерия</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Никарагуа</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Республика Никарагуа</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Нидерланды</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Королевство Нидерландов</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Норвегия</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Королевство Норвегия</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Непал</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Федеративная Демократическая Республика Непал</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Науру</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Республика Науру</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Ниуэ</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Ниуэ</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Новая Зеландия</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Оман</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Султанат Оман</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Панама</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Республика Панама</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Перу</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Республика Перу</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Французская Полинезия</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Папуа — Новая Гвинея</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Независимое Государство Папуа — Новая Гвинея</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Филиппины</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Республика Филиппины</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Пакистан</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Исламская Республика Пакистан</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Польша</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Республика Польша</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Сен-Пьер и Микелон</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Питкэрн</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Пуэрто-Рико</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Палестина</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Государство Палестина</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Португалия</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Португальская Республика</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Палау</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Республика Палау</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Парагвай</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Республика Парагвай</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Катар</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Государство Катар</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Реюньон</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Румыния</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Сербия</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Республика Сербия</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Российская Федерация</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Руанда</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Руандийская Республика</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Саудовская Аравия</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Королевство Саудовская Аравия</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Соломоновы Острова</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Сейшелы</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Республика Сейшельские Острова</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Судан</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Республика Судан</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Швеция</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Королевство Швеция</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Сингапур</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Республика Сингапур</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Остров Святой Елены, Остров Вознесения и Тристан-да-Кунья</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Словения</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Республика Словения</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Шпицберген и Ян-Майен</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Словакия</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Словацкая Республика</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Сьерра-Леоне</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Республика Сьерра-Леоне</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>Сан-Марино</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Республика Сан-Марино</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Сенегал</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Республика Сенегал</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Сомали</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Федеративная Республика Сомали</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Суринам</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Республика Суринам</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Южный Судан</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Республика Южный Судан</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Сан-Томе и Принсипи</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Демократическая Республика Сан-Томе и Принсипи</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Сальвадор</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Республика Эль-Сальвадор</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Синт-Мартен (голландская часть)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Синт-Мартен (голландская часть)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Сирийская Арабская Республика</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Эсватини</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Королевство Эсватини</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Острова Туркс и Каикос</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Чад</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Республика Чад</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Французские южные территории</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Того</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Тоголезская Республика</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Таиланд</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Королевство Таиланд</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Таджикистан</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Республика Таджикистан</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Токелау</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Восточный Тимор</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Демократическая Республика Восточный Тимор</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Туркменистан</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Тунис</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Тунисская Республика</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Тонга</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Королевство Тонга</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Тринидад и Тобаго</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Республика Тринидад и Тобаго</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Тувалу</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Китайская провинция Тайвань</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Китайская провинция Тайвань</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Танзания</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Объединённая Республика Танзания</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Украина</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Уганда</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Республика Уганда</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Соединенные штаты Малых Удаленных островов</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Соединённые штаты</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Соединённые Штаты Америки</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Уругвай</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Восточная республика Уругвай</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Узбекистан</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Республика Узбекистан</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Государство-город Ватикан</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Сент-Винсент и Гренадины</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Боливарианская Республика Венесуэла</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Боливарианская Республика Венесуэла</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Виргинские острова (Британия)</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Британские Виргинские Острова</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Виргинские острова (США)</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Американские Виргинские острова</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Вьетнам</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Социалистическая Республика Вьетнам</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Вануату</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Республика Вануату</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Уоллес и Футана</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Самоа</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Независимое Государство Самоа</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Йемен</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Йеменская Республика</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Майот</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Южная Африка</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Южно-Африканская Республика</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Замбия</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Республика Замбия</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Зимбабве</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Республика Зимбабве</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/rw.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/rw.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..2e8328b83aeeccd697b6d933c08da1b79fc10033
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/rw.countries.xlf
@@ -0,0 +1,1631 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="rw" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andora</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Leta y'Andora</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Repubulika Nyarabu Zunze Ubumwe</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afuganisita</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Islamic Republic of Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigwa na Barubida</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Angwiya</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Alubaniya</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Repubulika y'Alubaniya</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Arumeniya</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Repubulika ya Arumeniya</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Repubulika ya Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarigitika</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Arijantina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Repubulika ya Arijantina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samowa Nyamerika</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Ositiriya</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Repubulika ya Ositiriya</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Ositaraliya</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ibirwa by'Alande</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azeribayijani</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Repubulika y'Azeribayijani</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosiniya na Herizegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Repubulika ya Bosiniya na Herizegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barubadosi</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangaladeshi</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Repubulika Iharanira Rubanda ya Bangaladeshi</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Ububiligi</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Igihugu cy'Ububiligi</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burukina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Buligariya</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Repubulika ya Buligariya</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahirayini</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Kingdom of Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Uburundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Repubulika y'Uburundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Bene</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Repubulika ya Bene</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Berimuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Buruneyi Darisalamu</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Burezile</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Repubulika Ishyizehamwe ya Burezile</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamasi</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Leta ya Bahamasi</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Butani</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Igihugu cya Butani</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Ikirwa cya Bouve</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Repubulika ya Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Belarusi</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Repubulika ya Belarusi</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Ibirwa bya Koko</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Repubulika Iharanira Demokarasi ya Kongo</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Repubulika ya Santara Afurika</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Repubulika ya Kongo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Ubusuwisi</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Ubusuwisi Bwiyunze</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Kote Divuwari</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republic of Côte d'Ivoire</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Ibirwa bya Kuke</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Shili</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Repubulika ya Shili</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kameruni</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Repubulika ya Kameruni</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Ubushinwa</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Repubulika Iharanira Rubanda y'Ubushinwa</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolombiya</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Repubulika ya Kolombiya</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kosita Rika</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Repubulika ya Kosita Rika</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kiba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Repubulika ya kiba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Ikirwa cya Noheli</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Shipure</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Repubulika ya Shipure</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Repubulika ya Ceke</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Ubudage</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Repubulika Ishyizehamwe y'Ubudage</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Jibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Repubulika ya Jibuti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danimarike</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Igihugu cya Danimarike</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Leta ya Dominika</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Repubulika ya Dominikani</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Aligeriya</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Repubulika Iharanira Demokarasi ya Rubanda y'Aligeriya</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekwadoro</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Repubulika ya Ekwadoro</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Esitoniya</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Repubulika ya Esitoniya</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Misiri</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Repubulika Nyarabu ya Misiri</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Sahara y'Uburengerazuba</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritereya</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>the State of Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Esipanye</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Igihugu cya Esipagne</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiyopiya</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Repubulika Ishyizehamwe Iharanira Demokarasi ya Etiyopiya</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finilande</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Repubulika ya Finilande</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republic of Fiji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Ibirwa bya Folukilande (Maluvinasi)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikoronesiya, Leta Zishyizehamwe za</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Leta Zishyizehamwe za Mikoronesiya</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Ibirwa bya Farowe</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Ubufaransa</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Repubulika y'Ubufaransa</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabo</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Repubulika ya Gabo</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Ubwongereza (UK)</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Igihugu cy'Ubwongereza na Irilande y'Amajyaruguru</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Gerenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Geworigiya</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guyane Nyamfaransa</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Gana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Repubulika ya Gana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Giburalitari</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Goronulande</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambiya</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Gineya</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Repubulika ya Gineya</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Gwadelupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Gineya Ekwatoriyale</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Repubulika ya Gineya Ekwatoriyale</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Ikigereki</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Repubulika ya Helenika</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Geworugiya y'Epfo n'Ibirwa bya Sanduwice y'Epfo</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Gwatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Repubulika Gwatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Gwami</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guneya-Biso</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Repubulika ya Gineya-Biso</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Giyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Repubulika ya Giyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongo Kongo</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Igice cy'Ubuyobozi Budasanzwe cy'Ubushinwa - Hongo Kongo</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Icyirwa Hadi n'Ibirwa MakeDonalidi</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Hondurasi</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Repubulika ya Hondurasi</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Korowatiya</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Repubulika ya korowatiya</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Hayiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Repubulika ya Hayiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hongiriya</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hongiriya</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesiya</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Repubulika ya Indonesiya</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irilande</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Isirayeli</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Leta ya Isirayeli</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Ikirwa cya Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Ubuhinde</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Repubulika y'Ubuhinde</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Teritwari y'Inyanja y'Abahinde Nyongereza</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irake</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Repubulika ya Irake</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, Repubulika ya Kisilimu</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Repubulika ya Kisilimu ya Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Isilande</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Repubulika ya Isilande</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Ubutariyani</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Repubulika y'Ubutaliyani</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamayika</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Yorudani</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Igihugu Hashemite cya Yorudani</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Ubuyapani</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Repubulika ya Kenya</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirigizasitani</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Repubulika ya Kirigizasitani</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodiya</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Igihugu cya Kambodiya</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Repubulika ya Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komore</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Ubwiyunge bwa Komore</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Mutagatifu Kitsi na Nevisi</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Koreya, Repubulika Iharanira Demokarasi ya Rubanda ya</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Repubulika Iharanira Demokarasi ya Rubanda ya Koreya</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Koreya, Repubulika ya</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Koweti</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Leta ya Koweti</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Ibirwa bya Kayimani</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakisitani</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Repubulika ya Kazakisitani</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Repubulika Iharanira Demokorasi ya Lawosi</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libani</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Repubulika ya Libani</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Mutagatifu Lusiya</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liyeshitensiteyine</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Leta ya Liyeshitensiteyine</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Siri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Repubulika Gisosiyalisite iharanira Demokarasi ya Siri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberiya</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Repubulika ya Liberiya</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Igihugu cya Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituwaniya</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Repubulika ya Lituwaniya</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Lugizamburu</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Ubudage Bunini Lugizamburu</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Lativiya</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Repubulika ya Lativiya</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libiya</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libiya</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroke</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Igihugu cya Maroke</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Leta ya Monako</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldova, Republic of</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Repubulika ya Molidova</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegoro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegoro</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagasikari</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Repubulika ya Madagasikari</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Ibirwa bya Marishali</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Repubulika y'Ibirwa bya Marishali</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Repubulika ya Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Mayanimari</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republic of Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongoliya</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makawo</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Igice cy'Ubuyobozi Budasanzwe cy'Ubushinwa - Makawo</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Ibirwa bya Mariyana y'Amajyaruguru</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Igihugu cy'Ibirwa bya Mariyana y'Amajyaruguru</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Maritike</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Moritaniya</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Repubulika ya Kisiramu ya Moritaniya</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Monserati</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malita</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Repubulika ya Malita</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Morise</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Repubulika y'Ibirwa bya Morise</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Malidivezi</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Repubulika ya Malidivezi</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Repubulika ya Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Megizike</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Leta Zunze Ubumwe za Megisiko</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malesiya</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambike</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Repubulika ya Mozambike</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibiya</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Repubulika ya Namibiya</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nuveli Kalidoniya</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Nigeri</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Repubulika ya Nigeri</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Ibirwa bya Norufoluki</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeriya</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Repubulika Ishyizehamwe ya Nigeriya</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragwa</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Repubulika ya Nikaragwa</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Nederilande</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Igihugu cya Nederilande</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Noruveje</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Igihugu cya Noruveje</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepali</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Federal Democratic Republic of Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nawuru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Repubulika ya Nawuru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niyuwe</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niyuwe</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nuveli Zelande</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omani</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sulutana cya Omani</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Repubulika ya Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Repubulika ya Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polinesiya Nyamfaransa</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papuwa Nuveli Gineya</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Independent State of Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipine</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Repubulika ya Filipine</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakisitani</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Repubulika ya Kisiramu ya Pakisitani</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polonye</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Repubulika ya Pologne</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Mutagatifu Petero na Mikeloni</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Piticayirine</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puwerito Riko</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>the State of Palestine</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Porutigali</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Repubulika ya Porutigali</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palawu</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Repubulika ya Palawu</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paragwe</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Repubulika ya Paragwe</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katari</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Leta ya Katari</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Reyiniyo</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Romaniya</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Seribiya</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republic of Serbia</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Ukwishyirahamwe kw'Uburusiya</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Repubulika y'Urwanda</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Arabiya Sawudite</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Igihugu cy'Arabiya Sawudite</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Ibirwa bya Solomoni</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seyishele</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Repubulika ya Seyishele</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudani</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Repubulika ya Sudani</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Suwede</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Igihugu cya Suwedi</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapore</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Repubulika ya Singapore</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Siloveniya</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Repubulika ya Siloveniya</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Sivalibadi na Jani Mayeni</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Silovakiya</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Repubulika ya Silovakiya</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Siyera Lewone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Repubulika ya Siyera Lewone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>Mutagatifu Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Repubulika ya Mutagatifu Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegali</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Repubulika ya Senegali</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somaliya</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Federal Republic of Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinamu</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Repubulika ya Surinamu</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>South Sudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republic of South Sudan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sawo Tome na Purensipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Repubulika Iharanira Demokarasi ya Sawo Tome na Purinsipe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Eli Saluvadoro</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Repubulika ya Saluvadoro</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Repubulika Nyarabu ya Siriya</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Ibirwa bya Takisi na Kayikosi</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Cade</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Repubulika ya Cade</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Ibihugu by'Amajyepfo Nyamfaransa</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Repubulika ya Togo</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tayilande</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Igihugu cya Tayilande</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tajikisitani</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Repubulika ya Tajikisitani</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelawu</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timoro-Lesite</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Repubulika Iharanira Demokarasi ya Timoro-Leste</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turikimenisitani</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisiya</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Repubulika ya Tunisiya</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Igihugu cya Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Tirinida na Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Repubulika ya Tirinida na Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tayiwani, Porovensi y'Ubushinwa</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tayiwani, Porovensi y'Ubushinwa</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzaniya, Repubulika Yunze Ubumwe ya</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Repubulika Yunze Ubumwe ya Tanzaniya</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ikerene</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Yuganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Repubulika ya Yuganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Ibirwa Bito Bikikije Leta Zunze Ubumwe</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Leta Zunze Ubumwe</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Leta Zunze Ubumwe z'Amerika</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Irigwe</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Repubulika y'Uburasizuba ya Irigwe</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzubekisitani</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Repubulika ya Uzubekisitani</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Inyanja Ntagatifu(Leta y'Umujyi wa Vatikani)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Mutagatifu Visenti na Gerenadine</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Bolivarian Republic of</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Repubulika ya Venezuwela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Ibirwa bya Virigini, Nyongereza</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Ibirwa bya Virigini Nyongereza</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Ibirwa bya Virigini, Leta Zunze Ubumwe</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Ibirwa bya Virigini bya Leta Zunze Ubumwe</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Viyetinamu</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Repubulika Gisosiyalisite ya Viyetinamu</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuwatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Repubulika ya Vanuwatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Walisi na Fatuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samowa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Leta Yigenga ya Samowa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yemeni</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Repubulika ya Yemeni</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayoti</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Afurika yepfo</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Repubulika y'Afurika y'Epfo</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambiya</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Repubulika ya Zambiya</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Repubulika ya Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/sk.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/sk.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..d4b0ed0a77dd510b20ae716a60776c2a7578ecf4
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/sk.countries.xlf
@@ -0,0 +1,1687 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="sk" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Andorrské kniežatstvo</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Spojené arabské emiráty</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Afghanistanská islamská republika</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua a Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albánsko</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Albánska republika</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Arménsko</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Arménska republika</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Angolská republika</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktída</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentína</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentínska republika</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Americká Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Rakúsko</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Rakúska republika</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Austrália</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ã…landy</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbajdžan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Azerbajdžanská republika</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosna a Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republika Bosny a Hercegoviny</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladéš</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Bangladéšska ľudová republika</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgicko</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Belgické kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulharsko</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Bulharská republika</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrajn</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Bahrajnské kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Burundská republika</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Beninská republika</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Svätý Bartolomej</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermudy</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunejsko-darussalamský štát</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolívijská republika</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Bolívijská republika</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius a Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius a Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazília</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Brazílska federatívna republika</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamy</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Bahamské spoločenstvo</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhután</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Bhutánske kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvetov ostrov</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Botswanská republika</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bielorusko</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Bieloruská republika</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kokosové ostrovy</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Konžská demokratická republika</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Stredoafrická republika</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Konžská republika</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Švajčiarsko</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Švajčiarska konfederácia</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Pobrežie Slonoviny</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republika Pobrežia Slonoviny</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cookove ostrovy</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>ÄŒile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Čilská republika</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Kamerunská republika</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Čína</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Čínska ľudová republika</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Kolumbijská republika</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kostarika</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Kostarická republika</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Kubánska republika</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Kapverdy</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Kapverdská republika</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Vianočný ostrov</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Cyprus</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Cyperská republika</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>ÄŒesko</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Česká republika</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Nemecko</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Nemecká spolková republika</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Džibutsko</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Džibutská republika</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Dánsko</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Dánske kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Dominické spoločenstvo</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikánska republika</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Alžírsko</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Alžírska demokratická ľudová republika</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekvádor</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Ekvádorská republika</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estónsko</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Estónska republika</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egypt</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Egyptská arabská republika</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Západná Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Eritrejský štát</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Å panielsko</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Španielske kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiópia</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Etiópska federatívna demokratická republika</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Fínsko</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Fínska republika</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidži</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republika Fidžijských ostrovov</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandy (Malvíny)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronézske federatívne štáty</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Mikronézske federatívne štáty</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Faerské ostrovy</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francúzsko</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Francúzska republika</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gabonská republika</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Spojené kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Spojené kráľovstvo Veľkej Británie a Severného Írska</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gruzínsko</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Francúzska Guyana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Ghanská republika</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltár</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grónsko</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Guinejská republika</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Rovníková Guinea</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republika Rovníkovej Guiney</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grécko</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Grécka republika</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Južná Georgia a Južné Sandwichove ostrovy</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Guatemalská republika</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Guinejsko-bissauská republika</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Guyanská kooperatívna republika</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Osobitná administratívna oblasť Číny Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heardov ostrov</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Honduraská republika</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Chorvátsko</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Chorvátska republika</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Haitská republika</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Maďarsko</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Maďarsko</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonézia</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Indonézska republika</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Írsko</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Izrael</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Izraelský štát</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>India</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Indická republika</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Britské indickooceánske územie</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Iracká republika</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iránska islamská republika</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Iránska islamská republika</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Island</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Islandská republika</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Taliansko</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Talianska republika</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamajka</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordánsko</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Jordánske hášimovské kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japonsko</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Keňa</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Kenská republika</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgizsko</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgizská republika</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kambodžské kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Kiribatská republika</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komory</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Komorský zväz</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Svätý Krištof a Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Kórejská ľudovodemokratická republika</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Kórejská ľudovodemokratická republika</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Kórejská republika</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuvajt</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Kuvajtský štát</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kajmanie ostrovy</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazachstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Kazašská republika</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laoská ľudovodemokratická republika</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libanonská republika</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Svätá Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Lichtenštajnsko</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Lichtenštajnské kniežatstvo</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Srí Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Srílanská demokratická socialistická republika</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Libéria</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Libérijská republika</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Lesothské kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litva</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Litovská republika</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxembursko</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Luxemburské veľkovojvodstvo</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Lotyšsko</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Lotyšská republika</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Líbya</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Líbya</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Marocké kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Monacké kniežatstvo</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavská republika</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Moldavská republika</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>ÄŒierna Hora</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>ÄŒierna Hora</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint Martin (francúzska časť)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Madagaskarská republika</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshallove ostrovy</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republika Marshallových ostrovov</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Malijská republika</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Mjanmarsko</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republika Mjanmarského zväzu</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolsko</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Osobitná administratívna oblasť Číny Macao</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Severné Mariány</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Spoločenstvo Severných Marián</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinik</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritánia</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Mauritánska islamská republika</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Maltská republika</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Maurícius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Maurícijská republika</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldivy</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Maldivská republika</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Malawijská republika</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Spojené štáty mexické</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malajzia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Mozambická republika</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namíbia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Namíbijská republika</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nová Kaledónia</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Nigerská republika</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigéria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Nigérijská federatívna republika</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Nikaragujská republika</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Holandsko</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Holandské kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Nórsko</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Nórske kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepál</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Nepálska federatívna demokratická republika</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Nauruská republika</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nový Zéland</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Omán</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Ománsky sultanát</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Panamská republika</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Peruánska republika</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Francúzska Polynézia</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua - Nová Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Nezávislý štát Papua-Nová Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipíny</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Filipínska republika</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Pakistanská islamská republika</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Poľsko</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Poľská republika</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint Pierre a Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairnove ostrovy</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Portoriko</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestína</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Štát Palestína</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugalsko</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugalská republika</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Palauská republika</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguaj</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Paraguajská republika</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Katarský štát</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumunsko</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Srbsko</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Srbská republika</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Ruská federácia</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Rwandská republika</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudská Arábia</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Saudskoarabské kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Šalamúnove ostrovy</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychely</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Seychelská republika</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudán</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Sudánska republika</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Švédsko</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Švédske kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Singapurská republika</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Svätá Helena, Ascension a Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovinsko</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Slovinská republika</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard a Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovensko</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovenská republika</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Sierraleonská republika</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Maríno</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Sanmarínska republika</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Senegalská republika</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somálsko</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Somálska federatívna republika</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Surinamská republika</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Južný Sudán</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Juhosudánska republika</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Svätý Tomáš a Princov ostrov</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Demokratická republika Svätého Tomáša a Princovho ostrova</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Salvádor</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Salvádorská republika</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (holandská časť)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (holandská časť)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Sýrska arabská republika</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Ostrovy Turks a Caicos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>ÄŒad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Čadská republika</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Francúzske južné a antarktické územia</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togská republika</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thajsko</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Thajské kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadžikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Tadžická republika</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Východný Timor</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Východotimorská demokratická republika</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkménsko</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisko</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Tuniská republika</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Tongské kráľovstvo</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad a Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republika Trinidadu a Tobaga</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, provincia Číny</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, provincia Číny</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzánijská zjednotená republika</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Tanzánijská zjednotená republika</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukrajina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Ugandská republika</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Menšie odľahlé ostrovy Spojených štátov</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Spojené štáty</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Spojené štáty americké</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguaj</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Uruguajská východná republika</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Uzbecká republika</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Svätá stolica (Vatikánsky mestský štát)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Svätý Vincent a Grenadíny</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuelská bolívarovská republika</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Venezuelská bolívarovská republika</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Panenské ostrovy, Britské</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Britské Panenské ostrovy</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Panenské ostrovy, Americké</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Panenské ostrovy Spojených štátov</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Vietnamská socialistická republika</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Vanuatská republika</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis a Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Samojský nezávislý štát</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Jemenská republika</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Južná Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Juhoafrická republika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Zambijská republika</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Zimbabwianska republika</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/sl.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/sl.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..750209524db22cf3d232be5481ab8615f47c70d0
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/sl.countries.xlf
@@ -0,0 +1,1683 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="sl" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andora</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Kneževina Andora</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Združeni Arabski emirati</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Islamska republika Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigva in Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Angvila</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanija</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republika Albanija</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenija</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republika Armenija</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republika Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktika</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Republika Argentina</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Ameriška Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Avstrija</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republika Avstrija</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Avstralija</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ålandsko otočje</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbajdžan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republika Azerbajdžan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosna in Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republika Bosna in Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladeš</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Ljudska republika Bangladeš</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgija</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Kraljevina Belgija</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bolgarija</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republika Bolgarija</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrajn</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Kraljevina Bahrajn</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republika Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republika Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barthelemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunej</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivija, plurinacionalna država</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Plurinacionalna država Bolivija</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius in Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius in Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazilija</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Zvezna republika Brazilija</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahami</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Zveza Bahami</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Butan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Kraljevina Butan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvetov otok</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Bocvana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republika Bocvana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Belorusija</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republika Belorusija</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kokosovi otoki</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Demokratična republika Kongo</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Srednjeafriška republika</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republika Kongo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Å vica</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Å vicarska konfederacija</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Slonokoščena obala</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republika Slonokoščena obala</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cookovi otoki</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>ÄŒile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republika ÄŒile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republika Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Kitajska</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Ljudska republika Kitajska</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbija</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republika Kolumbija</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kostarika</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republika Kostarika</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republika Kuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Božični otok</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Ciper</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republika Ciper</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Češka republika</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Nemčija</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Zvezna republika Nemčija</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Džibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republika Džibuti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danska</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Kraljevina Danska</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Zveza Dominika</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikanska republika</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Alžirija</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Ljudska demokratična republika Alžirija</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekvador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republika Ekvador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonija</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republika Estonija</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egipt</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Arabska republika Egipt</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Zahodna Sahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritreja</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Država Eritreja</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Å panija</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Kraljevina Å panija</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopija</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Zvezna demokratična republika Etiopija</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finska</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republika Finska</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fidži</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republika Fidži</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandski otoki</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronezija</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Federativne države Mikronezije</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Ferski otoki</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francija</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Francoska republika</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gabonska republika</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Združeno kraljestvo</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Združeno kraljestvo Velike Britanije in Severne Irske</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gruzija</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Francoska Gvajana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Gana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Republika Gana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grenlandija</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambija</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republika Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Gvadelup</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ekvatorialna Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republika Ekvatorialna Gvineja</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grčija</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Helenska republika</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Južna Georgia in Južni Sandwichevi otoki</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Gvatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republika Gvatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Gvineja Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republika Gvineja Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Gvajana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Republika Gvajana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hong Kong, posebna administrativna regija Kitajske</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Otoki Heard in McDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republika Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Hrvaška</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republika Hrvaška</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republika Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Madžarska</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Madžarska</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonezija</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Republika Indonezija</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irska</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Izrael</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Država Izrael</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Otok Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indija</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Republika Indija</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Britansko ozemlje v Indijskem oceanu</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Republika Irak</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Islamska republika Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islandija</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Republika Islandija</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italija</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Italijanska republika</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamajka</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordanija</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Hašemitska kraljevina Jordanija</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japonska</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenija</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Republika Kenija</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgizistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgiška republika</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kraljevina Kambodža</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Republika Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komori</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Zveza Komori</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts in Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Severna Koreja</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Demokratična ljudska republika Koreja</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Južna Koreja</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuvajt</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Država Kuvajt</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Kajmanski otoki</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazahstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Republika Kazahstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Laoška ljudska demokratična republika</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libanonska republika</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Lihtenštajn</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Kneževina Lihtenštajn</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Å rilanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Demokratična socialistična republika Šrilanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberija</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republika Liberija</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Kraljevina Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litva</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Republika Litva</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luksemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Veliko vojvodstvo Luksemburg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Latvija</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Republika Latvija</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libija</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libija</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Maroko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Kraljevina Maroko</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Kneževina Monako</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavija</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Republika Moldavija</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>ÄŒrna gora</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>ÄŒrna gora</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint Martin (francoski del)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Republika Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshallovi otoki</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republika Marshallovi otoki</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republika Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Mjanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republika Mjanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongolija</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Makao, posebna administrativna regija Kitajske</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Severni Marianski otoki</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Zveza Severni Marianski otoki</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinik</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mavretanija</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Islamska republika Mavretanija</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Republika Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mavricij</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republika Mavricij</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldivi</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Republika Maldivi</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malavi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Republika Malavi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mehika</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Združene mehiške države</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malezija</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Republika Mozambik</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibija</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Republika Namibija</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nova Kaledonija</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republika Niger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolški otok</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigerija</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Zvezna republika Nigerija</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragva</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Republika Nikaragva</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Nizozemska</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Kraljevina Nizozemska</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norveška</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Kraljevina Norveška</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Zvezna demokratična republika Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Republika Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nova Zelandija</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanat Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republika Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Republika Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Francoska Polinezija</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Nova Gvineja</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Neodvisna država Papua Nova Gvineja</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipini</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Republika Filipini</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Islamska republika Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Poljska</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Republika Poljska</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint Pierre in Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Portoriko</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestina, država</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Država Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugalska</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugalska republika</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republika Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paragvaj</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Republika Paragvaj</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Država Katar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Reunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Romunija</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Srbija</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republika Srbija</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Ruska federacija</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Ruandska republika</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudova Arabija</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Kraljevina Saudova Arabija</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Solomonovi otoki</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Sejšeli</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republika Sejšeli</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Republika Sudan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Å vedska</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Kraljevina Å vedska</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Republika Singapur</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Sveta Helena, Ascension in Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenija</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Republika Slovenija</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard in Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovaška</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovaška republika</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republika Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Republika San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republika Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalija</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Zvezna republika Somalija</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Republika Surinam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Južni Sudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republika Južni Sudan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tome in Principe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Demokratična republika Sao Tome in Principe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republika Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (nizozemski del)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (nizozemski del)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Sirska arabska republika</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks in Caicoški otoki</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>ÄŒad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republika ÄŒad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Francoska južna ozemlja</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Republika Togo</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tajska</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Kraljevina Tajska</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadžikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republika Tadžikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Vzhodni Timor</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Demokratična republika Vzhodni Timor</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunizija</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Republika Tunizija</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Kraljevina Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad in Tabago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republika Trinidad in Tabago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajvan, provinca Kitajske</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajvan, provinca Kitajske</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzanija</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Združena republika Tanzanija</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukrajina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Republika Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>manjši otoki Združenih držav Amerike</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Združene države</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Združene države Amerike</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Urugvaj</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Vzhodna republika Urugvaj</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Republika Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Sveti sedež (Vatikanska mestna država)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent in Grenadini</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, bolivarska republika</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Bolivarska republika Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Britanski Deviški otoki</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Britanski Deviški otoki</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Ameriški Deviški otoki</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Ameriški Deviški otoki</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Socialistična republika Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republika Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis in Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Neodvisna država Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republika Jemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Južna Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Republika Južna Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambija</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republika Zambija</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabve</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republika Zimbabve</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/sq.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/sq.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..042b1361be3c9a76cb631f491d14529afb796acb
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/sq.countries.xlf
@@ -0,0 +1,1695 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="sq" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorrë</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Principata e Andorras</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Emiratet e Bashkuara Arabe</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Republika Islamike e Afganistanit</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua dhe Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguila</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Shqipëri</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republika e Shqipërisë</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armeni</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republika e Armenisë</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angolë</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republika e Angolas</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktidë</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argjentinë</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Republika e Argjentinës</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Samoa Amerikane</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Austri</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republika e Austrisë</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australi</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ishujt Aland</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbajxhan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republika e Azerbajxhanit</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnjë dhe Hercegovinë</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republika e Bosnjes dhe Herzegovinës</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Republika Popullore e Bangladeshit</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgjikë</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Mbretëria e Belgjikës</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bullgarië</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republika e Bullgarisë</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrein</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Mbretëria e Bahrejnit</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republika e Burundit</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republika e Beninit</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Shën Bartolome</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivi, Shteti Shumëkombëtar i</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Shteti Shumëkombëtar i Bolivisë</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Boner, Shën Efstathi dhe Sava</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Boner, Shën Efstathi dhe Sava</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brazil</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Republika Federative e Brazilit</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Komonuelthi i Bahameve</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Butan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Mbretëria e Butanit</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Ishulli Buve</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botsvanë</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republika e Botsvanës</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Bjellorusi</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republika e Bjellorusisë</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Ishujt Kokos (Kiling)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongo, Republika Demokratike e</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Republika e Afrikës Qendrore</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republika e Kongos</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Zvicër</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Konfederata Zvicerane</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Kepi i Fildishtë</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republika e Kepit të Fildishtë</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Ishujt Kuk</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Kili</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republika e Kilit</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republika e Kamerunit</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Kinë</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Republika Popullore e Kinës</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolumbi</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republika e Kolumbisë</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kosta Rikë</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republika e Kosta Rikës</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kubë</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republika e Kubës</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Kepi i Gjelbërt</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republika e Kepit të Gjelbërt</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Kurasao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Kurasao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Ishulli i Krishtlindjes</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Qipro</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republika e Qipros</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Çeki</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Republika Çeke</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Gjermani</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Republika Federale e Gjermanisë</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Xhibut</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republika e Xhibutit</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danimarkë</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Mbretëria e Danimarkës</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominikë</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Komonuelthi i Dominikës</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Republika Dominikane</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algjeri</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Republika Popullore Demokratike e Algjerisë</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republika e Ekuadorit</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estoni</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republika e Estonisë</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egjipt</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Republika Arabe e Egjiptit</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Saharaja Perëndimore</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritre</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Shteti i Eritresë</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spanjë</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Mbretëria e Spanjës</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopi</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Republika Federal Demokratike e Etiopisë</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlandë</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republika e Finlandës</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fixhi</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republika e Fixhit</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Ishujt Falkland (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronezi, Shtetet Federative të</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Shtetet Federative të Mikronezisë</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Ishujt Faroe</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Francë</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Republika Franceze</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Republika Gabonit</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Mbretëria e Bashkuar</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Mbretëria e Bashkuar e Britanisë së Madhe dhe Irlandës së Veriut</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenadë</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gjeorgji</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Guajana Frënge</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Gërnsi</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ganë</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Republika e Ganës</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gjibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Groenlandë</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republika e Gambias</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guine</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republika e Guinesë</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadalupë</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Guinea Ekuatoriale</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republika e Guinesë Ekuatoriale</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Greqi</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Republika Helenike</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Xhorxhia Jugore dhe Ishujt Sanduiç të Jugut</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemalë</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republika e Guatemalës</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bisau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republika e Guinea-Bisaut</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guajana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Republika e Guajanës</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Hong Kong, Rajon Administrativ i Veçantë i Kinës</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Ishulli Hërd dhe Ishujt MkDonald</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republika e Hondurasit</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroaci</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republika e Kroacisë</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republika e Haitit</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungari</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hungari</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonezi</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Republika e Indonezisë</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irlandë</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Izrael</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Shteti i Izraelit</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Ishulli Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indi</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Republika e Indisë</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Territoret Britanike të Oqeanit Indian</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Republika e Irakut</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, Republika Islamike</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Republika Islamike e Iranit</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Islandë</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Republika e Islandës</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Itali</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Republika Italiane</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Xhersi</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Xhamajkë</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordani</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Mbretëria Hashemite e Jordanisë</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japoni</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenia</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Republika e Kenias</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Republika Kirgize</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kamboxhia</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Mbretëria e Kamboxhias</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Republika e Kiribatit</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komoros</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Bashkimi i Komoreve</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Shën Kits dhe Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Korea, Republika Popullore Demokratike e</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Republika Popullore Demokratike e Koresë</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Korea, Republika e</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuvajt</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Shteti i Kuvajtit</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Ishujt Kajman</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakistan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Republika e Kazakistanit</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Republika Demokratike Popullore e Laosit</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Liban</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Republika Libaneze</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Shën Luçia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Lihtenshtejn</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Prinicipati i Lihtenshtejnit</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lankë</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Republika Social Demokratike e Sri Lankës</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberi</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republika e Liberisë</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Mbretëria e Lesotos</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Lituani</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Republika e Lituanisë</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luksemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Dukati i Madh i Luksemburgut</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letoni</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Republika e Letonisë</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libi</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libi</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marok</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Mbretëria e Marokut</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Principata e Monakos</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavi, Republika e</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Republika e Moldavisë</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Mali i Zi</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Mali i Zi</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Shën Martin (pjesa Frënge)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Republika e Madagaskarit</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Ishujt Marshall</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republika e Ishujve Marshall</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Maqedonia e Veriut</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republika Maqedonisë së Veriut</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republika e Malit</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Birmani</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republika e Birmanisë</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongoli</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Makao, Rajon Administrativ i Veçantë i Kinës</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Ishujt Veriorë Mariana</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Komonuelthi i Ishujve Veriorë Mariana</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinikë</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauritani</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Republika Islamike e Mauritanisë</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Monserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Maltë</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Republika e Maltës</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauricius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republika e Mauriciusit</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldive</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Republika e Maldiveve</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malaui</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Republika e Malauit</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksikë</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Shtetet e Bashkuara Meksikane</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malajzi</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Republika e Mozambikut</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibi</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Republika e Namibisë</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Kaledonia e Re</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republika e Nigerit</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Ishulli Norfolk</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeri</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Republika Federale e Nigerisë</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Republika e Nikaraguas</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Holandë</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Mbretëria e Hollandës</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norvegji</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Mbretëria e Norvegjisë</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Republika Demokratike Federal e Nepalit</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Republika e Naurusë</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Zelandë e Re</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sulltanati i Omanit</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republika e Panamasë</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Republika e Perusë</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Polinezia Frënge</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Guinea e Re Papua</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Shteti i Pavarur i Papuas Guinesë së Re</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipine</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Republika e Filipineve</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Republika Islamike e Pakistanit</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Poloni</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Republika e Polonisë</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Shën Pierr dhe Mikëlon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitkern</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Porto Riko</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestinë, Shteti i</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Shteti i Palestinës</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugali</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Republika Portugeze</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republika e Palaut</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguai</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Republika e Paraguait</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Shteti i Katarit</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumani</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbi</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republika e Serbisë</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Federata Ruse</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruandë</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Republika e Ruandës</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Arabia Saudite</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Mbretëria e Arabisë Saudite</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Ishujt Solomon</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Sejshelle</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republika e Sejshelleve</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Republika e Sudanit</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Suedi</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Mbretëria e Suedisë</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapor</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Republika e Singaporit</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Shën Helena, Asension dhe Tristan da Kunja</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slloveni</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Republika e Sllovenisë</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard dhe Jan Majen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Sllovaki</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Republika Sllovake</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republika e Sierra Leones</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Republika e San Marinos</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republika e Senegalit</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somali</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Republika Federale e Somalisë</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Republika e Surinamit</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sudani i Jugut</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republika e Sudanit të Jugut</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tome dhe Principe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Republika Demokratike e Sao Tome dhe Principe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republika e El Salvadorit</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Shën Martin (pjesa Holandeze)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Shën Martin (pjesa Holandeze)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Republika Arabe e Sirisë</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Esuatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Mbretëria e Esuatinit</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Ishujt Turks dhe Kaikos</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Çad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republika e Çadit</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Territoret Jugore Franceze</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Republika Togoleze</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tajlandë</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Mbretëria e Tajlandës</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Taxhikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republika e Taxhikistanit</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timori Lindor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Republika Demokratike e Timorit Lindor</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunizi</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Republika e Tunizisë</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Mbretëria e Tongës</target>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name" approved="yes">
+        <source>Türkiye</source>
+        <target>Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad dhe Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republika e Trinidad dhe Tobagos</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajvan, Provincë e Kinës</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tajvan, Provincë e Kinës</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzani, Republika e Bashkuar e</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Republika e Bashkuar e Tanzanisë</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukrainë</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Ugandë</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Republika e Ugandës</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Ishujt e Vegjël të Përtejmë të Shteteve të Bashkuara</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Shtetet e Bashkuara</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Shtetet e Bashkuara të Amerikës</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguai</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Republika Lindore e Uruguait</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Republika e Uzbekistanit</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Selia e Shenjtë (Qytet-shteti i Vatikanit)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Shën Vinsent dhe Grenadinet</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuelë, Republika Bolivariane e</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Republika Bolivariane e Venezuelës</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Ishujt e Virgjër, Britanikë</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Ishujt e Virgjër Britanikë</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Ishujt e Virgjër, ShBA</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Ishujt e Virgjër të Shteteve të Bashkuara</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Republika Socialiste e Vietnamit</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republika e Vanuatus</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Uollis dhe Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Shteti i Pavarur i Samoas</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Jemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republika e Jemenit</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Majote</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Afrikë e Jugut</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Republika e Afrikës së Jugut</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republika e Zambias</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabve</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republika e Zimbabves</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/sr.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/sr.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..069ce3fb2cd0e5b112a1da302ab53585e8cd37fa
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/sr.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="sr" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Андора</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Кнежевина Андора</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Уједињени Арапски Емирати</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Авганистан</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Исламска Република Авганистан</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Антигва и Барбуда</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Ангила</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Албанија</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Република Албанија</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Јерменија</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Република Јерменија</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Ангола</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Република Ангола</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Антарктик</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Аргентина</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Република Аргентина</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Америчка Самоа</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Аустрија</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Република Аустрија</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Аустралија</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Аруба</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Острва Аланд</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Азербејџан</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Република Азербејџан</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Босна и Херцеговина</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Република Босна и Херцеговина</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Барбадос</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Бангладеш</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Народна Република Бангладеш</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Белгија</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Краљевина Белгија</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Буркина Фасо</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Бугарска</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Република Бугарска</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Бахреин</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Краљевина Бахреин</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Бурунди</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Република Бурунди</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Бенин</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Република Бенин</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Свети Бартоломеј</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Бермуда</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Султанат Брунеји</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Боливија, Вишенационална Држава</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Вишенационална Држава Боливија</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Бонер, Свети Еустахије и Саба</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Бонер, Свети Еустахије и Саба</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Бразил</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Федеративна Република Бразил</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Бахами</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Комонвелт Бахама</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Бутан</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Краљевина Бутан</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Острво Бов</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Боцвана</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Република Боцвана</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Белорусија</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Република Белорусија</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Белизе</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Канада</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Кокосова острва</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Конго, Демократска Република</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Централноафричка Република</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Конго</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Република Конго</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Швајцарска</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Швајцарска Конфедерација</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Обала Слоноваче</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Република Обала Слоноваче</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Острва Кук</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Чиле</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Република Чиле</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Камерун</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Република Камерун</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Кина</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Народна Република Кина</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Колумбија</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Република Колумбија</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Костарика</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Република Костарика</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Куба</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Република Куба</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Зеленортска острва</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Република Зеленортска острва</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Курасао</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Курасао</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Божићно острво</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Кипар</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Република Кипар</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Чешка</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Чешка Република</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Немачка</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Федеративна Република Немачка</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Џибути</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Република Џибути</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Данска</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Краљевина Данска</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Доминика</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Комонвелт Доминика</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Доминиканска Република</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Алжир</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Народна Демократска Република Алжир</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Еквадор</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Република Еквадор</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Естонија</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Република Естонија</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Египат</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Арапска Република Египат</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Западна Сахара</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Еритреја</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Држава Еритреја</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Шпанија</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Краљевина Шпанија</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Етиопија</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Федеративна Демократска Република Етиопија</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Финска</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Република Финска</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Фиџи</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Република Фиџи</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Фолкландска острва (Малвини)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Микронезија, Федералне Државе</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Федералне Државе Микронезије</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Фарска острва</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Француска</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Француска Република</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Габон</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Република Габон</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Уједињено Краљевство</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Уједињено Краљевство Велике Британије и Северне Ирске</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Гренада</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Грузија</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Француска Гвајана</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Гернси</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Гана</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Република Гана</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Гибралтар</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Гренланд</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Гамбија</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Република Гамбија</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Република Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Гвадалупе</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Екваторијална Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Република Екваторијална Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Грчка</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Република Грчка</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Јужна Џорџија и Јужна Сендвич острва</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Гватемала</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Република Гватемала</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Гиам</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Гвинеја-Бисао</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Република Гвинеја-Бисао</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Гвајана</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Република Гвајана</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Хонг Конг</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Хонг Конг Посебна Управна Област Кине</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Острво Херд и острва Мекдоналд</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Хондурас</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Република Хондурас</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Хрватска</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Република Хрватска</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Хаити</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Република Хаити</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Мађарска</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Мађарска</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Индонезија</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Република Индонезија</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ирска</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Израел</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Држава Израел</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Острво Ман</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Индија</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Република Индија</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Британска Индијска Океанска Територија</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Ирак</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Република Ирак</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Иран, Исламска Република</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Исламска Република Иран</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Исланд</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Република Исланд</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Италија</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Република Италија</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Џерси</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Јамајка</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Јордан</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Хашемитска Краљевина Јордан</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Јапан</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Кенија</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Република Кенија</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Киргистан</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Киргишка Република</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Камбоџа</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Краљевина Камбоџа</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Кирибати</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Република Кирибати</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Комори</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Заједница Комора</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Свети Китс и Невис</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Кореја, Демократска Народна Република</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Демократска Народна Република Кореја</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Кореја, Република</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Кувајт</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Држава Кувајт</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Острва Кајман</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Казахстан</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Република Казахстан</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Лаошка Народна Демократска Република</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Либан</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Либанска Република</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Света Луција</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Лихтенштајн</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Кнежевина Лихтенштајн</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Шри Ланка</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Демократска Социјалистичка Република Шри Ланка</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Либерија</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Република Либерија</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Лесото</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Краљевина Лесото</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Литванија</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Република Литванија</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Луксембург</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Велико Војводство Луксембург</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Летонија</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Република Летонија</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Либија</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Либија</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Мароко</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Краљевина Мароко</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Монако</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Кнежевина Монако</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Молдавија, Република</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Република Молдавија</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Црна Гора</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Црна Гора</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Свети Мартин (француски део)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Мадагаскар</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Република Мадагаскар</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Маршалска острва</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Република Маршалска острва</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Северна Македонија</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Република Северна Македонија</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Мали</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Република Мали</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Бурма</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Република Бурма</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Монголија</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Макао</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Макао Посебна Управна Област Кине</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Северна Маријанска острва</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Комонвелт острва Северне Маријане</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Мартиник</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Мауританија</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Исламска Република Мауританија</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Монсерат</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Малта</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Република Малта</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Маурицијус</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Република Маурицијус</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Малдиви</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Република Малдиви</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Малави</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Република Малави</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Мексико</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Сједињене Мексичке Државе</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Малезија</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Мозамбик</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Република Мозамбик</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Намибија</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Република Намибија</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Нова Каледонија</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Нигер</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Република Нигер</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Острво Норфолк</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Нигерија</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Федеративна Република Нигерија</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Никарагва</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Република Никарагва</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Холандија</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Краљевина Холандија</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Норвешка</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Краљевина Норвешка</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Непал</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Федеративна Демократска Република Непал</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Науру</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Република Науру</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Ниуе</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Ниуе</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Нови Зеланд</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Оман</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Султанат Оман</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Панама</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Република Панама</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Перу</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Република Перу</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Француска Полинезија</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Папуа Нова Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Независна Држава Папуа Нова Гвинеја</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Филипини</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Република Филипини</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Пакистан</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Исламска Република Пакистан</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Пољска</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Република Пољска</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Свети Пјер и Микелон</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Питкарн</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Порторико</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Палестина, Држава</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Држава Палестина</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Португал</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Португалска Република</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Палау</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Република Палау</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Парагвај</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Република Парагвај</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Катар</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Држава Катар</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Реунион</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Румунија</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Србија</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Република Србија</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Руска Федерација</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Руанда</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Руандска Република</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Саудијска Арабија</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Краљевина Саудијска Арабија</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Острва Соломон</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Сејшели</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Република Сејшели</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Судан</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Република Судан</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Шведска</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Краљевина Шведска</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Сингапур</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Република Сингапур</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Света Јелена, Асансион и Тристан да Куна</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Словенија</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Република Словенија</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Свалбард и Јан Мајен</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Словачка</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Словачка Република</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Сијера Леоне</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Република Сијера Леоне</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>Сан Марино</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Република Сан Марино</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Сенегал</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Република Сенегал</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Сомалија</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Федеративна Република Сомалија</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Суринам</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Република Суринам</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Јужни Судан</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Република Јужни Судан</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Сао Томе и Принципе</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Демократска Република Сао Томе и Принципе</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Ел Салвадор</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Република Ел Салвадор</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Свети Мартин (холандски део)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Свети Мартин (холандски део)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Сиријска Арапска Република</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Есватини</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Краљевина Есватини</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Острва Туркс и Каикос</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Чад</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Република Чад</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Француске Јужне Територије</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Того</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Тогоанска Република</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Тајланд</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Краљевина Тајланд</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Таџикистан</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Република Таџикистан</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Токелау</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Источни Тимор</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Демократска Република Источни Тимор</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Туркменистан</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Тунис</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Република Тунис</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Тонга</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Краљевина Тонга</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Тринидад и Тобаго</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Република Тринидад и Тобаго</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Тувалу</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Тајван, Кинеска Провинција</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Тајван, Кинеска Провинција</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Танзанија, Уједињена Република</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Уједињена Република Танзанија</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Украјина</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Уганда</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Република Уганда</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Спољна ивична острва САД</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Сједињене Државе</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Сједињене Америчке Државе</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Уругвај</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Источна Република Уругвај</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Узбекистан</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Република Узбекистан</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Света Столица (Држава града Ватикана)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Свети Винсент и Гренадини</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Венецуела, Боливарска Република</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Боливарска Република Венецуела</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Девичанска острва, Британска</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Британска Девичанска острва</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Девичанска острва, САД</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Девичанска острва Сједињених Држава</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Вијетнам</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Социјалистичка Република Вијетнам</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Вануату</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Република Вануату</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Валис и Футуна</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Самоа</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Независна Држава Самоа</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Јемен</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Република Јемен</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Мајот</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Јужна Африка</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Република Јужна Африка</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Замбија</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Република Замбија</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Зимбабве</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Република Зимбабве</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/sv.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/sv.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..30cc9e4be92b1c4dddd7b2f8cd3e6cac16c4a0db
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/sv.countries.xlf
@@ -0,0 +1,1695 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="sv" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Furstendömet Andorra</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Förenade Arabemiraten</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Islamiska republiken Afghanistan</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua och Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Albanien</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Republiken Albanien</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Armenien</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Republiken Armenien</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Republiken Angola</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktis</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Argentina</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Argentinska republiken</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Amerikanska Samoa</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Österrike</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Republiken Österrike</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Australien</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Ã…land</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbajdzjan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Republiken Azerbajdzjan</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosnien-Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Republiken Bosnien-Hercegovina</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Folkrepubliken Bangladesh</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belgien</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Konungariket Belgien</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgarien</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Republiken Bulgarien</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Konungariket Bahrain</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Republiken Burundi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Republiken Benin</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint-Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivia, MÃ¥ngnationella staten</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>MÃ¥ngnationella staten Bolivia</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius och Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius och Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brasilien</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Federala republiken Brasilien</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Samväldet Bahamas</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Konungariket Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvetön</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botswana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Republiken Botswana</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Vitryssland</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Republiken Vitryssland</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Kokosöarna</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongo, demokratiska republiken</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Centralafrikanska republiken</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Republiken Kongo</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Schweiz</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Schweiziska konfederationen</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Elfenbenskusten</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Republiken Elfenbenskusten</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cooköarna</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chile</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Republiken Chile</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Republiken Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Kina</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Folkrepubliken Kina</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Colombia</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Republiken Colombia</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Republiken Costa Rica</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Kuba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Republiken Kuba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Kap Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republiken Kap Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Julön</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Cypern</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Republiken Cypern</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Tjeckien</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Tjeckien</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Tyskland</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Förbundsrepubliken Tyskland</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Republiken Djibouti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danmark</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Konungariket Danmark</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominica</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Samväldet Dominica</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominikanska republiken</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Algeriet</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Demokratiska folkrepubliken Algeriet</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Republiken Ecuador</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estland</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Republiken Estland</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Egypten</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Arabiska republiken Egypten</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Västsahara</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Staten Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Spanien</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Konungariket Spanien</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiopien</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Demokratiska förbundsrepubliken Etiopien</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finland</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Republiken Finland</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Republiken Fiji</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falklandsöarna (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronesien, federala staterna</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Federala staterna Mikronesien</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Färöarna</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Frankrike</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Franska republiken</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gabonesiska republiken</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Förenade kungariket</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Förenade kungariket Storbritannien och Nordirland</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Georgien</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Franska Guyana</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ghana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Republiken Ghana</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gibraltar</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grönland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambia</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republiken Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Guinea</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Republiken Guinea</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ekvatorialguinea</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Republiken Ekvatorialguinea</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Grekland</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Hellenska republiken</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Sydgeorgien och södra Sandwichöarna</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Republiken Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Republiken Guinea-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Republiken Guyana</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hongkong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Särskilda administrativa regionen Hong Kong inom Kina</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heardön och McDonaldöarna</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Republiken Honduras</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Kroatien</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Republiken Kroatien</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Republiken Haiti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungern</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Ungern</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Indonesien</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Republiken Indonesien</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Irland</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Israel</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Staten Israel</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Isle of Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Indien</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Republiken Indien</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Brittiskt territorium i Indiska Oceanen</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Republiken Irak</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Iran, islamiska republiken</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Islamiska republiken Iran</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Island</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Republiken Island</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Italien</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Italienska republiken</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaica</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Jordanien</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Hashemitiska konungariket Jordanien</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japan</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Republiken Kenya</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kirgizistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kirgisiska republiken</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kambodja</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Konungariket Kambodja</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Republiken Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Comorerna</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Unionen Comorerna</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Sankt Kitts och Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Korea, demokratiska folkrepubliken</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Demokratiska folkrepubliken Korea</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Sydkorea</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Staten Kuwait</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Caymanöarna</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakstan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Republiken Kazakstan</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Demokratiska folkrepubliken Lao</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Libanon</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Libanesiska republiken</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Sankt Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Furstendömet Liechtenstein</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Demokratiska socialistrepubliken Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberia</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Republiken Liberia</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Konungariket Lesotho</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litauen</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Republiken Litauen</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Storhertigdömet Luxemburg</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Lettland</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Republiken Lettland</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libyen</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libyen</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Marocko</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Konungariket Marocko</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monaco</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Furstendömet Monaco</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldavien, republiken</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Republiken Moldavien</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Montenegro</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint Martin (franska delen)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Republiken Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marshallöarna</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Republiken Marshallöarna</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Nordmakedonien</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republiken Nordmakedonien</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Republiken Mali</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Republiken Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mongoliet</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Macao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Särskilda administrativa regionen Macao inom Kina</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Nordmarianerna</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Samväldet nordmarianerna</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mauretanien</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Islamiska republiken Mauretanien</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Republiken Malta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Republiken Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldiverna</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Republiken Maldiverna</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malawi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Republiken Malawi</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mexiko</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Förenade mexikanska staterna</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malaysia</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Moçambique</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Republiken Moçambique</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibia</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Republiken Namibia</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Nya Kaledonien</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Niger</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Republiken Niger</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolköarna</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Förbundsrepubliken Nigeria</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Republiken Nicaragua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Nederländerna</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Konungariket Nederländerna</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norge</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Konungariket Norge</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Demokratiska förbundsrepubliken Nepal</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Republiken Nauru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Nya Zeeland</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Oman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Sultanatet Oman</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Republiken Panama</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Republiken Peru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Franska Polynesien</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Nya Guinea</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Oberoende staten Papua Nya Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filippinerna</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Republiken Filippinerna</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Islamiska republiken Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polen</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Republiken Polen</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Sankt Pierre och Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Puerto Rico</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Staten Palestina</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Staten Palestina</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portugal</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portugisiska republiken</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Republiken Palau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Republiken Paraguay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Qatar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Staten Qatar</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rumänien</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Serbien</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Republiken Serbien</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Ryska federationen</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Rwanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Rwandiska republiken</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Saudiarabien</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Konungariket Saudiarabien</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Salomonöarna</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Seychellerna</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Republiken Seychellerna</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Republiken Sudan</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Sverige</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Konungariket Sverige</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapore</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Republiken Singapore</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Saint Helena, Ascension och Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenien</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Republiken Slovenien</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard och Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovakien</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovakiska republiken</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Republiken Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Republiken San Marino</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Republiken Senegal</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somalia</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Förbundsrepubliken Somalia</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Republiken Surinam</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Sydsudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Republiken Sydsudan</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>São Tomé och Príncipe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Demokratiska republiken São Tomé och Príncipe</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Republiken El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (nederländska delen)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (nederländska delen)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Syriska arabrepubliken</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Swaziland</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Konungariket Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks- och Caicosöarna</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Tchad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Republiken Tchad</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Franska sydterritorierna</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togolesiska republiken</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thailand</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Konungariket Thailand</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tadzjikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Republiken Tadzjikistan</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Östtimor</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Demokratiska republiken Östtimor</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Turkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunisien</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Republiken Tunisien</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Konungariket Tonga</target>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name" approved="yes">
+        <source>Türkiye</source>
+        <target>Turkiet</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republiken Turkiet</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad och Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Republiken Trinidad och Tobago</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, provins i Kina</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Taiwan, provins i Kina</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzania, förenade republiken</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Förenade republiken Tanzania</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukraina</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Republiken Uganda</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Förenta staternas mindre öar i Oceanien och Västindien</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>USA</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Amerikas förenta stater</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Östra republiken Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Republiken Uzbekistan</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Vatikanstaten</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Sankt Vincent och Grenadinerna</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela, Bolivarianska republiken</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Boliviska republiken Venezuela</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Jungfruöarna, brittiska</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Brittiska Jungfruöarna</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Jungfruöarna, amerikanska</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Amerikanska Jungfruöarna</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Socialistrepubliken Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Republiken Vanatu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis och Futuna</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Oberoende staten Samoa</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Republiken Yemen</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Sydafrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Republiken Sydafrika</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Republiken Zambia</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabwe</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Republiken Zimbabwe</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/th.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/th.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..5fffd7845f3dd86b396989f836b9162ecf1752de
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/th.countries.xlf
@@ -0,0 +1,1687 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="th" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>อันดอร์รา</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>ราชรัฐอันดอร์รา</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>สหรัฐอาหรับเอมิเรตส์</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>อัฟกานิสถาน</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>สาธารณรัฐอิสลามอัฟกานิสถาน</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>แอนติกาและบาร์บูดา</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>แองกวิลลา</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>แอลเบเนีย</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>สาธารณรัฐแอลเบเนีย</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>อาร์เมเนีย</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>สาธารณรัฐอาร์เมเนีย</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>แองโกลา</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>สาธารณรัฐแองโกลา</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>แอนตาร์กติกา</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>อาร์เจนตินา</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>สาธารณรัฐอาร์เจนตินา</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>อเมริกันซามัว</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>ออสเตรีย</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>สาธารณรัฐออสเตรีย</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>ออสเตรเลีย</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>อารูบา</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>หมู่เกาะโอลันด์</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>อาเซอร์ไบจาน</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>สาธารณรัฐอาเซอร์ไบจาน</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>บอสเนียและเฮอร์เซโกวีนา</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>สาธารณรัฐบอสเนียและเฮอร์เซโกวีนา</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>บาร์เบโดส</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>บังกลาเทศ</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>สาธารณรัฐประชาชนบังกลาเทศ</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>เบลเยียม</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>ราชอาณาจักรเบลเยียม</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>บูร์กินาฟาโซ</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>บัลแกเรีย</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>สาธารณรัฐบัลแกเรีย</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>บาห์เรน</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>ราชอาณาจักรบาห์เรน</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>บุรุนดี</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>สาธารณรัฐบุรุนดี</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>เบนิน</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>สาธารณรัฐเบนิน</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>แซงบาร์เตเลอมี</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>เบอร์มิวดา</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>บรูไนดารุสซาลาม</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>โบลิเวีย, รัฐพหุชาติ</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>รัฐพหุชาติโบลิเวีย</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>บอแนร์, เซนต์ยูสเตเชียส และ เซบา</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>บอแนร์, เซนต์ยูสเตเชียส และ เซบา</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>บราซิล</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>สหพันธ์สาธารณรัฐบราซิล</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>บาฮามาส</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>เครือรัฐบาฮามาส</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>ภูฏาน</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>ราชอาณาจักรภูฏาน</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>เกาะบูเวต์</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>บอตสวานา</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>สาธารณรัฐบอตสวานา</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>เบลารุส</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>สาธารณรัฐเบลารุส</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>เบลีซ</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>แคนาดา</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>หมู่เกาะโคโคส (คีลิง)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>คองโก, สาธารณรัฐประชาธิปไตย</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>สาธารณรัฐแอฟริกากลาง</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>คองโก</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>สาธารณรัฐคองโก</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>สวิตเซอร์แลนด์</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>สมาพันธรัฐสวิส</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>โกตดิวัวร์</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>สาธารณรัฐโกตดิวัวร์</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>หมู่เกาะคุก</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>ชิลี</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>สาธารณรัฐชิลี</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>แคเมอรูน</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>สาธารณรัฐแคเมอรูน</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>จีน</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>สาธารณรัฐประชาชนจีน</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>โคลอมเบีย</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>สาธารณรัฐโคลอมเบีย</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>คอสตาริกา</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>สาธารณรัฐคอสตาริกา</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>คิวบา</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>สาธารณรัฐคิวบา</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>กาบูเวร์ดี</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>สาธารณรัฐกาบูเวร์ดี</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>คิวราเซา</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>คิวราเซา</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>เกาะคริสต์มาส</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>ไซปรัส</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>สาธารณรัฐไซปรัส</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>ประเทศเช็กเกีย</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>สาธารณรัฐเช็ก</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>เยอรมนี</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>สหพันธ์สาธารณรัฐเยอรมนี</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>จิบูตี</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>สาธารณรัฐจิบูตี</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>เดนมาร์ก</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>ราชอาณาจักรเดนมาร์ก</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>โดมินิกา</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>เครือรัฐโดมินิกา</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>สาธารณรัฐโดมินิกัน</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>แอลจีเรีย</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>สาธารณรัฐประชาธิปไตยประชาชนแอลจีเรีย</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>เอกวาดอร์</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>สาธารณรัฐเอกวาดอร์</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>เอสโตเนีย</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>สาธารณรัฐเอสโตเนีย</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>อียิปต์</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>สาธารณรัฐอาหรับอียิปต์</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>เวสเทิร์นสะฮารา</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>เอริเทรีย</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>รัฐเอริเทรีย</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>สเปน</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>ราชอาณาจักรสเปน</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>เอธิโอเปีย</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>สหพันธ์สาธารณรัฐประชาธิปไตยเอธิโอเปีย</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>ฟินแลนด์</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>สาธารณรัฐฟินแลนด์</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>ฟิจิ</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>สาธารณรัฐฟิจิ</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>หมู่เกาะฟอล์กแลนด์ (มาลบีนาส)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>ไมโครนีเซีย</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>สหพันธรัฐไมโครนีเซีย</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>หมู่เกาะแฟโร</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>ฝรั่งเศส</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>สาธารณรัฐฝรั่งเศส</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>กาบอง</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>สาธารณรัฐกาบอง</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>สหราชอาณาจักร</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>สหราชอาณาจักรบริเตนใหญ่และไอร์แลนด์เหนือ</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>เกรนาดา</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>จอร์เจีย</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>เฟรนช์เกียนา</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>เกิร์นซีย์</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>กานา</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>สาธารณรัฐกานา</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>ยิบรอลตาร์</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>กรีนแลนด์</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>แกมเบีย</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>กินี</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>สาธารณรัฐกินี</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>กวาเดอลูป</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>อิเควทอเรียลกินี</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>สาธารณรัฐอิเควทอเรียลกินี</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>กรีซ</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>สาธารณรัฐเฮลเลนิก</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>เกาะเซาท์จอร์เจียและหมู่เกาะเซาท์แซนด์วิช</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>กัวเตมาลา</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>สาธารณรัฐกัวเตมาลา</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>กวม</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>กินีบิสเซา</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>สาธารณรัฐกินีบิสเซา</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>กายอานา</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>สาธารณรัฐสหกรณ์กายอานา</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>ฮ่องกง</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>เขตปกครองพิเศษฮ่องกงของจีน</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>เกาะเฮิร์ดและหมู่เกาะแมกดอนัลด์</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>ฮอนดูรัส</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>สาธารณรัฐฮอนดูรัส</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>โครเอเชีย</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>สาธารณรัฐโครเอเชีย</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>เฮติ</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>สาธารณรัฐเฮติ</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>ฮังการี</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>ฮังการี</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>อินโดนีเซีย</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>สาธารณรัฐอินโดนีเซีย</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>ไอร์แลนด์</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>อิสราเอล</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>รัฐอิสราเอล</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>เกาะแมน</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>อินเดีย</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>สาธารณรัฐอินเดีย</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>บริติชอินเดียนโอเชียนเทร์ริทอรี</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>อิรัก</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>สาธารณรัฐอิรัก</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>อิหร่าน, สาธารณรัฐอิสลาม</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>สาธารณรัฐอิสลามอิหร่าน</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>ไอซ์แลนด์</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>สาธารณรัฐไอซ์แลนด์</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>อิตาลี</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>สาธารณรัฐอิตาลี</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>เจอร์ซีย์</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>จาเมกา</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>จอร์แดน</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>ราชอาณาจักรฮัชไมต์จอร์แดน</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>ญี่ปุ่น</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>เคนยา</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>สาธารณรัฐเคนยา</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>คีร์กีซสถาน</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>สาธารณรัฐคีร์กีซ</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>กัมพูชา</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>ราชอาณาจักรกัมพูชา</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>คิริบาตี</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>สาธารณรัฐคิริบาตี</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>คอโมโรส</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>สหภาพคอโมโรส</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>เซนต์คิตส์และเนวิส</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>เกาหลีเหนือ</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>สาธารณรัฐประชาธิปไตยประชาชนเกาหลี</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>เกาหลีใต้</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>คูเวต</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>รัฐคูเวต</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>หมู่เกาะเคย์แมน</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>คาซัคสถาน</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>สาธารณรัฐคาซัคสถาน</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>สาธารณรัฐประชาธิปไตยประชาชนลาว</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>เลบานอน</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>สาธารณรัฐเลบานอน</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>เซนต์ลูเซีย</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>ลิกเตนสไตน์</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>ราชรัฐลิกเตนสไตน์</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>ศรีลังกา</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>สาธารณรัฐสังคมนิยมประชาธิปไตยศรีลังกา</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>ไลบีเรีย</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>สาธารณรัฐไลบีเรีย</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>เลโซโท</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>ราชอาณาจักรเลโซโท</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>ลิทัวเนีย</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>สาธารณรัฐลิทัวเนีย</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>ลักเซมเบิร์ก</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>ราชรัฐลักเซมเบิร์ก</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>ลัตเวีย</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>สาธารณรัฐลัตเวีย</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>ลิเบีย</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>ลิเบีย</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>โมร็อกโก</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>ราชอาณาจักรโมร็อกโก</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>โมนาโก</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>ราชรัฐโมนาโก</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>มอลโดวา, สาธารณรัฐ</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>สาธารณรัฐมอลโดวา</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>มอนเตเนโกร</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>มอนเตเนโกร</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>แซงมาร์แตง (ส่วนของฝรั่งเศส)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>มาดากัสการ์</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>สาธารณรัฐมาดากัสการ์</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>หมู่เกาะมาร์แชลล์</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>สาธารณรัฐหมู่เกาะมาร์แชลล์</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>มาลี</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>สาธารณรัฐมาลี</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>พม่า</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>สาธารณรัฐพม่า</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>มองโกเลีย</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>มาเก๊า</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>เขตปกครองพิเศษมาเก๊าของจีน</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>หมู่เกาะนอร์เทิร์นมาเรียนา</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>เครือรัฐหมู่เกาะนอร์เทิร์นมาเรียนา</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>มาร์ตินีก</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>มอริเตเนีย</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>สาธารณรัฐอิสลามมอริเตเนีย</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>มอนต์เซอร์รัต</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>มอลตา</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>สาธารณรัฐมอลตา</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>มอริเชียส</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>สาธารณรัฐมอริเชียส</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>มัลดีฟส์</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>สาธารณรัฐมัลดีฟส์</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>มาลาวี</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>สาธารณรัฐมาลาวี</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>เม็กซิโก</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>สหรัฐเม็กซิโก</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>มาเลเซีย</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>โมซัมบิก</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>สาธารณรัฐโมซัมบิก</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>นามิเบีย</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>สาธารณรัฐนามิเบีย</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>นิวแคลิโดเนีย</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>ไนเจอร์</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>สาธารณรัฐไนเจอร์</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>เกาะนอร์ฟอล์ก</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>ไนจีเรีย</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>สหพันธ์สาธารณรัฐไนจีเรีย</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>นิการากัว</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>สาธารณรัฐนิการากัว</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>เนเธอร์แลนด์</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>ราชอาณาจักรเนเธอร์แลนด์</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>นอร์เวย์</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>ราชอาณาจักรนอร์เวย์</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>เนปาล</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>สหพันธ์สาธารณรัฐประชาธิปไตยเนปาล</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>นาอูรู</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>สาธารณรัฐนาอูรู</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>นีอูเอ</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>นีอูเอ</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>นิวซีแลนด์</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>โอมาน</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>รัฐสุลต่านโอมาน</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>ปานามา</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>สาธารณรัฐปานามา</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>เปรู</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>สาธารณรัฐเปรู</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>เฟรนช์โปลินีเซีย</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>ปาปัวนิวกินี</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>รัฐเอกราชปาปัวนิวกินี</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>ฟิลิปปินส์</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>สาธารณรัฐฟิลิปปินส์</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>ปากีสถาน</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>สาธารณรัฐอิสลามปากีสถาน</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>โปแลนด์</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>สาธารณรัฐโปแลนด์</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>แซงปีแยร์และมีเกอลง</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>พิตแคร์น</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>เปอร์โตริโก</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>ปาเลสไตน์, รัฐ</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>รัฐปาเลสไตน์</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>โปรตุเกส</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>สาธารณรัฐโปรตุเกส</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>ปาเลา</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>สาธารณรัฐปาเลา</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>ปารากวัย</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>สาธารณรัฐปารากวัย</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>กาตาร์</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>รัฐกาตาร์</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>เรอูนียง</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>โรมาเนีย</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>เซอร์เบีย</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>สาธารณรัฐเซอร์เบีย</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>สหพันธรัฐรัสเซีย</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>รวันดา</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>สาธารณรัฐรวันดา</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>ซาอุดีอาระเบีย</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>ราชอาณาจักรซาอุดีอาระเบีย</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>หมู่เกาะโซโลมอน</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>เซเชลส์</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>สาธารณรัฐเซเชลส์</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>ซูดาน</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>สาธารณรัฐซูดาน</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>สวีเดน</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>ราชอาณาจักรสวีเดน</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>สิงคโปร์</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>สาธารณรัฐสิงคโปร์</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>เซนต์เฮเลนา, แอสเซนชัน และ ทริสแตน ดา คูนญา</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>สโลวีเนีย</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>สาธารณรัฐสโลวีเนีย</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>สฟาลบาร์ และ ยานไมเอน</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>สโลวะเกีย</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>สาธารณรัฐสโลวัก</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>เซียร์ราลีโอน</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>สาธารณรัฐเซียร์ราลีโอน</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>ซานมารีโน</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>สาธารณรัฐซานมารีโน</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>เซเนกัล</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>สาธารณรัฐเซเนกัล</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>โซมาเลีย</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>สหพันธ์สาธารณรัฐโซมาเลีย</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>ซูรินาเม</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>สาธารณรัฐซูรินาเม</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>ซูดานใต้</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>สาธารณรัฐซูดานใต้</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>เซาตูเมและปรินซิปี</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>สาธารณรัฐประชาธิปไตยเซาตูเมและปรินซิปี</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>เอลซัลวาดอร์</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>สาธารณรัฐเอลซัลวาดอร์</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>เซนต์มาร์ติน (ส่วนของดัตช์)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>เซนต์มาร์ติน (ส่วนของดัตช์)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>สาธารณรัฐอาหรับซีเรีย</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>หมู่เกาะเติกส์และหมู่เกาะเคคอส</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>ชาด</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>สาธารณรัฐชาด</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>เฟรนช์เซาเทิร์นเทร์ริทอรีส์</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>โตโก</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>สาธารณรัฐโตโก</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>ไทย</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>ราชอาณาจักรไทย</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>ทาจิกิสถาน</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>สาธารณรัฐทาจิกิสถาน</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>โตเกเลา</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>ติมอร์-เลสเต</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>สาธารณรัฐประชาธิปไตยติมอร์-เลสเต</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>เติร์กเมนิสถาน</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>ตูนิเซีย</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>สาธารณรัฐตูนิเซีย</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>ตองกา</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>ราชอาณาจักรตองกา</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>ตรินิแดดและโตเบโก</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>สาธารณรัฐตรินิแดดและโตเบโก</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>ตูวาลู</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>ไต้หวัน, จังหวัดของจีน</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>ไต้หวัน, จังหวัดของจีน</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>แทนซาเนีย, สหสาธารณรัฐ</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>สหสาธารณรัฐแทนซาเนีย</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>ยูเครน</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>ยูกันดา</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>สาธารณรัฐยูกันดา</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>เกาะเล็กรอบนอกของสหรัฐอเมริกา</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>สหรัฐ</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>สหรัฐอเมริกา</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>อุรุกวัย</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>สาธารณรัฐบูรพาอุรุกวัย</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>อุซเบกิสถาน</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>สาธารณรัฐอุซเบกิสถาน</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>นครรัฐวาติกัน</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>เซนต์วินเซนต์และเกรนาดีนส์</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>เวเนซุเอลา, สาธารณรัฐโบลีวาร์แห่ง</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>สาธารณรัฐโบลีวาร์แห่งเวเนซุเอลา</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>หมู่เกาะบริติชเวอร์จิน</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>หมู่เกาะบริติชเวอร์จิน</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>หมู่เกาะเวอร์จินของสหรัฐอเมริกา</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>หมู่เกาะเวอร์จินของสหรัฐอเมริกา</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>เวียดนาม</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>สาธารณรัฐสังคมนิยมเวียดนาม</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>วานูอาตู</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>สาธารณรัฐวานูอาตู</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>หมู่เกาะวาลลิสและหมู่เกาะฟุตูนา</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>ซามัว</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>รัฐเอกราชซามัว</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>เยเมน</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>สาธารณรัฐเยเมน</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>มายอต</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>แอฟริกาใต้</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>สาธารณรัฐแอฟริกาใต้</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>แซมเบีย</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>สาธารณรัฐแซมเบีย</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>ซิมบับเว</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>สาธารณรัฐซิมบับเว</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/tr.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/tr.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..47038f1560c649941b63f6617abab946f224583c
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/tr.countries.xlf
@@ -0,0 +1,1695 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="tr" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Andorra</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Andorra PrensliÄŸi</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>BirleÅŸik Arap Emirlikleri</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Afganistan</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Afganistan Ä°slam Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Antigua ve Barbuda</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Anguilla</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Arnavutluk</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Arnavutluk Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Ermenistan</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Ermenistan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Angola</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Angola Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Antarktika</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Arjantin</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Arjantin Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Amerikan Samoası</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Avusturya</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Avusturya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Avustralya</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Aruba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Åland Adaları</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Azerbaycan</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Azerbaycan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bosna-Hersek</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Bosna-Hersek Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Barbados</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>BangladeÅŸ</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>BangladeÅŸ Halk Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Belçika</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Belçika Krallığı</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Burkina Faso</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bulgaristan</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Bulgaristan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Bahreyn</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Bahreyn Krallığı</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Burundi</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Burundi Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Benin</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Benin Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Bermuda</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Brunei Krallığı</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bolivya Çokuluslu Devleti</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Bolivya Çokuluslu Devleti</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius ve Saba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bonaire, Sint Eustatius ve Saba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Brezilya</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Brezilya Federal Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Bahamalar</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Bahamalar Milletler TopluluÄŸu</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bhutan</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Butan Krallığı</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Bouvet Adası</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Botsvana</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Botsvana Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Belarus</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Belarus Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Belize</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Kanada</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Cocos (Keeling) Adaları</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Kongo Demokratik Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Orta Afrika Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Kongo</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Kongo Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>İsviçre</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>İsviçre Konfederasyonu</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>FildiÅŸi Sahili</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>FildiÅŸi Sahili Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Cook Adaları</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Åžili</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Åžili Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Kamerun</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Kamerun Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Çin</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Çin Halk Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Kolombiya</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Kolombiya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Kosta Rika</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Kosta Rika Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Küba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Küba Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Yeşil Burun Adaları</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>YeÅŸil Burun Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Curaçao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Christmas Adası</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Kıbrıs</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Kıbrıs Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Çekya</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Çek Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Almanya</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Almanya Federal Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Cibuti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Cibuti Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Danimarka</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Danimarka Krallığı</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Dominika</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Dominik Milletler TopluluÄŸu</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Dominik Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Cezayir</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Cezayir Demokratik Halk Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ekvador</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Ekvator Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Estonya</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Estonya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Mısır</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Mısır Arap Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Batı Sahra</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Eritre</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Eritre Devleti</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Ä°spanya</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>İspanya Krallığı</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Etiyopya</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Etiyopya Federal Demokratik Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Finlandiya</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Finlandiya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Fiji</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Fiji Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Falkland Adaları (Malvinas)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mikronezya Federe Devletleri</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Mikronezya Federe Devletleri</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Faroe Adaları</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Fransa</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Fransa Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Gabon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Gabon Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Birleşik Krallık</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Büyük Britanya ve Kuzey İrlanda Birleşik Krallığı</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Grenada</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gürcistan</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Fransız Guyanası</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Guernsey</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Gana</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Gana Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Cebelitarık</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Grönland</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Gambiya</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Gambiya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Gine</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Gine Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Guadeloupe</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ekvator Ginesi</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Ekvatoral Gine Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Yunanistan</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Yunanistan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Güney Georgia ve Güney Sandwich Adaları</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Guatemala</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Guatemala Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Guam</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Gine-Bissau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Gine-Bissau Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guyana</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Guyana Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hong Kong</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Çin Halk Cumhuriyeti Hong Kong Özel İdari Bölgesi</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Heard Adası ve McDonald Adaları</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Honduras</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Honduras Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Hırvatistan</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Hırvatistan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Haiti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Haiti Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Macaristan</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Macaristan</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Endonezya</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Endonezya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ä°rlanda</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Ä°srail</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Ä°srail Devleti</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Man Adası</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Hindistan</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Hindistan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Britanya Hint Okyanusu Toprakları</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Irak</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Irak Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>İran İslâm Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>İran İslâm Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Ä°zlanda</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Ä°zlanda Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Ä°talya</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Ä°talya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Jersey</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Jamaika</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Ürdün</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Ürdün Haşimi Krallığı</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Japonya</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Kenya</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Kenya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Kırgızistan</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Kırgızistan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Kamboçya</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Kamboçya Krallığı</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Kiribati</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Kiribati Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Komorlar</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Komorlar BirliÄŸi</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Saint Kitts ve Nevis</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Kore Demokratik Halk Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Kore Demokratik Halk Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Kore Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Kuveyt</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Kuveyt Devleti</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Cayman Adaları</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kazakistan</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Kazakistan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Lao Demokratik Halk Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Lübnan</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Lübnan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Saint Lucia</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>LihtenÅŸtayn</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>LihtenÅŸtayn PrensliÄŸi</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Sri Lanka</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Sri Lanka Demokratik Sosyalist Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Liberya</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Liberya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lesoto</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Lesoto Krallığı</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Litvanya</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Litvanya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Lüksemburg</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Lüksemburg Büyük Dükalığı</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Letonya</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Letonya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Libya</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Fas</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Fas Krallığı</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Monako</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Monako PrensliÄŸi</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Moldova Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Moldova Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>KaradaÄŸ</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>KaradaÄŸ</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint Martin (Fransız kısmı)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Madagaskar</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Madagaskar Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Marşal Adaları</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Marşal Adaları Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Kuzey Makedonya</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Kuzey Makedonya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Mali</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Mali Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Myanmar</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Myanmar Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>MoÄŸolistan</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Makao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Çin Halk Cumhuriyeti Makao Özel İdari Bölgesi</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Kuzey Mariana Adaları</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Kuzey Mariana Adaları Milletler Topluluğu</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Martinique</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Moritanya</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Moritanya İslâm Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Montserrat</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Malta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Malta Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mauritius</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Mauritius Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Maldivler</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Maldivler Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Malavi</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Malavi Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Meksika</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>BirleÅŸik Meksika Devletleri</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Malezya</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mozambik</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Mozambik Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Namibya</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Namibya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Yeni Kaledonya</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Nijer</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Nijer Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Norfolk Adası</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Nijerya</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Nijerya Federal Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Nikaragua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Nikaragua Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Hollanda</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Hollanda Krallığı</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Norveç</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Norveç Krallığı</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nepal</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Nepal Federal Demokratik Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nauru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Nauru Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Niue</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Yeni Zelanda</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Umman</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Umman Sultanlığı</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Panama</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Panama Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Peru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Peru Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Fransız Polinezyası</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Papua Yeni Gine</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Papua Yeni Gine Bağımsız Devleti</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Filipinler</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Filipinler Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pakistan</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Pakistan Ä°slam Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Polonya</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Polonya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Saint Pierre ve Miquelon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pitcairn</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Porto Riko</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Filistin Devleti</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Filistin Devleti</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Portekiz</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Portekiz Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Palau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Palau Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Paraguay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Paraguay Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Katar</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Katar Devleti</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Réunion</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Romanya</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Sırbistan</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Sırbistan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Rusya Federasyonu</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ruanda</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Ruanda Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Suudi Arabistan</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Suudi Arabistan Krallığı</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Solomon Adaları</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>SeyÅŸeller</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>SeyÅŸeller Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Sudan</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Sudan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>İsveç</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>İsveç Krallığı</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Singapur</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Singapur Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Saint Helena, Ascension ve Tristan da Cunha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Slovenya</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Slovenya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Svalbard ve Jan Mayen</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Slovakya</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Slovakya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Sierra Leone</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Sierra Leone Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>San Marino</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>San Marino Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Senegal</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Senegal Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Somali</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Somali Federal Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Surinam</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Surinam Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Güney Sudan</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Güney Sudan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Sao Tome ve Principe</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Sao Tome ve Principe Demokratik Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>El Salvador</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>El Salvador Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Hollanda kısmı)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Sint Maarten (Hollanda kısmı)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Suriye Arap Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Eswatini</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Eswatini Krallığı</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Turks ve Caicos Adaları</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Çad</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Çad Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Fransız Güney Bölgeleri</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Togo</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Togo Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Tayland</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Tayland Krallığı</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tacikistan</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Tacikistan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>Tokelau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Timor-Leste</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Timor-Leste Demokratik Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Türkmenistan</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tunus</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Tunus Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tonga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Tonga Krallığı</target>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name" approved="yes">
+        <source>Türkiye</source>
+        <target>Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Türkiye Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinidad ve Tobago</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Trinidad ve Tobago Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tuvalu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tayvan, Çin Eyaleti</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Tayvan, Çin Eyaleti</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Tanzanya BirleÅŸik Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Tanzanya BirleÅŸik Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Ukrayna</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Uganda</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Uganda Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Amerika Birleşik Devletleri Küçük Dış Adaları</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Amerika BirleÅŸik Devletleri</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Amerika BirleÅŸik Devletleri</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Uruguay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Uruguay DoÄŸu Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Özbekistan</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Özbekistan Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Holy See (Vatikan Åžehir Devleti)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Saint Vincent ve Grenadinler</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Venezuela Bolivar Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Venezuela Bolivar Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>İngiliz Virgin Adaları</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>İngiliz Virgin Adaları</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Virgin Adaları, A.B.D.</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Amerikan Virgin Adaları</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Vietnam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Vietnam Sosyalist Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Vanuatu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Vanuatu Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Wallis ve Futuna Adaları</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Samoa</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Samoa Bağımsız Devleti</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Yemen</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Yemen Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Mayotte</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Güney Afrika</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Güney Afrika Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Zambiya</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Zambiya Cumhuriyeti</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Zimbabve</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Zimbabve Cumhuriyeti</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/uk.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/uk.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..2f47aef593be2ff6bcd968ed71d69a1cf93a45d3
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/uk.countries.xlf
@@ -0,0 +1,1695 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="uk" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Андорра</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Князівство Андорра</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Об’єднані Арабські Емірати</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>Афганістан</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Ісламська республіка Афганістан</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Антигуа і Барбуда</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Ангілья</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>Албанія</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Республіка Албанія</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Вірменія</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Республіка Вірменія</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Ангола</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Республіка Ангола</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Антарктида</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Аргентина</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Аргентинська Республіка</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Американське Самоа</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Австрія</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Австрійська Республіка</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Австралія</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Аруба</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Аландські острови</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Азербайджан</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Азербайджанська Республіка</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Боснія і Герцеговина</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Республіка Боснія та Герцеговина</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Барбадос</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Бангладеш</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Народна Республіка Бангладеш</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Бельгія</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Королівство Бельгія</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Буркіна-Фасо</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Болгарія</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Республіка Болгарія</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Бахрейн</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Королівство Бахрейн</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Бурунді</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Республіка Бурунді</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Бенін</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Республіка Бенін</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Сен-Бартельмі</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Бермудські острови</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Бруней</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Болівія</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Багатонаціональна Держава Болівія</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Бонайре, Сінт-Естатіус і Саба</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Бонайре, Сінт-Естатіус і Саба</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Бразилія</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Федеративна Республіка Бразилія</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Багамські острови</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Співдружність Багамських Островів</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Бутан</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Королівство Бутан</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Острів Буве</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Ботсвана</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Республіка Ботсвана</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Білорусь</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Республіка Білорусь</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Беліз</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Канада</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Кокосові (Кілінг) острови</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Конго, демократична республіка</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Центральноафриканська Республіка</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Конго</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Республіка Конго</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Швейцарія</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Швейцарська Конфедерація</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Кот-д'Івуар</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Республіка Кот-д’Івуар</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Острови Кука</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Чилі</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Республіка Чилі</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Камерун</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Республіка Камерун</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Китай</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Китайська Народна Республіка</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Колумбія</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Республіка Колумбія</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Коста-Рика</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Республіка Коста-Рика</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Куба</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Республіка Куба</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Кабо-Верде</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Республіка Кабо-Верде</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Кюрасао</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Кюрасао</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Острів Різдва</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Кіпр</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Республіка Кіпр</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>Чехія</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Чеська республіка</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Німеччина</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Федеративна Республіка Німеччина</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Джибуті</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Республіка Джибуті</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Данія</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Королівство Данія</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Домініка</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Співдружність Домініки</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Домініканська республіка</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>Алжир</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Алжирська Народна Демократична Республіка</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Еквадор</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Республіка Еквадор</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>Естонія</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Естонська Республіка</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Єгипет</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Арабська Республіка Єгипет</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Західна Сахара</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Еритрея</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Держава Еритрея</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Іспанія</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Королівство Іспанія</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Ефіопія</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Федеративна Демократична Республіка Ефіопія</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Фінляндія</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Фінляндська Республіка</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Фіджі</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Республіка Фіджі</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Фолклендські острови (Британія)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Мікронезія, федеративні штати</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Федеративні Штати Мікронезії</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Фарерські острови</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Франція</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Французька Республіка</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Габон</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Габонська Республіка</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Велика Британія</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Об’єднане Королівство Великої Британії та Північної Ірландії</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Гренада</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Грузія</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Французька Гвіана</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Острів Гернсі</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Гана</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Республіка Гана</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Гібралтар</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Ґренландія</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Гамбія</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Республіка Гамбія</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Гвінея</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Республіка Гвінея</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Гваделупа</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Екваторіальна Гвінея</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Республіка Екваторіальна Гвінея</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Греція</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Грецька Республіка</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Південна Джорджія та Південні Сандвічеві острови</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Гватемала</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Республіка Гватемала</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Гуам</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Гвінея-Бісау</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Республіка Гвінея-Бісау</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Гаяна</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Республіка Гайана</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Гонконг</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Особливий адміністративний район Гонконг</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Острів Герд і острови Макдональд</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Гондурас</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Республіка Гондурас</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Хорватія</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Республіка Хорватія</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Гаїті</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Республіка Гаїті</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Угорщина</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Угорщина</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Індонезія</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Республіка Індонезія</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ірландія</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Ізраїль</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Держава Ізраїль</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Острів Мен</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Індія</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Республіка Індія</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Британська територія в Індійському океані</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>Ірак</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Республіка Ірак</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Іран</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Ісламська Республіка Іран</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Ісландія</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Республіка Ісландія</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Італія</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Італійська Республіка</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Джерсі</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Ямайка</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Йорданія</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Йорданське Хашемітське Королівство</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Японія</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Кенія</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Республіка Кенія</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Киргизстан</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Киргизька Республіка</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Камбоджа</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Королівство Камбоджа</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Кірибаті</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Республіка Кірибаті</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Коморські острови</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Союз Коморських Островів</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Сент-Кіттс і Невіс</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Північна Корея</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Корейська Народно-Демократична Республіка</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Південна Корея</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Кувейт</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Держава Кувейт</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Кайманові острови</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Казахстан</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Республіка Казахстан</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Лаоська Народно-Демократична Республіка</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Ліван</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Ліванська Республіка</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Сент-Люсія</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Ліхтенштейн</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Князівство Ліхтенштейн</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Шрі-Ланка</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Демократична Соціалістична Республіка Шрі-Ланка</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Ліберія</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Республіка Ліберія</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Лесото</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Королівство Лесото</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Литва</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Литовська Республіка</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Люксембург</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Велике Герцогство Люксембург</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Латвія</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Латвійська республіка</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Лівія</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Лівія</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Марокко</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Королівство Марокко</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Монако</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Князівство Монако</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Республіка Молдова</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Республіка Молдова</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Чорногорія</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Чорногорія</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Сен-Мартен (французька частина)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Мадагаскар</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Республіка Мадагаскар</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Маршаллові острови</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Республіка Маршалові Острови</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>Північна Македонія</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Республіка Північна Македонія</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Малі</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Республіка Малі</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>М’янма</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Республіка М’янми</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Монголія</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Макао</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Особливий адміністративний район Макао</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Північні Маріанські Острови</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Співдружність Північних Маріанських Островів</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Мартиніка</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Мавританія</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Ісламська Республіка Мавританія</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Монтсеррат</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Мальта</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Республіка Мальта</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Маврикій</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Республіка Маврикій</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Мальдіви</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Мальдівська Республіка</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Малаві</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Республіка Малаві</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Мексика</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Мексиканські Сполучені Штати</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Малайзія</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Мозамбік</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Республіка Мозамбік</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Намібія</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Республіка Намібія</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Нова Каледонія</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Нігер</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Республіка Нігер</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Острів Норфолк</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Нігерія</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Федеративна Республіка Нігерія</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Нікарагуа</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Республіка Нікарагуа</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Нідерланди</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Королівство Нідерланди</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Норвегія</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Королівство Норвегія</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Непал</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Федеративна Демократична Республіка Непал</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>науру</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Республіка Науру</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Ніуе</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Ніуе</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Нова Зеландія</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Оман</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Султанат Оман</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Панама</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Республіка Панама</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Перу</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Республіка Перу</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Французька Полінезія</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Папуа Нова Гвінея</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Незалежна Держава Папуа Нова Гвінея</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Філіппіни</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Республіка Філіппіни</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Пакистан</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Ісламська Респуліка Пакистан</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Польща</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Республіка Польща</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Сен-П'єр і Мікелон</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Піткерн</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Пуерто-Рико</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Палестина, Держава</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Держава Палестина</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Португалія</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Португальська Республіка</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Палау</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Республіка Палау</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Парагвай</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Республіка Парагвай</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Катар</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Держава Катар</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Реюньйон</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Румунія</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Сербія</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Республіка Сербія</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Російська Федерація</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Руанда</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Руандійська Республіка</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>Саудівська Аравія</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Королівство Саудівська Аравія</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Соломонові Острови</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Сейшели</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Республіка Сейшельські Острови</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Судан</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Республіка Судан</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Швеція</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Королівство Швеція</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Сінгапур</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Республіка Сінгапур</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Острови Святої Єлени, Вознесіння і Тристан-да-Кунья</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Словенія</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Республіка Словенія</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Острови Свальбард і Ян Маєн</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Словаччина</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Словацька Республіка</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Сьєрра-Леоне</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Республіка Сьєрра-Леоне</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>Сан-Марино</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Республіка Сан-Марино</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Сенегал</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Республіка Сенегал</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Сомалі</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Федеративна Республіка Сомалі</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Суринам</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Республіка Суринам</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Південний Судан</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Республіка Південний Судан</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Сан-Томе і Принсіпі</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Демократична Республіка Сан-Томе і Прінсіпі</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>Сальвадор</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Республіка Ель-Сальвадор</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Сінт-Мартен (голландська частина)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Сінт-Мартен (голландська частина)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Сирійська Арабська Республіка</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>Есватіні</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Королівство Есватіні</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Острови Теркс і Кайкос</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Чад</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Республіка Чад</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Французькі Південні Території</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Того</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Тоголезька Республіка</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Таїланд</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Королівство Таїланд</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Таджикистан</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Республіка Таджикистан</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>токелау</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Східний Тимор</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Демократична Республіка Тимор-Лешті</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Туркменістан</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Туніс</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Туніська Республіка</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Тонга</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Королівство Тонга</target>
+      </trans-unit>
+      <trans-unit id="TR.name" resname="TR.name" approved="yes">
+        <source>Türkiye</source>
+        <target>Туреччина</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Турецька Республіка</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Тринідад і Тобаго</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Республіка Тринідад та Тобаго</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>тувалу</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Тайвань, провінція Китаю</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Тайвань, провінція Китаю</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Танзанія, Об’єднана Республіка</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Об’єднана Республіка Танзанія</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>Україна</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>Уганда</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Республіка Уганда</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Зовнішні малі острови США</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>США</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Сполучені Штати Америки</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>Уругвай</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Східна Республік Уругвай</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>Узбекистан</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Республіка Узбекистан</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Святий Престол (Ватикан, Місто-Держава)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Сент-Вінсент і Гренадини</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Венесуела, Боліварська Республіка</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Боліварська Республіка Венесуела</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Віргінські острови (Британія)</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Британські Віргінські острови</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Віргінські острови (США)</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Віргінські острови (США)</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>В'єтнам</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Соціалістична Республіка В’єтнам</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Вануату</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Республіка Вануату</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Волліс і Футуна</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Самоа</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Незалежна Держава Самоа</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Ємен</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Єменська Республіка</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>Майотта</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Південна Африка</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Південноафриканська Республіка</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Замбія</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Республіка Замбія</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Зімбабве</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Республіка Зімбабве</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/vi.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/vi.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..35d2f8d45b0add041c090b509d43f010a095a233
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/vi.countries.xlf
@@ -0,0 +1,1683 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="vi" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>Ăn-đoa-râ</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>Chức vương Ăn-đoa-râ</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>Các Tiểu Vương Quốc A-rập Thống Nhất</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>A Phú Hãn</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>Cộng Hoà Hồi Giáo A Phú Hãn</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>Ănh-thí-gua và Ba-bu-đa</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>Ăng-ouí-la</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>An-ba-ni</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>Cộng Hoà An-ba-ni</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>Ac-mê-ni</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>Nước Cộng Hoà Ac-mê-ni</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>Ăng-gô-la</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>Cộng hoà Ăng-gô-la</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>Nam Cá»±c</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>Á-căn-đình</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>Cộng hoà Á-căn-đình</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>Xa-mô-a Mỹ</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>Ao</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>Cộng hoà Ao</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>Úc</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>Ä‚-ru-ba</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>Quần đảo A-lanh</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>Ai-xợ-bai-gianh</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>Nước Cộng Hoà Ai-xợ-bai-gianh</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>Bô-xni-a và Hẻ-xê-gô-vi-na</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>Nước Cộng Hoà Bô-xni-a và Hẻ-xê-gô-vi-na</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>Bă-ba-đôxợ</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>Bang-la-đesợ</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>Nước Cộng Hoà Nhân Dân Bang-la-đesợ</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>Bỉ</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>Vương quốc Bỉ</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>Buốc-khi-na Pha-xô</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>Bua-ga-ri</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>Nước Cộng Hoà Bua-ga-ri</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>Ba-rainh</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>Vương Quốc Ba-rainh</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>Bu-run-Ä‘i</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>Cộng hoà Bu-run-đi</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>Bê-ninh</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>Cộng hoà Bê-ninh</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>Saint Barthélemy</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>Be-mu-Ä‘a</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>Bợru-này Đa-ru-xa-làm</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>Bô-li-vi-a, Quốc gia Đa Dân tộc</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>Quốc gia Đa Dân tộc Bô-li-vi-a</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bông-Ne, Xin E-u-xờ-ta-ti-tút và Xa-ba</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>Bông-Ne, Xin E-u-xờ-ta-ti-tút và Xa-ba</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>Bra-xin</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>Cộng hoà Liên bang Bra-xin</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>Ba-ha-ma</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>Liên bang Ba-ha-ma</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>Bu-thănh</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>Vương Quốc Bu-thănh</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>Quần đảo Bu-vê</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>Bốt-xoă-na</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>Nước Cộng Hoà Bốt-xoă-na</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>Be-la-ruxợ</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>Nước Cộng Hoà Be-la-ruxợ</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>Bê-li-xê</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>Ca-na-Ä‘a</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>Quần đảo Co-co-xợ (Khi-lịng)</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>Cộng hoà Dân chủ Công-gô</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>Nước Cộng Hoà Trung Phi</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>Công-gô</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>Cộng hoà Công-gô</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>Thụy Sĩ</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>Liên Bang Thụy Sĩ</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>Cốt đi-vouă</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>Cộng Hoà Cốt đi-vouă</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>Quần đảo Khu-khợ</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>Chi-lê</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>Cộng hoà Chi-lê</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>Ca-mơ-runh</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>Nước Cộng Hoà Ca-mơ-runh</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>Trung Quốc</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>Nước Cộng Hoà Nhân Dân Trung Quốc</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>Cô-lôm-bi-a</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>Cộng hoà Cô-lôm-bi-a</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>Cốt-x-tha Ri-ca</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>Cộng hoà Cốt-x-tha Ri-ca</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>Cu-ba</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>Cộng hoà Cu-ba</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>Republic of Cabo Verde</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>Cu-ra-cao</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>Cu-ra-cao</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>Đảo Kh-ri-xợ-mà-xợ</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>Síp</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>Cộng hoà Síp</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>Cộng hoà Séc</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>Đức</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>Cộng hoà Liên bang Đức</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>Gi-bu-ti</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>Cộng hoà Gi-bu-ti</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>Đan Mạch</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>Vương Quốc Đan Mạch</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>Đô-mi-ni-cạ</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>Liên bang Đô-mi-ni-cạ</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>Cộng hoà Đô-mi-ni-cạ</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>An-giê-ri</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>Cộng Hoà Dân Chủ Nhân Dân An-giê-ri</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>Ê-cu-a-đoa</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>Cộng hoà Ê-cu-a-đoa</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>E-xợ-tô-ni-a</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>Nước Cộng Hoà E-xợ-tô-ni-a</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>Ai Cập</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>Cộng hoà A-rập Ai-cập</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>Tây Sa-ha-ra</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>Ê-ri-tơ-rê-a</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>Quốc gia Eritrea</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>Tây Ban Nha</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>Vương Quốc Tay Ban Nha</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>Ê-ti-ô-pi-a</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>Cộng hoà Nhân dân Liên bang Ê-ti-ô-pi-a</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>Phần Lan</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>Nước Cộng Hoà Phần Lan</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>Phi-gi</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>Cộng hoà Phi gi</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>Quần Đảo Phoa-kh-lận-đợ (Man-vi-na)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>Mi-khợ-rô-nê-xi-a, Liên Bang</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>Liên Bang Mi-khợ-rô-nê-xi-a</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>Quần đảo Pha-rô</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>Pháp</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>Cộng hoà Pháp</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>Ga-bon</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>Nước Cộng Hoà Ga-bon</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>Vương Quốc Anh Thống Nhất</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>Vương Quốc Thống Nhất Anh va Bắc Ái Nhĩ Lan</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>Gợ-rê-na-đa</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>Gi-oa-gi-a</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>Ghi-a-na Pháp</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>Gơnh-xị</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>Ga-na</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>Cộng hoà Ga-na</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>Gi-boa-tha</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>Đảo Băng</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>Găm-bi-a</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>Republic of the Gambia</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>Ghi-nê</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>Cộng hoà Ghi-nê</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>Gu-a-Ä‘e-lup</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>Ghi-nê Xích Đạo</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>Nước Cộng Hoà Ghi-nê Xích Đạo</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>Hy Lạp</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>Nước Cộng Hoà Hy Lạp</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>Nam Gi-oa-gi-a va Nam Quần Đảo Xan-oui-chợ</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>Gua-tê-ma-la</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>Cộng hoà Gua-tê-ma-la</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>Gu-ăm</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>Ghi-nê Bi-xau</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>Nước Cộng Hoà Ghi-nê Bi-xau</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>Guy-a-na</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>Cộng hoà Guy-a-na</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>Hông Kông</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>Miền Quản Lý Đặc Biệt Hông Kông của Trung Quốc</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>Đảo He-ợ-đợ và Quần Đảo Mợc-đo-nậ-đợ</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>Hôn-đu-ra-xợ</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>Nước Cộng Hoà Hôn-đu-ra-xợ</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>Cợ-rô-a-ti-a</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>Nước Cộng Hoà Cợ-rô-a-ti-a</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>Ha-i-ti</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>Cộng hoà Ha-i-ti</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>Hun-ga-ri</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>Hun-ga-ri</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>Nam DÆ°Æ¡ng</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>Cộng hoà Nam Dương</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>Ái Nhĩ Lan</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>Do Thái</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>Quốc Gia Do Thái</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>Đảo Man</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>Ấn-độ</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>Cộng hoà Ấn-độ</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>Miền Đại Dương Ấn-độ Anh</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>I-rắc</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>Cộng hoà I-rắc</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>Ba Tư, Cộng hoà Hồi giáo</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>Cộng hoà Hồi giáo Ba Tư</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>Băng Đảo</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>Nước Cộng Hoà Băng Đảo</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>Ý</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>Nước Cộng Hoà Ý</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>Giơ-xị</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>Gia-mê-ca</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>Gi-oa-Ä‘anh</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>Vương Quốc Ha-se-mai-th Gi-oa-đanh</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>Nhật</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>Khi-ni-a</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>Cộng hoà Khi-nia</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>Khư-rơ-gư-xtanh</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>Nước Cộng Hoà Khư-rơ-gư-xtanh</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>Căm Bốt</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>Vương Quốc Căm Bốt</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>Ki-ri-ba-ti</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>Cộng hoà Ki-ri-ba-ti</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>Cô-mô-rô-xợ</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>Liên Bang Cô-mô-rô-xợ</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>Xan-kít và Nê-vi</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>Bắc Hàn, Cộng hoà Nhân dân Dân chủ</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>Cộng hoà Nhân dân Dân chủ Bắc Hàn</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>Cộng hoà Nam Hàn</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>Cu-ouai-thợ</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>Quốc Gia Cu-ouai-thợ</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>Quần đảo Cay-man</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>Kha-xa-kh-x-thanh</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>Nước Cộng Hoà Kha-xa-kh-x-thanh</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>Cộng hoà Nhân dân Dân chủ Lào</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>Le-ba-non</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>Nước Cộng Hoà Le-ba-non</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>Xan Lu-xi</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>Likh-ten-xtainh</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>Chức Vương Likh-ten-xtainh</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>Tích Lan</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>Cộng Hoà Xã hội Nhân Dân Tích Lan</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>Li-bê-ri-a</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>Cộng hoà Li-bê-ri-a</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>Lê-xô-thô</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>Vương quốc Lê-xô-thô</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>Li-tu-a-ni-a</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>Cộng hoà Li-tu-a-ni-a</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>Lục Xâm Bảo</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>Đất công tước trên Lục Xâm Bảo</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>Lát-vi-a</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>Cộng hoà Lát-vi-a</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>Li-bi</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>Li-bi</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>Mo-ro-cô</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>Vương Quốc Mo-ro-cô</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>Mo-na-cô</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>Chức Vương Mo-na-cô</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>Nước Cộng Hoà Mổ-đô-vạ</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>Cộng hoà Moa-đô-va</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>Mon-te-nê-gợ-rô</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>Mon-te-nê-gợ-rô</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>Saint Martin (vùng Pháp)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>Ma-đa-ga-xợ-ca</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>Nước Cộng Hoà Ma-đa-ga-xợ-ca</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>Quần Đảo Ma-san</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>Nước Cộng Hoà Quần Đảo Ma-san</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>Republic of North Macedonia</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>Ma-li</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>Cộng hoà Ma-li</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>Miến Điện</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>Cộng hoà Miến Điện</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>Mông Cổ</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>Ma-cao</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>Miền Quản Lý Đặc Biệt Ma-cao của Trung Quốc</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>Bắc Quần Đảo Ma-ri-a-na</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>Liên Bang Bắc Quần Đảo Ma-ri-a-na</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>Ma-thi-ni-khợ</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>Mô-ri-ta-ni-a</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>Cộng hoà Hồi giáo Mô-ri-ta-ni-a</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>Mon-xe-rạc</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>Moa-ta</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>Cộng hoà Moa-ta</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>Mô-ri-sơ-xợ</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>Nước Cộng Hoà Mô-ri-sơ-xợ</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>Mal-đi-vợx</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>Cộng hoà Mal-đi-vợx</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>Ma-la-uy</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>Cộng hoà Ma-la-uy</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>Mê-hi-cô</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>Liên Bang Mê-hi-cô</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>Ma-lai-xi-a</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>Mô-xam-bí-khợ</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>Nước Cộng Hoà Mô-xam-bí-khợ</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>Na-mi-bi-a</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>Cộng hoà Na-mi-bi-a</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>Niu Ca-lê-đô-ni-a</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>Ni-gie</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>Nước Cộng Hoà Ni-gie</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>Đảo Noa-phọ-khợ</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>Ni-giê-ri-a</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>Cộng hoà Liên bang Ni-giê-ri-a</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>Ni-ca-ra-gua</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>Cộng hoà Ni-ca-ra-gua</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>Hoà Lan</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>Vương Quốc Hoà Lan</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>Na Uy</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>Vương Quốc Na Uy</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>Nê-pan</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>Cộng hoà Nhân dân Liên bang Ne-pan</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>Nau-ru</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>Cộng hoà Nau-ru</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>Ni-u-e</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>Ni-u-e</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>Niu Xi-lân</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>Ô-man</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>Ngôi vua Ô-man</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>Pa-na-ma</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>Nước Cộng Hoà Pa-na-ma</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>Pê-ru</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>Cộng hoà Pê-ru</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>Pô-li-nê-xi Pháp</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>Pa-pu-a Niu Ghi-nê</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>Quốc Gia Độc Lập Papua New Guinea</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>Phi-li-pi-nợ</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>Công hóa Phi-li-pi-nợ</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>Pa-ki-xợ-thănh</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>Nước Cộng Hoà Hồi Giáo Pa-ki-xợ-thănh</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>Ba Lan</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>Nước Cộng Hoà Ba Lan</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>Xan Pi-e và Mi-quê-lon</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>Pi-thợ-khenh</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>Pu-éc-thô Ri-cô</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>Palestine, quốc gia</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>Quốc gia Palestine</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>Bồ Đào Nha</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>Nước Cộng Hoà Bồ Đào Nha</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>Pa-lau</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>Nước Cộng Hoà Pa-lau</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>Pa-ra-guay</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>Nước Cộng Hoà Pa-ra-guay</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>Ca-tă</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>Quốc gia Ca-tă</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>Rê-u-ni-ợnh</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>Rô-ma-ni</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>Xéc-bi</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>Cộng hoà Xéc-bi</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>Liên Bang Nga</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>Ru-oanh-Ä‘a</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>Cộng hoà Ru-oanh-đa</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>A-rập Xau-đi</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>Vương quốc A-rập Xau-đi</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>Quần đảo Xô-lô-mông</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>Xây-sen</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>Cộng hoà Xây-sen</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>Xu-Ä‘anh</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>Nước Cộng Hoà Xu-đanh</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>Thuỵ Điển</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>Vương quốc Thuỵ Điển</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>Xin-ga-po</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>Cộng hoà Xin-ga-po</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>Xan He-lê-na, A-xen-siónh và Tợ-rí-x-tan đa Cun-ha</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>Xlô-ven</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>Cộng hoà Xlô-ven</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>Xợ-van-bat và Ian-may-en</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>Xlô-vác</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>Cộng hoà Xlô-vác</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>Xi-ê-ra Lê-ô-nê</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>Nước Cộng Hoà Xi-ê-ra Lê-ô-nê</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>Xan Ma-ri-nô</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>Cộng hoà Xan Ma-ri-nô</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>Xê-nê-gan</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>Cộng hoà Xê-nê-gan</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>Xo-ma-li</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>Cộng hoà Liên bang Xo-ma-li</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>Xu-ri-na-me</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>Nước Cộng Hoà Xu-ri-na-me</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>Nam Xu-đăng</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>Nước Cộng Hoà Nam Xu-đăng</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>Xao Tô-mê và Pợ-rin-xi-pê</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>Nước Cộng Hoà Nhân Dân Xao Tô-mê và Pợ-rin-xi-pê</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>En-xan-va-Ä‘oa</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>Nước Cộng Hoà En-xan-va-đoa</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Xin Mác-Ten (vùng Hà Lan)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>Xin Mác-Ten (vùng Hà Lan)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>Cộng hoà A-rập Xi-ri-a</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>Kingdom of Eswatini</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>Quần Đảo Tuốc và Cai-cox</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>Chê-đ</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>Nước Cộng Hoà Chê-đ</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>Miền Nam Pháp</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>Tô-gô</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>Cộng hoà Tô-gô</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>Thái Lan</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>Vương Quốc Thái Lan</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>Tha-gi-ki-xthanh</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>Nước Cộng Hoà Tha-gi-ki-xthanh</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>To-ke-lau</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>Thi-moa Le-xợ-te</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>Nước Cộng Hoà Dân Chủ Thi-moa Le-xợ-te</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>Tuốc-mê-ni-xtanh</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>Tu-ni-xi-a</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>Cộng hoà Tu-ni-xi-a</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>Tông-ga</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>Vương quốc Tông-ga</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>Trinh-i-đat và To-ba-gô</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>Cộng hoà Trinh-i-đat và To-ba-gô</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>Tu-va-lu</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Đài Loan, Tỉnh Trung Quốc</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>Đài Loan, Tỉnh Trung Quốc</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>Nước Cộng Hoà Thống Nhất Than-xa-ni-a</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>Nước Cộng Hoà Thống Nhất Than-xa-ni-a</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>U-cờ-rai-na</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>U-gan-Ä‘a</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>Cộng hoà U-gan-đa</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>Quần Đảo ở xa nhỏ Mỹ</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>Mỹ</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>Mỹ</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>U-ru-guay</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>Cộng hoà Đông U-ru-guay</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>U-xợ-bê-khi-xtanh</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>Nước Cộng Hoà U-xợ-bê-khi-xtanh</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>Toà Thánh (Bang Thành Phố Va-ti-canh)</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>Xan Vinh-xen và Gou-en-a-đinh</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>Nước Cộng Hoà Bo-li-va-ri Vê-nê-xu-ê-la</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>Nước Cộng Hoà Bo-li-va-ri Vê-nê-xu-ê-la</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>Quần Đảo Vơ-chin Anh</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>Quần Đảo Vơ-chin Anh</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>Quần Đảo Vơ-chin Mỹ</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>Quần Đảo Vơ-chin Mỹ</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>Việt Nam</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>Nước Cộng Hoà Xã Hội Việt Nam</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>Va-nu-a-tu</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>Cộng hoà Va-nu-a-tu</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>Oua-li-xợ va Phu-tu-na</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>Xa-mô-a</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>Quốc Gia Độc Lập Xa-mô-a</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>Y-ê-men</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>Cộng hoà Y-ê-men</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>May-o-thợ</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>Nam Phi</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>Cộng hoà Nam Phi</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>Xam-bi-a</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>Nước Cộng Hoà Xam-bi-a</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>Xim-ba-bu-ê</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>Nước Cộng Hoà Xim-ba-bu-ê</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/zh-CN.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/zh-CN.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..bb3d26d7c9e0ebb4eaca4d195b6a74453d038298
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/zh-CN.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="zh-CN" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>安道尔</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>安道尔公国</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>阿联酋</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>阿富汗</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>阿富汗伊斯兰共和国</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>安提瓜和巴布达</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>安圭拉</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>阿尔巴尼亚</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>阿尔巴尼亚共和国</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>亚美尼亚</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>亚美尼亚共和国</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>安哥拉</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>安哥拉共和国</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>南极洲</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>阿根廷</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>阿根廷共和国</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>美属萨摩亚</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>奥地利</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>奥地利共和国</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>澳大利亚</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>阿鲁巴</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>奥兰群岛</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>阿塞拜疆</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>阿塞拜疆共和国</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>波斯尼亚和黑塞哥维那</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>波斯尼亚和黑塞哥维那共和国</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>巴巴多斯</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>孟加拉</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>孟加拉人民共和国</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>比利时</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>比利时王国</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>布基纳法索</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>保加利亚</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>保加利亚共和国</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>å·´æž—</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>巴林王国</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>布隆迪</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>布隆迪共和国</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>贝宁</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>贝宁共和国</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>圣巴泰勒米岛</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>百慕大</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>文莱</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>玻利维亚共和国</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>玻利维亚共和国</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>博奈尔、圣尤斯特歇斯岛和萨巴</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>博奈尔、圣尤斯特歇斯岛和萨巴</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>巴西</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>巴西联邦共和国</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>巴哈马</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>巴哈马国</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>不丹</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>不丹王国</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>布维群岛</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>博兹瓦那</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>博兹瓦那共和国</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>白俄罗斯</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>白俄罗斯共和国</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>伯利兹</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>加拿大</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>科科斯群岛</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>刚果民主共和国</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>中非</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>刚果</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>刚果共和国</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>瑞士</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>瑞士联邦</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>科特迪瓦</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>科特迪瓦共和国</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>库克群岛</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>智利</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>智利共和国</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>喀麦隆</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>喀麦隆共和国</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>中国</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>中华人民共和国</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>哥伦比亚</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>哥伦比亚共和国</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>哥斯达黎加</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>哥斯达黎加共和国</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>古巴</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>古巴共和国</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>佛得角</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>佛得角共和国</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>库拉索</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>库拉索</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>圣诞岛</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>塞浦路斯</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>塞浦路斯共和国</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>捷克</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>捷克</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>德国</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>德意志联邦共和国</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>吉布提</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>吉布提共和国</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>丹麦</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>丹麦王国</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>多米尼克</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>米尼克共和国</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>多米尼加共和国</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>阿尔及利亚</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>阿尔及利亚人民民主共和国</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>厄瓜多尔</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>厄瓜多尔共和国</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>爱沙尼亚</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>爱沙尼亚共和国</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>埃及</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>阿拉伯埃及共和国</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>西撒哈拉</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>厄立特里亚</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>厄立特里亚国</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>西班牙</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>西班牙王国</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>埃塞俄比亚</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>埃塞俄比亚联邦民主共和国</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>芬兰</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>芬兰共和国</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>斐济</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>斐济共和国</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>福克兰群岛(马尔维纳斯)</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>密克罗尼西亚</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>密克罗尼西亚联邦</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>法罗群岛</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>法国</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>法兰西共和国</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>加蓬</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>加蓬共和国</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>英国</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>大不列颠及北爱尔兰联合王国</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>格林纳达</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>格鲁吉亚</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>法属圭亚那</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>根西岛</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>加纳</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>加纳共和国</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>直布罗陀</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>格陵兰</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>冈比亚</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>冈比亚共和国</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>几内亚</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>几内亚共和国</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>瓜德罗普</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>赤道几内亚</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>赤道几内亚共和国</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>希腊</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>希腊共和国</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>南乔治亚岛和南桑德韦奇岛</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>瓜地马拉</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>瓜地马拉共和国</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>关岛</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>几内亚比绍</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>几内亚比绍共和国</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>圭亚那</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>圭亚那共和国</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>香港</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>中国香港特别行政区</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>赫德岛与麦克唐纳群岛</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>洪都拉斯</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>洪都拉斯共和国</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>克罗地亚</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>克罗地亚共和国</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>海地</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>海地共和国</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>匈牙利</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>匈牙利</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>印度尼西亚</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>印度尼西亚共和国</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>爱尔兰</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>以色列</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>以色列国</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>曼岛</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>印度</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>印度共和国</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>英属印度洋领地</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>伊拉克</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>伊拉克共和国</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>伊朗</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>伊朗伊斯兰共和国</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>冰岛</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>冰岛共和国</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>意大利</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>意大利共和国</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>泽西岛</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>牙买加</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>约旦</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>约旦哈希姆王国</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>日本</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>肯尼亚</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>肯尼亚共和国</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>吉尔吉斯坦</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>吉尔吉斯共和国</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>柬埔塞</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>柬埔塞王国</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>基里巴斯</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>基里巴斯共和国</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>科摩罗</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>科摩罗联邦</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>圣基茨和尼维斯</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>朝鲜民主主义人民共和国</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>朝鲜民主主义人民共和国</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>大韩民国</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>科威特</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>科威特国</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>开曼群岛</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>哈萨克斯坦</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>哈萨克斯坦共和国</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>老挝人民民主共和国</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>黎巴嫩</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>黎巴嫩共和国</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>圣路西亚</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>列支敦士登</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>列支敦士登公国</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>斯里兰卡</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>斯里兰卡民主社会主义共和国</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>利比里亚</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>利比里亚共和国</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>莱索托</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>莱索托王国</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>立陶宛</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>立陶宛共和国</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>卢森堡</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>卢森堡大公国</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>拉脱维亚</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>拉脱维亚共和国</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>利比亚</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>利比亚</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>摩洛哥</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>摩洛哥王国</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>摩纳哥</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>摩纳哥公国</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>摩尔多瓦共和国</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>摩尔多瓦共和国</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>黑山</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>黑山</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>法属圣马丁</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>马达加斯加</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>马达加斯加共和国</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>马绍尔群岛</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>马绍尔群岛共和国</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>北马其顿</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>北马其顿共和国</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>马里</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>马里共和国</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>缅甸</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>缅甸联邦共和国</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>蒙古</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>澳门</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>中国澳门特别行政区</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>北马里亚纳群岛</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>北马里亚纳群岛自由联邦</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>马提尼克</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>毛里塔尼亚</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>毛里塔尼亚伊斯兰共和国</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>蒙塞拉特岛</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>马尔他</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>马尔他共和国</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>毛里求斯</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>毛里求斯共和国</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>马尔代夫</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>马尔代夫共和国</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>马拉维</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>马拉维共和国</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>墨西哥</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>墨西哥合众国</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>马来西亚</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>莫桑比克</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>莫桑比克共和国</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>纳米比亚</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>纳米比亚共和国</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>新喀里多尼亚</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>尼日尔</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>尼日尔共和国</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>诺福克岛</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>尼日利亚</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>尼日利亚联邦共和国</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>尼加拉瓜</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>尼加拉瓜共和国</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>荷兰</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>荷兰王国</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>挪威</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>挪威王国</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>尼泊尔</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>尼泊尔联邦民主共和国</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>瑙鲁</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>瑙鲁共和国</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>纽埃</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>纽埃</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>新西兰</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>阿曼</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>阿曼苏丹国</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>巴拿马</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>巴拿马共和国</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>秘鲁</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>秘鲁共和国</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>法属玻利尼西亚</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>巴布亚新几内亚</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>巴布亚新几内亚独立国</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>菲律宾</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>菲律宾共和国</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>巴基斯坦</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>巴基斯坦伊斯兰共和国</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>波兰</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>波兰共和国</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>圣皮埃尔和密克隆</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>皮特克恩</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>波多黎各</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>巴勒斯坦</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>巴勒斯坦国</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>葡萄牙</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>葡萄牙共和国</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>帕劳</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>帕劳共和国</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>巴拉圭</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>巴拉圭共和国</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>卡塔尔</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>卡塔尔国</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>留尼汪</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>罗马尼亚</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>塞尔维亚</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>塞尔维亚共和国</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>ä¿„ç½—æ–¯</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>卢旺达</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>卢旺达共和国</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>沙特阿拉伯</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>沙特阿拉伯王国</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>所罗门群岛</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>塞舌尔</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>塞舌尔共和国</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>苏丹</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>苏丹共和国</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>ç‘žå…¸</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>瑞典王国</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>新加坡</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>新加坡共和国</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>圣赫勒拿-阿森松-特里斯坦达库尼亚</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>斯洛文尼亚</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>斯洛文尼亚共和国</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>斯瓦尔巴特和扬马延岛</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>斯洛伐克</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>斯洛伐克共和国</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>塞拉利昂</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>塞拉利昂共和国</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>圣马力诺市</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>圣马力诺共和国</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>塞内加尔</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>塞内加尔共和国</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>索马里</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>索马里联邦共和国</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>苏里南</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>苏里南共和国</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>南苏丹</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>南苏丹共和国</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>圣多美和普林西比</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>圣多美和普林西比民主共和国</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>萨尔瓦多</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>萨尔瓦多共和国</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>荷属圣马丁</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>荷属圣马丁</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>叙利亚</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>斯威士兰</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>斯威士兰王国</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>特克斯和凯科斯群岛</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>乍得</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>乍得共和国</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>法属南半球领地</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>多哥</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>多哥共和国</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>泰国</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>泰王国</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>塔吉克斯坦</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>塔吉克斯坦共和国</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>托克劳</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>东帝汶</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>东帝汶民主共和国</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>土库曼斯坦</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>突尼斯</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>突尼斯共和国</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>汤加</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>汤加王国</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>特里尼达和多巴哥</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>特里尼达和多巴哥共和国</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>图瓦卢</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>中国台湾省</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>中国台湾省</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>坦桑尼亚</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>坦桑尼亚联合共和国</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>乌克兰</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>乌干达</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>乌干达共和国</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>美国本土外小岛屿</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>美国</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>美利坚合众国</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>乌拉圭</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>乌拉圭东岸共和国</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>乌兹别克斯坦</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>乌兹别克斯坦共和国</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>梵地冈</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>圣文森特和格林纳丁斯</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>委内瑞拉玻利瓦尔共和国</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>委内瑞拉玻利瓦尔共和国</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>英属维尔京群岛</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>英属维尔京群岛</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>美属维尔京群岛</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>美属维京群岛</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>越南</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>越南社会主义共和国</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>瓦努阿图</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>瓦努阿图共和国</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>瓦利斯和富图纳</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>萨摩亚</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>萨摩亚独立国</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>也门</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>也门共和国</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>马约特</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>南非</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>南非共和国</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>赞比亚</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>赞比亚共和国</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>津巴布韦</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>津巴布韦共和国</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Resources/Private/Language/Iso/zh-HK.countries.xlf b/typo3/sysext/core/Resources/Private/Language/Iso/zh-HK.countries.xlf
new file mode 100644
index 0000000000000000000000000000000000000000..0940c7f89d14c7bd7a4158a278f50818c4e24d53
--- /dev/null
+++ b/typo3/sysext/core/Resources/Private/Language/Iso/zh-HK.countries.xlf
@@ -0,0 +1,1691 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
+  <file source-language="en" target-language="zh-HK" datatype="plaintext" original="EXT:core/Resources/Private/Language/countries.xlf" product-name="typo3/cms-core">
+    <body>
+      <trans-unit id="AD.name" resname="AD.name" approved="yes">
+        <source>Andorra</source>
+        <target>安道爾</target>
+      </trans-unit>
+      <trans-unit id="AD.official_name" resname="AD.official_name" approved="yes">
+        <source>Principality of Andorra</source>
+        <target>安道爾公國</target>
+      </trans-unit>
+      <trans-unit id="AE.name" resname="AE.name" approved="yes">
+        <source>United Arab Emirates</source>
+        <target>阿拉伯聯合酋長國</target>
+      </trans-unit>
+      <trans-unit id="AF.name" resname="AF.name" approved="yes">
+        <source>Afghanistan</source>
+        <target>阿富汗</target>
+      </trans-unit>
+      <trans-unit id="AF.official_name" resname="AF.official_name" approved="yes">
+        <source>Islamic Republic of Afghanistan</source>
+        <target>阿富汗伊斯蘭共和國</target>
+      </trans-unit>
+      <trans-unit id="AG.name" resname="AG.name" approved="yes">
+        <source>Antigua and Barbuda</source>
+        <target>安提瓜和巴布達</target>
+      </trans-unit>
+      <trans-unit id="AI.name" resname="AI.name" approved="yes">
+        <source>Anguilla</source>
+        <target>安圭拉島</target>
+      </trans-unit>
+      <trans-unit id="AL.name" resname="AL.name" approved="yes">
+        <source>Albania</source>
+        <target>阿爾巴尼亞</target>
+      </trans-unit>
+      <trans-unit id="AL.official_name" resname="AL.official_name" approved="yes">
+        <source>Republic of Albania</source>
+        <target>阿爾巴尼亞共和國</target>
+      </trans-unit>
+      <trans-unit id="AM.name" resname="AM.name" approved="yes">
+        <source>Armenia</source>
+        <target>亞美尼亞</target>
+      </trans-unit>
+      <trans-unit id="AM.official_name" resname="AM.official_name" approved="yes">
+        <source>Republic of Armenia</source>
+        <target>亞美尼亞共和國</target>
+      </trans-unit>
+      <trans-unit id="AO.name" resname="AO.name" approved="yes">
+        <source>Angola</source>
+        <target>安哥拉</target>
+      </trans-unit>
+      <trans-unit id="AO.official_name" resname="AO.official_name" approved="yes">
+        <source>Republic of Angola</source>
+        <target>安哥拉共和國</target>
+      </trans-unit>
+      <trans-unit id="AQ.name" resname="AQ.name" approved="yes">
+        <source>Antarctica</source>
+        <target>南極洲</target>
+      </trans-unit>
+      <trans-unit id="AR.name" resname="AR.name" approved="yes">
+        <source>Argentina</source>
+        <target>阿根廷</target>
+      </trans-unit>
+      <trans-unit id="AR.official_name" resname="AR.official_name" approved="yes">
+        <source>Argentine Republic</source>
+        <target>阿根廷共和國</target>
+      </trans-unit>
+      <trans-unit id="AS.name" resname="AS.name" approved="yes">
+        <source>American Samoa</source>
+        <target>美屬薩摩亞</target>
+      </trans-unit>
+      <trans-unit id="AT.name" resname="AT.name" approved="yes">
+        <source>Austria</source>
+        <target>奧地利</target>
+      </trans-unit>
+      <trans-unit id="AT.official_name" resname="AT.official_name" approved="yes">
+        <source>Republic of Austria</source>
+        <target>奧地利共和國</target>
+      </trans-unit>
+      <trans-unit id="AU.name" resname="AU.name" approved="yes">
+        <source>Australia</source>
+        <target>澳大利亞</target>
+      </trans-unit>
+      <trans-unit id="AW.name" resname="AW.name" approved="yes">
+        <source>Aruba</source>
+        <target>阿盧巴島</target>
+      </trans-unit>
+      <trans-unit id="AX.name" resname="AX.name" approved="yes">
+        <source>Ã…land Islands</source>
+        <target>奧蘭羣島</target>
+      </trans-unit>
+      <trans-unit id="AZ.name" resname="AZ.name" approved="yes">
+        <source>Azerbaijan</source>
+        <target>亞塞拜彊</target>
+      </trans-unit>
+      <trans-unit id="AZ.official_name" resname="AZ.official_name" approved="yes">
+        <source>Republic of Azerbaijan</source>
+        <target>阿塞拜疆共和國</target>
+      </trans-unit>
+      <trans-unit id="BA.name" resname="BA.name" approved="yes">
+        <source>Bosnia and Herzegovina</source>
+        <target>波斯尼亞和黑塞哥維那</target>
+      </trans-unit>
+      <trans-unit id="BA.official_name" resname="BA.official_name" approved="yes">
+        <source>Republic of Bosnia and Herzegovina</source>
+        <target>波斯尼亞和黑塞哥維那共和國</target>
+      </trans-unit>
+      <trans-unit id="BB.name" resname="BB.name" approved="yes">
+        <source>Barbados</source>
+        <target>巴巴多斯</target>
+      </trans-unit>
+      <trans-unit id="BD.name" resname="BD.name" approved="yes">
+        <source>Bangladesh</source>
+        <target>孟加拉</target>
+      </trans-unit>
+      <trans-unit id="BD.official_name" resname="BD.official_name" approved="yes">
+        <source>People's Republic of Bangladesh</source>
+        <target>孟加拉人民共和國</target>
+      </trans-unit>
+      <trans-unit id="BE.name" resname="BE.name" approved="yes">
+        <source>Belgium</source>
+        <target>比利時</target>
+      </trans-unit>
+      <trans-unit id="BE.official_name" resname="BE.official_name" approved="yes">
+        <source>Kingdom of Belgium</source>
+        <target>比利時王國</target>
+      </trans-unit>
+      <trans-unit id="BF.name" resname="BF.name" approved="yes">
+        <source>Burkina Faso</source>
+        <target>布基納法索</target>
+      </trans-unit>
+      <trans-unit id="BG.name" resname="BG.name" approved="yes">
+        <source>Bulgaria</source>
+        <target>保加利亞</target>
+      </trans-unit>
+      <trans-unit id="BG.official_name" resname="BG.official_name" approved="yes">
+        <source>Republic of Bulgaria</source>
+        <target>保加利亞共和國</target>
+      </trans-unit>
+      <trans-unit id="BH.name" resname="BH.name" approved="yes">
+        <source>Bahrain</source>
+        <target>å·´æž—</target>
+      </trans-unit>
+      <trans-unit id="BH.official_name" resname="BH.official_name" approved="yes">
+        <source>Kingdom of Bahrain</source>
+        <target>巴林王國</target>
+      </trans-unit>
+      <trans-unit id="BI.name" resname="BI.name" approved="yes">
+        <source>Burundi</source>
+        <target>布隆迪</target>
+      </trans-unit>
+      <trans-unit id="BI.official_name" resname="BI.official_name" approved="yes">
+        <source>Republic of Burundi</source>
+        <target>布隆迪共和國</target>
+      </trans-unit>
+      <trans-unit id="BJ.name" resname="BJ.name" approved="yes">
+        <source>Benin</source>
+        <target>貝寧</target>
+      </trans-unit>
+      <trans-unit id="BJ.official_name" resname="BJ.official_name" approved="yes">
+        <source>Republic of Benin</source>
+        <target>貝寧共和國</target>
+      </trans-unit>
+      <trans-unit id="BL.name" resname="BL.name" approved="yes">
+        <source>Saint Barthélemy</source>
+        <target>聖巴泰勒米</target>
+      </trans-unit>
+      <trans-unit id="BM.name" resname="BM.name" approved="yes">
+        <source>Bermuda</source>
+        <target>百慕達</target>
+      </trans-unit>
+      <trans-unit id="BN.name" resname="BN.name" approved="yes">
+        <source>Brunei Darussalam</source>
+        <target>汶萊</target>
+      </trans-unit>
+      <trans-unit id="BO.name" resname="BO.name" approved="yes">
+        <source>Bolivia, Plurinational State of</source>
+        <target>玻利維亞多民族國</target>
+      </trans-unit>
+      <trans-unit id="BO.official_name" resname="BO.official_name" approved="yes">
+        <source>Plurinational State of Bolivia</source>
+        <target>玻利維亞多民族國</target>
+      </trans-unit>
+      <trans-unit id="BQ.name" resname="BQ.name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>荷蘭加勒比區</target>
+      </trans-unit>
+      <trans-unit id="BQ.official_name" resname="BQ.official_name" approved="yes">
+        <source>Bonaire, Sint Eustatius and Saba</source>
+        <target>荷蘭加勒比區</target>
+      </trans-unit>
+      <trans-unit id="BR.name" resname="BR.name" approved="yes">
+        <source>Brazil</source>
+        <target>巴西</target>
+      </trans-unit>
+      <trans-unit id="BR.official_name" resname="BR.official_name" approved="yes">
+        <source>Federative Republic of Brazil</source>
+        <target>巴西聯邦共和國</target>
+      </trans-unit>
+      <trans-unit id="BS.name" resname="BS.name" approved="yes">
+        <source>Bahamas</source>
+        <target>巴哈馬</target>
+      </trans-unit>
+      <trans-unit id="BS.official_name" resname="BS.official_name" approved="yes">
+        <source>Commonwealth of the Bahamas</source>
+        <target>巴哈馬聯邦</target>
+      </trans-unit>
+      <trans-unit id="BT.name" resname="BT.name" approved="yes">
+        <source>Bhutan</source>
+        <target>不丹</target>
+      </trans-unit>
+      <trans-unit id="BT.official_name" resname="BT.official_name" approved="yes">
+        <source>Kingdom of Bhutan</source>
+        <target>不丹王國</target>
+      </trans-unit>
+      <trans-unit id="BV.name" resname="BV.name" approved="yes">
+        <source>Bouvet Island</source>
+        <target>波維特島</target>
+      </trans-unit>
+      <trans-unit id="BW.name" resname="BW.name" approved="yes">
+        <source>Botswana</source>
+        <target>博茨瓦納</target>
+      </trans-unit>
+      <trans-unit id="BW.official_name" resname="BW.official_name" approved="yes">
+        <source>Republic of Botswana</source>
+        <target>博茨瓦納共和國</target>
+      </trans-unit>
+      <trans-unit id="BY.name" resname="BY.name" approved="yes">
+        <source>Belarus</source>
+        <target>白俄羅斯</target>
+      </trans-unit>
+      <trans-unit id="BY.official_name" resname="BY.official_name" approved="yes">
+        <source>Republic of Belarus</source>
+        <target>白俄羅斯共和國</target>
+      </trans-unit>
+      <trans-unit id="BZ.name" resname="BZ.name" approved="yes">
+        <source>Belize</source>
+        <target>伯利兹</target>
+      </trans-unit>
+      <trans-unit id="CA.name" resname="CA.name" approved="yes">
+        <source>Canada</source>
+        <target>加拿大</target>
+      </trans-unit>
+      <trans-unit id="CC.name" resname="CC.name" approved="yes">
+        <source>Cocos (Keeling) Islands</source>
+        <target>可可斯羣島</target>
+      </trans-unit>
+      <trans-unit id="CD.name" resname="CD.name" approved="yes">
+        <source>Congo, The Democratic Republic of the</source>
+        <target>剛果民主共和國</target>
+      </trans-unit>
+      <trans-unit id="CF.name" resname="CF.name" approved="yes">
+        <source>Central African Republic</source>
+        <target>中非共和國</target>
+      </trans-unit>
+      <trans-unit id="CG.name" resname="CG.name" approved="yes">
+        <source>Congo</source>
+        <target>剛果</target>
+      </trans-unit>
+      <trans-unit id="CG.official_name" resname="CG.official_name" approved="yes">
+        <source>Republic of the Congo</source>
+        <target>剛果共和國</target>
+      </trans-unit>
+      <trans-unit id="CH.name" resname="CH.name" approved="yes">
+        <source>Switzerland</source>
+        <target>瑞士</target>
+      </trans-unit>
+      <trans-unit id="CH.official_name" resname="CH.official_name" approved="yes">
+        <source>Swiss Confederation</source>
+        <target>瑞士聯邦</target>
+      </trans-unit>
+      <trans-unit id="CI.name" resname="CI.name" approved="yes">
+        <source>Côte d'Ivoire</source>
+        <target>科特迪瓦</target>
+      </trans-unit>
+      <trans-unit id="CI.official_name" resname="CI.official_name" approved="yes">
+        <source>Republic of Côte d'Ivoire</source>
+        <target>科特迪瓦共和國</target>
+      </trans-unit>
+      <trans-unit id="CK.name" resname="CK.name" approved="yes">
+        <source>Cook Islands</source>
+        <target>科克羣島</target>
+      </trans-unit>
+      <trans-unit id="CL.name" resname="CL.name" approved="yes">
+        <source>Chile</source>
+        <target>智利</target>
+      </trans-unit>
+      <trans-unit id="CL.official_name" resname="CL.official_name" approved="yes">
+        <source>Republic of Chile</source>
+        <target>智利共和國</target>
+      </trans-unit>
+      <trans-unit id="CM.name" resname="CM.name" approved="yes">
+        <source>Cameroon</source>
+        <target>喀麥隆</target>
+      </trans-unit>
+      <trans-unit id="CM.official_name" resname="CM.official_name" approved="yes">
+        <source>Republic of Cameroon</source>
+        <target>喀麥隆共和國</target>
+      </trans-unit>
+      <trans-unit id="CN.name" resname="CN.name" approved="yes">
+        <source>China</source>
+        <target>中國</target>
+      </trans-unit>
+      <trans-unit id="CN.official_name" resname="CN.official_name" approved="yes">
+        <source>People's Republic of China</source>
+        <target>中華人民共和國</target>
+      </trans-unit>
+      <trans-unit id="CO.name" resname="CO.name" approved="yes">
+        <source>Colombia</source>
+        <target>哥倫比亞</target>
+      </trans-unit>
+      <trans-unit id="CO.official_name" resname="CO.official_name" approved="yes">
+        <source>Republic of Colombia</source>
+        <target>哥倫比亞共和國</target>
+      </trans-unit>
+      <trans-unit id="CR.name" resname="CR.name" approved="yes">
+        <source>Costa Rica</source>
+        <target>哥斯達黎加</target>
+      </trans-unit>
+      <trans-unit id="CR.official_name" resname="CR.official_name" approved="yes">
+        <source>Republic of Costa Rica</source>
+        <target>哥斯達黎加共和國</target>
+      </trans-unit>
+      <trans-unit id="CU.name" resname="CU.name" approved="yes">
+        <source>Cuba</source>
+        <target>古巴</target>
+      </trans-unit>
+      <trans-unit id="CU.official_name" resname="CU.official_name" approved="yes">
+        <source>Republic of Cuba</source>
+        <target>古巴共和國</target>
+      </trans-unit>
+      <trans-unit id="CV.name" resname="CV.name" approved="yes">
+        <source>Cabo Verde</source>
+        <target>佛得角</target>
+      </trans-unit>
+      <trans-unit id="CV.official_name" resname="CV.official_name" approved="yes">
+        <source>Republic of Cabo Verde</source>
+        <target>佛得角共和國</target>
+      </trans-unit>
+      <trans-unit id="CW.name" resname="CW.name" approved="yes">
+        <source>Curaçao</source>
+        <target>庫拉索</target>
+      </trans-unit>
+      <trans-unit id="CW.official_name" resname="CW.official_name" approved="yes">
+        <source>Curaçao</source>
+        <target>庫拉索</target>
+      </trans-unit>
+      <trans-unit id="CX.name" resname="CX.name" approved="yes">
+        <source>Christmas Island</source>
+        <target>聖誕島</target>
+      </trans-unit>
+      <trans-unit id="CY.name" resname="CY.name" approved="yes">
+        <source>Cyprus</source>
+        <target>賽浦路斯</target>
+      </trans-unit>
+      <trans-unit id="CY.official_name" resname="CY.official_name" approved="yes">
+        <source>Republic of Cyprus</source>
+        <target>賽浦路斯共和國</target>
+      </trans-unit>
+      <trans-unit id="CZ.name" resname="CZ.name" approved="yes">
+        <source>Czechia</source>
+        <target>捷克</target>
+      </trans-unit>
+      <trans-unit id="CZ.official_name" resname="CZ.official_name" approved="yes">
+        <source>Czech Republic</source>
+        <target>捷克共和國</target>
+      </trans-unit>
+      <trans-unit id="DE.name" resname="DE.name" approved="yes">
+        <source>Germany</source>
+        <target>德國</target>
+      </trans-unit>
+      <trans-unit id="DE.official_name" resname="DE.official_name" approved="yes">
+        <source>Federal Republic of Germany</source>
+        <target>德意志聯邦共和國</target>
+      </trans-unit>
+      <trans-unit id="DJ.name" resname="DJ.name" approved="yes">
+        <source>Djibouti</source>
+        <target>吉布提</target>
+      </trans-unit>
+      <trans-unit id="DJ.official_name" resname="DJ.official_name" approved="yes">
+        <source>Republic of Djibouti</source>
+        <target>吉布提共和國</target>
+      </trans-unit>
+      <trans-unit id="DK.name" resname="DK.name" approved="yes">
+        <source>Denmark</source>
+        <target>丹麥</target>
+      </trans-unit>
+      <trans-unit id="DK.official_name" resname="DK.official_name" approved="yes">
+        <source>Kingdom of Denmark</source>
+        <target>丹麥王國</target>
+      </trans-unit>
+      <trans-unit id="DM.name" resname="DM.name" approved="yes">
+        <source>Dominica</source>
+        <target>多米尼克</target>
+      </trans-unit>
+      <trans-unit id="DM.official_name" resname="DM.official_name" approved="yes">
+        <source>Commonwealth of Dominica</source>
+        <target>多米尼克國</target>
+      </trans-unit>
+      <trans-unit id="DO.name" resname="DO.name" approved="yes">
+        <source>Dominican Republic</source>
+        <target>多米尼加共和國</target>
+      </trans-unit>
+      <trans-unit id="DZ.name" resname="DZ.name" approved="yes">
+        <source>Algeria</source>
+        <target>阿爾及利亞</target>
+      </trans-unit>
+      <trans-unit id="DZ.official_name" resname="DZ.official_name" approved="yes">
+        <source>People's Democratic Republic of Algeria</source>
+        <target>阿爾及利亞民主人民共和國</target>
+      </trans-unit>
+      <trans-unit id="EC.name" resname="EC.name" approved="yes">
+        <source>Ecuador</source>
+        <target>厄瓜多爾</target>
+      </trans-unit>
+      <trans-unit id="EC.official_name" resname="EC.official_name" approved="yes">
+        <source>Republic of Ecuador</source>
+        <target>厄瓜多爾共和國</target>
+      </trans-unit>
+      <trans-unit id="EE.name" resname="EE.name" approved="yes">
+        <source>Estonia</source>
+        <target>愛沙尼亞</target>
+      </trans-unit>
+      <trans-unit id="EE.official_name" resname="EE.official_name" approved="yes">
+        <source>Republic of Estonia</source>
+        <target>愛沙尼亞共和國</target>
+      </trans-unit>
+      <trans-unit id="EG.name" resname="EG.name" approved="yes">
+        <source>Egypt</source>
+        <target>埃及</target>
+      </trans-unit>
+      <trans-unit id="EG.official_name" resname="EG.official_name" approved="yes">
+        <source>Arab Republic of Egypt</source>
+        <target>阿拉伯埃及共和國</target>
+      </trans-unit>
+      <trans-unit id="EH.name" resname="EH.name" approved="yes">
+        <source>Western Sahara</source>
+        <target>西撒哈拉</target>
+      </trans-unit>
+      <trans-unit id="ER.name" resname="ER.name" approved="yes">
+        <source>Eritrea</source>
+        <target>厄立特里亞</target>
+      </trans-unit>
+      <trans-unit id="ER.official_name" resname="ER.official_name" approved="yes">
+        <source>the State of Eritrea</source>
+        <target>厄立特里亞國</target>
+      </trans-unit>
+      <trans-unit id="ES.name" resname="ES.name" approved="yes">
+        <source>Spain</source>
+        <target>西班牙</target>
+      </trans-unit>
+      <trans-unit id="ES.official_name" resname="ES.official_name" approved="yes">
+        <source>Kingdom of Spain</source>
+        <target>西班牙王國</target>
+      </trans-unit>
+      <trans-unit id="ET.name" resname="ET.name" approved="yes">
+        <source>Ethiopia</source>
+        <target>埃塞俄比亞</target>
+      </trans-unit>
+      <trans-unit id="ET.official_name" resname="ET.official_name" approved="yes">
+        <source>Federal Democratic Republic of Ethiopia</source>
+        <target>埃塞俄比亞聯邦民主共和國</target>
+      </trans-unit>
+      <trans-unit id="FI.name" resname="FI.name" approved="yes">
+        <source>Finland</source>
+        <target>芬蘭</target>
+      </trans-unit>
+      <trans-unit id="FI.official_name" resname="FI.official_name" approved="yes">
+        <source>Republic of Finland</source>
+        <target>芬蘭共和國</target>
+      </trans-unit>
+      <trans-unit id="FJ.name" resname="FJ.name" approved="yes">
+        <source>Fiji</source>
+        <target>斐濟羣島</target>
+      </trans-unit>
+      <trans-unit id="FJ.official_name" resname="FJ.official_name" approved="yes">
+        <source>Republic of Fiji</source>
+        <target>斐濟共和國</target>
+      </trans-unit>
+      <trans-unit id="FK.name" resname="FK.name" approved="yes">
+        <source>Falkland Islands (Malvinas)</source>
+        <target>福克蘭羣島</target>
+      </trans-unit>
+      <trans-unit id="FM.name" resname="FM.name" approved="yes">
+        <source>Micronesia, Federated States of</source>
+        <target>密克羅尼西亞聯邦</target>
+      </trans-unit>
+      <trans-unit id="FM.official_name" resname="FM.official_name" approved="yes">
+        <source>Federated States of Micronesia</source>
+        <target>密克羅尼西亞聯邦</target>
+      </trans-unit>
+      <trans-unit id="FO.name" resname="FO.name" approved="yes">
+        <source>Faroe Islands</source>
+        <target>法羅羣島</target>
+      </trans-unit>
+      <trans-unit id="FR.name" resname="FR.name" approved="yes">
+        <source>France</source>
+        <target>法國</target>
+      </trans-unit>
+      <trans-unit id="FR.official_name" resname="FR.official_name" approved="yes">
+        <source>French Republic</source>
+        <target>法蘭西共和國</target>
+      </trans-unit>
+      <trans-unit id="GA.name" resname="GA.name" approved="yes">
+        <source>Gabon</source>
+        <target>加蓬</target>
+      </trans-unit>
+      <trans-unit id="GA.official_name" resname="GA.official_name" approved="yes">
+        <source>Gabonese Republic</source>
+        <target>加蓬共和國</target>
+      </trans-unit>
+      <trans-unit id="GB.name" resname="GB.name" approved="yes">
+        <source>United Kingdom</source>
+        <target>英國</target>
+      </trans-unit>
+      <trans-unit id="GB.official_name" resname="GB.official_name" approved="yes">
+        <source>United Kingdom of Great Britain and Northern Ireland</source>
+        <target>大不列顛及北愛爾蘭聯合王國</target>
+      </trans-unit>
+      <trans-unit id="GD.name" resname="GD.name" approved="yes">
+        <source>Grenada</source>
+        <target>格林納達</target>
+      </trans-unit>
+      <trans-unit id="GE.name" resname="GE.name" approved="yes">
+        <source>Georgia</source>
+        <target>格魯吉亞</target>
+      </trans-unit>
+      <trans-unit id="GF.name" resname="GF.name" approved="yes">
+        <source>French Guiana</source>
+        <target>法屬圭亞那</target>
+      </trans-unit>
+      <trans-unit id="GG.name" resname="GG.name" approved="yes">
+        <source>Guernsey</source>
+        <target>根息</target>
+      </trans-unit>
+      <trans-unit id="GH.name" resname="GH.name" approved="yes">
+        <source>Ghana</source>
+        <target>加納</target>
+      </trans-unit>
+      <trans-unit id="GH.official_name" resname="GH.official_name" approved="yes">
+        <source>Republic of Ghana</source>
+        <target>加納共和國</target>
+      </trans-unit>
+      <trans-unit id="GI.name" resname="GI.name" approved="yes">
+        <source>Gibraltar</source>
+        <target>直布羅陀</target>
+      </trans-unit>
+      <trans-unit id="GL.name" resname="GL.name" approved="yes">
+        <source>Greenland</source>
+        <target>格陵蘭</target>
+      </trans-unit>
+      <trans-unit id="GM.name" resname="GM.name" approved="yes">
+        <source>Gambia</source>
+        <target>岡比亞</target>
+      </trans-unit>
+      <trans-unit id="GM.official_name" resname="GM.official_name" approved="yes">
+        <source>Republic of the Gambia</source>
+        <target>岡比亞共和國</target>
+      </trans-unit>
+      <trans-unit id="GN.name" resname="GN.name" approved="yes">
+        <source>Guinea</source>
+        <target>畿內亞</target>
+      </trans-unit>
+      <trans-unit id="GN.official_name" resname="GN.official_name" approved="yes">
+        <source>Republic of Guinea</source>
+        <target>畿內亞共和國</target>
+      </trans-unit>
+      <trans-unit id="GP.name" resname="GP.name" approved="yes">
+        <source>Guadeloupe</source>
+        <target>瓜德魯普島</target>
+      </trans-unit>
+      <trans-unit id="GQ.name" resname="GQ.name" approved="yes">
+        <source>Equatorial Guinea</source>
+        <target>赤道畿內亞</target>
+      </trans-unit>
+      <trans-unit id="GQ.official_name" resname="GQ.official_name" approved="yes">
+        <source>Republic of Equatorial Guinea</source>
+        <target>赤道畿內亞共和國</target>
+      </trans-unit>
+      <trans-unit id="GR.name" resname="GR.name" approved="yes">
+        <source>Greece</source>
+        <target>希臘</target>
+      </trans-unit>
+      <trans-unit id="GR.official_name" resname="GR.official_name" approved="yes">
+        <source>Hellenic Republic</source>
+        <target>希臘共和國</target>
+      </trans-unit>
+      <trans-unit id="GS.name" resname="GS.name" approved="yes">
+        <source>South Georgia and the South Sandwich Islands</source>
+        <target>南佐治亞及南三文治羣島</target>
+      </trans-unit>
+      <trans-unit id="GT.name" resname="GT.name" approved="yes">
+        <source>Guatemala</source>
+        <target>危地馬拉</target>
+      </trans-unit>
+      <trans-unit id="GT.official_name" resname="GT.official_name" approved="yes">
+        <source>Republic of Guatemala</source>
+        <target>危地馬拉共和國</target>
+      </trans-unit>
+      <trans-unit id="GU.name" resname="GU.name" approved="yes">
+        <source>Guam</source>
+        <target>關島</target>
+      </trans-unit>
+      <trans-unit id="GW.name" resname="GW.name" approved="yes">
+        <source>Guinea-Bissau</source>
+        <target>畿內亞比紹</target>
+      </trans-unit>
+      <trans-unit id="GW.official_name" resname="GW.official_name" approved="yes">
+        <source>Republic of Guinea-Bissau</source>
+        <target>畿內亞比紹共和國</target>
+      </trans-unit>
+      <trans-unit id="GY.name" resname="GY.name" approved="yes">
+        <source>Guyana</source>
+        <target>圭亞那</target>
+      </trans-unit>
+      <trans-unit id="GY.official_name" resname="GY.official_name" approved="yes">
+        <source>Republic of Guyana</source>
+        <target>圭亞那合作共和國</target>
+      </trans-unit>
+      <trans-unit id="HK.name" resname="HK.name" approved="yes">
+        <source>Hong Kong</source>
+        <target>香港</target>
+      </trans-unit>
+      <trans-unit id="HK.official_name" resname="HK.official_name" approved="yes">
+        <source>Hong Kong Special Administrative Region of China</source>
+        <target>香港特別行政區</target>
+      </trans-unit>
+      <trans-unit id="HM.name" resname="HM.name" approved="yes">
+        <source>Heard Island and McDonald Islands</source>
+        <target>德島及麥當勞羣島</target>
+      </trans-unit>
+      <trans-unit id="HN.name" resname="HN.name" approved="yes">
+        <source>Honduras</source>
+        <target>洪都拉斯</target>
+      </trans-unit>
+      <trans-unit id="HN.official_name" resname="HN.official_name" approved="yes">
+        <source>Republic of Honduras</source>
+        <target>洪都拉斯共和國</target>
+      </trans-unit>
+      <trans-unit id="HR.name" resname="HR.name" approved="yes">
+        <source>Croatia</source>
+        <target>克羅地亞</target>
+      </trans-unit>
+      <trans-unit id="HR.official_name" resname="HR.official_name" approved="yes">
+        <source>Republic of Croatia</source>
+        <target>克羅地亞共和國</target>
+      </trans-unit>
+      <trans-unit id="HT.name" resname="HT.name" approved="yes">
+        <source>Haiti</source>
+        <target>海地</target>
+      </trans-unit>
+      <trans-unit id="HT.official_name" resname="HT.official_name" approved="yes">
+        <source>Republic of Haiti</source>
+        <target>海地共和國</target>
+      </trans-unit>
+      <trans-unit id="HU.name" resname="HU.name" approved="yes">
+        <source>Hungary</source>
+        <target>匈牙利</target>
+      </trans-unit>
+      <trans-unit id="HU.official_name" resname="HU.official_name" approved="yes">
+        <source>Hungary</source>
+        <target>匈牙利</target>
+      </trans-unit>
+      <trans-unit id="ID.name" resname="ID.name" approved="yes">
+        <source>Indonesia</source>
+        <target>印尼</target>
+      </trans-unit>
+      <trans-unit id="ID.official_name" resname="ID.official_name" approved="yes">
+        <source>Republic of Indonesia</source>
+        <target>印度尼西亞共和國</target>
+      </trans-unit>
+      <trans-unit id="IE.name" resname="IE.name" approved="yes">
+        <source>Ireland</source>
+        <target>愛爾蘭</target>
+      </trans-unit>
+      <trans-unit id="IL.name" resname="IL.name" approved="yes">
+        <source>Israel</source>
+        <target>以色列</target>
+      </trans-unit>
+      <trans-unit id="IL.official_name" resname="IL.official_name" approved="yes">
+        <source>State of Israel</source>
+        <target>以色列國</target>
+      </trans-unit>
+      <trans-unit id="IM.name" resname="IM.name" approved="yes">
+        <source>Isle of Man</source>
+        <target>萌島</target>
+      </trans-unit>
+      <trans-unit id="IN.name" resname="IN.name" approved="yes">
+        <source>India</source>
+        <target>印度</target>
+      </trans-unit>
+      <trans-unit id="IN.official_name" resname="IN.official_name" approved="yes">
+        <source>Republic of India</source>
+        <target>印度共和國</target>
+      </trans-unit>
+      <trans-unit id="IO.name" resname="IO.name" approved="yes">
+        <source>British Indian Ocean Territory</source>
+        <target>英屬印度洋地區</target>
+      </trans-unit>
+      <trans-unit id="IQ.name" resname="IQ.name" approved="yes">
+        <source>Iraq</source>
+        <target>伊拉克</target>
+      </trans-unit>
+      <trans-unit id="IQ.official_name" resname="IQ.official_name" approved="yes">
+        <source>Republic of Iraq</source>
+        <target>伊拉克共和國</target>
+      </trans-unit>
+      <trans-unit id="IR.name" resname="IR.name" approved="yes">
+        <source>Iran, Islamic Republic of</source>
+        <target>伊朗</target>
+      </trans-unit>
+      <trans-unit id="IR.official_name" resname="IR.official_name" approved="yes">
+        <source>Islamic Republic of Iran</source>
+        <target>伊朗伊斯蘭共和國</target>
+      </trans-unit>
+      <trans-unit id="IS.name" resname="IS.name" approved="yes">
+        <source>Iceland</source>
+        <target>冰島</target>
+      </trans-unit>
+      <trans-unit id="IS.official_name" resname="IS.official_name" approved="yes">
+        <source>Republic of Iceland</source>
+        <target>冰島共和國</target>
+      </trans-unit>
+      <trans-unit id="IT.name" resname="IT.name" approved="yes">
+        <source>Italy</source>
+        <target>意大利</target>
+      </trans-unit>
+      <trans-unit id="IT.official_name" resname="IT.official_name" approved="yes">
+        <source>Italian Republic</source>
+        <target>意大利共和國</target>
+      </trans-unit>
+      <trans-unit id="JE.name" resname="JE.name" approved="yes">
+        <source>Jersey</source>
+        <target>澤西</target>
+      </trans-unit>
+      <trans-unit id="JM.name" resname="JM.name" approved="yes">
+        <source>Jamaica</source>
+        <target>牙買加</target>
+      </trans-unit>
+      <trans-unit id="JO.name" resname="JO.name" approved="yes">
+        <source>Jordan</source>
+        <target>ç´„æ—¦</target>
+      </trans-unit>
+      <trans-unit id="JO.official_name" resname="JO.official_name" approved="yes">
+        <source>Hashemite Kingdom of Jordan</source>
+        <target>約旦哈希姆王國</target>
+      </trans-unit>
+      <trans-unit id="JP.name" resname="JP.name" approved="yes">
+        <source>Japan</source>
+        <target>日本</target>
+      </trans-unit>
+      <trans-unit id="KE.name" resname="KE.name" approved="yes">
+        <source>Kenya</source>
+        <target>肯雅</target>
+      </trans-unit>
+      <trans-unit id="KE.official_name" resname="KE.official_name" approved="yes">
+        <source>Republic of Kenya</source>
+        <target>肯雅共和國</target>
+      </trans-unit>
+      <trans-unit id="KG.name" resname="KG.name" approved="yes">
+        <source>Kyrgyzstan</source>
+        <target>吉爾吉斯</target>
+      </trans-unit>
+      <trans-unit id="KG.official_name" resname="KG.official_name" approved="yes">
+        <source>Kyrgyz Republic</source>
+        <target>吉爾吉斯共和國</target>
+      </trans-unit>
+      <trans-unit id="KH.name" resname="KH.name" approved="yes">
+        <source>Cambodia</source>
+        <target>柬埔寨</target>
+      </trans-unit>
+      <trans-unit id="KH.official_name" resname="KH.official_name" approved="yes">
+        <source>Kingdom of Cambodia</source>
+        <target>柬埔寨王國</target>
+      </trans-unit>
+      <trans-unit id="KI.name" resname="KI.name" approved="yes">
+        <source>Kiribati</source>
+        <target>基里巴斯</target>
+      </trans-unit>
+      <trans-unit id="KI.official_name" resname="KI.official_name" approved="yes">
+        <source>Republic of Kiribati</source>
+        <target>基里巴斯共和國</target>
+      </trans-unit>
+      <trans-unit id="KM.name" resname="KM.name" approved="yes">
+        <source>Comoros</source>
+        <target>科摩羅</target>
+      </trans-unit>
+      <trans-unit id="KM.official_name" resname="KM.official_name" approved="yes">
+        <source>Union of the Comoros</source>
+        <target>科摩羅聯盟</target>
+      </trans-unit>
+      <trans-unit id="KN.name" resname="KN.name" approved="yes">
+        <source>Saint Kitts and Nevis</source>
+        <target>聖基茨和尼維斯聯邦</target>
+      </trans-unit>
+      <trans-unit id="KP.name" resname="KP.name" approved="yes">
+        <source>Korea, Democratic People's Republic of</source>
+        <target>北韓</target>
+      </trans-unit>
+      <trans-unit id="KP.official_name" resname="KP.official_name" approved="yes">
+        <source>Democratic People's Republic of Korea</source>
+        <target>朝鮮民主主義人民共和國</target>
+      </trans-unit>
+      <trans-unit id="KR.name" resname="KR.name" approved="yes">
+        <source>Korea, Republic of</source>
+        <target>大韓民國</target>
+      </trans-unit>
+      <trans-unit id="KW.name" resname="KW.name" approved="yes">
+        <source>Kuwait</source>
+        <target>科威特</target>
+      </trans-unit>
+      <trans-unit id="KW.official_name" resname="KW.official_name" approved="yes">
+        <source>State of Kuwait</source>
+        <target>科威特國</target>
+      </trans-unit>
+      <trans-unit id="KY.name" resname="KY.name" approved="yes">
+        <source>Cayman Islands</source>
+        <target>開曼羣島</target>
+      </trans-unit>
+      <trans-unit id="KZ.name" resname="KZ.name" approved="yes">
+        <source>Kazakhstan</source>
+        <target>哈薩克</target>
+      </trans-unit>
+      <trans-unit id="KZ.official_name" resname="KZ.official_name" approved="yes">
+        <source>Republic of Kazakhstan</source>
+        <target>哈薩克斯坦共和國</target>
+      </trans-unit>
+      <trans-unit id="LA.name" resname="LA.name" approved="yes">
+        <source>Lao People's Democratic Republic</source>
+        <target>老撾人民民主共和國</target>
+      </trans-unit>
+      <trans-unit id="LB.name" resname="LB.name" approved="yes">
+        <source>Lebanon</source>
+        <target>黎巴嫩</target>
+      </trans-unit>
+      <trans-unit id="LB.official_name" resname="LB.official_name" approved="yes">
+        <source>Lebanese Republic</source>
+        <target>黎巴嫩共和國</target>
+      </trans-unit>
+      <trans-unit id="LC.name" resname="LC.name" approved="yes">
+        <source>Saint Lucia</source>
+        <target>聖盧西亞</target>
+      </trans-unit>
+      <trans-unit id="LI.name" resname="LI.name" approved="yes">
+        <source>Liechtenstein</source>
+        <target>列支敦士登</target>
+      </trans-unit>
+      <trans-unit id="LI.official_name" resname="LI.official_name" approved="yes">
+        <source>Principality of Liechtenstein</source>
+        <target>列支敦士登公國</target>
+      </trans-unit>
+      <trans-unit id="LK.name" resname="LK.name" approved="yes">
+        <source>Sri Lanka</source>
+        <target>斯里蘭卡</target>
+      </trans-unit>
+      <trans-unit id="LK.official_name" resname="LK.official_name" approved="yes">
+        <source>Democratic Socialist Republic of Sri Lanka</source>
+        <target>斯里蘭卡民主社會主義共和國</target>
+      </trans-unit>
+      <trans-unit id="LR.name" resname="LR.name" approved="yes">
+        <source>Liberia</source>
+        <target>利比里亞</target>
+      </trans-unit>
+      <trans-unit id="LR.official_name" resname="LR.official_name" approved="yes">
+        <source>Republic of Liberia</source>
+        <target>利比里亞共和國</target>
+      </trans-unit>
+      <trans-unit id="LS.name" resname="LS.name" approved="yes">
+        <source>Lesotho</source>
+        <target>萊索托</target>
+      </trans-unit>
+      <trans-unit id="LS.official_name" resname="LS.official_name" approved="yes">
+        <source>Kingdom of Lesotho</source>
+        <target>萊索托王國</target>
+      </trans-unit>
+      <trans-unit id="LT.name" resname="LT.name" approved="yes">
+        <source>Lithuania</source>
+        <target>立陶宛</target>
+      </trans-unit>
+      <trans-unit id="LT.official_name" resname="LT.official_name" approved="yes">
+        <source>Republic of Lithuania</source>
+        <target>立陶宛共和國</target>
+      </trans-unit>
+      <trans-unit id="LU.name" resname="LU.name" approved="yes">
+        <source>Luxembourg</source>
+        <target>盧森堡</target>
+      </trans-unit>
+      <trans-unit id="LU.official_name" resname="LU.official_name" approved="yes">
+        <source>Grand Duchy of Luxembourg</source>
+        <target>盧森堡大公國</target>
+      </trans-unit>
+      <trans-unit id="LV.name" resname="LV.name" approved="yes">
+        <source>Latvia</source>
+        <target>拉脫維亞</target>
+      </trans-unit>
+      <trans-unit id="LV.official_name" resname="LV.official_name" approved="yes">
+        <source>Republic of Latvia</source>
+        <target>拉脫維亞共和國</target>
+      </trans-unit>
+      <trans-unit id="LY.name" resname="LY.name" approved="yes">
+        <source>Libya</source>
+        <target>利比亞</target>
+      </trans-unit>
+      <trans-unit id="LY.official_name" resname="LY.official_name" approved="yes">
+        <source>Libya</source>
+        <target>利比亞</target>
+      </trans-unit>
+      <trans-unit id="MA.name" resname="MA.name" approved="yes">
+        <source>Morocco</source>
+        <target>摩洛哥</target>
+      </trans-unit>
+      <trans-unit id="MA.official_name" resname="MA.official_name" approved="yes">
+        <source>Kingdom of Morocco</source>
+        <target>摩洛哥王國</target>
+      </trans-unit>
+      <trans-unit id="MC.name" resname="MC.name" approved="yes">
+        <source>Monaco</source>
+        <target>摩納哥</target>
+      </trans-unit>
+      <trans-unit id="MC.official_name" resname="MC.official_name" approved="yes">
+        <source>Principality of Monaco</source>
+        <target>摩納哥公國</target>
+      </trans-unit>
+      <trans-unit id="MD.name" resname="MD.name" approved="yes">
+        <source>Moldova, Republic of</source>
+        <target>摩爾多瓦共和國</target>
+      </trans-unit>
+      <trans-unit id="MD.official_name" resname="MD.official_name" approved="yes">
+        <source>Republic of Moldova</source>
+        <target>摩爾多瓦共和國</target>
+      </trans-unit>
+      <trans-unit id="ME.name" resname="ME.name" approved="yes">
+        <source>Montenegro</source>
+        <target>黑山</target>
+      </trans-unit>
+      <trans-unit id="ME.official_name" resname="ME.official_name" approved="yes">
+        <source>Montenegro</source>
+        <target>黑山</target>
+      </trans-unit>
+      <trans-unit id="MF.name" resname="MF.name" approved="yes">
+        <source>Saint Martin (French part)</source>
+        <target>聖馬丁 (法屬)</target>
+      </trans-unit>
+      <trans-unit id="MG.name" resname="MG.name" approved="yes">
+        <source>Madagascar</source>
+        <target>馬達加斯加</target>
+      </trans-unit>
+      <trans-unit id="MG.official_name" resname="MG.official_name" approved="yes">
+        <source>Republic of Madagascar</source>
+        <target>馬達加斯加共和國</target>
+      </trans-unit>
+      <trans-unit id="MH.name" resname="MH.name" approved="yes">
+        <source>Marshall Islands</source>
+        <target>馬紹爾羣島</target>
+      </trans-unit>
+      <trans-unit id="MH.official_name" resname="MH.official_name" approved="yes">
+        <source>Republic of the Marshall Islands</source>
+        <target>馬紹爾羣島共和國</target>
+      </trans-unit>
+      <trans-unit id="MK.name" resname="MK.name" approved="yes">
+        <source>North Macedonia</source>
+        <target>北馬其頓</target>
+      </trans-unit>
+      <trans-unit id="MK.official_name" resname="MK.official_name" approved="yes">
+        <source>Republic of North Macedonia</source>
+        <target>北馬其頓共和國</target>
+      </trans-unit>
+      <trans-unit id="ML.name" resname="ML.name" approved="yes">
+        <source>Mali</source>
+        <target>馬里</target>
+      </trans-unit>
+      <trans-unit id="ML.official_name" resname="ML.official_name" approved="yes">
+        <source>Republic of Mali</source>
+        <target>馬里共和國</target>
+      </trans-unit>
+      <trans-unit id="MM.name" resname="MM.name" approved="yes">
+        <source>Myanmar</source>
+        <target>緬甸</target>
+      </trans-unit>
+      <trans-unit id="MM.official_name" resname="MM.official_name" approved="yes">
+        <source>Republic of Myanmar</source>
+        <target>緬甸共和國</target>
+      </trans-unit>
+      <trans-unit id="MN.name" resname="MN.name" approved="yes">
+        <source>Mongolia</source>
+        <target>蒙古</target>
+      </trans-unit>
+      <trans-unit id="MO.name" resname="MO.name" approved="yes">
+        <source>Macao</source>
+        <target>澳門</target>
+      </trans-unit>
+      <trans-unit id="MO.official_name" resname="MO.official_name" approved="yes">
+        <source>Macao Special Administrative Region of China</source>
+        <target>澳門特別行政區</target>
+      </trans-unit>
+      <trans-unit id="MP.name" resname="MP.name" approved="yes">
+        <source>Northern Mariana Islands</source>
+        <target>北馬里亞納羣島</target>
+      </trans-unit>
+      <trans-unit id="MP.official_name" resname="MP.official_name" approved="yes">
+        <source>Commonwealth of the Northern Mariana Islands</source>
+        <target>北馬里亞納羣島共榮邦</target>
+      </trans-unit>
+      <trans-unit id="MQ.name" resname="MQ.name" approved="yes">
+        <source>Martinique</source>
+        <target>法屬馬丁尼克</target>
+      </trans-unit>
+      <trans-unit id="MR.name" resname="MR.name" approved="yes">
+        <source>Mauritania</source>
+        <target>毛里塔尼亞</target>
+      </trans-unit>
+      <trans-unit id="MR.official_name" resname="MR.official_name" approved="yes">
+        <source>Islamic Republic of Mauritania</source>
+        <target>毛里塔尼亞伊斯蘭共和國</target>
+      </trans-unit>
+      <trans-unit id="MS.name" resname="MS.name" approved="yes">
+        <source>Montserrat</source>
+        <target>蒙瑟拉特島</target>
+      </trans-unit>
+      <trans-unit id="MT.name" resname="MT.name" approved="yes">
+        <source>Malta</source>
+        <target>馬耳他</target>
+      </trans-unit>
+      <trans-unit id="MT.official_name" resname="MT.official_name" approved="yes">
+        <source>Republic of Malta</source>
+        <target>馬耳他共和國</target>
+      </trans-unit>
+      <trans-unit id="MU.name" resname="MU.name" approved="yes">
+        <source>Mauritius</source>
+        <target>毛里裘斯</target>
+      </trans-unit>
+      <trans-unit id="MU.official_name" resname="MU.official_name" approved="yes">
+        <source>Republic of Mauritius</source>
+        <target>毛里裘斯共和國</target>
+      </trans-unit>
+      <trans-unit id="MV.name" resname="MV.name" approved="yes">
+        <source>Maldives</source>
+        <target>馬爾代夫</target>
+      </trans-unit>
+      <trans-unit id="MV.official_name" resname="MV.official_name" approved="yes">
+        <source>Republic of Maldives</source>
+        <target>馬爾代夫共和國</target>
+      </trans-unit>
+      <trans-unit id="MW.name" resname="MW.name" approved="yes">
+        <source>Malawi</source>
+        <target>馬拉維</target>
+      </trans-unit>
+      <trans-unit id="MW.official_name" resname="MW.official_name" approved="yes">
+        <source>Republic of Malawi</source>
+        <target>馬拉維共和國</target>
+      </trans-unit>
+      <trans-unit id="MX.name" resname="MX.name" approved="yes">
+        <source>Mexico</source>
+        <target>墨西哥</target>
+      </trans-unit>
+      <trans-unit id="MX.official_name" resname="MX.official_name" approved="yes">
+        <source>United Mexican States</source>
+        <target>墨西哥合眾國</target>
+      </trans-unit>
+      <trans-unit id="MY.name" resname="MY.name" approved="yes">
+        <source>Malaysia</source>
+        <target>馬來西亞</target>
+      </trans-unit>
+      <trans-unit id="MZ.name" resname="MZ.name" approved="yes">
+        <source>Mozambique</source>
+        <target>莫桑比克</target>
+      </trans-unit>
+      <trans-unit id="MZ.official_name" resname="MZ.official_name" approved="yes">
+        <source>Republic of Mozambique</source>
+        <target>莫桑比克共和國</target>
+      </trans-unit>
+      <trans-unit id="NA.name" resname="NA.name" approved="yes">
+        <source>Namibia</source>
+        <target>納米比亞</target>
+      </trans-unit>
+      <trans-unit id="NA.official_name" resname="NA.official_name" approved="yes">
+        <source>Republic of Namibia</source>
+        <target>納米比亞共和國</target>
+      </trans-unit>
+      <trans-unit id="NC.name" resname="NC.name" approved="yes">
+        <source>New Caledonia</source>
+        <target>新喀里多尼亞島</target>
+      </trans-unit>
+      <trans-unit id="NE.name" resname="NE.name" approved="yes">
+        <source>Niger</source>
+        <target>尼日爾</target>
+      </trans-unit>
+      <trans-unit id="NE.official_name" resname="NE.official_name" approved="yes">
+        <source>Republic of the Niger</source>
+        <target>尼日爾共和國</target>
+      </trans-unit>
+      <trans-unit id="NF.name" resname="NF.name" approved="yes">
+        <source>Norfolk Island</source>
+        <target>諾福克羣島</target>
+      </trans-unit>
+      <trans-unit id="NG.name" resname="NG.name" approved="yes">
+        <source>Nigeria</source>
+        <target>尼日利亞</target>
+      </trans-unit>
+      <trans-unit id="NG.official_name" resname="NG.official_name" approved="yes">
+        <source>Federal Republic of Nigeria</source>
+        <target>尼日利亞聯邦共和國</target>
+      </trans-unit>
+      <trans-unit id="NI.name" resname="NI.name" approved="yes">
+        <source>Nicaragua</source>
+        <target>尼加拉瓜</target>
+      </trans-unit>
+      <trans-unit id="NI.official_name" resname="NI.official_name" approved="yes">
+        <source>Republic of Nicaragua</source>
+        <target>尼加拉瓜共和國</target>
+      </trans-unit>
+      <trans-unit id="NL.name" resname="NL.name" approved="yes">
+        <source>Netherlands</source>
+        <target>荷蘭</target>
+      </trans-unit>
+      <trans-unit id="NL.official_name" resname="NL.official_name" approved="yes">
+        <source>Kingdom of the Netherlands</source>
+        <target>荷蘭王國</target>
+      </trans-unit>
+      <trans-unit id="NO.name" resname="NO.name" approved="yes">
+        <source>Norway</source>
+        <target>挪威</target>
+      </trans-unit>
+      <trans-unit id="NO.official_name" resname="NO.official_name" approved="yes">
+        <source>Kingdom of Norway</source>
+        <target>挪威王國</target>
+      </trans-unit>
+      <trans-unit id="NP.name" resname="NP.name" approved="yes">
+        <source>Nepal</source>
+        <target>尼泊爾</target>
+      </trans-unit>
+      <trans-unit id="NP.official_name" resname="NP.official_name" approved="yes">
+        <source>Federal Democratic Republic of Nepal</source>
+        <target>尼泊爾聯邦民主共和國</target>
+      </trans-unit>
+      <trans-unit id="NR.name" resname="NR.name" approved="yes">
+        <source>Nauru</source>
+        <target>瑙魯</target>
+      </trans-unit>
+      <trans-unit id="NR.official_name" resname="NR.official_name" approved="yes">
+        <source>Republic of Nauru</source>
+        <target>瑙魯共和國</target>
+      </trans-unit>
+      <trans-unit id="NU.name" resname="NU.name" approved="yes">
+        <source>Niue</source>
+        <target>紐威島</target>
+      </trans-unit>
+      <trans-unit id="NU.official_name" resname="NU.official_name" approved="yes">
+        <source>Niue</source>
+        <target>紐威島</target>
+      </trans-unit>
+      <trans-unit id="NZ.name" resname="NZ.name" approved="yes">
+        <source>New Zealand</source>
+        <target>新西蘭</target>
+      </trans-unit>
+      <trans-unit id="OM.name" resname="OM.name" approved="yes">
+        <source>Oman</source>
+        <target>阿曼</target>
+      </trans-unit>
+      <trans-unit id="OM.official_name" resname="OM.official_name" approved="yes">
+        <source>Sultanate of Oman</source>
+        <target>阿曼蘇丹國</target>
+      </trans-unit>
+      <trans-unit id="PA.name" resname="PA.name" approved="yes">
+        <source>Panama</source>
+        <target>巴拿馬</target>
+      </trans-unit>
+      <trans-unit id="PA.official_name" resname="PA.official_name" approved="yes">
+        <source>Republic of Panama</source>
+        <target>巴拿馬共和國</target>
+      </trans-unit>
+      <trans-unit id="PE.name" resname="PE.name" approved="yes">
+        <source>Peru</source>
+        <target>秘魯</target>
+      </trans-unit>
+      <trans-unit id="PE.official_name" resname="PE.official_name" approved="yes">
+        <source>Republic of Peru</source>
+        <target>秘魯共和國</target>
+      </trans-unit>
+      <trans-unit id="PF.name" resname="PF.name" approved="yes">
+        <source>French Polynesia</source>
+        <target>法屬玻利尼西亞</target>
+      </trans-unit>
+      <trans-unit id="PG.name" resname="PG.name" approved="yes">
+        <source>Papua New Guinea</source>
+        <target>巴布亞新畿內亞</target>
+      </trans-unit>
+      <trans-unit id="PG.official_name" resname="PG.official_name" approved="yes">
+        <source>Independent State of Papua New Guinea</source>
+        <target>巴布亞新畿內亞獨立國</target>
+      </trans-unit>
+      <trans-unit id="PH.name" resname="PH.name" approved="yes">
+        <source>Philippines</source>
+        <target>菲律賓</target>
+      </trans-unit>
+      <trans-unit id="PH.official_name" resname="PH.official_name" approved="yes">
+        <source>Republic of the Philippines</source>
+        <target>菲律賓共和國</target>
+      </trans-unit>
+      <trans-unit id="PK.name" resname="PK.name" approved="yes">
+        <source>Pakistan</source>
+        <target>巴基斯坦</target>
+      </trans-unit>
+      <trans-unit id="PK.official_name" resname="PK.official_name" approved="yes">
+        <source>Islamic Republic of Pakistan</source>
+        <target>巴基斯坦伊斯蘭共和國</target>
+      </trans-unit>
+      <trans-unit id="PL.name" resname="PL.name" approved="yes">
+        <source>Poland</source>
+        <target>波蘭</target>
+      </trans-unit>
+      <trans-unit id="PL.official_name" resname="PL.official_name" approved="yes">
+        <source>Republic of Poland</source>
+        <target>波蘭共和國</target>
+      </trans-unit>
+      <trans-unit id="PM.name" resname="PM.name" approved="yes">
+        <source>Saint Pierre and Miquelon</source>
+        <target>聖皮耶及密克隆羣島</target>
+      </trans-unit>
+      <trans-unit id="PN.name" resname="PN.name" approved="yes">
+        <source>Pitcairn</source>
+        <target>皮特康</target>
+      </trans-unit>
+      <trans-unit id="PR.name" resname="PR.name" approved="yes">
+        <source>Puerto Rico</source>
+        <target>波多黎各</target>
+      </trans-unit>
+      <trans-unit id="PS.name" resname="PS.name" approved="yes">
+        <source>Palestine, State of</source>
+        <target>巴勒斯坦</target>
+      </trans-unit>
+      <trans-unit id="PS.official_name" resname="PS.official_name" approved="yes">
+        <source>the State of Palestine</source>
+        <target>巴勒斯坦國</target>
+      </trans-unit>
+      <trans-unit id="PT.name" resname="PT.name" approved="yes">
+        <source>Portugal</source>
+        <target>葡萄牙</target>
+      </trans-unit>
+      <trans-unit id="PT.official_name" resname="PT.official_name" approved="yes">
+        <source>Portuguese Republic</source>
+        <target>葡萄牙共和國</target>
+      </trans-unit>
+      <trans-unit id="PW.name" resname="PW.name" approved="yes">
+        <source>Palau</source>
+        <target>帕勞</target>
+      </trans-unit>
+      <trans-unit id="PW.official_name" resname="PW.official_name" approved="yes">
+        <source>Republic of Palau</source>
+        <target>帕勞共和國</target>
+      </trans-unit>
+      <trans-unit id="PY.name" resname="PY.name" approved="yes">
+        <source>Paraguay</source>
+        <target>巴拉圭</target>
+      </trans-unit>
+      <trans-unit id="PY.official_name" resname="PY.official_name" approved="yes">
+        <source>Republic of Paraguay</source>
+        <target>巴拉圭共和國</target>
+      </trans-unit>
+      <trans-unit id="QA.name" resname="QA.name" approved="yes">
+        <source>Qatar</source>
+        <target>卡塔爾</target>
+      </trans-unit>
+      <trans-unit id="QA.official_name" resname="QA.official_name" approved="yes">
+        <source>State of Qatar</source>
+        <target>卡塔爾國</target>
+      </trans-unit>
+      <trans-unit id="RE.name" resname="RE.name" approved="yes">
+        <source>Réunion</source>
+        <target>留尼旺</target>
+      </trans-unit>
+      <trans-unit id="RO.name" resname="RO.name" approved="yes">
+        <source>Romania</source>
+        <target>羅馬尼亞</target>
+      </trans-unit>
+      <trans-unit id="RS.name" resname="RS.name" approved="yes">
+        <source>Serbia</source>
+        <target>塞爾維亞</target>
+      </trans-unit>
+      <trans-unit id="RS.official_name" resname="RS.official_name" approved="yes">
+        <source>Republic of Serbia</source>
+        <target>塞爾維亞共和國</target>
+      </trans-unit>
+      <trans-unit id="RU.name" resname="RU.name" approved="yes">
+        <source>Russian Federation</source>
+        <target>俄羅斯聯邦</target>
+      </trans-unit>
+      <trans-unit id="RW.name" resname="RW.name" approved="yes">
+        <source>Rwanda</source>
+        <target>盧旺達</target>
+      </trans-unit>
+      <trans-unit id="RW.official_name" resname="RW.official_name" approved="yes">
+        <source>Rwandese Republic</source>
+        <target>盧旺達共和國</target>
+      </trans-unit>
+      <trans-unit id="SA.name" resname="SA.name" approved="yes">
+        <source>Saudi Arabia</source>
+        <target>沙地阿拉伯</target>
+      </trans-unit>
+      <trans-unit id="SA.official_name" resname="SA.official_name" approved="yes">
+        <source>Kingdom of Saudi Arabia</source>
+        <target>沙地阿拉伯王國</target>
+      </trans-unit>
+      <trans-unit id="SB.name" resname="SB.name" approved="yes">
+        <source>Solomon Islands</source>
+        <target>所羅門羣島</target>
+      </trans-unit>
+      <trans-unit id="SC.name" resname="SC.name" approved="yes">
+        <source>Seychelles</source>
+        <target>塞舌爾</target>
+      </trans-unit>
+      <trans-unit id="SC.official_name" resname="SC.official_name" approved="yes">
+        <source>Republic of Seychelles</source>
+        <target>塞舌爾共和國</target>
+      </trans-unit>
+      <trans-unit id="SD.name" resname="SD.name" approved="yes">
+        <source>Sudan</source>
+        <target>蘇丹</target>
+      </trans-unit>
+      <trans-unit id="SD.official_name" resname="SD.official_name" approved="yes">
+        <source>Republic of the Sudan</source>
+        <target>蘇丹共和國</target>
+      </trans-unit>
+      <trans-unit id="SE.name" resname="SE.name" approved="yes">
+        <source>Sweden</source>
+        <target>ç‘žå…¸</target>
+      </trans-unit>
+      <trans-unit id="SE.official_name" resname="SE.official_name" approved="yes">
+        <source>Kingdom of Sweden</source>
+        <target>瑞典王國</target>
+      </trans-unit>
+      <trans-unit id="SG.name" resname="SG.name" approved="yes">
+        <source>Singapore</source>
+        <target>新加坡</target>
+      </trans-unit>
+      <trans-unit id="SG.official_name" resname="SG.official_name" approved="yes">
+        <source>Republic of Singapore</source>
+        <target>新加坡共和國</target>
+      </trans-unit>
+      <trans-unit id="SH.name" resname="SH.name" approved="yes">
+        <source>Saint Helena, Ascension and Tristan da Cunha</source>
+        <target>聖海倫娜島、阿森松島及崔斯坦達庫尼亞羣島</target>
+      </trans-unit>
+      <trans-unit id="SI.name" resname="SI.name" approved="yes">
+        <source>Slovenia</source>
+        <target>斯洛文尼亞</target>
+      </trans-unit>
+      <trans-unit id="SI.official_name" resname="SI.official_name" approved="yes">
+        <source>Republic of Slovenia</source>
+        <target>斯洛文尼亞共和國</target>
+      </trans-unit>
+      <trans-unit id="SJ.name" resname="SJ.name" approved="yes">
+        <source>Svalbard and Jan Mayen</source>
+        <target>冷岸羣島及央棉</target>
+      </trans-unit>
+      <trans-unit id="SK.name" resname="SK.name" approved="yes">
+        <source>Slovakia</source>
+        <target>斯洛伐克</target>
+      </trans-unit>
+      <trans-unit id="SK.official_name" resname="SK.official_name" approved="yes">
+        <source>Slovak Republic</source>
+        <target>斯洛伐克共和國</target>
+      </trans-unit>
+      <trans-unit id="SL.name" resname="SL.name" approved="yes">
+        <source>Sierra Leone</source>
+        <target>塞拉利昂</target>
+      </trans-unit>
+      <trans-unit id="SL.official_name" resname="SL.official_name" approved="yes">
+        <source>Republic of Sierra Leone</source>
+        <target>塞拉利昂共和國</target>
+      </trans-unit>
+      <trans-unit id="SM.name" resname="SM.name" approved="yes">
+        <source>San Marino</source>
+        <target>聖馬力諾</target>
+      </trans-unit>
+      <trans-unit id="SM.official_name" resname="SM.official_name" approved="yes">
+        <source>Republic of San Marino</source>
+        <target>聖馬力諾共和國</target>
+      </trans-unit>
+      <trans-unit id="SN.name" resname="SN.name" approved="yes">
+        <source>Senegal</source>
+        <target>塞內加爾</target>
+      </trans-unit>
+      <trans-unit id="SN.official_name" resname="SN.official_name" approved="yes">
+        <source>Republic of Senegal</source>
+        <target>塞內加爾共和國</target>
+      </trans-unit>
+      <trans-unit id="SO.name" resname="SO.name" approved="yes">
+        <source>Somalia</source>
+        <target>索馬里</target>
+      </trans-unit>
+      <trans-unit id="SO.official_name" resname="SO.official_name" approved="yes">
+        <source>Federal Republic of Somalia</source>
+        <target>索馬里聯邦共和國</target>
+      </trans-unit>
+      <trans-unit id="SR.name" resname="SR.name" approved="yes">
+        <source>Suriname</source>
+        <target>蘇里南</target>
+      </trans-unit>
+      <trans-unit id="SR.official_name" resname="SR.official_name" approved="yes">
+        <source>Republic of Suriname</source>
+        <target>蘇里南共和國</target>
+      </trans-unit>
+      <trans-unit id="SS.name" resname="SS.name" approved="yes">
+        <source>South Sudan</source>
+        <target>南蘇丹</target>
+      </trans-unit>
+      <trans-unit id="SS.official_name" resname="SS.official_name" approved="yes">
+        <source>Republic of South Sudan</source>
+        <target>南蘇丹共和國</target>
+      </trans-unit>
+      <trans-unit id="ST.name" resname="ST.name" approved="yes">
+        <source>Sao Tome and Principe</source>
+        <target>聖多美和普林西比</target>
+      </trans-unit>
+      <trans-unit id="ST.official_name" resname="ST.official_name" approved="yes">
+        <source>Democratic Republic of Sao Tome and Principe</source>
+        <target>聖多美和普林西比民主共和國</target>
+      </trans-unit>
+      <trans-unit id="SV.name" resname="SV.name" approved="yes">
+        <source>El Salvador</source>
+        <target>薩爾瓦多</target>
+      </trans-unit>
+      <trans-unit id="SV.official_name" resname="SV.official_name" approved="yes">
+        <source>Republic of El Salvador</source>
+        <target>薩爾瓦多共和國</target>
+      </trans-unit>
+      <trans-unit id="SX.name" resname="SX.name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>聖馬丁 (荷屬)</target>
+      </trans-unit>
+      <trans-unit id="SX.official_name" resname="SX.official_name" approved="yes">
+        <source>Sint Maarten (Dutch part)</source>
+        <target>聖馬丁 (荷屬)</target>
+      </trans-unit>
+      <trans-unit id="SY.name" resname="SY.name" approved="yes">
+        <source>Syrian Arab Republic</source>
+        <target>阿拉伯敍利亞共和國</target>
+      </trans-unit>
+      <trans-unit id="SZ.name" resname="SZ.name" approved="yes">
+        <source>Eswatini</source>
+        <target>斯威士蘭</target>
+      </trans-unit>
+      <trans-unit id="SZ.official_name" resname="SZ.official_name" approved="yes">
+        <source>Kingdom of Eswatini</source>
+        <target>斯威士蘭王國</target>
+      </trans-unit>
+      <trans-unit id="TC.name" resname="TC.name" approved="yes">
+        <source>Turks and Caicos Islands</source>
+        <target>土克凱可羣島</target>
+      </trans-unit>
+      <trans-unit id="TD.name" resname="TD.name" approved="yes">
+        <source>Chad</source>
+        <target>乍得</target>
+      </trans-unit>
+      <trans-unit id="TD.official_name" resname="TD.official_name" approved="yes">
+        <source>Republic of Chad</source>
+        <target>乍得共和國</target>
+      </trans-unit>
+      <trans-unit id="TF.name" resname="TF.name" approved="yes">
+        <source>French Southern Territories</source>
+        <target>法屬南部屬地</target>
+      </trans-unit>
+      <trans-unit id="TG.name" resname="TG.name" approved="yes">
+        <source>Togo</source>
+        <target>多哥</target>
+      </trans-unit>
+      <trans-unit id="TG.official_name" resname="TG.official_name" approved="yes">
+        <source>Togolese Republic</source>
+        <target>多哥共和國</target>
+      </trans-unit>
+      <trans-unit id="TH.name" resname="TH.name" approved="yes">
+        <source>Thailand</source>
+        <target>泰國</target>
+      </trans-unit>
+      <trans-unit id="TH.official_name" resname="TH.official_name" approved="yes">
+        <source>Kingdom of Thailand</source>
+        <target>泰王國</target>
+      </trans-unit>
+      <trans-unit id="TJ.name" resname="TJ.name" approved="yes">
+        <source>Tajikistan</source>
+        <target>塔吉克斯坦</target>
+      </trans-unit>
+      <trans-unit id="TJ.official_name" resname="TJ.official_name" approved="yes">
+        <source>Republic of Tajikistan</source>
+        <target>塔吉克斯坦共和國</target>
+      </trans-unit>
+      <trans-unit id="TK.name" resname="TK.name" approved="yes">
+        <source>Tokelau</source>
+        <target>托克勞羣島</target>
+      </trans-unit>
+      <trans-unit id="TL.name" resname="TL.name" approved="yes">
+        <source>Timor-Leste</source>
+        <target>東帝汶</target>
+      </trans-unit>
+      <trans-unit id="TL.official_name" resname="TL.official_name" approved="yes">
+        <source>Democratic Republic of Timor-Leste</source>
+        <target>東帝汶民主共和國</target>
+      </trans-unit>
+      <trans-unit id="TM.name" resname="TM.name" approved="yes">
+        <source>Turkmenistan</source>
+        <target>土庫曼</target>
+      </trans-unit>
+      <trans-unit id="TN.name" resname="TN.name" approved="yes">
+        <source>Tunisia</source>
+        <target>突尼斯</target>
+      </trans-unit>
+      <trans-unit id="TN.official_name" resname="TN.official_name" approved="yes">
+        <source>Republic of Tunisia</source>
+        <target>突尼斯共和國</target>
+      </trans-unit>
+      <trans-unit id="TO.name" resname="TO.name" approved="yes">
+        <source>Tonga</source>
+        <target>湯加</target>
+      </trans-unit>
+      <trans-unit id="TO.official_name" resname="TO.official_name" approved="yes">
+        <source>Kingdom of Tonga</source>
+        <target>湯加王國</target>
+      </trans-unit>
+      <trans-unit id="TR.official_name" resname="TR.official_name" approved="yes">
+        <source>Republic of Türkiye</source>
+        <target>Republic of Türkiye</target>
+      </trans-unit>
+      <trans-unit id="TT.name" resname="TT.name" approved="yes">
+        <source>Trinidad and Tobago</source>
+        <target>特立尼達和多巴哥</target>
+      </trans-unit>
+      <trans-unit id="TT.official_name" resname="TT.official_name" approved="yes">
+        <source>Republic of Trinidad and Tobago</source>
+        <target>特立尼達和多巴哥共和國</target>
+      </trans-unit>
+      <trans-unit id="TV.name" resname="TV.name" approved="yes">
+        <source>Tuvalu</source>
+        <target>圖瓦盧</target>
+      </trans-unit>
+      <trans-unit id="TW.name" resname="TW.name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>中華民國</target>
+      </trans-unit>
+      <trans-unit id="TW.official_name" resname="TW.official_name" approved="yes">
+        <source>Taiwan, Province of China</source>
+        <target>中華民國</target>
+      </trans-unit>
+      <trans-unit id="TZ.name" resname="TZ.name" approved="yes">
+        <source>Tanzania, United Republic of</source>
+        <target>坦桑尼亞</target>
+      </trans-unit>
+      <trans-unit id="TZ.official_name" resname="TZ.official_name" approved="yes">
+        <source>United Republic of Tanzania</source>
+        <target>坦桑尼亞聯合共和國</target>
+      </trans-unit>
+      <trans-unit id="UA.name" resname="UA.name" approved="yes">
+        <source>Ukraine</source>
+        <target>烏克蘭</target>
+      </trans-unit>
+      <trans-unit id="UG.name" resname="UG.name" approved="yes">
+        <source>Uganda</source>
+        <target>烏干達</target>
+      </trans-unit>
+      <trans-unit id="UG.official_name" resname="UG.official_name" approved="yes">
+        <source>Republic of Uganda</source>
+        <target>烏干達共和國</target>
+      </trans-unit>
+      <trans-unit id="UM.name" resname="UM.name" approved="yes">
+        <source>United States Minor Outlying Islands</source>
+        <target>美屬邊疆羣島</target>
+      </trans-unit>
+      <trans-unit id="US.name" resname="US.name" approved="yes">
+        <source>United States</source>
+        <target>美國</target>
+      </trans-unit>
+      <trans-unit id="US.official_name" resname="US.official_name" approved="yes">
+        <source>United States of America</source>
+        <target>美利堅合眾國</target>
+      </trans-unit>
+      <trans-unit id="UY.name" resname="UY.name" approved="yes">
+        <source>Uruguay</source>
+        <target>烏拉圭</target>
+      </trans-unit>
+      <trans-unit id="UY.official_name" resname="UY.official_name" approved="yes">
+        <source>Eastern Republic of Uruguay</source>
+        <target>烏拉圭東岸共和國</target>
+      </trans-unit>
+      <trans-unit id="UZ.name" resname="UZ.name" approved="yes">
+        <source>Uzbekistan</source>
+        <target>烏茲別克</target>
+      </trans-unit>
+      <trans-unit id="UZ.official_name" resname="UZ.official_name" approved="yes">
+        <source>Republic of Uzbekistan</source>
+        <target>烏茲別克斯坦共和國</target>
+      </trans-unit>
+      <trans-unit id="VA.name" resname="VA.name" approved="yes">
+        <source>Holy See (Vatican City State)</source>
+        <target>梵蒂岡</target>
+      </trans-unit>
+      <trans-unit id="VC.name" resname="VC.name" approved="yes">
+        <source>Saint Vincent and the Grenadines</source>
+        <target>聖文森特和格林納丁斯</target>
+      </trans-unit>
+      <trans-unit id="VE.name" resname="VE.name" approved="yes">
+        <source>Venezuela, Bolivarian Republic of</source>
+        <target>委內瑞拉玻利瓦爾共和國</target>
+      </trans-unit>
+      <trans-unit id="VE.official_name" resname="VE.official_name" approved="yes">
+        <source>Bolivarian Republic of Venezuela</source>
+        <target>委內瑞拉玻利瓦爾共和國</target>
+      </trans-unit>
+      <trans-unit id="VG.name" resname="VG.name" approved="yes">
+        <source>Virgin Islands, British</source>
+        <target>英屬處女羣島</target>
+      </trans-unit>
+      <trans-unit id="VG.official_name" resname="VG.official_name" approved="yes">
+        <source>British Virgin Islands</source>
+        <target>英屬處女羣島</target>
+      </trans-unit>
+      <trans-unit id="VI.name" resname="VI.name" approved="yes">
+        <source>Virgin Islands, U.S.</source>
+        <target>美屬處女羣島</target>
+      </trans-unit>
+      <trans-unit id="VI.official_name" resname="VI.official_name" approved="yes">
+        <source>Virgin Islands of the United States</source>
+        <target>美屬處女羣島</target>
+      </trans-unit>
+      <trans-unit id="VN.name" resname="VN.name" approved="yes">
+        <source>Viet Nam</source>
+        <target>越南</target>
+      </trans-unit>
+      <trans-unit id="VN.official_name" resname="VN.official_name" approved="yes">
+        <source>Socialist Republic of Viet Nam</source>
+        <target>越南社會主義共和國</target>
+      </trans-unit>
+      <trans-unit id="VU.name" resname="VU.name" approved="yes">
+        <source>Vanuatu</source>
+        <target>瓦努阿圖</target>
+      </trans-unit>
+      <trans-unit id="VU.official_name" resname="VU.official_name" approved="yes">
+        <source>Republic of Vanuatu</source>
+        <target>瓦努阿圖共和國</target>
+      </trans-unit>
+      <trans-unit id="WF.name" resname="WF.name" approved="yes">
+        <source>Wallis and Futuna</source>
+        <target>沃里斯及伏塔那羣島</target>
+      </trans-unit>
+      <trans-unit id="WS.name" resname="WS.name" approved="yes">
+        <source>Samoa</source>
+        <target>薩摩亞</target>
+      </trans-unit>
+      <trans-unit id="WS.official_name" resname="WS.official_name" approved="yes">
+        <source>Independent State of Samoa</source>
+        <target>薩摩亞獨立國</target>
+      </trans-unit>
+      <trans-unit id="YE.name" resname="YE.name" approved="yes">
+        <source>Yemen</source>
+        <target>也門</target>
+      </trans-unit>
+      <trans-unit id="YE.official_name" resname="YE.official_name" approved="yes">
+        <source>Republic of Yemen</source>
+        <target>也門共和國</target>
+      </trans-unit>
+      <trans-unit id="YT.name" resname="YT.name" approved="yes">
+        <source>Mayotte</source>
+        <target>美亞特</target>
+      </trans-unit>
+      <trans-unit id="ZA.name" resname="ZA.name" approved="yes">
+        <source>South Africa</source>
+        <target>南非</target>
+      </trans-unit>
+      <trans-unit id="ZA.official_name" resname="ZA.official_name" approved="yes">
+        <source>Republic of South Africa</source>
+        <target>南非共和國</target>
+      </trans-unit>
+      <trans-unit id="ZM.name" resname="ZM.name" approved="yes">
+        <source>Zambia</source>
+        <target>贊比亞</target>
+      </trans-unit>
+      <trans-unit id="ZM.official_name" resname="ZM.official_name" approved="yes">
+        <source>Republic of Zambia</source>
+        <target>贊比亞共和國</target>
+      </trans-unit>
+      <trans-unit id="ZW.name" resname="ZW.name" approved="yes">
+        <source>Zimbabwe</source>
+        <target>津巴布韋</target>
+      </trans-unit>
+      <trans-unit id="ZW.official_name" resname="ZW.official_name" approved="yes">
+        <source>Republic of Zimbabwe</source>
+        <target>津巴布韋共和國</target>
+      </trans-unit>
+    </body>
+  </file>
+</xliff>
diff --git a/typo3/sysext/core/Tests/Functional/Country/CountryTest.php b/typo3/sysext/core/Tests/Functional/Country/CountryTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..0eac47c7d087fcde6ccff1987d3dcdbbfba93585
--- /dev/null
+++ b/typo3/sysext/core/Tests/Functional/Country/CountryTest.php
@@ -0,0 +1,47 @@
+<?php
+
+declare(strict_types=1);
+
+/*
+ * This file is part of the TYPO3 CMS project.
+ *
+ * It is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, either version 2
+ * of the License, or any later version.
+ *
+ * For the full copyright and license information, please read the
+ * LICENSE.txt file that was distributed with this source code.
+ *
+ * The TYPO3 project - inspiring people to share!
+ */
+
+namespace TYPO3\CMS\Core\Tests\Functional\Country;
+
+use TYPO3\CMS\Core\Country\Country;
+use TYPO3\CMS\Core\Localization\LanguageServiceFactory;
+use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
+
+class CountryTest extends FunctionalTestCase
+{
+    /**
+     * @test
+     */
+    public function countryLabelCanBeLocalized(): void
+    {
+        $languageServiceFactory = $this->get(LanguageServiceFactory::class);
+        $languageService = $languageServiceFactory->create('de');
+        $provider = $this->get('country.provider');
+        $subject = $provider->getByIsoCode('FR');
+        self::assertInstanceOf(Country::class, $subject);
+        self::assertEquals('France', $languageService->sL($subject->getName()));
+        self::assertEquals('Frankreich', $languageService->sL($subject->getLocalizedNameLabel()));
+        self::assertEquals('Französische Republik', $languageService->sL($subject->getLocalizedOfficialNameLabel()));
+
+        $subject = $provider->getByIsoCode('BEL');
+        $languageService = $languageServiceFactory->create('fr');
+        self::assertEquals('Belgique', $languageService->sL($subject->getLocalizedNameLabel()));
+        self::assertEquals('Royaume de Belgique', $languageService->sL($subject->getLocalizedOfficialNameLabel()));
+        self::assertEquals('Kingdom of Belgium', $subject->getOfficialName());
+        self::assertEquals('Kingdom of Belgium', $languageService->sL($subject->getOfficialName()));
+    }
+}
diff --git a/typo3/sysext/core/Tests/Unit/Country/CountryProviderTest.php b/typo3/sysext/core/Tests/Unit/Country/CountryProviderTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..d633734d85f8ae159765acbdf2e07d2eddfc53b9
--- /dev/null
+++ b/typo3/sysext/core/Tests/Unit/Country/CountryProviderTest.php
@@ -0,0 +1,69 @@
+<?php
+
+declare(strict_types=1);
+
+/*
+ * This file is part of the TYPO3 CMS project.
+ *
+ * It is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, either version 2
+ * of the License, or any later version.
+ *
+ * For the full copyright and license information, please read the
+ * LICENSE.txt file that was distributed with this source code.
+ *
+ * The TYPO3 project - inspiring people to share!
+ */
+
+namespace TYPO3\CMS\Core\Tests\Unit\Country;
+
+use TYPO3\CMS\Core\Country\Country;
+use TYPO3\CMS\Core\Country\CountryProvider;
+use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
+
+class CountryProviderTest extends UnitTestCase
+{
+    /**
+     * @test
+     */
+    public function findAllCountriesReturnsCountryObjects(): void
+    {
+        $subject = new CountryProvider();
+        $countries = $subject->getAll();
+        self::assertGreaterThan(150, count($countries));
+    }
+
+    /**
+     * @test
+     */
+    public function findByIsoCodeReturnsValidObject(): void
+    {
+        $subject = new CountryProvider();
+        $countryIsoCode2LowerCase = $subject->getByIsoCode('fr');
+        $countryIsoCode2 = $subject->getByIsoCode('FR');
+        self::assertInstanceOf(Country::class, $countryIsoCode2);
+        self::assertSame($countryIsoCode2LowerCase, $countryIsoCode2);
+        self::assertEquals('France', $countryIsoCode2->getName());
+        self::assertEquals('French Republic', $countryIsoCode2->getOfficialName());
+    }
+
+    /**
+     * @test
+     */
+    public function findByThreeLetterIsoCodeReturnsValidObject(): void
+    {
+        $subject = new CountryProvider();
+        $countryIsoCode3LowerCase = $subject->getByIsoCode('fra');
+        $countryIsoCode3 = $subject->getByIsoCode('FRA');
+        $countryIsoCode2 = $subject->getByIsoCode('FR');
+        self::assertInstanceOf(Country::class, $countryIsoCode2);
+        self::assertSame($countryIsoCode3LowerCase, $countryIsoCode2);
+        self::assertSame($countryIsoCode3, $countryIsoCode2);
+        self::assertEquals('France', $countryIsoCode3->getName());
+        self::assertEquals('🇫🇷', $countryIsoCode3->getFlag());
+        self::assertEquals('French Republic', $countryIsoCode3->getOfficialName());
+        self::assertEquals('250', $countryIsoCode3->getNumericRepresentation());
+        self::assertEquals('FR', $countryIsoCode3->getAlpha2IsoCode());
+        self::assertEquals('FRA', $countryIsoCode3->getAlpha3IsoCode());
+    }
+}
diff --git a/typo3/sysext/fluid/Classes/ViewHelpers/Form/CountrySelectViewHelper.php b/typo3/sysext/fluid/Classes/ViewHelpers/Form/CountrySelectViewHelper.php
new file mode 100644
index 0000000000000000000000000000000000000000..d121d06f8faff925c6e5592bc5431acc536d597c
--- /dev/null
+++ b/typo3/sysext/fluid/Classes/ViewHelpers/Form/CountrySelectViewHelper.php
@@ -0,0 +1,212 @@
+<?php
+
+declare(strict_types=1);
+
+/*
+ * This file is part of the TYPO3 CMS project.
+ *
+ * It is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, either version 2
+ * of the License, or any later version.
+ *
+ * For the full copyright and license information, please read the
+ * LICENSE.txt file that was distributed with this source code.
+ *
+ * The TYPO3 project - inspiring people to share!
+ */
+
+namespace TYPO3\CMS\Fluid\ViewHelpers\Form;
+
+use TYPO3\CMS\Core\Country\Country;
+use TYPO3\CMS\Core\Country\CountryProvider;
+use TYPO3\CMS\Core\Utility\GeneralUtility;
+use TYPO3\CMS\Extbase\Utility\LocalizationUtility;
+
+/**
+ * Renders an :html:`<select>` tag with all available countries as options.
+ *
+ * Examples
+ * ========
+ *
+ * Example::
+ *
+ *    <f:form.countrySelect name="country" value="{defaultCountry}" />
+ *
+ * Output::
+ *
+ *    <select name="country">
+ *      <option value="BE">Belgium</option>
+ *      <option value="FR">France</option>
+ *      ....
+ *     </select>
+ *
+ * You can also use the "property" attribute if you have bound an object to the form.
+ * See :ref:`<f:form> <typo3-fluid-form>` for more documentation.
+ */
+final class CountrySelectViewHelper extends AbstractFormFieldViewHelper
+{
+    /**
+     * @var string
+     */
+    protected $tagName = 'select';
+
+    public function initializeArguments(): void
+    {
+        parent::initializeArguments();
+        $this->registerUniversalTagAttributes();
+        $this->registerTagAttribute('disabled', 'string', 'Specifies that the input element should be disabled when the page loads');
+        $this->registerArgument('excludeCountries', 'array', 'Array with country codes that should not be shown.', false, []);
+        $this->registerArgument('onlyCountries', 'array', 'If set, only the country codes in the list are rendered.', false, []);
+        $this->registerArgument('optionLabelField', 'string', 'If specified, will call the appropriate getter on each object to determine the label. Use "name", "localizedName", "officialName" or "localizedOfficialName"', false, 'localizedName');
+        $this->registerArgument('sortByOptionLabel', 'boolean', 'If true, List will be sorted by label.', false, false);
+        $this->registerArgument('errorClass', 'string', 'CSS class to set if there are errors for this ViewHelper', false, 'f3-form-error');
+        $this->registerArgument('prependOptionLabel', 'string', 'If specified, will provide an option at first position with the specified label.');
+        $this->registerArgument('prependOptionValue', 'string', 'If specified, will provide an option at first position with the specified value.');
+        $this->registerArgument('prioritizedCountries', 'array', 'A list of country codes which should be listed on top of the list.', false, []);
+        $this->registerArgument('alternativeLanguage', 'string', 'If specified, the country list will be shown in the given language.');
+        $this->registerArgument('required', 'boolean', 'If set no empty value is allowed.', false, false);
+    }
+
+    public function render(): string
+    {
+        if ($this->arguments['required']) {
+            $this->tag->addAttribute('required', 'required');
+        }
+        $name = $this->getName();
+        $this->addAdditionalIdentityPropertiesIfNeeded();
+        $this->setErrorClassAttribute();
+        $this->registerFieldNameForFormTokenGeneration($name);
+        $this->setRespectSubmittedDataValue(true);
+
+        $this->tag->addAttribute('name', $name);
+
+        $validCountries = $this->getCountryList();
+        $options = $this->createOptions($validCountries);
+        $selectedValue = $this->getValueAttribute();
+
+        $tagContent = $this->renderPrependOptionTag();
+        foreach ($options as $value => $label) {
+            $tagContent .= $this->renderOptionTag($value, $label, $value === $selectedValue);
+        }
+
+        $this->tag->forceClosingTag(true);
+        $this->tag->setContent($tagContent);
+        return $this->tag->render();
+    }
+
+    /**
+     * @param Country[] $countries
+     * @return array<string, string>
+     */
+    protected function createOptions(array $countries): array
+    {
+        $options = [];
+        foreach ($countries as $code => $country) {
+            switch ($this->arguments['optionLabelField']) {
+                case 'localizedName':
+                    $options[$code] = $this->translate($country->getLocalizedNameLabel());
+                    break;
+                case 'name':
+                    $options[$code] = $country->getName();
+                    break;
+                case 'officialName':
+                    $options[$code] = $country->getOfficialName();
+                    break;
+                case 'localizedOfficialName':
+                    $name = $this->translate($country->getLocalizedOfficialNameLabel());
+                    if (!$name) {
+                        $name = $this->translate($country->getLocalizedNameLabel());
+                    }
+                    $options[$code] = $name;
+                    break;
+                default:
+                    throw new \TYPO3Fluid\Fluid\Core\ViewHelper\Exception('Argument "optionLabelField" of <f:form.countrySelect> must either be set to "localizedName", "name", "officialName", or "localizedOfficialName".', 1674076708);
+            }
+        }
+        if ($this->arguments['sortByOptionLabel']) {
+            asort($options, SORT_LOCALE_STRING);
+        } else {
+            ksort($options, SORT_NATURAL);
+        }
+        if ($this->arguments['prioritizedCountries'] !== []) {
+            $finalOptions = [];
+            foreach ($this->arguments['prioritizedCountries'] as $countryCode) {
+                if (isset($options[$countryCode])) {
+                    $label = $options[$countryCode];
+                    $finalOptions[$countryCode] = $label;
+                    unset($options[$countryCode]);
+                }
+            }
+            foreach ($options as $countryCode => $label) {
+                $finalOptions[$countryCode] = $label;
+            }
+            $options = $finalOptions;
+        }
+        return $options;
+    }
+
+    protected function translate(string $label): string
+    {
+        if ($this->arguments['alternativeLanguage']) {
+            return (string)LocalizationUtility::translate($label, languageKey: $this->arguments['alternativeLanguage']);
+        }
+        return (string)LocalizationUtility::translate($label);
+    }
+
+    /**
+     * Render prepended option tag
+     */
+    protected function renderPrependOptionTag(): string
+    {
+        if ($this->hasArgument('prependOptionLabel')) {
+            $value = $this->hasArgument('prependOptionValue') ? $this->arguments['prependOptionValue'] : '';
+            $label = $this->arguments['prependOptionLabel'];
+            return $this->renderOptionTag((string)$value, (string)$label, false) . LF;
+        }
+        return '';
+    }
+
+    /**
+     * Render one option tag
+     *
+     * @param string $value value attribute of the option tag (will be escaped)
+     * @param string $label content of the option tag (will be escaped)
+     * @param bool $isSelected specifies whether to add selected attribute
+     * @return string the rendered option tag
+     */
+    protected function renderOptionTag(string $value, string $label, bool $isSelected): string
+    {
+        $output = '<option value="' . htmlspecialchars($value) . '"';
+        if ($isSelected) {
+            $output .= ' selected="selected"';
+        }
+        $output .= '>' . htmlspecialchars($label) . '</option>';
+        return $output;
+    }
+
+    /**
+     * @return Country[]
+     */
+    protected function getCountryList(): array
+    {
+        $countryProvider = GeneralUtility::makeInstance(CountryProvider::class);
+        $countries = [];
+        $excludedCountryCodes = $this->arguments['excludeCountries'] ?? [];
+        $allowedCountryCodes = $this->arguments['onlyCountries'] ?? [];
+        if ($allowedCountryCodes !== []) {
+            foreach ($allowedCountryCodes as $countryCode) {
+                $country = $countryProvider->getByIsoCode($countryCode);
+                if ($country !== null) {
+                    $countries[$country->getAlpha2IsoCode()] = $country;
+                }
+            }
+        } else {
+            foreach ($countryProvider->getAll() as $country) {
+                if (!in_array($country->getAlpha2IsoCode(), $excludedCountryCodes)) {
+                    $countries[$country->getAlpha2IsoCode()] = $country;
+                }
+            }
+        }
+        return $countries;
+    }
+}
diff --git a/typo3/sysext/fluid/Tests/Functional/ViewHelpers/Form/CountrySelectViewHelperTest.php b/typo3/sysext/fluid/Tests/Functional/ViewHelpers/Form/CountrySelectViewHelperTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..6abba44dca2d65f6a56d50086ac0626b960948b3
--- /dev/null
+++ b/typo3/sysext/fluid/Tests/Functional/ViewHelpers/Form/CountrySelectViewHelperTest.php
@@ -0,0 +1,136 @@
+<?php
+
+declare(strict_types=1);
+
+/*
+ * This file is part of the TYPO3 CMS project.
+ *
+ * It is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, either version 2
+ * of the License, or any later version.
+ *
+ * For the full copyright and license information, please read the
+ * LICENSE.txt file that was distributed with this source code.
+ *
+ * The TYPO3 project - inspiring people to share!
+ */
+
+namespace TYPO3\CMS\Fluid\Tests\Functional\ViewHelpers\Form;
+
+use TYPO3\CMS\Core\Http\ServerRequest;
+use TYPO3\CMS\Extbase\Mvc\ExtbaseRequestParameters;
+use TYPO3\CMS\Extbase\Mvc\Request;
+use TYPO3\CMS\Fluid\Core\Rendering\RenderingContextFactory;
+use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
+use TYPO3Fluid\Fluid\View\TemplateView;
+
+class CountrySelectViewHelperTest extends FunctionalTestCase
+{
+    protected bool $initializeDatabase = false;
+
+    /**
+     * @test
+     */
+    public function renderCorrectlySetsTagNameAndDefaultAttributes(): void
+    {
+        $context = $this->get(RenderingContextFactory::class)->create();
+        $context->getTemplatePaths()->setTemplateSource('<f:form.countrySelect name="myCountry" value="KW" prependOptionLabel="Please choose" />');
+        $serverRequest = (new ServerRequest())->withAttribute('extbase', new ExtbaseRequestParameters());
+        $context->setRequest(new Request($serverRequest));
+        $result = (new TemplateView($context))->render();
+        self::assertStringContainsString('<select name="myCountry"><option value="">Please choose</option>', $result);
+        self::assertStringContainsString('<option value="ES">Spain</option>', $result);
+    }
+
+    /**
+     * @test
+     */
+    public function renderCorrectlyPreselectsAValidValue(): void
+    {
+        $context = $this->get(RenderingContextFactory::class)->create();
+        $context->getTemplatePaths()->setTemplateSource('<f:form.countrySelect name="myCountry" value="KW" alternativeLanguage="fr" prependOptionLabel="Please choose" />');
+        $serverRequest = (new ServerRequest())->withAttribute('extbase', new ExtbaseRequestParameters());
+        $context->setRequest(new Request($serverRequest));
+        $result = (new TemplateView($context))->render();
+        self::assertStringContainsString('<option value="KW" selected="selected">Koweït</option>', $result);
+    }
+
+    /**
+     * @test
+     */
+    public function renderCorrectlyUsesLocalizedNames(): void
+    {
+        $context = $this->get(RenderingContextFactory::class)->create();
+        $context->getTemplatePaths()->setTemplateSource('<f:form.countrySelect name="myCountry" value="KW" alternativeLanguage="fr" prependOptionLabel="Please choose" />');
+        $serverRequest = (new ServerRequest())->withAttribute('extbase', new ExtbaseRequestParameters());
+        $context->setRequest(new Request($serverRequest));
+        $result = (new TemplateView($context))->render();
+        self::assertStringContainsString('<option value="ES">Espagne</option>', $result);
+    }
+
+    /**
+     * @test
+     */
+    public function renderShowsPrioritizedCountriesFirst(): void
+    {
+        $context = $this->get(RenderingContextFactory::class)->create();
+        $context->getTemplatePaths()->setTemplateSource('<f:form.countrySelect required="true" prioritizedCountries="{0: \'GB\', 1: \'US\', 2: \'CA\'}" name="myCountry" value="US" alternativeLanguage="en" prependOptionLabel="Please choose" />');
+        $serverRequest = (new ServerRequest())->withAttribute('extbase', new ExtbaseRequestParameters());
+        $context->setRequest(new Request($serverRequest));
+        $result = (new TemplateView($context))->render();
+        self::assertStringContainsString('<select required="required" name="myCountry"><option value="">Please choose</option>
+<option value="GB">United Kingdom</option><option value="US" selected="selected">United States</option><option value="CA">Canada</option><option value="AD">Andorra</option>', $result);
+    }
+
+    /**
+     * @test
+     */
+    public function rendersSortsByOptionLabel(): void
+    {
+        $context = $this->get(RenderingContextFactory::class)->create();
+        $context->getTemplatePaths()->setTemplateSource('<f:form.countrySelect sortByOptionLabel="true" name="myCountry" />');
+        $serverRequest = (new ServerRequest())->withAttribute('extbase', new ExtbaseRequestParameters());
+        $context->setRequest(new Request($serverRequest));
+        $result = (new TemplateView($context))->render();
+        self::assertStringContainsString('<option value="DE">Germany</option><option value="GH">Ghana</option>', $result);
+    }
+
+    /**
+     * @test
+     */
+    public function rendersSortsByOptionLabelWithLocalizedOfficialName(): void
+    {
+        $context = $this->get(RenderingContextFactory::class)->create();
+        $context->getTemplatePaths()->setTemplateSource('<f:form.countrySelect optionLabelField="localizedOfficialName" alternativeLanguage="de" sortByOptionLabel="true" name="myCountry" />');
+        $serverRequest = (new ServerRequest())->withAttribute('extbase', new ExtbaseRequestParameters());
+        $context->setRequest(new Request($serverRequest));
+        $result = (new TemplateView($context))->render();
+        self::assertStringContainsString('<option value="BD">Volksrepublik Bangladesh</option><option value="CN">Volksrepublik China</option>', $result);
+    }
+
+    /**
+     * @test
+     */
+    public function renderExcludesCountries(): void
+    {
+        $context = $this->get(RenderingContextFactory::class)->create();
+        $context->getTemplatePaths()->setTemplateSource('<f:form.countrySelect excludeCountries="{0: \'RU\', 1: \'CN\'}" optionLabelField="localizedOfficialName" alternativeLanguage="de" sortByOptionLabel="true" name="myCountry" />');
+        $serverRequest = (new ServerRequest())->withAttribute('extbase', new ExtbaseRequestParameters());
+        $context->setRequest(new Request($serverRequest));
+        $result = (new TemplateView($context))->render();
+        self::assertStringNotContainsString('<option value="CN">Volksrepublik China</option>', $result);
+        self::assertStringNotContainsString('<option value="RU">', $result);
+    }
+    /**
+     * @test
+     */
+    public function renderOnlyListsWantedCountries(): void
+    {
+        $context = $this->get(RenderingContextFactory::class)->create();
+        $context->getTemplatePaths()->setTemplateSource('<f:form.countrySelect onlyCountries="{0: \'CH\', 1: \'AT\'}" optionLabelField="localizedOfficialName" alternativeLanguage="de" sortByOptionLabel="true" name="myCountry" />');
+        $serverRequest = (new ServerRequest())->withAttribute('extbase', new ExtbaseRequestParameters());
+        $context->setRequest(new Request($serverRequest));
+        $result = (new TemplateView($context))->render();
+        self::assertEquals('<select name="myCountry"><option value="AT">Republik Österreich</option><option value="CH">Schweizerische Eidgenossenschaft</option></select>', $result);
+    }
+}