[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#1034782: unblock: tzdata/2023c-3



Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock
X-Debbugs-Cc: tzdata@packages.debian.org, bdrung@debian.org
Control: affects -1 + src:tzdata

Please unblock package tzdata

[ Reason ]
This update contains two bigger changes:
1. Add Romanian debconf translation
2. Fix or drop wrong translations (different cities have identical
translations). This includes converting timezones for cities that were
renamed in the past, adding a test script to prevent future wrong
(fuzzy) translations. I used Wikipedia to fix the wrong translation
(were is was possible).

[ Impact ]
Adding a country to the timezone database often lead to fuzzy
translations of similar named countries. This is an issue that happened
in Ubuntu and might happen in Debian (the Debian stable updates most
often apply only patches which reduces the risk).

[ Tests ]
The tzdata package has several tests during build and autopkgtest to
cover regression and inconsistencies. I added debian/check_translations
to catch future inconsistencies.

[ Risks ]
The change only affects the debconf timezone selection and the
translation for it. The actual timezone data is unchanged.

[ Checklist ]
  [x] all changes are documented in the d/changelog
  [x] I reviewed all changes and I approve them
  [x] attach debdiff against the package in testing

unblock tzdata/2023c-3
diff -Nru tzdata-2023c/debian/changelog tzdata-2023c/debian/changelog
--- tzdata-2023c/debian/changelog	2023-03-30 01:14:49.000000000 +0200
+++ tzdata-2023c/debian/changelog	2023-04-13 13:54:30.000000000 +0200
@@ -1,3 +1,18 @@
+tzdata (2023c-3) unstable; urgency=medium
+
+  * test_timezone_conversions: Print all failures before failing
+  * Add Romanian debconf translation. Thanks to Remus-Gabriel Chelu
+    (Closes: #1034094)
+  * Add Language metadata to all debconf translation files
+  * Convert Pacific/Ponape to Pacific/Pohnpei on upgrade
+  * Convert Asia/Ujung_Pandang to Asia/Makassar on upgrade
+  * Convert Pacific/Truk to Pacific/Chuuk on upgrade
+  * Fix or drop wrong translations
+  * Check debconf translation files for inconsistencies
+  * Fix German translation of Christmas and Easter Island
+
+ -- Benjamin Drung <bdrung@debian.org>  Thu, 13 Apr 2023 13:54:30 +0200
+
 tzdata (2023c-2) unstable; urgency=medium
 
   * Add autopkgtest test case for pre-1970 timestamps
diff -Nru tzdata-2023c/debian/check_translations tzdata-2023c/debian/check_translations
--- tzdata-2023c/debian/check_translations	1970-01-01 01:00:00.000000000 +0100
+++ tzdata-2023c/debian/check_translations	2023-04-13 13:43:10.000000000 +0200
@@ -0,0 +1,66 @@
+#!/usr/bin/python3
+
+# Author: Benjamin Drung <bdrung@ubuntu.com>
+
+"""Check translation .po files for inconsistencies like identical translations."""
+
+
+import argparse
+import collections
+import logging
+import os
+import sys
+
+import polib
+
+LOG_FORMAT = "%(name)s %(levelname)s: %(message)s"
+__script_name__ = os.path.basename(sys.argv[0]) if __name__ == "__main__" else __name__
+
+
+def check_duplicate_translations(po_file: polib.POFile) -> int:
+    """Check if different msgids have the identical translation."""
+    msgstr_to_msgids = collections.defaultdict(set)
+    for entry in po_file:
+        if entry.msgstr == "":
+            continue
+        msgstr_to_msgids[entry.msgstr].add(entry.msgid)
+
+    # Drop single translations
+    duplicate_translations = {
+        msgstr: msgids for msgstr, msgids in msgstr_to_msgids.items() if len(msgids) > 1
+    }
+    if not duplicate_translations:
+        return 0
+
+    logger = logging.getLogger(__script_name__)
+    for msgstr, msgids in duplicate_translations.items():
+        logger.warning(
+            "Following IDs have the identical '%s' translation '%s': %s",
+            po_file.metadata["Language"],
+            msgstr,
+            ", ".join(sorted(msgids)),
+        )
+    return 1
+
+
+def check_translation(po_filename: str) -> int:
+    """Check translation .po file for issues."""
+    po_file = polib.pofile(po_filename)
+    return check_duplicate_translations(po_file)
+
+
+def main() -> int:
+    """Check translation .po files for inconsistencies like identical translations."""
+    parser = argparse.ArgumentParser()
+    parser.add_argument("po_file", nargs="*")
+    args = parser.parse_args()
+    logging.basicConfig(format=LOG_FORMAT, level=logging.INFO)
+
+    failures = 0
+    for po_filename in args.po_file:
+        failures += check_translation(po_filename)
+    return failures
+
+
+if __name__ == "__main__":
+    sys.exit(main())
diff -Nru tzdata-2023c/debian/control tzdata-2023c/debian/control
--- tzdata-2023c/debian/control	2023-03-30 01:02:32.000000000 +0200
+++ tzdata-2023c/debian/control	2023-04-13 13:43:10.000000000 +0200
@@ -2,7 +2,11 @@
 Section: localization
 Priority: required
 Build-Depends: debhelper-compat (= 13)
-Build-Depends-Indep: gawk, po-debconf, python3 (>= 3.9), python3-debian
+Build-Depends-Indep: gawk,
+                     po-debconf,
+                     python3 (>= 3.9),
+                     python3-debian,
+                     python3-polib
 Rules-Requires-Root: no
 Maintainer: GNU Libc Maintainers <debian-glibc@lists.debian.org>
 Uploaders: Clint Adams <clint@debian.org>,
diff -Nru tzdata-2023c/debian/generate_debconf_templates tzdata-2023c/debian/generate_debconf_templates
--- tzdata-2023c/debian/generate_debconf_templates	2023-03-30 01:02:32.000000000 +0200
+++ tzdata-2023c/debian/generate_debconf_templates	2023-04-13 13:28:30.000000000 +0200
@@ -50,6 +50,7 @@
     "Asia/Rangoon",
     "Asia/Saigon",
     "Asia/Thimbu",
+    "Asia/Ujung_Pandang",
     "Asia/Ulan_Bator",
     "Atlantic/Faeroe",
     "Australia/ACT",
@@ -62,6 +63,8 @@
     "Australia/Victoria",
     "Australia/West",
     "Europe/Kiev",
+    "Pacific/Ponape",
+    "Pacific/Truk",
     "US/East-Indiana",
 }
 
@@ -79,7 +82,6 @@
     "America/Virgin",
     "Arctic/Longyearbyen",
     "Asia/Istanbul",
-    "Asia/Ujung_Pandang",
     "Australia/Canberra",
     "Australia/Yancowinna",
     "Europe/Bratislava",
@@ -89,9 +91,7 @@
     "Europe/Podgorica",
     "Europe/San_Marino",
     "Europe/Vatican",
-    "Pacific/Ponape",
     "Pacific/Samoa",
-    "Pacific/Truk",
     "Pacific/Yap",
     "US/Alaska",
     "US/Aleutian",
diff -Nru tzdata-2023c/debian/po/be.po tzdata-2023c/debian/po/be.po
--- tzdata-2023c/debian/po/be.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/be.po	2023-04-13 13:43:08.000000000 +0200
@@ -25,7 +25,7 @@
 "PO-Revision-Date: 2013-12-24 23:13+0100\n"
 "Last-Translator: Pavel Piatruk <piatruk.p@gmail.com>\n"
 "Language-Team: Belarusian (Official spelling) <i18n@mova.org>\n"
-"Language: \n"
+"Language: be\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -198,7 +198,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:2001
 msgid "Asmara"
-msgstr "Самара"
+msgstr "Асмара"
 
 #. Type: select
 #. Choices
@@ -2369,13 +2369,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Уюнг-Панданг"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Улан-Батар"
 
@@ -3342,13 +3335,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Панап"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Порт-Морзбі"
 
@@ -3399,13 +3385,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Трук"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/bg.po tzdata-2023c/debian/po/bg.po
--- tzdata-2023c/debian/po/bg.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/bg.po	2023-04-13 13:28:30.000000000 +0200
@@ -2362,13 +2362,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Уюнг Панданг"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Улан Батор"
 
@@ -3335,13 +3328,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Понапе"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Порт Морзби"
 
@@ -3392,13 +3378,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Трък"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/ca.po tzdata-2023c/debian/po/ca.po
--- tzdata-2023c/debian/po/ca.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/ca.po	2023-04-13 13:43:08.000000000 +0200
@@ -2473,13 +2473,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -2751,7 +2744,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:9001
 msgid "Astrakhan"
-msgstr "Austràlia"
+msgstr "Astracan"
 
 # Gnome_2.16_Desktop [gnome-applets-locations.HEAD.ca.po]
 #. Type: select
@@ -3526,13 +3519,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3586,13 +3572,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/cs.po tzdata-2023c/debian/po/cs.po
--- tzdata-2023c/debian/po/cs.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/cs.po	2023-04-13 13:28:30.000000000 +0200
@@ -2352,13 +2352,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3325,13 +3318,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3382,13 +3368,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/da.po tzdata-2023c/debian/po/da.po
--- tzdata-2023c/debian/po/da.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/da.po	2023-04-13 13:28:30.000000000 +0200
@@ -2347,13 +2347,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3323,13 +3316,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3380,13 +3366,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/de.po tzdata-2023c/debian/po/de.po
--- tzdata-2023c/debian/po/de.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/de.po	2023-04-13 13:54:28.000000000 +0200
@@ -2350,13 +2350,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Makassar"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulan-Bator (Ulaanbaatar)"
 
@@ -3037,7 +3030,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:10001
 msgid "Christmas"
-msgstr "Christmas"
+msgstr "Weihnachtsinsel"
 
 #. Type: select
 #. Choices
@@ -3135,7 +3128,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Easter"
-msgstr "Easter"
+msgstr "Osterinsel"
 
 #. Type: select
 #. Choices
@@ -3323,13 +3316,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3380,13 +3366,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/en.po tzdata-2023c/debian/po/en.po
--- tzdata-2023c/debian/po/en.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/en.po	2023-04-13 13:28:30.000000000 +0200
@@ -11,7 +11,7 @@
 "PO-Revision-Date: 2013-12-24 23:13+0100\n"
 "Last-Translator: Clint Adams <clint@debian.org>\n"
 "Language-Team: English\n"
-"Language: \n"
+"Language: en\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -2347,13 +2347,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3320,13 +3313,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Pohnpei"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3377,13 +3363,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/es.po tzdata-2023c/debian/po/es.po
--- tzdata-2023c/debian/po/es.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/es.po	2023-04-13 13:43:08.000000000 +0200
@@ -521,7 +521,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:2001
 msgid "Sao_Tome"
-msgstr "Santo Tomás"
+msgstr "Santo Tomé"
 
 #. Type: select
 #. Choices
@@ -2382,13 +2382,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Makassar"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulán Bator"
 
@@ -3355,13 +3348,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Puerto Moresby"
 
@@ -3412,13 +3398,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/eu.po tzdata-2023c/debian/po/eu.po
--- tzdata-2023c/debian/po/eu.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/eu.po	2023-04-13 13:43:08.000000000 +0200
@@ -2357,13 +2357,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3142,7 +3135,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Easter"
-msgstr "Ekialdea"
+msgstr "Pazko uhartea"
 
 #. Type: select
 #. Choices
@@ -3330,13 +3323,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3387,13 +3373,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/fi.po tzdata-2023c/debian/po/fi.po
--- tzdata-2023c/debian/po/fi.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/fi.po	2023-04-13 13:28:30.000000000 +0200
@@ -2350,13 +2350,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Makassar"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3323,13 +3316,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Pohnpei"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3380,13 +3366,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Chuuk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/fr.po tzdata-2023c/debian/po/fr.po
--- tzdata-2023c/debian/po/fr.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/fr.po	2023-04-13 13:28:30.000000000 +0200
@@ -2358,13 +2358,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3331,13 +3324,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port-Moresby"
 
@@ -3388,13 +3374,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/gl.po tzdata-2023c/debian/po/gl.po
--- tzdata-2023c/debian/po/gl.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/gl.po	2023-04-13 13:43:08.000000000 +0200
@@ -1814,7 +1814,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
 msgid "Aqtau"
-msgstr "Atyrau"
+msgstr "Aqtau"
 
 #. Type: select
 #. Choices
@@ -2351,13 +2351,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3324,13 +3317,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3381,13 +3367,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/gu.po tzdata-2023c/debian/po/gu.po
--- tzdata-2023c/debian/po/gu.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/gu.po	2023-04-13 13:28:30.000000000 +0200
@@ -2355,13 +2355,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "ઉઝુન્ગ પાન્ડાન્ગ"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "ઉલનબટોર"
 
@@ -3328,13 +3321,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "પોનાપે"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "પોર્ટ મોર્સબે"
 
@@ -3385,13 +3371,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "ટ્રૂક"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/he.po tzdata-2023c/debian/po/he.po
--- tzdata-2023c/debian/po/he.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/he.po	2023-04-13 13:28:30.000000000 +0200
@@ -2357,13 +2357,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "אוז'ונג פנדגנג"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "אולן בטור"
 
@@ -3330,13 +3323,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "פונאפי"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "פורט מורסבי"
 
@@ -3387,13 +3373,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "טרוק"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/hr.po tzdata-2023c/debian/po/hr.po
--- tzdata-2023c/debian/po/hr.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/hr.po	2023-04-13 13:28:30.000000000 +0200
@@ -2363,13 +2363,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3336,13 +3329,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3393,13 +3379,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/hu.po tzdata-2023c/debian/po/hu.po
--- tzdata-2023c/debian/po/hu.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/hu.po	2023-04-13 13:28:30.000000000 +0200
@@ -19,7 +19,7 @@
 "PO-Revision-Date: 2013-12-24 23:13+0100\n"
 "Last-Translator: Dr. Nagy Elemér Károly <nagyek@gdf.hu>\n"
 "Language-Team: Debian L10n Hungarian <debian-l10n-hungarian@lists.debian>\n"
-"Language: \n"
+"Language: hu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -2355,13 +2355,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulánbátor"
 
@@ -3328,13 +3321,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3385,13 +3371,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/id.po tzdata-2023c/debian/po/id.po
--- tzdata-2023c/debian/po/id.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/id.po	2023-04-13 13:28:30.000000000 +0200
@@ -24,7 +24,7 @@
 "Last-Translator: Mahyuddin Susanto <udienz@ubuntu.com>\n"
 "Language-Team: Debian Indonesia Team <debian-l10n-id@gurame.fisika.ui.ac."
 "id>\n"
-"Language: \n"
+"Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -2373,13 +2373,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Makassar"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3346,13 +3339,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3403,13 +3389,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/it.po tzdata-2023c/debian/po/it.po
--- tzdata-2023c/debian/po/it.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/it.po	2023-04-13 13:28:30.000000000 +0200
@@ -2348,13 +2348,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Makassar"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulan Bator"
 
@@ -3321,13 +3314,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3378,13 +3364,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Chuuk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/ja.po tzdata-2023c/debian/po/ja.po
--- tzdata-2023c/debian/po/ja.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/ja.po	2023-04-13 13:43:08.000000000 +0200
@@ -1684,7 +1684,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:3001
 msgid "Yakutat"
-msgstr "ヤクーツク"
+msgstr "ヤクタト"
 
 #. Type: select
 #. Choices
@@ -2347,13 +2347,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "ウジュンパンダン"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "ウランバートル"
 
@@ -3320,13 +3313,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "ポナペ"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "ポルトモーズビー"
 
@@ -3377,13 +3363,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "トラック"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/ko.po tzdata-2023c/debian/po/ko.po
--- tzdata-2023c/debian/po/ko.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/ko.po	2023-04-13 13:43:08.000000000 +0200
@@ -2346,13 +2346,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "우중판당"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "울란바토르"
 
@@ -3131,7 +3124,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Easter"
-msgstr "동부"
+msgstr "이스터섬"
 
 #. Type: select
 #. Choices
@@ -3319,13 +3312,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "폰페이"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "포트모르즈비"
 
@@ -3376,13 +3362,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "트루크 제도"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/ku.po tzdata-2023c/debian/po/ku.po
--- tzdata-2023c/debian/po/ku.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/ku.po	2023-04-13 13:43:08.000000000 +0200
@@ -707,7 +707,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:3001
 msgid "Argentina/San_Luis"
-msgstr "Arjantîn/Buenos Aîres"
+msgstr ""
 
 #. Type: select
 #. Choices
@@ -2364,13 +2364,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3337,13 +3330,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3394,13 +3380,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/lt.po tzdata-2023c/debian/po/lt.po
--- tzdata-2023c/debian/po/lt.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/lt.po	2023-04-13 13:43:08.000000000 +0200
@@ -905,7 +905,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:3001
 msgid "Curacao"
-msgstr "Karakasas"
+msgstr "Kiurasao"
 
 #. Type: select
 #. Choices
@@ -1234,7 +1234,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:3001
 msgid "Marigot"
-msgstr "Mauricijus"
+msgstr ""
 
 #. Type: select
 #. Choices
@@ -2359,13 +2359,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Udžungpandangas"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulanbatoras"
 
@@ -3046,7 +3039,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:10001
 msgid "Christmas"
-msgstr "Velykų sala"
+msgstr "Kalėdų sala"
 
 #. Type: select
 #. Choices
@@ -3332,13 +3325,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponapė"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Morsbis"
 
@@ -3389,13 +3375,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Trukas"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/ml.po tzdata-2023c/debian/po/ml.po
--- tzdata-2023c/debian/po/ml.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/ml.po	2023-04-13 13:28:30.000000000 +0200
@@ -21,7 +21,7 @@
 "Last-Translator: Praveen|പ്രവീണ്‍ A|എ <pravi.a@gmail.com>\n"
 "Language-Team: Swathanthra Malayalam Computing <smc-discuss@googlegroups."
 "com>\n"
-"Language: \n"
+"Language: ml\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -2365,13 +2365,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "ഉജങ് പാണ്ടങ്"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "ഉലാന്‍ബാത്തര്‍"
 
@@ -3338,13 +3331,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "പൊനാപേ"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "മോര്‍സ്ബി തുറമുഖം"
 
@@ -3395,13 +3381,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "ട്രക്"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/nl.po tzdata-2023c/debian/po/nl.po
--- tzdata-2023c/debian/po/nl.po	2023-03-29 21:19:31.000000000 +0200
+++ tzdata-2023c/debian/po/nl.po	2023-04-13 13:28:30.000000000 +0200
@@ -2351,13 +2351,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3324,13 +3317,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3381,13 +3367,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/pl.po tzdata-2023c/debian/po/pl.po
--- tzdata-2023c/debian/po/pl.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/pl.po	2023-04-13 13:28:30.000000000 +0200
@@ -2352,13 +2352,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Makasar (d. Ujung Pandang)"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ułan Bator"
 
@@ -3325,13 +3318,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3382,13 +3368,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Chuuk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/pt_BR.po tzdata-2023c/debian/po/pt_BR.po
--- tzdata-2023c/debian/po/pt_BR.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/pt_BR.po	2023-04-13 13:28:30.000000000 +0200
@@ -2353,13 +2353,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3326,13 +3319,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3383,13 +3369,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/pt.po tzdata-2023c/debian/po/pt.po
--- tzdata-2023c/debian/po/pt.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/pt.po	2023-04-13 13:28:30.000000000 +0200
@@ -2352,13 +2352,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3325,13 +3318,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Porto Moresby"
 
@@ -3382,13 +3368,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/ro.po tzdata-2023c/debian/po/ro.po
--- tzdata-2023c/debian/po/ro.po	1970-01-01 01:00:00.000000000 +0100
+++ tzdata-2023c/debian/po/ro.po	2023-04-13 13:28:30.000000000 +0200
@@ -0,0 +1,3457 @@
+# Mesajele în limba română pentru pachetul tzdata.
+# Romanian translation of tzdata.
+# Copyright © 2023 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the tzdata package.
+#
+# Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>, 2023.
+#
+# Cronologia traducerii fișierului „tzdata”:
+# Traducerea inițială, făcută de R-GC, pentru versiunea tzdata 2022g-7(2023-02-06).
+# Actualizare a traducerii pentru versiunea Y, făcută de X, Y(anul).
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: tzdata 2022g-7\n"
+"Report-Msgid-Bugs-To: tzdata@packages.debian.org\n"
+"POT-Creation-Date: 2023-02-06 11:44+0100\n"
+"PO-Revision-Date: 2023-03-28 13:33+0200\n"
+"Last-Translator: Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>\n"
+"Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
+"Language: ro\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && "
+"n%100<=19) ? 1 : 2);\n"
+"X-Bugs: Report translation errors to the Language-Team address.\n"
+"X-Generator: Poedit 3.2.2\n"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#: ../tzdata.templates:1001
+msgid "Africa"
+msgstr "Africa"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#: ../tzdata.templates:1001
+msgid "America"
+msgstr "America"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#: ../tzdata.templates:1001
+msgid "Antarctica"
+msgstr "Antarctica"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#: ../tzdata.templates:1001
+msgid "Arctic"
+msgstr "Arctic"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#: ../tzdata.templates:1001
+msgid "Asia"
+msgstr "Asia"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#: ../tzdata.templates:1001
+msgid "Atlantic"
+msgstr "Atlantic"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#: ../tzdata.templates:1001
+msgid "Australia"
+msgstr "Australia"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#: ../tzdata.templates:1001
+msgid "Europe"
+msgstr "Europa"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#: ../tzdata.templates:1001
+msgid "Indian"
+msgstr "Indian"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:1001 ../tzdata.templates:12001
+msgid "Pacific"
+msgstr "Pacific"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#: ../tzdata.templates:1001
+msgid "US"
+msgstr "SUA"
+
+#. Type: select
+#. Choices
+#. Note to translators:
+#. - "Etc" will present users with a list
+#. of "GMT+xx" or "GMT-xx" timezones
+#: ../tzdata.templates:1001
+msgid "Etc"
+msgstr "Etc."
+
+#. Type: select
+#. Description
+#: ../tzdata.templates:1002
+msgid "Geographic area:"
+msgstr "Zona geografică:"
+
+#. Type: select
+#. Description
+#: ../tzdata.templates:1002
+msgid ""
+"Please select the geographic area in which you live. Subsequent "
+"configuration questions will narrow this down by presenting a list of "
+"cities, representing the time zones in which they are located."
+msgstr ""
+"Vă rugăm să selectați zona geografică în care locuiți. Întrebările "
+"ulterioare de configurare vor restrânge acest lucru prin prezentarea unei "
+"liste de orașe, reprezentând fusurile orare în care sunt situate."
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Abidjan"
+msgstr "Abidjan"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Accra"
+msgstr "Accra"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Addis_Ababa"
+msgstr "Addis Abeba"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Algiers"
+msgstr "Alger"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Asmara"
+msgstr "Asmara"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Bamako"
+msgstr "Bamako"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Bangui"
+msgstr "Bangui"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Banjul"
+msgstr "Banjul"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Bissau"
+msgstr "Bissau"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Blantyre"
+msgstr "Blantyre"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Brazzaville"
+msgstr "Brazzaville"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Bujumbura"
+msgstr "Bujumbura"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Cairo"
+msgstr "Cairo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Casablanca"
+msgstr "Casablanca"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Ceuta"
+msgstr "Ceuta"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Conakry"
+msgstr "Conakry"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Dakar"
+msgstr "Dakar"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Dar_es_Salaam"
+msgstr "Dar es Salaam"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Douala"
+msgstr "Douala"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "El_Aaiun"
+msgstr "El Aaiun"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Freetown"
+msgstr "Freetown"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Gaborone"
+msgstr "Gaborone"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Harare"
+msgstr "Harare"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Johannesburg"
+msgstr "Johannesburg"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Juba"
+msgstr "Juba"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Kampala"
+msgstr "Kampala"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Khartoum"
+msgstr "Khartoum"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Kigali"
+msgstr "Kigali"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Kinshasa"
+msgstr "Kinshasa"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Lagos"
+msgstr "Lagos"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Libreville"
+msgstr "Libreville"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Lome"
+msgstr "Lome"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Luanda"
+msgstr "Luanda"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Lubumbashi"
+msgstr "Lubumbashi"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Lusaka"
+msgstr "Lusaka"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Malabo"
+msgstr "Malabo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Maputo"
+msgstr "Maputo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Maseru"
+msgstr "Maseru"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Mbabane"
+msgstr "Mbabane"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Mogadishu"
+msgstr "Mogadiscio"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Monrovia"
+msgstr "Monrovia"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Nairobi"
+msgstr "Nairobi"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Ndjamena"
+msgstr "Ndjamena"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Niamey"
+msgstr "Niamey"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Nouakchott"
+msgstr "Nouakchott"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Ouagadougou"
+msgstr "Ouagadougou"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Porto-Novo"
+msgstr "Porto-Novo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Sao_Tome"
+msgstr "Sao-Tome"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Timbuktu"
+msgstr "Tombuctu"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Tripoli"
+msgstr "Tripoli"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Tunis"
+msgstr "Tunis"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:2001
+msgid "Windhoek"
+msgstr "Windhoek"
+
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#: ../tzdata.templates:2002 ../tzdata.templates:3002 ../tzdata.templates:4002
+#: ../tzdata.templates:5002 ../tzdata.templates:6002 ../tzdata.templates:7002
+#: ../tzdata.templates:8002 ../tzdata.templates:9002 ../tzdata.templates:10002
+#: ../tzdata.templates:11002 ../tzdata.templates:12002
+#: ../tzdata.templates:13001
+msgid "Time zone:"
+msgstr "Fus orar:"
+
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#. Type: select
+#. Description
+#: ../tzdata.templates:2002 ../tzdata.templates:3002 ../tzdata.templates:4002
+#: ../tzdata.templates:5002 ../tzdata.templates:6002 ../tzdata.templates:7002
+#: ../tzdata.templates:8002 ../tzdata.templates:9002 ../tzdata.templates:10002
+#: ../tzdata.templates:11002 ../tzdata.templates:12002
+#: ../tzdata.templates:13001
+msgid "Please select the city or region corresponding to your time zone."
+msgstr ""
+"Vă rugăm să selectați orașul sau regiunea care corespunde fusului dvs. orar."
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Adak"
+msgstr "Adak"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Anchorage"
+msgstr "Anchorage"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Anguilla"
+msgstr "Anguila"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Antigua"
+msgstr "Antigua"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Araguaina"
+msgstr "Araguaina"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/Buenos_Aires"
+msgstr "Argentina / Buenos Aires"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/Catamarca"
+msgstr "Argentina / Catamarca"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/ComodRivadavia"
+msgstr "Argentina / ComodRivadavia"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/Cordoba"
+msgstr "Argentina / Cordoba"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/Jujuy"
+msgstr "Argentina / Jujuy"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/La_Rioja"
+msgstr "Argentina / La Rioja"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/Mendoza"
+msgstr "Argentina / Mendoza"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/Rio_Gallegos"
+msgstr "Argentina / Rio Gallegos"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/Salta"
+msgstr "Argentina / Salta"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/San_Juan"
+msgstr "Argentina / San Juan"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/San_Luis"
+msgstr "Argentina / San Luis"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/Tucuman"
+msgstr "Argentina / Tucuman"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Argentina/Ushuaia"
+msgstr "Argentina / Ushuaia"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Aruba"
+msgstr "Aruba"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Asuncion"
+msgstr "Asuncion"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Atikokan"
+msgstr "Atikokan"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Atka"
+msgstr "Atka"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Bahia"
+msgstr "Bahia"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Bahia_Banderas"
+msgstr "Bahia Banderas"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Barbados"
+msgstr "Barbados"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Belem"
+msgstr "Belem"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Belize"
+msgstr "Belize"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Blanc-Sablon"
+msgstr "Blanc-Sablon"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Boa_Vista"
+msgstr "Boa Vista"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Bogota"
+msgstr "Bogota"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Boise"
+msgstr "Boise"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Cambridge_Bay"
+msgstr "Cambridge Bay"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Campo_Grande"
+msgstr "Campo Grande"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Cancun"
+msgstr "Cancun"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Caracas"
+msgstr "Caracas"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Cayenne"
+msgstr "Cayenne"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Cayman"
+msgstr "Cayman"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Chicago"
+msgstr "Chicago"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Chihuahua"
+msgstr "Chihuahua"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Ciudad_Juarez"
+msgstr "Ciudad Juarez"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Coral_Harbour"
+msgstr "Coral Harbour"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Costa_Rica"
+msgstr "Costa Rica"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Creston"
+msgstr "Creston"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Cuiaba"
+msgstr "Cuiaba"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Curacao"
+msgstr "Curacao"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Danmarkshavn"
+msgstr "Danmarkshavn"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Dawson"
+msgstr "Dawson"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Dawson_Creek"
+msgstr "Dawson Creek"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Denver"
+msgstr "Denver"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Detroit"
+msgstr "Detroit"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Dominica"
+msgstr "Dominica"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Edmonton"
+msgstr "Edmonton"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Eirunepe"
+msgstr "Eirunepe"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "El_Salvador"
+msgstr "El Salvador"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Ensenada"
+msgstr "Ensenada"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Fort_Nelson"
+msgstr "Fort Nelson"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Fortaleza"
+msgstr "Fortaleza"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Glace_Bay"
+msgstr "Glace Bay"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Godthab"
+msgstr "Godthab"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Goose_Bay"
+msgstr "Goose Bay"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Grand_Turk"
+msgstr "Grand Turk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Grenada"
+msgstr "Grenada"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Guayaquil"
+msgstr "Guayaquil"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Guyana"
+msgstr "Guyana"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Halifax"
+msgstr "Halifax"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Havana"
+msgstr "Havana"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Hermosillo"
+msgstr "Hermosillo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Indiana/Indianapolis"
+msgstr "Indiana/Indianapolis"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Indiana/Knox"
+msgstr "Indiana / Knox"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Indiana/Marengo"
+msgstr "Indiana / Marengo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Indiana/Petersburg"
+msgstr "Indiana / Petersburg"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Indiana/Tell_City"
+msgstr "Indiana / Tell City"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Indiana/Vevay"
+msgstr "Indiana / Vevay"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Indiana/Vincennes"
+msgstr "Indiana / Vincennes"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Indiana/Winamac"
+msgstr "Indiana / Winamac"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Inuvik"
+msgstr "Inuvik"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Iqaluit"
+msgstr "Iqaluit"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Juneau"
+msgstr "Juneau"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Kentucky/Louisville"
+msgstr "Kentucky / Louisville"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Kentucky/Monticello"
+msgstr "Kentucky / Monticello"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Kralendijk"
+msgstr "Kralendijk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "La_Paz"
+msgstr "La Paz"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Lima"
+msgstr "Lima"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Los_Angeles"
+msgstr "Los Angeles"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Lower_Princes"
+msgstr "Lower Princes"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Maceio"
+msgstr "Maceio"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Managua"
+msgstr "Managua"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Manaus"
+msgstr "Manaus"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Marigot"
+msgstr "Marigot"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Martinique"
+msgstr "Martinica"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Matamoros"
+msgstr "Matamoros"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Mazatlan"
+msgstr "Mazatlan"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Menominee"
+msgstr "Menominee"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Merida"
+msgstr "Merida"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Metlakatla"
+msgstr "Metlakatla"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Mexico_City"
+msgstr "Mexico City"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Miquelon"
+msgstr "Miquelon"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Moncton"
+msgstr "Moncton"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Monterrey"
+msgstr "Monterrey"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Montevideo"
+msgstr "Montevideo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Montreal"
+msgstr "Montreal"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Nassau"
+msgstr "Nassau"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "New_York"
+msgstr "New_York"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Nipigon"
+msgstr "Nipigon"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Nome"
+msgstr "Nome"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Noronha"
+msgstr "Noronha"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "North_Dakota/Beulah"
+msgstr "Dakota de Nord / Beulah"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "North_Dakota/Center"
+msgstr "Dakota de Nord / Center"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "North_Dakota/New_Salem"
+msgstr "Dakota de Nord / New Salem"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Nuuk"
+msgstr "Nuuk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Ojinaga"
+msgstr "Ojinaga"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Panama"
+msgstr "Panama"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Pangnirtung"
+msgstr "Pangnirtung"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Paramaribo"
+msgstr "Paramaribo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Phoenix"
+msgstr "Phoenix"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Port-au-Prince"
+msgstr "Port au Prince"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Port_of_Spain"
+msgstr "Port of Spain"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Porto_Acre"
+msgstr "Porto Acre"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Porto_Velho"
+msgstr "Porto Velho"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Puerto_Rico"
+msgstr "Porto Rico"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Punta_Arenas"
+msgstr "Punta Arenas"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Rainy_River"
+msgstr "Rainy River"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Rankin_Inlet"
+msgstr "Rankin Inlet"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Recife"
+msgstr "Recife"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Regina"
+msgstr "Regina"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Resolute"
+msgstr "Resolute"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Rio_Branco"
+msgstr "Rio Branco"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Rosario"
+msgstr "Rosario"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Santa_Isabel"
+msgstr "Santa Isabel"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Santarem"
+msgstr "Santarem"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Santiago"
+msgstr "Santiago"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Santo_Domingo"
+msgstr "Santo Domingo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Sao_Paulo"
+msgstr "Sao Paulo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Scoresbysund"
+msgstr "Scoresbysund"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Shiprock"
+msgstr "Shiprock"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Sitka"
+msgstr "Sitka"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "St_Barthelemy"
+msgstr "Saint Barthelemy"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "St_Johns"
+msgstr "Saint Johns"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "St_Kitts"
+msgstr "Saint Kitts"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "St_Lucia"
+msgstr "Saint Lucia"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "St_Thomas"
+msgstr "Saint Thomas"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "St_Vincent"
+msgstr "Saint Vincent"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Swift_Current"
+msgstr "Swift Current"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Tegucigalpa"
+msgstr "Tegucigalpa"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Thule"
+msgstr "Thule"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Thunder_Bay"
+msgstr "Thunder Bay"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Tijuana"
+msgstr "Tijuana"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Toronto"
+msgstr "Toronto"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Tortola"
+msgstr "Tortola"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Vancouver"
+msgstr "Vancouver"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Virgin"
+msgstr "Virgin"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Whitehorse"
+msgstr "Whitehorse"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Winnipeg"
+msgstr "Winnipeg"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Yakutat"
+msgstr "Yakutat"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:3001
+msgid "Yellowknife"
+msgstr "Yellowknife"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:4001
+msgid "Casey"
+msgstr "Casey"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:4001
+msgid "Davis"
+msgstr "Davis"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:4001
+msgid "DumontDUrville"
+msgstr "DumontDUrville"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:4001
+msgid "Macquarie"
+msgstr "Macquarie"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:4001
+msgid "Mawson"
+msgstr "Mawson"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:4001
+msgid "McMurdo"
+msgstr "McMurdo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:4001
+msgid "Palmer"
+msgstr "Palmer"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:4001
+msgid "Rothera"
+msgstr "Rothera"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:4001
+msgid "Syowa"
+msgstr "Syowa"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:4001
+msgid "Troll"
+msgstr "Troll"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:4001
+msgid "Vostok"
+msgstr "Vostok"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:5001
+msgid "Longyearbyen"
+msgstr "Longyearbyen"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Aden"
+msgstr "Aden"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Almaty"
+msgstr "Almata"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Amman"
+msgstr "Amman"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Anadyr"
+msgstr "Anadyr"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Aqtau"
+msgstr "Aqtau"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Aqtobe"
+msgstr "Aqtobe"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Ashgabat"
+msgstr "Ashgabat"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Atyrau"
+msgstr "Atyrau"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Baghdad"
+msgstr "Bagdad"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Bahrain"
+msgstr "Bahrain"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Baku"
+msgstr "Baku"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Bangkok"
+msgstr "Bangkok"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Barnaul"
+msgstr "Barnaul"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Beirut"
+msgstr "Beirut"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Bishkek"
+msgstr "Bishkek"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Brunei"
+msgstr "Brunei"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Chita"
+msgstr "Chita"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Choibalsan"
+msgstr "Choibalsan"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Chongqing"
+msgstr "Chongqing"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Colombo"
+msgstr "Colombo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Damascus"
+msgstr "Damasc"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Dhaka"
+msgstr "Dhaka"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Dili"
+msgstr "Dili"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Dubai"
+msgstr "Dubai"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Dushanbe"
+msgstr "Dușanbe"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Famagusta"
+msgstr "Famagusta"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Gaza"
+msgstr "Gaza"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Hanoi"
+msgstr "Hanoi"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Harbin"
+msgstr "Harbin"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Hebron"
+msgstr "Hebron"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Ho_Chi_Minh"
+msgstr "Ho Chi Minh"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Hong_Kong"
+msgstr "Hong Kong"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Hovd"
+msgstr "Hovd"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Irkutsk"
+msgstr "Irkutsk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001 ../tzdata.templates:9001
+msgid "Istanbul"
+msgstr "Istanbul"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Jakarta"
+msgstr "Jakarta"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Jayapura"
+msgstr "Jayapura"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Jerusalem"
+msgstr "Ierusalim"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Kabul"
+msgstr "Kabul"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Kamchatka"
+msgstr "Kamchatka"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Karachi"
+msgstr "Karachi"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Kashgar"
+msgstr "Kashgar"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Kathmandu"
+msgstr "Katmandu"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Khandyga"
+msgstr "Khandiga"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Kolkata"
+msgstr "Calcutta"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Krasnoyarsk"
+msgstr "Krasnoiarsk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Kuala_Lumpur"
+msgstr "Kuala Lumpur"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Kuching"
+msgstr "Kuching"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Kuwait"
+msgstr "Kuweit"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Macau"
+msgstr "Macao"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Magadan"
+msgstr "Magadan"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Makassar"
+msgstr "Makasar"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Manila"
+msgstr "Manila"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Muscat"
+msgstr "Muscat"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001 ../tzdata.templates:9001
+msgid "Nicosia"
+msgstr "Nicosia"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Novokuznetsk"
+msgstr "Novokuznetsk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Novosibirsk"
+msgstr "Novosibirsk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Omsk"
+msgstr "Omsk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Oral"
+msgstr "Oral"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Phnom_Penh"
+msgstr "Phnom Penh"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Pontianak"
+msgstr "Pontianak"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Pyongyang"
+msgstr "Phenian"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Qatar"
+msgstr "Qatar"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Qostanay"
+msgstr "Kostanay"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Qyzylorda"
+msgstr "Qyzylorda"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Riyadh"
+msgstr "Riad"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Sakhalin"
+msgstr "Sahalin"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Samarkand"
+msgstr "Samarkand"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Seoul"
+msgstr "Seul"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Shanghai"
+msgstr "Shanghai"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Singapore"
+msgstr "Singapur"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Srednekolymsk"
+msgstr "Srednekolymsk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Taipei"
+msgstr "Taipei"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Tashkent"
+msgstr "Taşkent"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Tbilisi"
+msgstr "Tbilisi"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Tehran"
+msgstr "Teheran"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Tel_Aviv"
+msgstr "Tel Aviv"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Thimphu"
+msgstr "Timbu"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Tokyo"
+msgstr "Tokyo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Tomsk"
+msgstr "Tomsk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Ulaanbaatar"
+msgstr "Ulaanbaatar"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Urumqi"
+msgstr "Urumqi"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Ust-Nera"
+msgstr "Ust-Nera"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Vientiane"
+msgstr "Vientiane"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Vladivostok"
+msgstr "Vladivostok"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Yakutsk"
+msgstr "Yakutsk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Yangon"
+msgstr "Yangon"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Yekaterinburg"
+msgstr "Ekaterinburg"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:6001
+msgid "Yerevan"
+msgstr "Erevan"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:7001
+msgid "Azores"
+msgstr "Insulele Azore"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:7001
+msgid "Bermuda"
+msgstr "Bermude"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:7001
+msgid "Canary"
+msgstr "Canare"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:7001
+msgid "Cape_Verde"
+msgstr "Capul Verde"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:7001
+msgid "Faroe"
+msgstr "Insulele Feroe"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:7001
+msgid "Jan_Mayen"
+msgstr "Jan Mayen"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:7001
+msgid "Madeira"
+msgstr "Madeira"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:7001
+msgid "Reykjavik"
+msgstr "Reykjavik"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:7001
+msgid "South_Georgia"
+msgstr "Georgia de Sud"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:7001
+msgid "St_Helena"
+msgstr "Sf Elena"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:7001
+msgid "Stanley"
+msgstr "Stanley"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Adelaide"
+msgstr "Adelaide"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Brisbane"
+msgstr "Brisbane"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Broken_Hill"
+msgstr "Broken Hill"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Canberra"
+msgstr "Canberra"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Currie"
+msgstr "Currie"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Darwin"
+msgstr "Darwin"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Eucla"
+msgstr "Eucla"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Hobart"
+msgstr "Hobart"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Lindeman"
+msgstr "Lindeman"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Lord_Howe"
+msgstr "Lord Howe"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Melbourne"
+msgstr "Melbourne"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Perth"
+msgstr "Perth"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Sydney"
+msgstr "Sydney"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:8001
+msgid "Yancowinna"
+msgstr "Yancowinna"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Amsterdam"
+msgstr "Amsterdam"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Andorra"
+msgstr "Andora"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Astrakhan"
+msgstr "Astrahan"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Athens"
+msgstr "Atena"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Belfast"
+msgstr "Belfast"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Belgrade"
+msgstr "Belgrad"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Berlin"
+msgstr "Berlin"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Bratislava"
+msgstr "Bratislava"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Brussels"
+msgstr "Bruxelles"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Bucharest"
+msgstr "Bucureşti"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Budapest"
+msgstr "Budapesta"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Busingen"
+msgstr "Busingen"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Chisinau"
+msgstr "Chişinău"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Copenhagen"
+msgstr "Copenhaga"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Dublin"
+msgstr "Dublin"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Guernsey"
+msgstr "Guernesey"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Helsinki"
+msgstr "Helsinki"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Isle_of_Man"
+msgstr "Isle of Man"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Jersey"
+msgstr "Jersey"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Kaliningrad"
+msgstr "Kaliningrad"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Kirov"
+msgstr "Kirov"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Kyiv"
+msgstr "Kiev"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Lisbon"
+msgstr "Lisabona"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Ljubljana"
+msgstr "Liubliana"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "London"
+msgstr "Londra"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Luxembourg"
+msgstr "Luxemburg"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Madrid"
+msgstr "Madrid"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Malta"
+msgstr "Malta"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Mariehamn"
+msgstr "Mariehamn"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Minsk"
+msgstr "Minsk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Monaco"
+msgstr "Monaco"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Moscow"
+msgstr "Moscova"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Oslo"
+msgstr "Oslo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Paris"
+msgstr "Paris"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Podgorica"
+msgstr "Podgorica"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Prague"
+msgstr "Praga"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Riga"
+msgstr "Riga"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Rome"
+msgstr "Roma"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Samara"
+msgstr "Samara"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "San_Marino"
+msgstr "San Marino"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Sarajevo"
+msgstr "Saraievo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Saratov"
+msgstr "Saratov"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Simferopol"
+msgstr "Simferopol"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Skopje"
+msgstr "Skopie"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Sofia"
+msgstr "Sofia"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Stockholm"
+msgstr "Stockholm"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Tallinn"
+msgstr "Tallin"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Tirane"
+msgstr "Tirana"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Tiraspol"
+msgstr "Tiraspol"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Ulyanovsk"
+msgstr "Ulianovsk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Uzhgorod"
+msgstr "Ujgorod"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Vaduz"
+msgstr "Vaduz"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Vatican"
+msgstr "Vatican"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Vienna"
+msgstr "Viena"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Vilnius"
+msgstr "Vilnius"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Volgograd"
+msgstr "Volgograd"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Warsaw"
+msgstr "Varşovia"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Zagreb"
+msgstr "Zagreb"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Zaporozhye"
+msgstr "Zaporojie"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:9001
+msgid "Zurich"
+msgstr "Zurich"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:10001
+msgid "Antananarivo"
+msgstr "Antananarivo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:10001
+msgid "Chagos"
+msgstr "Chagos"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:10001
+msgid "Christmas"
+msgstr "Insula Christmas"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:10001
+msgid "Cocos"
+msgstr "Cocos"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:10001
+msgid "Comoro"
+msgstr "Comoro"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:10001
+msgid "Kerguelen"
+msgstr "Kerguelen"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:10001
+msgid "Mahe"
+msgstr "Mahe"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:10001
+msgid "Maldives"
+msgstr "Maldive"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:10001
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:10001
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:10001
+msgid "Reunion"
+msgstr "Reunion"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Apia"
+msgstr "Apia"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Auckland"
+msgstr "Auckland"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Bougainville"
+msgstr "Bougainville"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Chatham"
+msgstr "Chatham"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Chuuk"
+msgstr "Chuuk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Easter"
+msgstr "Insula Paștelui"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Efate"
+msgstr "Efate"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Enderbury"
+msgstr "Enderbury"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Fakaofo"
+msgstr "Fakaofo"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Fiji"
+msgstr "Fiji"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Funafuti"
+msgstr "Funafuti"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Galapagos"
+msgstr "Galapagos"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Gambier"
+msgstr "Gambier"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Guadalcanal"
+msgstr "Guadalcanal"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Guam"
+msgstr "Guam"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Honolulu"
+msgstr "Honolulu"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Johnston"
+msgstr "Johnston"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Kanton"
+msgstr "Kanton"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Kiritimati"
+msgstr "Kiritimati"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Kosrae"
+msgstr "Kosrae"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Kwajalein"
+msgstr "Kwajalein"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Majuro"
+msgstr "Majuro"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Marquesas"
+msgstr "Marquesas"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Midway"
+msgstr "Midway"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Nauru"
+msgstr "Nauru"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Niue"
+msgstr "Niue"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Norfolk"
+msgstr "Norfolk"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Noumea"
+msgstr "Noumea"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Pago_Pago"
+msgstr "Pago Pago"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Palau"
+msgstr "Palau"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Pohnpei"
+msgstr "Pohnpei"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Port_Moresby"
+msgstr "Port Moresby"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Rarotonga"
+msgstr "Rarotonga"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Saipan"
+msgstr "Saipan"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001 ../tzdata.templates:12001
+msgid "Samoa"
+msgstr "Samoa"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Tahiti"
+msgstr "Tahiti"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Tarawa"
+msgstr "Tarawa"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Tongatapu"
+msgstr "Tongatapu"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Wake"
+msgstr "Wake"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Wallis"
+msgstr "Wallis"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:11001
+msgid "Yap"
+msgstr "Yap"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:12001
+msgid "Alaska"
+msgstr "Alaska"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:12001
+msgid "Aleutian"
+msgstr "Aleutiană"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:12001
+msgid "Arizona"
+msgstr "Arizona"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:12001
+msgid "Central"
+msgstr "Central"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:12001
+msgid "Eastern"
+msgstr "Estică"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:12001
+msgid "Hawaii"
+msgstr "Hawaii"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:12001
+msgid "Indiana-Starke"
+msgstr "Indiana-Starke"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:12001
+msgid "Michigan"
+msgstr "Michigan"
+
+#. Type: select
+#. Choices
+#. Translators: do not translate underscores. You can use spaces instead.
+#: ../tzdata.templates:12001
+msgid "Mountain"
+msgstr "Munte"
diff -Nru tzdata-2023c/debian/po/ru.po tzdata-2023c/debian/po/ru.po
--- tzdata-2023c/debian/po/ru.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/ru.po	2023-04-13 13:28:30.000000000 +0200
@@ -2355,13 +2355,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Уюнг-Панданг"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Улан-Батор"
 
@@ -3328,13 +3321,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Понпей"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Порт-Морсби"
 
@@ -3385,13 +3371,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Трук"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/sk.po tzdata-2023c/debian/po/sk.po
--- tzdata-2023c/debian/po/sk.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/sk.po	2023-04-13 13:43:08.000000000 +0200
@@ -1597,7 +1597,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:3001
 msgid "St_Thomas"
-msgstr "Svätý Tomáš"
+msgstr "St. Thomas"
 
 #. Type: select
 #. Choices
@@ -2351,13 +2351,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Makasarský prieliv"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulanbátar"
 
@@ -3324,13 +3317,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Pohnpei"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3381,13 +3367,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/sq.po tzdata-2023c/debian/po/sq.po
--- tzdata-2023c/debian/po/sq.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/sq.po	2023-04-13 13:28:30.000000000 +0200
@@ -19,7 +19,7 @@
 "Last-Translator: Elian Myftiu <elian.myftiu@gmail.com>\n"
 "Language-Team: Albanian <Debian L10n Albanian <debian-l10n-albanian@lists."
 "debian.org>>\n"
-"Language: \n"
+"Language: sq\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -2364,13 +2364,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3337,13 +3330,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3394,13 +3380,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/sv.po tzdata-2023c/debian/po/sv.po
--- tzdata-2023c/debian/po/sv.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/sv.po	2023-04-13 13:28:30.000000000 +0200
@@ -2347,14 +2347,6 @@
 msgid "Tomsk"
 msgstr "Tomsk"
 
-# Kommentar: Namnet Unjung Pandang användes fram till 1999.
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Makassar"
-
 # Kommentar: "Ulan Bator" är en äldre stavning av Ulaanbataar.
 # Jag har dock valt att använda den eftersom UD gör det.
 #. Type: select
@@ -3328,14 +3320,6 @@
 msgid "Pohnpei"
 msgstr "Pohnpei"
 
-# Kommentar: "Ponape" användes fram till 1984.
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Pohnpei"
-
 #. Type: select
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
@@ -3389,14 +3373,6 @@
 msgid "Tongatapu"
 msgstr "Tongatapu"
 
-# Kommentar: Fram till 1990 användes namnet Truk
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Chuuk"
-
 # Kommentar: Själva Wakeatollen är obebodd. Wakeöarna är samlingsnamnet
 # för ögruppen.
 #. Type: select
diff -Nru tzdata-2023c/debian/po/templates.pot tzdata-2023c/debian/po/templates.pot
--- tzdata-2023c/debian/po/templates.pot	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/templates.pot	2023-04-13 13:28:30.000000000 +0200
@@ -2345,13 +2345,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr ""
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr ""
 
@@ -3318,13 +3311,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr ""
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr ""
 
@@ -3374,13 +3360,6 @@
 msgstr ""
 
 #. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr ""
-
-#. Type: select
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
diff -Nru tzdata-2023c/debian/po/th.po tzdata-2023c/debian/po/th.po
--- tzdata-2023c/debian/po/th.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/th.po	2023-04-13 13:28:30.000000000 +0200
@@ -2347,13 +2347,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr ""
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "อูลานบาตอร์"
 
@@ -3320,13 +3313,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr ""
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "พอร์ตมอร์สบี"
 
@@ -3376,13 +3362,6 @@
 msgstr ""
 
 #. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr ""
-
-#. Type: select
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
diff -Nru tzdata-2023c/debian/po/tr.po tzdata-2023c/debian/po/tr.po
--- tzdata-2023c/debian/po/tr.po	2023-03-29 21:19:31.000000000 +0200
+++ tzdata-2023c/debian/po/tr.po	2023-04-13 13:28:30.000000000 +0200
@@ -2350,13 +2350,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Makassar"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulan Batur"
 
@@ -3323,13 +3316,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3380,13 +3366,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/vi.po tzdata-2023c/debian/po/vi.po
--- tzdata-2023c/debian/po/vi.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/vi.po	2023-04-13 13:28:30.000000000 +0200
@@ -2364,13 +2364,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Ulaanbaatar"
 
@@ -3337,13 +3330,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3394,13 +3380,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/po/wo.po tzdata-2023c/debian/po/wo.po
--- tzdata-2023c/debian/po/wo.po	2023-03-29 21:14:56.000000000 +0200
+++ tzdata-2023c/debian/po/wo.po	2023-04-13 13:28:30.000000000 +0200
@@ -2358,13 +2358,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:6001
-msgid "Ujung_Pandang"
-msgstr "Ujung Pandang"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:6001
 msgid "Ulaanbaatar"
 msgstr "Oulan-Bator (cas général)"
 
@@ -3331,13 +3324,6 @@
 #. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
-msgid "Ponape"
-msgstr "Ponape"
-
-#. Type: select
-#. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
 msgid "Port_Moresby"
 msgstr "Port Moresby"
 
@@ -3388,13 +3374,6 @@
 
 #. Type: select
 #. Choices
-#. Translators: do not translate underscores. You can use spaces instead.
-#: ../tzdata.templates:11001
-msgid "Truk"
-msgstr "Truk"
-
-#. Type: select
-#. Choices
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:11001
 msgid "Wake"
diff -Nru tzdata-2023c/debian/rules tzdata-2023c/debian/rules
--- tzdata-2023c/debian/rules	2023-03-30 01:02:32.000000000 +0200
+++ tzdata-2023c/debian/rules	2023-04-13 13:43:10.000000000 +0200
@@ -39,6 +39,7 @@
 override_dh_auto_test:
 	debian/test_timezone_conversions -z "$(TZGEN)"
 	PYTHONTZPATH="$(TZGEN)" debian/tests/python
+	debian/check_translations debian/po/*.po
 
 override_dh_auto_install:
 	# Nothing to do.
diff -Nru tzdata-2023c/debian/test_timezone_conversions tzdata-2023c/debian/test_timezone_conversions
--- tzdata-2023c/debian/test_timezone_conversions	2023-03-30 01:10:03.000000000 +0200
+++ tzdata-2023c/debian/test_timezone_conversions	2023-04-13 12:44:36.000000000 +0200
@@ -136,6 +136,7 @@
     available = get_available_timezones(args.zoneinfo_directory)
     convert_timezone = ConvertTimezone(args.debian_directory / "tzdata.config")
     conversion_targets = convert_timezone.get_targets()
+    failures = 0
 
     converted = convert_timezone.filter_converted_timezones(selectable)
     if converted:
@@ -144,7 +145,7 @@
             len(converted),
             "\n".join(sorted(converted)),
         )
-        return 1
+        failures += 1
 
     unselectable = available - selectable
     missing = convert_timezone.filter_unconverted_timezones(unselectable) - SPECIAL
@@ -154,7 +155,7 @@
             len(missing),
             "\n".join(sorted(missing)),
         )
-        return 1
+        failures += 1
 
     targets = conversion_targets - available
     if targets:
@@ -163,7 +164,7 @@
             len(targets),
             "\n".join(sorted(targets)),
         )
-        return 1
+        failures += 1
 
     targets = conversion_targets - selectable
     if targets:
@@ -172,9 +173,9 @@
             len(targets),
             "\n".join(sorted(targets)),
         )
-        return 1
+        failures += 1
 
-    return 0
+    return failures
 
 
 if __name__ == "__main__":
diff -Nru tzdata-2023c/debian/tzdata.config tzdata-2023c/debian/tzdata.config
--- tzdata-2023c/debian/tzdata.config	2023-03-30 01:02:32.000000000 +0200
+++ tzdata-2023c/debian/tzdata.config	2023-04-13 13:28:30.000000000 +0200
@@ -71,6 +71,9 @@
 		"Asia/Thimbu")
 			echo "Asia/Thimphu"
 			;;
+		"Asia/Ujung_Pandang")
+			echo "Asia/Makassar"
+			;;
 		"Asia/Ulan_Bator")
 			echo "Asia/Ulaanbaatar"
 			;;
@@ -230,6 +233,12 @@
 		"NZ")
 			echo "Pacific/Auckland"
 			;;
+		"Pacific/Ponape")
+			echo "Pacific/Pohnpei"
+			;;
+		"Pacific/Truk")
+			echo "Pacific/Chuuk"
+			;;
 		"NZ-CHAT")
 			echo "Pacific/Chatham"
 			;;
diff -Nru tzdata-2023c/debian/tzdata.templates tzdata-2023c/debian/tzdata.templates
--- tzdata-2023c/debian/tzdata.templates	2023-03-30 00:49:10.000000000 +0200
+++ tzdata-2023c/debian/tzdata.templates	2023-04-13 13:49:33.000000000 +0200
@@ -47,7 +47,7 @@
 Type: select
 # Translators: do not translate underscores. You can use spaces instead.
 #flag:partial
-__Choices: Aden, Almaty, Amman, Anadyr, Aqtau, Aqtobe, Ashgabat, Atyrau, Baghdad, Bahrain, Baku, Bangkok, Barnaul, Beirut, Bishkek, Brunei, Chita, Choibalsan, Chongqing, Colombo, Damascus, Dhaka, Dili, Dubai, Dushanbe, Famagusta, Gaza, Hanoi, Harbin, Hebron, Ho_Chi_Minh, Hong_Kong, Hovd, Irkutsk, Istanbul, Jakarta, Jayapura, Jerusalem, Kabul, Kamchatka, Karachi, Kashgar, Kathmandu, Khandyga, Kolkata, Krasnoyarsk, Kuala_Lumpur, Kuching, Kuwait, Macau, Magadan, Makassar, Manila, Muscat, Nicosia, Novokuznetsk, Novosibirsk, Omsk, Oral, Phnom_Penh, Pontianak, Pyongyang, Qatar, Qostanay, Qyzylorda, Riyadh, Sakhalin, Samarkand, Seoul, Shanghai, Singapore, Srednekolymsk, Taipei, Tashkent, Tbilisi, Tehran, Tel_Aviv, Thimphu, Tokyo, Tomsk, Ujung_Pandang, Ulaanbaatar, Urumqi, Ust-Nera, Vientiane, Vladivostok, Yakutsk, Yangon, Yekaterinburg, Yerevan
+__Choices: Aden, Almaty, Amman, Anadyr, Aqtau, Aqtobe, Ashgabat, Atyrau, Baghdad, Bahrain, Baku, Bangkok, Barnaul, Beirut, Bishkek, Brunei, Chita, Choibalsan, Chongqing, Colombo, Damascus, Dhaka, Dili, Dubai, Dushanbe, Famagusta, Gaza, Hanoi, Harbin, Hebron, Ho_Chi_Minh, Hong_Kong, Hovd, Irkutsk, Istanbul, Jakarta, Jayapura, Jerusalem, Kabul, Kamchatka, Karachi, Kashgar, Kathmandu, Khandyga, Kolkata, Krasnoyarsk, Kuala_Lumpur, Kuching, Kuwait, Macau, Magadan, Makassar, Manila, Muscat, Nicosia, Novokuznetsk, Novosibirsk, Omsk, Oral, Phnom_Penh, Pontianak, Pyongyang, Qatar, Qostanay, Qyzylorda, Riyadh, Sakhalin, Samarkand, Seoul, Shanghai, Singapore, Srednekolymsk, Taipei, Tashkent, Tbilisi, Tehran, Tel_Aviv, Thimphu, Tokyo, Tomsk, Ulaanbaatar, Urumqi, Ust-Nera, Vientiane, Vladivostok, Yakutsk, Yangon, Yekaterinburg, Yerevan
 _Description: Time zone:
  Please select the city or region corresponding to your time zone.
 
@@ -87,7 +87,7 @@
 Type: select
 # Translators: do not translate underscores. You can use spaces instead.
 #flag:partial
-__Choices: Apia, Auckland, Bougainville, Chatham, Chuuk, Easter, Efate, Enderbury, Fakaofo, Fiji, Funafuti, Galapagos, Gambier, Guadalcanal, Guam, Honolulu, Johnston, Kanton, Kiritimati, Kosrae, Kwajalein, Majuro, Marquesas, Midway, Nauru, Niue, Norfolk, Noumea, Pago_Pago, Palau, Pitcairn, Pohnpei, Ponape, Port_Moresby, Rarotonga, Saipan, Samoa, Tahiti, Tarawa, Tongatapu, Truk, Wake, Wallis, Yap
+__Choices: Apia, Auckland, Bougainville, Chatham, Chuuk, Easter, Efate, Enderbury, Fakaofo, Fiji, Funafuti, Galapagos, Gambier, Guadalcanal, Guam, Honolulu, Johnston, Kanton, Kiritimati, Kosrae, Kwajalein, Majuro, Marquesas, Midway, Nauru, Niue, Norfolk, Noumea, Pago_Pago, Palau, Pitcairn, Pohnpei, Port_Moresby, Rarotonga, Saipan, Samoa, Tahiti, Tarawa, Tongatapu, Wake, Wallis, Yap
 _Description: Time zone:
  Please select the city or region corresponding to your time zone.
 

Reply to: