mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 10:22:48 +00:00
kdecore: rework time zones translation
there were some stale zone name comments marked for translation, the scopping script (probably purposely) did not remove such Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
01081a7f32
commit
2916de09fb
8 changed files with 718 additions and 139 deletions
|
@ -13,8 +13,6 @@ dirs=`cat dirs`
|
||||||
find $dirs -maxdepth 1 -name "*.cpp" -print > files
|
find $dirs -maxdepth 1 -name "*.cpp" -print > files
|
||||||
find $dirs -maxdepth 1 -name "*.cc" -print >> files
|
find $dirs -maxdepth 1 -name "*.cc" -print >> files
|
||||||
find $dirs -maxdepth 1 -name "*.h" -print >> files
|
find $dirs -maxdepth 1 -name "*.h" -print >> files
|
||||||
# Add the kdecore/date files
|
|
||||||
find ./kdecore/date -name "*.cpp" -o -name "*.cc" -o -name "*.h" >> files
|
|
||||||
$EXTRACTRC `find $dirs -maxdepth 1 \( -name \*.rc -o -name \*.ui -o -name \*.kcfg \) ` >> rc.cpp || exit 11
|
$EXTRACTRC `find $dirs -maxdepth 1 \( -name \*.rc -o -name \*.ui -o -name \*.kcfg \) ` >> rc.cpp || exit 11
|
||||||
$XGETTEXT -ktranslate:1,1t -ktranslate:1c,2,2t --files-from=files -o $podir/kdelibs4.pot
|
$XGETTEXT -ktranslate:1,1t -ktranslate:1c,2,2t --files-from=files -o $podir/kdelibs4.pot
|
||||||
rm -f dirs files
|
rm -f dirs files
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
$XGETTEXT TIMEZONES -o $podir/timezones4.pot
|
|
|
@ -28,6 +28,7 @@
|
||||||
#include <QElapsedTimer>
|
#include <QElapsedTimer>
|
||||||
|
|
||||||
#include "kglobal.h"
|
#include "kglobal.h"
|
||||||
|
#include "klocale.h"
|
||||||
#include "kdebug.h"
|
#include "kdebug.h"
|
||||||
#include "ksystemtimezone.h"
|
#include "ksystemtimezone.h"
|
||||||
#include "kde_file.h"
|
#include "kde_file.h"
|
||||||
|
@ -39,6 +40,640 @@ typedef QPair<float, float> KZoneCoordinates;
|
||||||
|
|
||||||
static const QString s_localtime = QString::fromLatin1("/etc/localtime");
|
static const QString s_localtime = QString::fromLatin1("/etc/localtime");
|
||||||
|
|
||||||
|
static const struct timezoneNameData {
|
||||||
|
const char* name;
|
||||||
|
const char* translation;
|
||||||
|
} timezoneNameTbl[] = {
|
||||||
|
{ "Africa/Abidjan", I18N_NOOP2("Timezone name", "Africa/Abidjan") },
|
||||||
|
{ "Africa/Accra", I18N_NOOP2("Timezone name", "Africa/Accra") },
|
||||||
|
{ "Africa/Addis_Ababa", I18N_NOOP2("Timezone name", "Africa/Addis_Ababa") },
|
||||||
|
{ "Africa/Algiers", I18N_NOOP2("Timezone name", "Africa/Algiers") },
|
||||||
|
{ "Africa/Asmara", I18N_NOOP2("Timezone name", "Africa/Asmara") },
|
||||||
|
{ "Africa/Bamako", I18N_NOOP2("Timezone name", "Africa/Bamako") },
|
||||||
|
{ "Africa/Bangui", I18N_NOOP2("Timezone name", "Africa/Bangui") },
|
||||||
|
{ "Africa/Banjul", I18N_NOOP2("Timezone name", "Africa/Banjul") },
|
||||||
|
{ "Africa/Bissau", I18N_NOOP2("Timezone name", "Africa/Bissau") },
|
||||||
|
{ "Africa/Blantyre", I18N_NOOP2("Timezone name", "Africa/Blantyre") },
|
||||||
|
{ "Africa/Brazzaville", I18N_NOOP2("Timezone name", "Africa/Brazzaville") },
|
||||||
|
{ "Africa/Bujumbura", I18N_NOOP2("Timezone name", "Africa/Bujumbura") },
|
||||||
|
{ "Africa/Cairo", I18N_NOOP2("Timezone name", "Africa/Cairo") },
|
||||||
|
{ "Africa/Casablanca", I18N_NOOP2("Timezone name", "Africa/Casablanca") },
|
||||||
|
{ "Africa/Ceuta", I18N_NOOP2("Timezone name", "Africa/Ceuta") },
|
||||||
|
{ "Africa/Conakry", I18N_NOOP2("Timezone name", "Africa/Conakry") },
|
||||||
|
{ "Africa/Dakar", I18N_NOOP2("Timezone name", "Africa/Dakar") },
|
||||||
|
{ "Africa/Dar_es_Salaam", I18N_NOOP2("Timezone name", "Africa/Dar_es_Salaam") },
|
||||||
|
{ "Africa/Djibouti", I18N_NOOP2("Timezone name", "Africa/Djibouti") },
|
||||||
|
{ "Africa/Douala", I18N_NOOP2("Timezone name", "Africa/Douala") },
|
||||||
|
{ "Africa/El_Aaiun", I18N_NOOP2("Timezone name", "Africa/El_Aaiun") },
|
||||||
|
{ "Africa/Freetown", I18N_NOOP2("Timezone name", "Africa/Freetown") },
|
||||||
|
{ "Africa/Gaborone", I18N_NOOP2("Timezone name", "Africa/Gaborone") },
|
||||||
|
{ "Africa/Harare", I18N_NOOP2("Timezone name", "Africa/Harare") },
|
||||||
|
{ "Africa/Johannesburg", I18N_NOOP2("Timezone name", "Africa/Johannesburg") },
|
||||||
|
{ "Africa/Juba", I18N_NOOP2("Timezone name", "Africa/Juba") },
|
||||||
|
{ "Africa/Kampala", I18N_NOOP2("Timezone name", "Africa/Kampala") },
|
||||||
|
{ "Africa/Khartoum", I18N_NOOP2("Timezone name", "Africa/Khartoum") },
|
||||||
|
{ "Africa/Kigali", I18N_NOOP2("Timezone name", "Africa/Kigali") },
|
||||||
|
{ "Africa/Kinshasa", I18N_NOOP2("Timezone name", "Africa/Kinshasa") },
|
||||||
|
{ "Africa/Lagos", I18N_NOOP2("Timezone name", "Africa/Lagos") },
|
||||||
|
{ "Africa/Libreville", I18N_NOOP2("Timezone name", "Africa/Libreville") },
|
||||||
|
{ "Africa/Lome", I18N_NOOP2("Timezone name", "Africa/Lome") },
|
||||||
|
{ "Africa/Luanda", I18N_NOOP2("Timezone name", "Africa/Luanda") },
|
||||||
|
{ "Africa/Lubumbashi", I18N_NOOP2("Timezone name", "Africa/Lubumbashi") },
|
||||||
|
{ "Africa/Lusaka", I18N_NOOP2("Timezone name", "Africa/Lusaka") },
|
||||||
|
{ "Africa/Malabo", I18N_NOOP2("Timezone name", "Africa/Malabo") },
|
||||||
|
{ "Africa/Maputo", I18N_NOOP2("Timezone name", "Africa/Maputo") },
|
||||||
|
{ "Africa/Maseru", I18N_NOOP2("Timezone name", "Africa/Maseru") },
|
||||||
|
{ "Africa/Mbabane", I18N_NOOP2("Timezone name", "Africa/Mbabane") },
|
||||||
|
{ "Africa/Mogadishu", I18N_NOOP2("Timezone name", "Africa/Mogadishu") },
|
||||||
|
{ "Africa/Monrovia", I18N_NOOP2("Timezone name", "Africa/Monrovia") },
|
||||||
|
{ "Africa/Nairobi", I18N_NOOP2("Timezone name", "Africa/Nairobi") },
|
||||||
|
{ "Africa/Ndjamena", I18N_NOOP2("Timezone name", "Africa/Ndjamena") },
|
||||||
|
{ "Africa/Niamey", I18N_NOOP2("Timezone name", "Africa/Niamey") },
|
||||||
|
{ "Africa/Nouakchott", I18N_NOOP2("Timezone name", "Africa/Nouakchott") },
|
||||||
|
{ "Africa/Ouagadougou", I18N_NOOP2("Timezone name", "Africa/Ouagadougou") },
|
||||||
|
{ "Africa/Porto-Novo", I18N_NOOP2("Timezone name", "Africa/Porto-Novo") },
|
||||||
|
{ "Africa/Sao_Tome", I18N_NOOP2("Timezone name", "Africa/Sao_Tome") },
|
||||||
|
{ "Africa/Tripoli", I18N_NOOP2("Timezone name", "Africa/Tripoli") },
|
||||||
|
{ "Africa/Tunis", I18N_NOOP2("Timezone name", "Africa/Tunis") },
|
||||||
|
{ "Africa/Windhoek", I18N_NOOP2("Timezone name", "Africa/Windhoek") },
|
||||||
|
{ "America/Adak", I18N_NOOP2("Timezone name", "America/Adak") },
|
||||||
|
{ "America/Anchorage", I18N_NOOP2("Timezone name", "America/Anchorage") },
|
||||||
|
{ "America/Anguilla", I18N_NOOP2("Timezone name", "America/Anguilla") },
|
||||||
|
{ "America/Antigua", I18N_NOOP2("Timezone name", "America/Antigua") },
|
||||||
|
{ "America/Araguaina", I18N_NOOP2("Timezone name", "America/Araguaina") },
|
||||||
|
{ "America/Argentina/Buenos_Aires", I18N_NOOP2("Timezone name", "America/Argentina/Buenos_Aires") },
|
||||||
|
{ "America/Argentina/Catamarca", I18N_NOOP2("Timezone name", "America/Argentina/Catamarca") },
|
||||||
|
{ "America/Argentina/Cordoba", I18N_NOOP2("Timezone name", "America/Argentina/Cordoba") },
|
||||||
|
{ "America/Argentina/Jujuy", I18N_NOOP2("Timezone name", "America/Argentina/Jujuy") },
|
||||||
|
{ "America/Argentina/La_Rioja", I18N_NOOP2("Timezone name", "America/Argentina/La_Rioja") },
|
||||||
|
{ "America/Argentina/Mendoza", I18N_NOOP2("Timezone name", "America/Argentina/Mendoza") },
|
||||||
|
{ "America/Argentina/Rio_Gallegos", I18N_NOOP2("Timezone name", "America/Argentina/Rio_Gallegos") },
|
||||||
|
{ "America/Argentina/Salta", I18N_NOOP2("Timezone name", "America/Argentina/Salta") },
|
||||||
|
{ "America/Argentina/San_Juan", I18N_NOOP2("Timezone name", "America/Argentina/San_Juan") },
|
||||||
|
{ "America/Argentina/San_Luis", I18N_NOOP2("Timezone name", "America/Argentina/San_Luis") },
|
||||||
|
{ "America/Argentina/Tucuman", I18N_NOOP2("Timezone name", "America/Argentina/Tucuman") },
|
||||||
|
{ "America/Argentina/Ushuaia", I18N_NOOP2("Timezone name", "America/Argentina/Ushuaia") },
|
||||||
|
{ "America/Aruba", I18N_NOOP2("Timezone name", "America/Aruba") },
|
||||||
|
{ "America/Asuncion", I18N_NOOP2("Timezone name", "America/Asuncion") },
|
||||||
|
{ "America/Atikokan", I18N_NOOP2("Timezone name", "America/Atikokan") },
|
||||||
|
{ "America/Bahia", I18N_NOOP2("Timezone name", "America/Bahia") },
|
||||||
|
{ "America/Bahia_Banderas", I18N_NOOP2("Timezone name", "America/Bahia_Banderas") },
|
||||||
|
{ "America/Barbados", I18N_NOOP2("Timezone name", "America/Barbados") },
|
||||||
|
{ "America/Belem", I18N_NOOP2("Timezone name", "America/Belem") },
|
||||||
|
{ "America/Belize", I18N_NOOP2("Timezone name", "America/Belize") },
|
||||||
|
{ "America/Blanc-Sablon", I18N_NOOP2("Timezone name", "America/Blanc-Sablon") },
|
||||||
|
{ "America/Boa_Vista", I18N_NOOP2("Timezone name", "America/Boa_Vista") },
|
||||||
|
{ "America/Bogota", I18N_NOOP2("Timezone name", "America/Bogota") },
|
||||||
|
{ "America/Boise", I18N_NOOP2("Timezone name", "America/Boise") },
|
||||||
|
{ "America/Cambridge_Bay", I18N_NOOP2("Timezone name", "America/Cambridge_Bay") },
|
||||||
|
{ "America/Campo_Grande", I18N_NOOP2("Timezone name", "America/Campo_Grande") },
|
||||||
|
{ "America/Cancun", I18N_NOOP2("Timezone name", "America/Cancun") },
|
||||||
|
{ "America/Caracas", I18N_NOOP2("Timezone name", "America/Caracas") },
|
||||||
|
{ "America/Cayenne", I18N_NOOP2("Timezone name", "America/Cayenne") },
|
||||||
|
{ "America/Cayman", I18N_NOOP2("Timezone name", "America/Cayman") },
|
||||||
|
{ "America/Chicago", I18N_NOOP2("Timezone name", "America/Chicago") },
|
||||||
|
{ "America/Chihuahua", I18N_NOOP2("Timezone name", "America/Chihuahua") },
|
||||||
|
{ "America/Ciudad_Juarez", I18N_NOOP2("Timezone name", "America/Ciudad_Juarez") },
|
||||||
|
{ "America/Costa_Rica", I18N_NOOP2("Timezone name", "America/Costa_Rica") },
|
||||||
|
{ "America/Creston", I18N_NOOP2("Timezone name", "America/Creston") },
|
||||||
|
{ "America/Cuiaba", I18N_NOOP2("Timezone name", "America/Cuiaba") },
|
||||||
|
{ "America/Curacao", I18N_NOOP2("Timezone name", "America/Curacao") },
|
||||||
|
{ "America/Danmarkshavn", I18N_NOOP2("Timezone name", "America/Danmarkshavn") },
|
||||||
|
{ "America/Dawson", I18N_NOOP2("Timezone name", "America/Dawson") },
|
||||||
|
{ "America/Dawson_Creek", I18N_NOOP2("Timezone name", "America/Dawson_Creek") },
|
||||||
|
{ "America/Denver", I18N_NOOP2("Timezone name", "America/Denver") },
|
||||||
|
{ "America/Detroit", I18N_NOOP2("Timezone name", "America/Detroit") },
|
||||||
|
{ "America/Dominica", I18N_NOOP2("Timezone name", "America/Dominica") },
|
||||||
|
{ "America/Edmonton", I18N_NOOP2("Timezone name", "America/Edmonton") },
|
||||||
|
{ "America/Eirunepe", I18N_NOOP2("Timezone name", "America/Eirunepe") },
|
||||||
|
{ "America/El_Salvador", I18N_NOOP2("Timezone name", "America/El_Salvador") },
|
||||||
|
{ "America/Fort_Nelson", I18N_NOOP2("Timezone name", "America/Fort_Nelson") },
|
||||||
|
{ "America/Fortaleza", I18N_NOOP2("Timezone name", "America/Fortaleza") },
|
||||||
|
{ "America/Glace_Bay", I18N_NOOP2("Timezone name", "America/Glace_Bay") },
|
||||||
|
{ "America/Goose_Bay", I18N_NOOP2("Timezone name", "America/Goose_Bay") },
|
||||||
|
{ "America/Grand_Turk", I18N_NOOP2("Timezone name", "America/Grand_Turk") },
|
||||||
|
{ "America/Grenada", I18N_NOOP2("Timezone name", "America/Grenada") },
|
||||||
|
{ "America/Guadeloupe", I18N_NOOP2("Timezone name", "America/Guadeloupe") },
|
||||||
|
{ "America/Guatemala", I18N_NOOP2("Timezone name", "America/Guatemala") },
|
||||||
|
{ "America/Guayaquil", I18N_NOOP2("Timezone name", "America/Guayaquil") },
|
||||||
|
{ "America/Guyana", I18N_NOOP2("Timezone name", "America/Guyana") },
|
||||||
|
{ "America/Halifax", I18N_NOOP2("Timezone name", "America/Halifax") },
|
||||||
|
{ "America/Havana", I18N_NOOP2("Timezone name", "America/Havana") },
|
||||||
|
{ "America/Hermosillo", I18N_NOOP2("Timezone name", "America/Hermosillo") },
|
||||||
|
{ "America/Indiana/Indianapolis", I18N_NOOP2("Timezone name", "America/Indiana/Indianapolis") },
|
||||||
|
{ "America/Indiana/Knox", I18N_NOOP2("Timezone name", "America/Indiana/Knox") },
|
||||||
|
{ "America/Indiana/Marengo", I18N_NOOP2("Timezone name", "America/Indiana/Marengo") },
|
||||||
|
{ "America/Indiana/Petersburg", I18N_NOOP2("Timezone name", "America/Indiana/Petersburg") },
|
||||||
|
{ "America/Indiana/Tell_City", I18N_NOOP2("Timezone name", "America/Indiana/Tell_City") },
|
||||||
|
{ "America/Indiana/Vevay", I18N_NOOP2("Timezone name", "America/Indiana/Vevay") },
|
||||||
|
{ "America/Indiana/Vincennes", I18N_NOOP2("Timezone name", "America/Indiana/Vincennes") },
|
||||||
|
{ "America/Indiana/Winamac", I18N_NOOP2("Timezone name", "America/Indiana/Winamac") },
|
||||||
|
{ "America/Inuvik", I18N_NOOP2("Timezone name", "America/Inuvik") },
|
||||||
|
{ "America/Iqaluit", I18N_NOOP2("Timezone name", "America/Iqaluit") },
|
||||||
|
{ "America/Jamaica", I18N_NOOP2("Timezone name", "America/Jamaica") },
|
||||||
|
{ "America/Juneau", I18N_NOOP2("Timezone name", "America/Juneau") },
|
||||||
|
{ "America/Kentucky/Louisville", I18N_NOOP2("Timezone name", "America/Kentucky/Louisville") },
|
||||||
|
{ "America/Kentucky/Monticello", I18N_NOOP2("Timezone name", "America/Kentucky/Monticello") },
|
||||||
|
{ "America/Kralendijk", I18N_NOOP2("Timezone name", "America/Kralendijk") },
|
||||||
|
{ "America/La_Paz", I18N_NOOP2("Timezone name", "America/La_Paz") },
|
||||||
|
{ "America/Lima", I18N_NOOP2("Timezone name", "America/Lima") },
|
||||||
|
{ "America/Los_Angeles", I18N_NOOP2("Timezone name", "America/Los_Angeles") },
|
||||||
|
{ "America/Lower_Princes", I18N_NOOP2("Timezone name", "America/Lower_Princes") },
|
||||||
|
{ "America/Maceio", I18N_NOOP2("Timezone name", "America/Maceio") },
|
||||||
|
{ "America/Managua", I18N_NOOP2("Timezone name", "America/Managua") },
|
||||||
|
{ "America/Manaus", I18N_NOOP2("Timezone name", "America/Manaus") },
|
||||||
|
{ "America/Marigot", I18N_NOOP2("Timezone name", "America/Marigot") },
|
||||||
|
{ "America/Martinique", I18N_NOOP2("Timezone name", "America/Martinique") },
|
||||||
|
{ "America/Matamoros", I18N_NOOP2("Timezone name", "America/Matamoros") },
|
||||||
|
{ "America/Mazatlan", I18N_NOOP2("Timezone name", "America/Mazatlan") },
|
||||||
|
{ "America/Menominee", I18N_NOOP2("Timezone name", "America/Menominee") },
|
||||||
|
{ "America/Merida", I18N_NOOP2("Timezone name", "America/Merida") },
|
||||||
|
{ "America/Metlakatla", I18N_NOOP2("Timezone name", "America/Metlakatla") },
|
||||||
|
{ "America/Mexico_City", I18N_NOOP2("Timezone name", "America/Mexico_City") },
|
||||||
|
{ "America/Miquelon", I18N_NOOP2("Timezone name", "America/Miquelon") },
|
||||||
|
{ "America/Moncton", I18N_NOOP2("Timezone name", "America/Moncton") },
|
||||||
|
{ "America/Monterrey", I18N_NOOP2("Timezone name", "America/Monterrey") },
|
||||||
|
{ "America/Montevideo", I18N_NOOP2("Timezone name", "America/Montevideo") },
|
||||||
|
{ "America/Montserrat", I18N_NOOP2("Timezone name", "America/Montserrat") },
|
||||||
|
{ "America/Nassau", I18N_NOOP2("Timezone name", "America/Nassau") },
|
||||||
|
{ "America/New_York", I18N_NOOP2("Timezone name", "America/New_York") },
|
||||||
|
{ "America/Nome", I18N_NOOP2("Timezone name", "America/Nome") },
|
||||||
|
{ "America/Noronha", I18N_NOOP2("Timezone name", "America/Noronha") },
|
||||||
|
{ "America/North_Dakota/Beulah", I18N_NOOP2("Timezone name", "America/North_Dakota/Beulah") },
|
||||||
|
{ "America/North_Dakota/Center", I18N_NOOP2("Timezone name", "America/North_Dakota/Center") },
|
||||||
|
{ "America/North_Dakota/New_Salem", I18N_NOOP2("Timezone name", "America/North_Dakota/New_Salem") },
|
||||||
|
{ "America/Nuuk", I18N_NOOP2("Timezone name", "America/Nuuk") },
|
||||||
|
{ "America/Ojinaga", I18N_NOOP2("Timezone name", "America/Ojinaga") },
|
||||||
|
{ "America/Panama", I18N_NOOP2("Timezone name", "America/Panama") },
|
||||||
|
{ "America/Paramaribo", I18N_NOOP2("Timezone name", "America/Paramaribo") },
|
||||||
|
{ "America/Phoenix", I18N_NOOP2("Timezone name", "America/Phoenix") },
|
||||||
|
{ "America/Port-au-Prince", I18N_NOOP2("Timezone name", "America/Port-au-Prince") },
|
||||||
|
{ "America/Port_of_Spain", I18N_NOOP2("Timezone name", "America/Port_of_Spain") },
|
||||||
|
{ "America/Porto_Velho", I18N_NOOP2("Timezone name", "America/Porto_Velho") },
|
||||||
|
{ "America/Puerto_Rico", I18N_NOOP2("Timezone name", "America/Puerto_Rico") },
|
||||||
|
{ "America/Punta_Arenas", I18N_NOOP2("Timezone name", "America/Punta_Arenas") },
|
||||||
|
{ "America/Rankin_Inlet", I18N_NOOP2("Timezone name", "America/Rankin_Inlet") },
|
||||||
|
{ "America/Recife", I18N_NOOP2("Timezone name", "America/Recife") },
|
||||||
|
{ "America/Regina", I18N_NOOP2("Timezone name", "America/Regina") },
|
||||||
|
{ "America/Resolute", I18N_NOOP2("Timezone name", "America/Resolute") },
|
||||||
|
{ "America/Rio_Branco", I18N_NOOP2("Timezone name", "America/Rio_Branco") },
|
||||||
|
{ "America/Santarem", I18N_NOOP2("Timezone name", "America/Santarem") },
|
||||||
|
{ "America/Santiago", I18N_NOOP2("Timezone name", "America/Santiago") },
|
||||||
|
{ "America/Santo_Domingo", I18N_NOOP2("Timezone name", "America/Santo_Domingo") },
|
||||||
|
{ "America/Sao_Paulo", I18N_NOOP2("Timezone name", "America/Sao_Paulo") },
|
||||||
|
{ "America/Scoresbysund", I18N_NOOP2("Timezone name", "America/Scoresbysund") },
|
||||||
|
{ "America/Sitka", I18N_NOOP2("Timezone name", "America/Sitka") },
|
||||||
|
{ "America/St_Barthelemy", I18N_NOOP2("Timezone name", "America/St_Barthelemy") },
|
||||||
|
{ "America/St_Johns", I18N_NOOP2("Timezone name", "America/St_Johns") },
|
||||||
|
{ "America/St_Kitts", I18N_NOOP2("Timezone name", "America/St_Kitts") },
|
||||||
|
{ "America/St_Lucia", I18N_NOOP2("Timezone name", "America/St_Lucia") },
|
||||||
|
{ "America/St_Thomas", I18N_NOOP2("Timezone name", "America/St_Thomas") },
|
||||||
|
{ "America/St_Vincent", I18N_NOOP2("Timezone name", "America/St_Vincent") },
|
||||||
|
{ "America/Swift_Current", I18N_NOOP2("Timezone name", "America/Swift_Current") },
|
||||||
|
{ "America/Tegucigalpa", I18N_NOOP2("Timezone name", "America/Tegucigalpa") },
|
||||||
|
{ "America/Thule", I18N_NOOP2("Timezone name", "America/Thule") },
|
||||||
|
{ "America/Tijuana", I18N_NOOP2("Timezone name", "America/Tijuana") },
|
||||||
|
{ "America/Toronto", I18N_NOOP2("Timezone name", "America/Toronto") },
|
||||||
|
{ "America/Tortola", I18N_NOOP2("Timezone name", "America/Tortola") },
|
||||||
|
{ "America/Vancouver", I18N_NOOP2("Timezone name", "America/Vancouver") },
|
||||||
|
{ "America/Whitehorse", I18N_NOOP2("Timezone name", "America/Whitehorse") },
|
||||||
|
{ "America/Winnipeg", I18N_NOOP2("Timezone name", "America/Winnipeg") },
|
||||||
|
{ "America/Yakutat", I18N_NOOP2("Timezone name", "America/Yakutat") },
|
||||||
|
{ "Antarctica/Casey", I18N_NOOP2("Timezone name", "Antarctica/Casey") },
|
||||||
|
{ "Antarctica/Davis", I18N_NOOP2("Timezone name", "Antarctica/Davis") },
|
||||||
|
{ "Antarctica/DumontDUrville", I18N_NOOP2("Timezone name", "Antarctica/DumontDUrville") },
|
||||||
|
{ "Antarctica/Macquarie", I18N_NOOP2("Timezone name", "Antarctica/Macquarie") },
|
||||||
|
{ "Antarctica/Mawson", I18N_NOOP2("Timezone name", "Antarctica/Mawson") },
|
||||||
|
{ "Antarctica/McMurdo", I18N_NOOP2("Timezone name", "Antarctica/McMurdo") },
|
||||||
|
{ "Antarctica/Palmer", I18N_NOOP2("Timezone name", "Antarctica/Palmer") },
|
||||||
|
{ "Antarctica/Rothera", I18N_NOOP2("Timezone name", "Antarctica/Rothera") },
|
||||||
|
{ "Antarctica/Syowa", I18N_NOOP2("Timezone name", "Antarctica/Syowa") },
|
||||||
|
{ "Antarctica/Troll", I18N_NOOP2("Timezone name", "Antarctica/Troll") },
|
||||||
|
{ "Antarctica/Vostok", I18N_NOOP2("Timezone name", "Antarctica/Vostok") },
|
||||||
|
{ "Arctic/Longyearbyen", I18N_NOOP2("Timezone name", "Arctic/Longyearbyen") },
|
||||||
|
{ "Asia/Aden", I18N_NOOP2("Timezone name", "Asia/Aden") },
|
||||||
|
{ "Asia/Almaty", I18N_NOOP2("Timezone name", "Asia/Almaty") },
|
||||||
|
{ "Asia/Amman", I18N_NOOP2("Timezone name", "Asia/Amman") },
|
||||||
|
{ "Asia/Anadyr", I18N_NOOP2("Timezone name", "Asia/Anadyr") },
|
||||||
|
{ "Asia/Aqtau", I18N_NOOP2("Timezone name", "Asia/Aqtau") },
|
||||||
|
{ "Asia/Aqtobe", I18N_NOOP2("Timezone name", "Asia/Aqtobe") },
|
||||||
|
{ "Asia/Ashgabat", I18N_NOOP2("Timezone name", "Asia/Ashgabat") },
|
||||||
|
{ "Asia/Atyrau", I18N_NOOP2("Timezone name", "Asia/Atyrau") },
|
||||||
|
{ "Asia/Baghdad", I18N_NOOP2("Timezone name", "Asia/Baghdad") },
|
||||||
|
{ "Asia/Bahrain", I18N_NOOP2("Timezone name", "Asia/Bahrain") },
|
||||||
|
{ "Asia/Baku", I18N_NOOP2("Timezone name", "Asia/Baku") },
|
||||||
|
{ "Asia/Bangkok", I18N_NOOP2("Timezone name", "Asia/Bangkok") },
|
||||||
|
{ "Asia/Barnaul", I18N_NOOP2("Timezone name", "Asia/Barnaul") },
|
||||||
|
{ "Asia/Beirut", I18N_NOOP2("Timezone name", "Asia/Beirut") },
|
||||||
|
{ "Asia/Bishkek", I18N_NOOP2("Timezone name", "Asia/Bishkek") },
|
||||||
|
{ "Asia/Brunei", I18N_NOOP2("Timezone name", "Asia/Brunei") },
|
||||||
|
{ "Asia/Chita", I18N_NOOP2("Timezone name", "Asia/Chita") },
|
||||||
|
{ "Asia/Choibalsan", I18N_NOOP2("Timezone name", "Asia/Choibalsan") },
|
||||||
|
{ "Asia/Colombo", I18N_NOOP2("Timezone name", "Asia/Colombo") },
|
||||||
|
{ "Asia/Damascus", I18N_NOOP2("Timezone name", "Asia/Damascus") },
|
||||||
|
{ "Asia/Dhaka", I18N_NOOP2("Timezone name", "Asia/Dhaka") },
|
||||||
|
{ "Asia/Dili", I18N_NOOP2("Timezone name", "Asia/Dili") },
|
||||||
|
{ "Asia/Dubai", I18N_NOOP2("Timezone name", "Asia/Dubai") },
|
||||||
|
{ "Asia/Dushanbe", I18N_NOOP2("Timezone name", "Asia/Dushanbe") },
|
||||||
|
{ "Asia/Famagusta", I18N_NOOP2("Timezone name", "Asia/Famagusta") },
|
||||||
|
{ "Asia/Gaza", I18N_NOOP2("Timezone name", "Asia/Gaza") },
|
||||||
|
{ "Asia/Hebron", I18N_NOOP2("Timezone name", "Asia/Hebron") },
|
||||||
|
{ "Asia/Ho_Chi_Minh", I18N_NOOP2("Timezone name", "Asia/Ho_Chi_Minh") },
|
||||||
|
{ "Asia/Hong_Kong", I18N_NOOP2("Timezone name", "Asia/Hong_Kong") },
|
||||||
|
{ "Asia/Hovd", I18N_NOOP2("Timezone name", "Asia/Hovd") },
|
||||||
|
{ "Asia/Irkutsk", I18N_NOOP2("Timezone name", "Asia/Irkutsk") },
|
||||||
|
{ "Asia/Jakarta", I18N_NOOP2("Timezone name", "Asia/Jakarta") },
|
||||||
|
{ "Asia/Jayapura", I18N_NOOP2("Timezone name", "Asia/Jayapura") },
|
||||||
|
{ "Asia/Jerusalem", I18N_NOOP2("Timezone name", "Asia/Jerusalem") },
|
||||||
|
{ "Asia/Kabul", I18N_NOOP2("Timezone name", "Asia/Kabul") },
|
||||||
|
{ "Asia/Kamchatka", I18N_NOOP2("Timezone name", "Asia/Kamchatka") },
|
||||||
|
{ "Asia/Karachi", I18N_NOOP2("Timezone name", "Asia/Karachi") },
|
||||||
|
{ "Asia/Kathmandu", I18N_NOOP2("Timezone name", "Asia/Kathmandu") },
|
||||||
|
{ "Asia/Khandyga", I18N_NOOP2("Timezone name", "Asia/Khandyga") },
|
||||||
|
{ "Asia/Kolkata", I18N_NOOP2("Timezone name", "Asia/Kolkata") },
|
||||||
|
{ "Asia/Krasnoyarsk", I18N_NOOP2("Timezone name", "Asia/Krasnoyarsk") },
|
||||||
|
{ "Asia/Kuala_Lumpur", I18N_NOOP2("Timezone name", "Asia/Kuala_Lumpur") },
|
||||||
|
{ "Asia/Kuching", I18N_NOOP2("Timezone name", "Asia/Kuching") },
|
||||||
|
{ "Asia/Kuwait", I18N_NOOP2("Timezone name", "Asia/Kuwait") },
|
||||||
|
{ "Asia/Macau", I18N_NOOP2("Timezone name", "Asia/Macau") },
|
||||||
|
{ "Asia/Magadan", I18N_NOOP2("Timezone name", "Asia/Magadan") },
|
||||||
|
{ "Asia/Makassar", I18N_NOOP2("Timezone name", "Asia/Makassar") },
|
||||||
|
{ "Asia/Manila", I18N_NOOP2("Timezone name", "Asia/Manila") },
|
||||||
|
{ "Asia/Muscat", I18N_NOOP2("Timezone name", "Asia/Muscat") },
|
||||||
|
{ "Asia/Nicosia", I18N_NOOP2("Timezone name", "Asia/Nicosia") },
|
||||||
|
{ "Asia/Novokuznetsk", I18N_NOOP2("Timezone name", "Asia/Novokuznetsk") },
|
||||||
|
{ "Asia/Novosibirsk", I18N_NOOP2("Timezone name", "Asia/Novosibirsk") },
|
||||||
|
{ "Asia/Omsk", I18N_NOOP2("Timezone name", "Asia/Omsk") },
|
||||||
|
{ "Asia/Oral", I18N_NOOP2("Timezone name", "Asia/Oral") },
|
||||||
|
{ "Asia/Phnom_Penh", I18N_NOOP2("Timezone name", "Asia/Phnom_Penh") },
|
||||||
|
{ "Asia/Pontianak", I18N_NOOP2("Timezone name", "Asia/Pontianak") },
|
||||||
|
{ "Asia/Pyongyang", I18N_NOOP2("Timezone name", "Asia/Pyongyang") },
|
||||||
|
{ "Asia/Qatar", I18N_NOOP2("Timezone name", "Asia/Qatar") },
|
||||||
|
{ "Asia/Qostanay", I18N_NOOP2("Timezone name", "Asia/Qostanay") },
|
||||||
|
{ "Asia/Qyzylorda", I18N_NOOP2("Timezone name", "Asia/Qyzylorda") },
|
||||||
|
{ "Asia/Riyadh", I18N_NOOP2("Timezone name", "Asia/Riyadh") },
|
||||||
|
{ "Asia/Sakhalin", I18N_NOOP2("Timezone name", "Asia/Sakhalin") },
|
||||||
|
{ "Asia/Samarkand", I18N_NOOP2("Timezone name", "Asia/Samarkand") },
|
||||||
|
{ "Asia/Seoul", I18N_NOOP2("Timezone name", "Asia/Seoul") },
|
||||||
|
{ "Asia/Shanghai", I18N_NOOP2("Timezone name", "Asia/Shanghai") },
|
||||||
|
{ "Asia/Singapore", I18N_NOOP2("Timezone name", "Asia/Singapore") },
|
||||||
|
{ "Asia/Srednekolymsk", I18N_NOOP2("Timezone name", "Asia/Srednekolymsk") },
|
||||||
|
{ "Asia/Taipei", I18N_NOOP2("Timezone name", "Asia/Taipei") },
|
||||||
|
{ "Asia/Tashkent", I18N_NOOP2("Timezone name", "Asia/Tashkent") },
|
||||||
|
{ "Asia/Tbilisi", I18N_NOOP2("Timezone name", "Asia/Tbilisi") },
|
||||||
|
{ "Asia/Tehran", I18N_NOOP2("Timezone name", "Asia/Tehran") },
|
||||||
|
{ "Asia/Thimphu", I18N_NOOP2("Timezone name", "Asia/Thimphu") },
|
||||||
|
{ "Asia/Tokyo", I18N_NOOP2("Timezone name", "Asia/Tokyo") },
|
||||||
|
{ "Asia/Tomsk", I18N_NOOP2("Timezone name", "Asia/Tomsk") },
|
||||||
|
{ "Asia/Ulaanbaatar", I18N_NOOP2("Timezone name", "Asia/Ulaanbaatar") },
|
||||||
|
{ "Asia/Urumqi", I18N_NOOP2("Timezone name", "Asia/Urumqi") },
|
||||||
|
{ "Asia/Ust-Nera", I18N_NOOP2("Timezone name", "Asia/Ust-Nera") },
|
||||||
|
{ "Asia/Vientiane", I18N_NOOP2("Timezone name", "Asia/Vientiane") },
|
||||||
|
{ "Asia/Vladivostok", I18N_NOOP2("Timezone name", "Asia/Vladivostok") },
|
||||||
|
{ "Asia/Yakutsk", I18N_NOOP2("Timezone name", "Asia/Yakutsk") },
|
||||||
|
{ "Asia/Yangon", I18N_NOOP2("Timezone name", "Asia/Yangon") },
|
||||||
|
{ "Asia/Yekaterinburg", I18N_NOOP2("Timezone name", "Asia/Yekaterinburg") },
|
||||||
|
{ "Asia/Yerevan", I18N_NOOP2("Timezone name", "Asia/Yerevan") },
|
||||||
|
{ "Atlantic/Azores", I18N_NOOP2("Timezone name", "Atlantic/Azores") },
|
||||||
|
{ "Atlantic/Bermuda", I18N_NOOP2("Timezone name", "Atlantic/Bermuda") },
|
||||||
|
{ "Atlantic/Canary", I18N_NOOP2("Timezone name", "Atlantic/Canary") },
|
||||||
|
{ "Atlantic/Cape_Verde", I18N_NOOP2("Timezone name", "Atlantic/Cape_Verde") },
|
||||||
|
{ "Atlantic/Faroe", I18N_NOOP2("Timezone name", "Atlantic/Faroe") },
|
||||||
|
{ "Atlantic/Madeira", I18N_NOOP2("Timezone name", "Atlantic/Madeira") },
|
||||||
|
{ "Atlantic/Reykjavik", I18N_NOOP2("Timezone name", "Atlantic/Reykjavik") },
|
||||||
|
{ "Atlantic/South_Georgia", I18N_NOOP2("Timezone name", "Atlantic/South_Georgia") },
|
||||||
|
{ "Atlantic/St_Helena", I18N_NOOP2("Timezone name", "Atlantic/St_Helena") },
|
||||||
|
{ "Atlantic/Stanley", I18N_NOOP2("Timezone name", "Atlantic/Stanley") },
|
||||||
|
{ "Australia/Adelaide", I18N_NOOP2("Timezone name", "Australia/Adelaide") },
|
||||||
|
{ "Australia/Brisbane", I18N_NOOP2("Timezone name", "Australia/Brisbane") },
|
||||||
|
{ "Australia/Broken_Hill", I18N_NOOP2("Timezone name", "Australia/Broken_Hill") },
|
||||||
|
{ "Australia/Darwin", I18N_NOOP2("Timezone name", "Australia/Darwin") },
|
||||||
|
{ "Australia/Eucla", I18N_NOOP2("Timezone name", "Australia/Eucla") },
|
||||||
|
{ "Australia/Hobart", I18N_NOOP2("Timezone name", "Australia/Hobart") },
|
||||||
|
{ "Australia/Lindeman", I18N_NOOP2("Timezone name", "Australia/Lindeman") },
|
||||||
|
{ "Australia/Lord_Howe", I18N_NOOP2("Timezone name", "Australia/Lord_Howe") },
|
||||||
|
{ "Australia/Melbourne", I18N_NOOP2("Timezone name", "Australia/Melbourne") },
|
||||||
|
{ "Australia/Perth", I18N_NOOP2("Timezone name", "Australia/Perth") },
|
||||||
|
{ "Australia/Sydney", I18N_NOOP2("Timezone name", "Australia/Sydney") },
|
||||||
|
{ "Europe/Amsterdam", I18N_NOOP2("Timezone name", "Europe/Amsterdam") },
|
||||||
|
{ "Europe/Andorra", I18N_NOOP2("Timezone name", "Europe/Andorra") },
|
||||||
|
{ "Europe/Astrakhan", I18N_NOOP2("Timezone name", "Europe/Astrakhan") },
|
||||||
|
{ "Europe/Athens", I18N_NOOP2("Timezone name", "Europe/Athens") },
|
||||||
|
{ "Europe/Belgrade", I18N_NOOP2("Timezone name", "Europe/Belgrade") },
|
||||||
|
{ "Europe/Berlin", I18N_NOOP2("Timezone name", "Europe/Berlin") },
|
||||||
|
{ "Europe/Bratislava", I18N_NOOP2("Timezone name", "Europe/Bratislava") },
|
||||||
|
{ "Europe/Brussels", I18N_NOOP2("Timezone name", "Europe/Brussels") },
|
||||||
|
{ "Europe/Bucharest", I18N_NOOP2("Timezone name", "Europe/Bucharest") },
|
||||||
|
{ "Europe/Budapest", I18N_NOOP2("Timezone name", "Europe/Budapest") },
|
||||||
|
{ "Europe/Busingen", I18N_NOOP2("Timezone name", "Europe/Busingen") },
|
||||||
|
{ "Europe/Chisinau", I18N_NOOP2("Timezone name", "Europe/Chisinau") },
|
||||||
|
{ "Europe/Copenhagen", I18N_NOOP2("Timezone name", "Europe/Copenhagen") },
|
||||||
|
{ "Europe/Dublin", I18N_NOOP2("Timezone name", "Europe/Dublin") },
|
||||||
|
{ "Europe/Gibraltar", I18N_NOOP2("Timezone name", "Europe/Gibraltar") },
|
||||||
|
{ "Europe/Guernsey", I18N_NOOP2("Timezone name", "Europe/Guernsey") },
|
||||||
|
{ "Europe/Helsinki", I18N_NOOP2("Timezone name", "Europe/Helsinki") },
|
||||||
|
{ "Europe/Isle_of_Man", I18N_NOOP2("Timezone name", "Europe/Isle_of_Man") },
|
||||||
|
{ "Europe/Istanbul", I18N_NOOP2("Timezone name", "Europe/Istanbul") },
|
||||||
|
{ "Europe/Jersey", I18N_NOOP2("Timezone name", "Europe/Jersey") },
|
||||||
|
{ "Europe/Kaliningrad", I18N_NOOP2("Timezone name", "Europe/Kaliningrad") },
|
||||||
|
{ "Europe/Kirov", I18N_NOOP2("Timezone name", "Europe/Kirov") },
|
||||||
|
{ "Europe/Kyiv", I18N_NOOP2("Timezone name", "Europe/Kyiv") },
|
||||||
|
{ "Europe/Lisbon", I18N_NOOP2("Timezone name", "Europe/Lisbon") },
|
||||||
|
{ "Europe/Ljubljana", I18N_NOOP2("Timezone name", "Europe/Ljubljana") },
|
||||||
|
{ "Europe/London", I18N_NOOP2("Timezone name", "Europe/London") },
|
||||||
|
{ "Europe/Luxembourg", I18N_NOOP2("Timezone name", "Europe/Luxembourg") },
|
||||||
|
{ "Europe/Madrid", I18N_NOOP2("Timezone name", "Europe/Madrid") },
|
||||||
|
{ "Europe/Malta", I18N_NOOP2("Timezone name", "Europe/Malta") },
|
||||||
|
{ "Europe/Mariehamn", I18N_NOOP2("Timezone name", "Europe/Mariehamn") },
|
||||||
|
{ "Europe/Minsk", I18N_NOOP2("Timezone name", "Europe/Minsk") },
|
||||||
|
{ "Europe/Monaco", I18N_NOOP2("Timezone name", "Europe/Monaco") },
|
||||||
|
{ "Europe/Moscow", I18N_NOOP2("Timezone name", "Europe/Moscow") },
|
||||||
|
{ "Europe/Oslo", I18N_NOOP2("Timezone name", "Europe/Oslo") },
|
||||||
|
{ "Europe/Paris", I18N_NOOP2("Timezone name", "Europe/Paris") },
|
||||||
|
{ "Europe/Podgorica", I18N_NOOP2("Timezone name", "Europe/Podgorica") },
|
||||||
|
{ "Europe/Prague", I18N_NOOP2("Timezone name", "Europe/Prague") },
|
||||||
|
{ "Europe/Riga", I18N_NOOP2("Timezone name", "Europe/Riga") },
|
||||||
|
{ "Europe/Rome", I18N_NOOP2("Timezone name", "Europe/Rome") },
|
||||||
|
{ "Europe/Samara", I18N_NOOP2("Timezone name", "Europe/Samara") },
|
||||||
|
{ "Europe/San_Marino", I18N_NOOP2("Timezone name", "Europe/San_Marino") },
|
||||||
|
{ "Europe/Sarajevo", I18N_NOOP2("Timezone name", "Europe/Sarajevo") },
|
||||||
|
{ "Europe/Saratov", I18N_NOOP2("Timezone name", "Europe/Saratov") },
|
||||||
|
{ "Europe/Simferopol", I18N_NOOP2("Timezone name", "Europe/Simferopol") },
|
||||||
|
{ "Europe/Skopje", I18N_NOOP2("Timezone name", "Europe/Skopje") },
|
||||||
|
{ "Europe/Sofia", I18N_NOOP2("Timezone name", "Europe/Sofia") },
|
||||||
|
{ "Europe/Stockholm", I18N_NOOP2("Timezone name", "Europe/Stockholm") },
|
||||||
|
{ "Europe/Tallinn", I18N_NOOP2("Timezone name", "Europe/Tallinn") },
|
||||||
|
{ "Europe/Tirane", I18N_NOOP2("Timezone name", "Europe/Tirane") },
|
||||||
|
{ "Europe/Ulyanovsk", I18N_NOOP2("Timezone name", "Europe/Ulyanovsk") },
|
||||||
|
{ "Europe/Vaduz", I18N_NOOP2("Timezone name", "Europe/Vaduz") },
|
||||||
|
{ "Europe/Vatican", I18N_NOOP2("Timezone name", "Europe/Vatican") },
|
||||||
|
{ "Europe/Vienna", I18N_NOOP2("Timezone name", "Europe/Vienna") },
|
||||||
|
{ "Europe/Vilnius", I18N_NOOP2("Timezone name", "Europe/Vilnius") },
|
||||||
|
{ "Europe/Volgograd", I18N_NOOP2("Timezone name", "Europe/Volgograd") },
|
||||||
|
{ "Europe/Warsaw", I18N_NOOP2("Timezone name", "Europe/Warsaw") },
|
||||||
|
{ "Europe/Zagreb", I18N_NOOP2("Timezone name", "Europe/Zagreb") },
|
||||||
|
{ "Europe/Zurich", I18N_NOOP2("Timezone name", "Europe/Zurich") },
|
||||||
|
{ "Indian/Antananarivo", I18N_NOOP2("Timezone name", "Indian/Antananarivo") },
|
||||||
|
{ "Indian/Chagos", I18N_NOOP2("Timezone name", "Indian/Chagos") },
|
||||||
|
{ "Indian/Christmas", I18N_NOOP2("Timezone name", "Indian/Christmas") },
|
||||||
|
{ "Indian/Cocos", I18N_NOOP2("Timezone name", "Indian/Cocos") },
|
||||||
|
{ "Indian/Comoro", I18N_NOOP2("Timezone name", "Indian/Comoro") },
|
||||||
|
{ "Indian/Kerguelen", I18N_NOOP2("Timezone name", "Indian/Kerguelen") },
|
||||||
|
{ "Indian/Mahe", I18N_NOOP2("Timezone name", "Indian/Mahe") },
|
||||||
|
{ "Indian/Maldives", I18N_NOOP2("Timezone name", "Indian/Maldives") },
|
||||||
|
{ "Indian/Mauritius", I18N_NOOP2("Timezone name", "Indian/Mauritius") },
|
||||||
|
{ "Indian/Mayotte", I18N_NOOP2("Timezone name", "Indian/Mayotte") },
|
||||||
|
{ "Indian/Reunion", I18N_NOOP2("Timezone name", "Indian/Reunion") },
|
||||||
|
{ "Pacific/Apia", I18N_NOOP2("Timezone name", "Pacific/Apia") },
|
||||||
|
{ "Pacific/Auckland", I18N_NOOP2("Timezone name", "Pacific/Auckland") },
|
||||||
|
{ "Pacific/Bougainville", I18N_NOOP2("Timezone name", "Pacific/Bougainville") },
|
||||||
|
{ "Pacific/Chatham", I18N_NOOP2("Timezone name", "Pacific/Chatham") },
|
||||||
|
{ "Pacific/Chuuk", I18N_NOOP2("Timezone name", "Pacific/Chuuk") },
|
||||||
|
{ "Pacific/Easter", I18N_NOOP2("Timezone name", "Pacific/Easter") },
|
||||||
|
{ "Pacific/Efate", I18N_NOOP2("Timezone name", "Pacific/Efate") },
|
||||||
|
{ "Pacific/Fakaofo", I18N_NOOP2("Timezone name", "Pacific/Fakaofo") },
|
||||||
|
{ "Pacific/Fiji", I18N_NOOP2("Timezone name", "Pacific/Fiji") },
|
||||||
|
{ "Pacific/Funafuti", I18N_NOOP2("Timezone name", "Pacific/Funafuti") },
|
||||||
|
{ "Pacific/Galapagos", I18N_NOOP2("Timezone name", "Pacific/Galapagos") },
|
||||||
|
{ "Pacific/Gambier", I18N_NOOP2("Timezone name", "Pacific/Gambier") },
|
||||||
|
{ "Pacific/Guadalcanal", I18N_NOOP2("Timezone name", "Pacific/Guadalcanal") },
|
||||||
|
{ "Pacific/Guam", I18N_NOOP2("Timezone name", "Pacific/Guam") },
|
||||||
|
{ "Pacific/Honolulu", I18N_NOOP2("Timezone name", "Pacific/Honolulu") },
|
||||||
|
{ "Pacific/Kanton", I18N_NOOP2("Timezone name", "Pacific/Kanton") },
|
||||||
|
{ "Pacific/Kiritimati", I18N_NOOP2("Timezone name", "Pacific/Kiritimati") },
|
||||||
|
{ "Pacific/Kosrae", I18N_NOOP2("Timezone name", "Pacific/Kosrae") },
|
||||||
|
{ "Pacific/Kwajalein", I18N_NOOP2("Timezone name", "Pacific/Kwajalein") },
|
||||||
|
{ "Pacific/Majuro", I18N_NOOP2("Timezone name", "Pacific/Majuro") },
|
||||||
|
{ "Pacific/Marquesas", I18N_NOOP2("Timezone name", "Pacific/Marquesas") },
|
||||||
|
{ "Pacific/Midway", I18N_NOOP2("Timezone name", "Pacific/Midway") },
|
||||||
|
{ "Pacific/Nauru", I18N_NOOP2("Timezone name", "Pacific/Nauru") },
|
||||||
|
{ "Pacific/Niue", I18N_NOOP2("Timezone name", "Pacific/Niue") },
|
||||||
|
{ "Pacific/Norfolk", I18N_NOOP2("Timezone name", "Pacific/Norfolk") },
|
||||||
|
{ "Pacific/Noumea", I18N_NOOP2("Timezone name", "Pacific/Noumea") },
|
||||||
|
{ "Pacific/Pago_Pago", I18N_NOOP2("Timezone name", "Pacific/Pago_Pago") },
|
||||||
|
{ "Pacific/Palau", I18N_NOOP2("Timezone name", "Pacific/Palau") },
|
||||||
|
{ "Pacific/Pitcairn", I18N_NOOP2("Timezone name", "Pacific/Pitcairn") },
|
||||||
|
{ "Pacific/Pohnpei", I18N_NOOP2("Timezone name", "Pacific/Pohnpei") },
|
||||||
|
{ "Pacific/Port_Moresby", I18N_NOOP2("Timezone name", "Pacific/Port_Moresby") },
|
||||||
|
{ "Pacific/Rarotonga", I18N_NOOP2("Timezone name", "Pacific/Rarotonga") },
|
||||||
|
{ "Pacific/Saipan", I18N_NOOP2("Timezone name", "Pacific/Saipan") },
|
||||||
|
{ "Pacific/Tahiti", I18N_NOOP2("Timezone name", "Pacific/Tahiti") },
|
||||||
|
{ "Pacific/Tarawa", I18N_NOOP2("Timezone name", "Pacific/Tarawa") },
|
||||||
|
{ "Pacific/Tongatapu", I18N_NOOP2("Timezone name", "Pacific/Tongatapu") },
|
||||||
|
{ "Pacific/Wake", I18N_NOOP2("Timezone name", "Pacific/Wake") },
|
||||||
|
{ "Pacific/Wallis", I18N_NOOP2("Timezone name", "Pacific/Wallis") },
|
||||||
|
};
|
||||||
|
static const qint16 timezoneNameTblSize = sizeof(timezoneNameTbl) / sizeof(timezoneNameData);
|
||||||
|
|
||||||
|
static const struct timezoneCommentData {
|
||||||
|
const char* name;
|
||||||
|
const char* translation;
|
||||||
|
} timezoneCommentTbl[] = {
|
||||||
|
{ "Africa/Ceuta", I18N_NOOP2("Timezone comment", "Ceuta, Melilla") },
|
||||||
|
{ "Africa/Kinshasa", I18N_NOOP2("Timezone comment", "Dem. Rep. of Congo (west)") },
|
||||||
|
{ "Africa/Lubumbashi", I18N_NOOP2("Timezone comment", "Dem. Rep. of Congo (east)") },
|
||||||
|
{ "America/Adak", I18N_NOOP2("Timezone comment", "Alaska - western Aleutians") },
|
||||||
|
{ "America/Anchorage", I18N_NOOP2("Timezone comment", "Alaska (most areas)") },
|
||||||
|
{ "America/Araguaina", I18N_NOOP2("Timezone comment", "Tocantins") },
|
||||||
|
{ "America/Argentina/Buenos_Aires", I18N_NOOP2("Timezone comment", "Buenos Aires (BA, CF)") },
|
||||||
|
{ "America/Argentina/Catamarca", I18N_NOOP2("Timezone comment", "Catamarca (CT), Chubut (CH)") },
|
||||||
|
{ "America/Argentina/Cordoba", I18N_NOOP2("Timezone comment", "Argentina (most areas: CB, CC, CN, ER, FM, MN, SE, SF)") },
|
||||||
|
{ "America/Argentina/Jujuy", I18N_NOOP2("Timezone comment", "Jujuy (JY)") },
|
||||||
|
{ "America/Argentina/La_Rioja", I18N_NOOP2("Timezone comment", "La Rioja (LR)") },
|
||||||
|
{ "America/Argentina/Mendoza", I18N_NOOP2("Timezone comment", "Mendoza (MZ)") },
|
||||||
|
{ "America/Argentina/Rio_Gallegos", I18N_NOOP2("Timezone comment", "Santa Cruz (SC)") },
|
||||||
|
{ "America/Argentina/Salta", I18N_NOOP2("Timezone comment", "Salta (SA, LP, NQ, RN)") },
|
||||||
|
{ "America/Argentina/San_Juan", I18N_NOOP2("Timezone comment", "San Juan (SJ)") },
|
||||||
|
{ "America/Argentina/San_Luis", I18N_NOOP2("Timezone comment", "San Luis (SL)") },
|
||||||
|
{ "America/Argentina/Tucuman", I18N_NOOP2("Timezone comment", "Tucuman (TM)") },
|
||||||
|
{ "America/Argentina/Ushuaia", I18N_NOOP2("Timezone comment", "Tierra del Fuego (TF)") },
|
||||||
|
{ "America/Atikokan", I18N_NOOP2("Timezone comment", "EST - ON (Atikokan), NU (Coral H)") },
|
||||||
|
{ "America/Bahia", I18N_NOOP2("Timezone comment", "Bahia") },
|
||||||
|
{ "America/Bahia_Banderas", I18N_NOOP2("Timezone comment", "Bahia de Banderas") },
|
||||||
|
{ "America/Belem", I18N_NOOP2("Timezone comment", "Para (east), Amapa") },
|
||||||
|
{ "America/Blanc-Sablon", I18N_NOOP2("Timezone comment", "AST - QC (Lower North Shore)") },
|
||||||
|
{ "America/Boa_Vista", I18N_NOOP2("Timezone comment", "Roraima") },
|
||||||
|
{ "America/Boise", I18N_NOOP2("Timezone comment", "Mountain - ID (south), OR (east)") },
|
||||||
|
{ "America/Cambridge_Bay", I18N_NOOP2("Timezone comment", "Mountain - NU (west)") },
|
||||||
|
{ "America/Campo_Grande", I18N_NOOP2("Timezone comment", "Mato Grosso do Sul") },
|
||||||
|
{ "America/Cancun", I18N_NOOP2("Timezone comment", "Quintana Roo") },
|
||||||
|
{ "America/Chicago", I18N_NOOP2("Timezone comment", "Central (most areas)") },
|
||||||
|
{ "America/Chihuahua", I18N_NOOP2("Timezone comment", "Chihuahua (most areas)") },
|
||||||
|
{ "America/Ciudad_Juarez", I18N_NOOP2("Timezone comment", "Chihuahua (US border - west)") },
|
||||||
|
{ "America/Creston", I18N_NOOP2("Timezone comment", "MST - BC (Creston)") },
|
||||||
|
{ "America/Cuiaba", I18N_NOOP2("Timezone comment", "Mato Grosso") },
|
||||||
|
{ "America/Danmarkshavn", I18N_NOOP2("Timezone comment", "National Park (east coast)") },
|
||||||
|
{ "America/Dawson", I18N_NOOP2("Timezone comment", "MST - Yukon (west)") },
|
||||||
|
{ "America/Dawson_Creek", I18N_NOOP2("Timezone comment", "MST - BC (Dawson Cr, Ft St John)") },
|
||||||
|
{ "America/Denver", I18N_NOOP2("Timezone comment", "Mountain (most areas)") },
|
||||||
|
{ "America/Detroit", I18N_NOOP2("Timezone comment", "Eastern - MI (most areas)") },
|
||||||
|
{ "America/Edmonton", I18N_NOOP2("Timezone comment", "Mountain - AB, BC(E), NT(E), SK(W)") },
|
||||||
|
{ "America/Eirunepe", I18N_NOOP2("Timezone comment", "Amazonas (west)") },
|
||||||
|
{ "America/Fort_Nelson", I18N_NOOP2("Timezone comment", "MST - BC (Ft Nelson)") },
|
||||||
|
{ "America/Fortaleza", I18N_NOOP2("Timezone comment", "Brazil (northeast: MA, PI, CE, RN, PB)") },
|
||||||
|
{ "America/Glace_Bay", I18N_NOOP2("Timezone comment", "Atlantic - NS (Cape Breton)") },
|
||||||
|
{ "America/Goose_Bay", I18N_NOOP2("Timezone comment", "Atlantic - Labrador (most areas)") },
|
||||||
|
{ "America/Guayaquil", I18N_NOOP2("Timezone comment", "Ecuador (mainland)") },
|
||||||
|
{ "America/Halifax", I18N_NOOP2("Timezone comment", "Atlantic - NS (most areas), PE") },
|
||||||
|
{ "America/Hermosillo", I18N_NOOP2("Timezone comment", "Sonora") },
|
||||||
|
{ "America/Indiana/Indianapolis", I18N_NOOP2("Timezone comment", "Eastern - IN (most areas)") },
|
||||||
|
{ "America/Indiana/Knox", I18N_NOOP2("Timezone comment", "Central - IN (Starke)") },
|
||||||
|
{ "America/Indiana/Marengo", I18N_NOOP2("Timezone comment", "Eastern - IN (Crawford)") },
|
||||||
|
{ "America/Indiana/Petersburg", I18N_NOOP2("Timezone comment", "Eastern - IN (Pike)") },
|
||||||
|
{ "America/Indiana/Tell_City", I18N_NOOP2("Timezone comment", "Central - IN (Perry)") },
|
||||||
|
{ "America/Indiana/Vevay", I18N_NOOP2("Timezone comment", "Eastern - IN (Switzerland)") },
|
||||||
|
{ "America/Indiana/Vincennes", I18N_NOOP2("Timezone comment", "Eastern - IN (Da, Du, K, Mn)") },
|
||||||
|
{ "America/Indiana/Winamac", I18N_NOOP2("Timezone comment", "Eastern - IN (Pulaski)") },
|
||||||
|
{ "America/Inuvik", I18N_NOOP2("Timezone comment", "Mountain - NT (west)") },
|
||||||
|
{ "America/Iqaluit", I18N_NOOP2("Timezone comment", "Eastern - NU (most areas)") },
|
||||||
|
{ "America/Juneau", I18N_NOOP2("Timezone comment", "Alaska - Juneau area") },
|
||||||
|
{ "America/Kentucky/Louisville", I18N_NOOP2("Timezone comment", "Eastern - KY (Louisville area)") },
|
||||||
|
{ "America/Kentucky/Monticello", I18N_NOOP2("Timezone comment", "Eastern - KY (Wayne)") },
|
||||||
|
{ "America/Los_Angeles", I18N_NOOP2("Timezone comment", "Pacific") },
|
||||||
|
{ "America/Maceio", I18N_NOOP2("Timezone comment", "Alagoas, Sergipe") },
|
||||||
|
{ "America/Manaus", I18N_NOOP2("Timezone comment", "Amazonas (east)") },
|
||||||
|
{ "America/Matamoros", I18N_NOOP2("Timezone comment", "Coahuila, Nuevo Leon, Tamaulipas (US border)") },
|
||||||
|
{ "America/Mazatlan", I18N_NOOP2("Timezone comment", "Baja California Sur, Nayarit (most areas), Sinaloa") },
|
||||||
|
{ "America/Menominee", I18N_NOOP2("Timezone comment", "Central - MI (Wisconsin border)") },
|
||||||
|
{ "America/Merida", I18N_NOOP2("Timezone comment", "Campeche, Yucatan") },
|
||||||
|
{ "America/Metlakatla", I18N_NOOP2("Timezone comment", "Alaska - Annette Island") },
|
||||||
|
{ "America/Mexico_City", I18N_NOOP2("Timezone comment", "Central Mexico") },
|
||||||
|
{ "America/Moncton", I18N_NOOP2("Timezone comment", "Atlantic - New Brunswick") },
|
||||||
|
{ "America/Monterrey", I18N_NOOP2("Timezone comment", "Durango; Coahuila, Nuevo Leon, Tamaulipas (most areas)") },
|
||||||
|
{ "America/New_York", I18N_NOOP2("Timezone comment", "Eastern (most areas)") },
|
||||||
|
{ "America/Nome", I18N_NOOP2("Timezone comment", "Alaska (west)") },
|
||||||
|
{ "America/Noronha", I18N_NOOP2("Timezone comment", "Atlantic islands") },
|
||||||
|
{ "America/North_Dakota/Beulah", I18N_NOOP2("Timezone comment", "Central - ND (Mercer)") },
|
||||||
|
{ "America/North_Dakota/Center", I18N_NOOP2("Timezone comment", "Central - ND (Oliver)") },
|
||||||
|
{ "America/North_Dakota/New_Salem", I18N_NOOP2("Timezone comment", "Central - ND (Morton rural)") },
|
||||||
|
{ "America/Nuuk", I18N_NOOP2("Timezone comment", "most of Greenland") },
|
||||||
|
{ "America/Ojinaga", I18N_NOOP2("Timezone comment", "Chihuahua (US border - east)") },
|
||||||
|
{ "America/Phoenix", I18N_NOOP2("Timezone comment", "MST - AZ (except Navajo)") },
|
||||||
|
{ "America/Porto_Velho", I18N_NOOP2("Timezone comment", "Rondonia") },
|
||||||
|
{ "America/Punta_Arenas", I18N_NOOP2("Timezone comment", "Region of Magallanes") },
|
||||||
|
{ "America/Rankin_Inlet", I18N_NOOP2("Timezone comment", "Central - NU (central)") },
|
||||||
|
{ "America/Recife", I18N_NOOP2("Timezone comment", "Pernambuco") },
|
||||||
|
{ "America/Regina", I18N_NOOP2("Timezone comment", "CST - SK (most areas)") },
|
||||||
|
{ "America/Resolute", I18N_NOOP2("Timezone comment", "Central - NU (Resolute)") },
|
||||||
|
{ "America/Rio_Branco", I18N_NOOP2("Timezone comment", "Acre") },
|
||||||
|
{ "America/Santarem", I18N_NOOP2("Timezone comment", "Para (west)") },
|
||||||
|
{ "America/Santiago", I18N_NOOP2("Timezone comment", "most of Chile") },
|
||||||
|
{ "America/Sao_Paulo", I18N_NOOP2("Timezone comment", "Brazil (southeast: GO, DF, MG, ES, RJ, SP, PR, SC, RS)") },
|
||||||
|
{ "America/Scoresbysund", I18N_NOOP2("Timezone comment", "Scoresbysund/Ittoqqortoormiit") },
|
||||||
|
{ "America/Sitka", I18N_NOOP2("Timezone comment", "Alaska - Sitka area") },
|
||||||
|
{ "America/St_Johns", I18N_NOOP2("Timezone comment", "Newfoundland, Labrador (SE)") },
|
||||||
|
{ "America/Swift_Current", I18N_NOOP2("Timezone comment", "CST - SK (midwest)") },
|
||||||
|
{ "America/Thule", I18N_NOOP2("Timezone comment", "Thule/Pituffik") },
|
||||||
|
{ "America/Tijuana", I18N_NOOP2("Timezone comment", "Baja California") },
|
||||||
|
{ "America/Toronto", I18N_NOOP2("Timezone comment", "Eastern - ON & QC (most areas)") },
|
||||||
|
{ "America/Vancouver", I18N_NOOP2("Timezone comment", "Pacific - BC (most areas)") },
|
||||||
|
{ "America/Whitehorse", I18N_NOOP2("Timezone comment", "MST - Yukon (east)") },
|
||||||
|
{ "America/Winnipeg", I18N_NOOP2("Timezone comment", "Central - ON (west), Manitoba") },
|
||||||
|
{ "America/Yakutat", I18N_NOOP2("Timezone comment", "Alaska - Yakutat") },
|
||||||
|
{ "Antarctica/Casey", I18N_NOOP2("Timezone comment", "Casey") },
|
||||||
|
{ "Antarctica/Davis", I18N_NOOP2("Timezone comment", "Davis") },
|
||||||
|
{ "Antarctica/DumontDUrville", I18N_NOOP2("Timezone comment", "Dumont-d'Urville") },
|
||||||
|
{ "Antarctica/Macquarie", I18N_NOOP2("Timezone comment", "Macquarie Island") },
|
||||||
|
{ "Antarctica/Mawson", I18N_NOOP2("Timezone comment", "Mawson") },
|
||||||
|
{ "Antarctica/McMurdo", I18N_NOOP2("Timezone comment", "New Zealand time - McMurdo, South Pole") },
|
||||||
|
{ "Antarctica/Palmer", I18N_NOOP2("Timezone comment", "Palmer") },
|
||||||
|
{ "Antarctica/Rothera", I18N_NOOP2("Timezone comment", "Rothera") },
|
||||||
|
{ "Antarctica/Syowa", I18N_NOOP2("Timezone comment", "Syowa") },
|
||||||
|
{ "Antarctica/Troll", I18N_NOOP2("Timezone comment", "Troll") },
|
||||||
|
{ "Antarctica/Vostok", I18N_NOOP2("Timezone comment", "Vostok") },
|
||||||
|
{ "Asia/Almaty", I18N_NOOP2("Timezone comment", "most of Kazakhstan") },
|
||||||
|
{ "Asia/Anadyr", I18N_NOOP2("Timezone comment", "MSK+09 - Bering Sea") },
|
||||||
|
{ "Asia/Aqtau", I18N_NOOP2("Timezone comment", "Mangghystau/Mankistau") },
|
||||||
|
{ "Asia/Aqtobe", I18N_NOOP2("Timezone comment", "Aqtobe/Aktobe") },
|
||||||
|
{ "Asia/Atyrau", I18N_NOOP2("Timezone comment", "Atyrau/Atirau/Gur'yev") },
|
||||||
|
{ "Asia/Barnaul", I18N_NOOP2("Timezone comment", "MSK+04 - Altai") },
|
||||||
|
{ "Asia/Chita", I18N_NOOP2("Timezone comment", "MSK+06 - Zabaykalsky") },
|
||||||
|
{ "Asia/Choibalsan", I18N_NOOP2("Timezone comment", "Dornod, Sukhbaatar") },
|
||||||
|
{ "Asia/Famagusta", I18N_NOOP2("Timezone comment", "Northern Cyprus") },
|
||||||
|
{ "Asia/Gaza", I18N_NOOP2("Timezone comment", "Gaza Strip") },
|
||||||
|
{ "Asia/Hebron", I18N_NOOP2("Timezone comment", "West Bank") },
|
||||||
|
{ "Asia/Hovd", I18N_NOOP2("Timezone comment", "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan") },
|
||||||
|
{ "Asia/Irkutsk", I18N_NOOP2("Timezone comment", "MSK+05 - Irkutsk, Buryatia") },
|
||||||
|
{ "Asia/Jakarta", I18N_NOOP2("Timezone comment", "Java, Sumatra") },
|
||||||
|
{ "Asia/Jayapura", I18N_NOOP2("Timezone comment", "New Guinea (West Papua / Irian Jaya), Malukus/Moluccas") },
|
||||||
|
{ "Asia/Kamchatka", I18N_NOOP2("Timezone comment", "MSK+09 - Kamchatka") },
|
||||||
|
{ "Asia/Khandyga", I18N_NOOP2("Timezone comment", "MSK+06 - Tomponsky, Ust-Maysky") },
|
||||||
|
{ "Asia/Krasnoyarsk", I18N_NOOP2("Timezone comment", "MSK+04 - Krasnoyarsk area") },
|
||||||
|
{ "Asia/Kuala_Lumpur", I18N_NOOP2("Timezone comment", "Malaysia (peninsula)") },
|
||||||
|
{ "Asia/Kuching", I18N_NOOP2("Timezone comment", "Sabah, Sarawak") },
|
||||||
|
{ "Asia/Magadan", I18N_NOOP2("Timezone comment", "MSK+08 - Magadan") },
|
||||||
|
{ "Asia/Makassar", I18N_NOOP2("Timezone comment", "Borneo (east, south), Sulawesi/Celebes, Bali, Nusa Tengarra, Timor (west)") },
|
||||||
|
{ "Asia/Nicosia", I18N_NOOP2("Timezone comment", "most of Cyprus") },
|
||||||
|
{ "Asia/Novokuznetsk", I18N_NOOP2("Timezone comment", "MSK+04 - Kemerovo") },
|
||||||
|
{ "Asia/Novosibirsk", I18N_NOOP2("Timezone comment", "MSK+04 - Novosibirsk") },
|
||||||
|
{ "Asia/Omsk", I18N_NOOP2("Timezone comment", "MSK+03 - Omsk") },
|
||||||
|
{ "Asia/Oral", I18N_NOOP2("Timezone comment", "West Kazakhstan") },
|
||||||
|
{ "Asia/Pontianak", I18N_NOOP2("Timezone comment", "Borneo (west, central)") },
|
||||||
|
{ "Asia/Qostanay", I18N_NOOP2("Timezone comment", "Qostanay/Kostanay/Kustanay") },
|
||||||
|
{ "Asia/Qyzylorda", I18N_NOOP2("Timezone comment", "Qyzylorda/Kyzylorda/Kzyl-Orda") },
|
||||||
|
{ "Asia/Sakhalin", I18N_NOOP2("Timezone comment", "MSK+08 - Sakhalin Island") },
|
||||||
|
{ "Asia/Samarkand", I18N_NOOP2("Timezone comment", "Uzbekistan (west)") },
|
||||||
|
{ "Asia/Shanghai", I18N_NOOP2("Timezone comment", "Beijing Time") },
|
||||||
|
{ "Asia/Srednekolymsk", I18N_NOOP2("Timezone comment", "MSK+08 - Sakha (E), N Kuril Is") },
|
||||||
|
{ "Asia/Tashkent", I18N_NOOP2("Timezone comment", "Uzbekistan (east)") },
|
||||||
|
{ "Asia/Tomsk", I18N_NOOP2("Timezone comment", "MSK+04 - Tomsk") },
|
||||||
|
{ "Asia/Ulaanbaatar", I18N_NOOP2("Timezone comment", "most of Mongolia") },
|
||||||
|
{ "Asia/Urumqi", I18N_NOOP2("Timezone comment", "Xinjiang Time") },
|
||||||
|
{ "Asia/Ust-Nera", I18N_NOOP2("Timezone comment", "MSK+07 - Oymyakonsky") },
|
||||||
|
{ "Asia/Vladivostok", I18N_NOOP2("Timezone comment", "MSK+07 - Amur River") },
|
||||||
|
{ "Asia/Yakutsk", I18N_NOOP2("Timezone comment", "MSK+06 - Lena River") },
|
||||||
|
{ "Asia/Yekaterinburg", I18N_NOOP2("Timezone comment", "MSK+02 - Urals") },
|
||||||
|
{ "Atlantic/Azores", I18N_NOOP2("Timezone comment", "Azores") },
|
||||||
|
{ "Atlantic/Canary", I18N_NOOP2("Timezone comment", "Canary Islands") },
|
||||||
|
{ "Atlantic/Madeira", I18N_NOOP2("Timezone comment", "Madeira Islands") },
|
||||||
|
{ "Australia/Adelaide", I18N_NOOP2("Timezone comment", "South Australia") },
|
||||||
|
{ "Australia/Brisbane", I18N_NOOP2("Timezone comment", "Queensland (most areas)") },
|
||||||
|
{ "Australia/Broken_Hill", I18N_NOOP2("Timezone comment", "New South Wales (Yancowinna)") },
|
||||||
|
{ "Australia/Darwin", I18N_NOOP2("Timezone comment", "Northern Territory") },
|
||||||
|
{ "Australia/Eucla", I18N_NOOP2("Timezone comment", "Western Australia (Eucla)") },
|
||||||
|
{ "Australia/Hobart", I18N_NOOP2("Timezone comment", "Tasmania") },
|
||||||
|
{ "Australia/Lindeman", I18N_NOOP2("Timezone comment", "Queensland (Whitsunday Islands)") },
|
||||||
|
{ "Australia/Lord_Howe", I18N_NOOP2("Timezone comment", "Lord Howe Island") },
|
||||||
|
{ "Australia/Melbourne", I18N_NOOP2("Timezone comment", "Victoria") },
|
||||||
|
{ "Australia/Perth", I18N_NOOP2("Timezone comment", "Western Australia (most areas)") },
|
||||||
|
{ "Australia/Sydney", I18N_NOOP2("Timezone comment", "New South Wales (most areas)") },
|
||||||
|
{ "Europe/Astrakhan", I18N_NOOP2("Timezone comment", "MSK+01 - Astrakhan") },
|
||||||
|
{ "Europe/Berlin", I18N_NOOP2("Timezone comment", "most of Germany") },
|
||||||
|
{ "Europe/Busingen", I18N_NOOP2("Timezone comment", "Busingen") },
|
||||||
|
{ "Europe/Kaliningrad", I18N_NOOP2("Timezone comment", "MSK-01 - Kaliningrad") },
|
||||||
|
{ "Europe/Kirov", I18N_NOOP2("Timezone comment", "MSK+00 - Kirov") },
|
||||||
|
{ "Europe/Kyiv", I18N_NOOP2("Timezone comment", "most of Ukraine") },
|
||||||
|
{ "Europe/Lisbon", I18N_NOOP2("Timezone comment", "Portugal (mainland)") },
|
||||||
|
{ "Europe/Madrid", I18N_NOOP2("Timezone comment", "Spain (mainland)") },
|
||||||
|
{ "Europe/Moscow", I18N_NOOP2("Timezone comment", "MSK+00 - Moscow area") },
|
||||||
|
{ "Europe/Samara", I18N_NOOP2("Timezone comment", "MSK+01 - Samara, Udmurtia") },
|
||||||
|
{ "Europe/Saratov", I18N_NOOP2("Timezone comment", "MSK+01 - Saratov") },
|
||||||
|
{ "Europe/Simferopol", I18N_NOOP2("Timezone comment", "Crimea") },
|
||||||
|
{ "Europe/Ulyanovsk", I18N_NOOP2("Timezone comment", "MSK+01 - Ulyanovsk") },
|
||||||
|
{ "Europe/Volgograd", I18N_NOOP2("Timezone comment", "MSK+00 - Volgograd") },
|
||||||
|
{ "Pacific/Auckland", I18N_NOOP2("Timezone comment", "most of New Zealand") },
|
||||||
|
{ "Pacific/Bougainville", I18N_NOOP2("Timezone comment", "Bougainville") },
|
||||||
|
{ "Pacific/Chatham", I18N_NOOP2("Timezone comment", "Chatham Islands") },
|
||||||
|
{ "Pacific/Chuuk", I18N_NOOP2("Timezone comment", "Chuuk/Truk, Yap") },
|
||||||
|
{ "Pacific/Easter", I18N_NOOP2("Timezone comment", "Easter Island") },
|
||||||
|
{ "Pacific/Galapagos", I18N_NOOP2("Timezone comment", "Galapagos Islands") },
|
||||||
|
{ "Pacific/Gambier", I18N_NOOP2("Timezone comment", "Gambier Islands") },
|
||||||
|
{ "Pacific/Honolulu", I18N_NOOP2("Timezone comment", "Hawaii") },
|
||||||
|
{ "Pacific/Kanton", I18N_NOOP2("Timezone comment", "Phoenix Islands") },
|
||||||
|
{ "Pacific/Kiritimati", I18N_NOOP2("Timezone comment", "Line Islands") },
|
||||||
|
{ "Pacific/Kosrae", I18N_NOOP2("Timezone comment", "Kosrae") },
|
||||||
|
{ "Pacific/Kwajalein", I18N_NOOP2("Timezone comment", "Kwajalein") },
|
||||||
|
{ "Pacific/Majuro", I18N_NOOP2("Timezone comment", "most of Marshall Islands") },
|
||||||
|
{ "Pacific/Marquesas", I18N_NOOP2("Timezone comment", "Marquesas Islands") },
|
||||||
|
{ "Pacific/Midway", I18N_NOOP2("Timezone comment", "Midway Islands") },
|
||||||
|
{ "Pacific/Pohnpei", I18N_NOOP2("Timezone comment", "Pohnpei/Ponape") },
|
||||||
|
{ "Pacific/Port_Moresby", I18N_NOOP2("Timezone comment", "most of Papua New Guinea") },
|
||||||
|
{ "Pacific/Tahiti", I18N_NOOP2("Timezone comment", "Society Islands") },
|
||||||
|
{ "Pacific/Tarawa", I18N_NOOP2("Timezone comment", "Gilbert Islands") },
|
||||||
|
{ "Pacific/Wake", I18N_NOOP2("Timezone comment", "Wake Island") },
|
||||||
|
};
|
||||||
|
static const qint16 timezoneCommentTblSize = sizeof(timezoneCommentTbl) / sizeof(timezoneCommentData);
|
||||||
|
|
||||||
QString zoneinfoDir()
|
QString zoneinfoDir()
|
||||||
{
|
{
|
||||||
static const QStringList zoneinfodirs = QStringList()
|
static const QStringList zoneinfodirs = QStringList()
|
||||||
|
@ -287,4 +922,35 @@ KTimeZone KSystemTimeZones::zone(const QString &name)
|
||||||
return s_systemzones->findZone(name);
|
return s_systemzones->findZone(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString KSystemTimeZones::zoneName(const QString &name)
|
||||||
|
{
|
||||||
|
if (name.isEmpty()) {
|
||||||
|
kWarning(161) << "Zone name is empty";
|
||||||
|
return QString();
|
||||||
|
}
|
||||||
|
const QByteArray namelatin1 = name.toLatin1();
|
||||||
|
for (int i = 0; i < timezoneNameTblSize; i++) {
|
||||||
|
if (qstrcmp(namelatin1.constData(), timezoneNameTbl[i].name) == 0) {
|
||||||
|
// for better or worse replacing underscore with space was done before and is still done for compat
|
||||||
|
return ki18nc("Timezone name", timezoneNameTbl[i].translation).toString().replace(QLatin1Char('_'), QLatin1Char(' '));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
QString KSystemTimeZones::zoneComment(const QString &name)
|
||||||
|
{
|
||||||
|
if (name.isEmpty()) {
|
||||||
|
kWarning(161) << "Zone name is empty";
|
||||||
|
return QString();
|
||||||
|
}
|
||||||
|
const QByteArray namelatin1 = name.toLatin1();
|
||||||
|
for (int i = 0; i < timezoneCommentTblSize; i++) {
|
||||||
|
if (qstrcmp(namelatin1.constData(), timezoneCommentTbl[i].name) == 0) {
|
||||||
|
return ki18nc("Timezone comment", timezoneCommentTbl[i].translation).toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return QString();
|
||||||
|
}
|
||||||
|
|
||||||
#include "ksystemtimezone.moc"
|
#include "ksystemtimezone.moc"
|
||||||
|
|
|
@ -89,6 +89,24 @@ public:
|
||||||
* @return path of directory containing the zoneinfo database
|
* @return path of directory containing the zoneinfo database
|
||||||
*/
|
*/
|
||||||
static QString zoneinfoDir();
|
static QString zoneinfoDir();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns translated name for the zone.
|
||||||
|
*
|
||||||
|
* @param name name of time zone
|
||||||
|
* @return translation, or the name if no translation is found
|
||||||
|
* @see zoneComment()
|
||||||
|
*/
|
||||||
|
static QString zoneName(const QString &name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns translated comment for the zone.
|
||||||
|
*
|
||||||
|
* @param name name of time zone
|
||||||
|
* @return translation, or empty if no translation is found
|
||||||
|
* @see zoneName()
|
||||||
|
*/
|
||||||
|
static QString zoneComment(const QString &name);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KSYSTEMTIMEZONE_H
|
#endif // KSYSTEMTIMEZONE_H
|
||||||
|
|
|
@ -1,121 +1,37 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding: UTF-8 -*-
|
|
||||||
#
|
|
||||||
# Takes given zone.tab file, or looks for expected locations on the system,
|
|
||||||
# and uses it to update dummy TIMEZONES file for i18n message extraction.
|
|
||||||
#
|
|
||||||
# Timezones read from zone.tab are only added into TIMEZONES,
|
|
||||||
# no timezone (or timezone comment) is removed from TIMEZONES.
|
|
||||||
# This in order not to lose i18n for timezones and comments
|
|
||||||
# found on various newer and older systems.
|
|
||||||
#
|
|
||||||
# Chusslove Illich (Часлав Илић) <caslav.ilic@gmx.net>
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
|
||||||
import codecs
|
|
||||||
import re
|
|
||||||
|
|
||||||
cmdname = os.path.basename(sys.argv[0])
|
if len(sys.argv) < 3:
|
||||||
def error (msg):
|
print('usage: scoop-tzones <name|comment> <zonetab>')
|
||||||
sys.stderr.write("%s: %s\n" % (cmdname, msg))
|
exit(1)
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
system_zonetab_paths = [
|
printname = False
|
||||||
"/usr/share/zoneinfo/zone.tab",
|
printcomment = False
|
||||||
]
|
if sys.argv[1] == 'name':
|
||||||
|
printname = True
|
||||||
if len(sys.argv) not in (2, 3):
|
elif sys.argv[1] == 'comment':
|
||||||
error("usage: %s TIMEZONES_PATH [ZONETAB_PATH]" % cmdname)
|
printcomment = True
|
||||||
|
|
||||||
timezone_path = sys.argv[1]
|
|
||||||
if not os.path.isfile(timezone_path):
|
|
||||||
error("TIMEZONES file '%s' does not exist "
|
|
||||||
"(create manually an empty file if starting from scratch" % timezone_path)
|
|
||||||
|
|
||||||
if len(sys.argv) >= 3:
|
|
||||||
zonetab_path = sys.argv[2]
|
|
||||||
if not os.path.isfile(zonetab_path):
|
|
||||||
error("zone.tab file '%s' does not exist" % zonetab_path)
|
|
||||||
print("using given zone.tab file at '%s'" % zonetab_path)
|
|
||||||
else:
|
else:
|
||||||
for system_zonetab_path in system_zonetab_paths:
|
print('usage: scoop-tzones <name|comment> <zonetab>')
|
||||||
if os.path.isfile(system_zonetab_path):
|
exit(1)
|
||||||
zonetab_path = system_zonetab_path
|
|
||||||
break
|
|
||||||
if not zonetab_path:
|
|
||||||
error("cannot fine zone.tab file at any of known system locations")
|
|
||||||
print("found system zone.tab file at '%s'" % zonetab_path)
|
|
||||||
|
|
||||||
# Parse current timezones into dictionary zone->[comments].
|
with open(sys.argv[2], 'r') as zonetabhandle:
|
||||||
ifs = codecs.open(timezone_path, "r", "UTF-8")
|
for zoneline in zonetabhandle.readlines():
|
||||||
message_rx = re.compile(r"i18n\(\"(.*?)\"\)")
|
if printname:
|
||||||
tzcomment_rx = re.compile(r"^// i18n:.*comment")
|
strippedline = zoneline.strip()
|
||||||
tzcomment_follows = False
|
if strippedline.startswith('#') or len(strippedline) == 0:
|
||||||
current_timezones = {}
|
|
||||||
for line in ifs:
|
|
||||||
if tzcomment_rx.search(line):
|
|
||||||
tzcomment_follows = True
|
|
||||||
else:
|
|
||||||
m = message_rx.search(line)
|
|
||||||
if m:
|
|
||||||
message = m.group(1)
|
|
||||||
if not tzcomment_follows:
|
|
||||||
tzone = message
|
|
||||||
if tzone not in current_timezones:
|
|
||||||
current_timezones[tzone] = []
|
|
||||||
else:
|
|
||||||
tzcomment = message
|
|
||||||
if tzcomment not in current_timezones[tzone]:
|
|
||||||
current_timezones[tzone].append(tzcomment)
|
|
||||||
tzcomment_follows = False
|
|
||||||
ifs.close()
|
|
||||||
|
|
||||||
# Parse system timezones into same form.
|
|
||||||
ifs = codecs.open(zonetab_path, "r", "UTF-8")
|
|
||||||
system_timezones = {}
|
|
||||||
for line in ifs:
|
|
||||||
if line.lstrip().startswith("#"):
|
|
||||||
continue
|
continue
|
||||||
line = line.rstrip("\n")
|
splitline = strippedline.split('\t')
|
||||||
els = line.split("\t")
|
splitpart2 = splitline[2].strip()
|
||||||
if len(els) >= 3:
|
print(' { "%s", I18N_NOOP2("Timezone name", "%s") },' % (splitpart2, splitpart2))
|
||||||
tzone = els[2]
|
elif printcomment:
|
||||||
if tzone not in system_timezones:
|
strippedline = zoneline.strip()
|
||||||
system_timezones[tzone] = []
|
if strippedline.startswith('#') or len(strippedline) == 0:
|
||||||
if len(els) >= 4:
|
continue
|
||||||
tzcomment = els[3]
|
splitline = strippedline.split('\t')
|
||||||
if tzcomment not in system_timezones[tzone]:
|
splitpart2 = splitline[2].strip()
|
||||||
system_timezones[tzone].append(tzcomment)
|
splitpart3 = ' '.join(splitline[3:]).strip()
|
||||||
ifs.close()
|
if len(splitpart3) == 0:
|
||||||
|
continue
|
||||||
# Compose new timezones by adding new timezones read from the system,
|
print(' { "%s", I18N_NOOP2("Timezone comment", "%s") },' % (splitpart2, splitpart3))
|
||||||
# and appending new comments to existing timezones.
|
|
||||||
num_new_tzones = 0
|
|
||||||
num_new_tzcomments = 0
|
|
||||||
for tzone, tzcomments in system_timezones.items():
|
|
||||||
if tzone not in current_timezones:
|
|
||||||
current_timezones[tzone] = tzcomments
|
|
||||||
num_new_tzones += 1
|
|
||||||
else:
|
|
||||||
for tzcomment in tzcomments:
|
|
||||||
if tzcomment not in current_timezones[tzone]:
|
|
||||||
current_timezones[tzone].append(tzcomment)
|
|
||||||
num_new_tzcomments += 1
|
|
||||||
|
|
||||||
if num_new_tzones or num_new_tzcomments:
|
|
||||||
tzlines = []
|
|
||||||
tzones = current_timezones.keys()
|
|
||||||
tzones = sorted(tzones)
|
|
||||||
for tzone in tzones:
|
|
||||||
tzlines.append("i18n(\"%s\");\n" % tzone);
|
|
||||||
for tzcomment in current_timezones[tzone]:
|
|
||||||
tzlines.append("// i18n: comment to the previous timezone\n")
|
|
||||||
tzlines.append("i18n(\"%s\");\n" % tzcomment)
|
|
||||||
ofs = codecs.open(timezone_path, "w", "UTF-8")
|
|
||||||
ofs.writelines(tzlines)
|
|
||||||
ofs.close()
|
|
||||||
num_new = num_new_tzones + num_new_tzcomments
|
|
||||||
print("added %d new timezones/comments to '%s'" % (num_new, timezone_path))
|
|
||||||
else:
|
|
||||||
print("no new timezones/comments to add")
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
import os, sys, glob
|
import sys, glob
|
||||||
|
|
||||||
def cstringify(s):
|
def cstringify(s):
|
||||||
r = s.replace('\\', '\\\\')
|
r = s.replace('\\', '\\\\')
|
||||||
|
|
|
@ -69,7 +69,7 @@ KTimeZoneWidget::KTimeZoneWidget( QWidget *parent )
|
||||||
QHash<QString, KTimeZone> zonesByCity;
|
QHash<QString, KTimeZone> zonesByCity;
|
||||||
|
|
||||||
foreach (const KTimeZone &zone, KSystemTimeZones::zones()) {
|
foreach (const KTimeZone &zone, KSystemTimeZones::zones()) {
|
||||||
const QString continentCity = displayName( zone );
|
const QString continentCity = KSystemTimeZones::zoneName(zone.name());
|
||||||
const int separator = continentCity.lastIndexOf('/');
|
const int separator = continentCity.lastIndexOf('/');
|
||||||
// Make up the localized key that will be used for sorting.
|
// Make up the localized key that will be used for sorting.
|
||||||
// Example: i18n(Asia/Tokyo) -> key = "i18n(Tokyo)|i18n(Asia)|Asia/Tokyo"
|
// Example: i18n(Asia/Tokyo) -> key = "i18n(Tokyo)|i18n(Asia)|Asia/Tokyo"
|
||||||
|
@ -87,13 +87,13 @@ KTimeZoneWidget::KTimeZoneWidget( QWidget *parent )
|
||||||
QString comment = zone.comment();
|
QString comment = zone.comment();
|
||||||
|
|
||||||
if ( !comment.isEmpty() )
|
if ( !comment.isEmpty() )
|
||||||
comment = i18n( comment.toUtf8() );
|
comment = KSystemTimeZones::zoneComment( tzName );
|
||||||
|
|
||||||
// Convert:
|
// Convert:
|
||||||
//
|
//
|
||||||
// "Europe/London", "GB" -> "London", "Europe/GB".
|
// "Europe/London", "GB" -> "London", "Europe/GB".
|
||||||
// "UTC", "" -> "UTC", "".
|
// "UTC", "" -> "UTC", "".
|
||||||
QStringList continentCity = displayName( zone ).split( '/' );
|
QStringList continentCity = KSystemTimeZones::zoneName(tzName).split( '/' );
|
||||||
|
|
||||||
QTreeWidgetItem *listItem = new QTreeWidgetItem( this );
|
QTreeWidgetItem *listItem = new QTreeWidgetItem( this );
|
||||||
listItem->setText( Private::CityColumn, continentCity[ continentCity.count() - 1 ] );
|
listItem->setText( Private::CityColumn, continentCity[ continentCity.count() - 1 ] );
|
||||||
|
@ -136,11 +136,6 @@ bool KTimeZoneWidget::itemsCheckable() const
|
||||||
return d->itemsCheckable;
|
return d->itemsCheckable;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString KTimeZoneWidget::displayName( const KTimeZone &zone )
|
|
||||||
{
|
|
||||||
return i18n( zone.name().toUtf8() ).replace( '_', ' ' );
|
|
||||||
}
|
|
||||||
|
|
||||||
QStringList KTimeZoneWidget::selection() const
|
QStringList KTimeZoneWidget::selection() const
|
||||||
{
|
{
|
||||||
QStringList selection;
|
QStringList selection;
|
||||||
|
|
|
@ -130,18 +130,6 @@ class KDEUI_EXPORT KTimeZoneWidget : public QTreeWidget
|
||||||
*/
|
*/
|
||||||
void clearSelection();
|
void clearSelection();
|
||||||
|
|
||||||
/**
|
|
||||||
* Format a time zone name in a standardised manner. The returned value is
|
|
||||||
* transformed via an i18n lookup, so the caller should previously have
|
|
||||||
* set the time zone catalog:
|
|
||||||
* \code
|
|
||||||
* KGlobal::locale()->insertCatalog( "timezones4" );
|
|
||||||
* \endcode
|
|
||||||
*
|
|
||||||
* @return formatted time zone name.
|
|
||||||
*/
|
|
||||||
static QString displayName( const KTimeZone &zone );
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
class Private;
|
class Private;
|
||||||
Private* const d;
|
Private* const d;
|
||||||
|
|
Loading…
Add table
Reference in a new issue