mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 22:47:21 -06:00
Use QString literals
This patch covers src/app and src/base folders.
Follow up of ab64ee872b.
This commit is contained in:
@@ -130,7 +130,7 @@ void GeoIPManager::manageDatabaseUpdate()
|
||||
void GeoIPManager::downloadDatabaseFile()
|
||||
{
|
||||
const QDateTime curDatetime = QDateTime::currentDateTimeUtc();
|
||||
const QString curUrl = DATABASE_URL.arg(QLocale::c().toString(curDatetime, "yyyy-MM"));
|
||||
const QString curUrl = DATABASE_URL.arg(QLocale::c().toString(curDatetime, u"yyyy-MM"));
|
||||
DownloadManager::instance()->download({curUrl}, this, &GeoIPManager::downloadFinished);
|
||||
}
|
||||
|
||||
@@ -150,255 +150,255 @@ QString GeoIPManager::CountryName(const QString &countryISOCode)
|
||||
// http://www.iso.org/iso/home/standards/country_codes/country_names_and_code_elements_txt-temp.htm
|
||||
|
||||
// Officially assigned
|
||||
{"AD", tr("Andorra")},
|
||||
{"AE", tr("United Arab Emirates")},
|
||||
{"AF", tr("Afghanistan")},
|
||||
{"AG", tr("Antigua and Barbuda")},
|
||||
{"AI", tr("Anguilla")},
|
||||
{"AL", tr("Albania")},
|
||||
{"AM", tr("Armenia")},
|
||||
{"AO", tr("Angola")},
|
||||
{"AQ", tr("Antarctica")},
|
||||
{"AR", tr("Argentina")},
|
||||
{"AS", tr("American Samoa")},
|
||||
{"AT", tr("Austria")},
|
||||
{"AU", tr("Australia")},
|
||||
{"AW", tr("Aruba")},
|
||||
{"AX", tr("Aland Islands")},
|
||||
{"AZ", tr("Azerbaijan")},
|
||||
{"BA", tr("Bosnia and Herzegovina")},
|
||||
{"BB", tr("Barbados")},
|
||||
{"BD", tr("Bangladesh")},
|
||||
{"BE", tr("Belgium")},
|
||||
{"BF", tr("Burkina Faso")},
|
||||
{"BG", tr("Bulgaria")},
|
||||
{"BH", tr("Bahrain")},
|
||||
{"BI", tr("Burundi")},
|
||||
{"BJ", tr("Benin")},
|
||||
{"BL", tr("Saint Barthelemy")},
|
||||
{"BM", tr("Bermuda")},
|
||||
{"BN", tr("Brunei Darussalam")},
|
||||
{"BO", tr("Bolivia, Plurinational State of")},
|
||||
{"BQ", tr("Bonaire, Sint Eustatius and Saba")},
|
||||
{"BR", tr("Brazil")},
|
||||
{"BS", tr("Bahamas")},
|
||||
{"BT", tr("Bhutan")},
|
||||
{"BV", tr("Bouvet Island")},
|
||||
{"BW", tr("Botswana")},
|
||||
{"BY", tr("Belarus")},
|
||||
{"BZ", tr("Belize")},
|
||||
{"CA", tr("Canada")},
|
||||
{"CC", tr("Cocos (Keeling) Islands")},
|
||||
{"CD", tr("Congo, The Democratic Republic of the")},
|
||||
{"CF", tr("Central African Republic")},
|
||||
{"CG", tr("Congo")},
|
||||
{"CH", tr("Switzerland")},
|
||||
{"CI", tr("Cote d'Ivoire")},
|
||||
{"CK", tr("Cook Islands")},
|
||||
{"CL", tr("Chile")},
|
||||
{"CM", tr("Cameroon")},
|
||||
{"CN", tr("China")},
|
||||
{"CO", tr("Colombia")},
|
||||
{"CR", tr("Costa Rica")},
|
||||
{"CU", tr("Cuba")},
|
||||
{"CV", tr("Cape Verde")},
|
||||
{"CW", tr("Curacao")},
|
||||
{"CX", tr("Christmas Island")},
|
||||
{"CY", tr("Cyprus")},
|
||||
{"CZ", tr("Czech Republic")},
|
||||
{"DE", tr("Germany")},
|
||||
{"DJ", tr("Djibouti")},
|
||||
{"DK", tr("Denmark")},
|
||||
{"DM", tr("Dominica")},
|
||||
{"DO", tr("Dominican Republic")},
|
||||
{"DZ", tr("Algeria")},
|
||||
{"EC", tr("Ecuador")},
|
||||
{"EE", tr("Estonia")},
|
||||
{"EG", tr("Egypt")},
|
||||
{"EH", tr("Western Sahara")},
|
||||
{"ER", tr("Eritrea")},
|
||||
{"ES", tr("Spain")},
|
||||
{"ET", tr("Ethiopia")},
|
||||
{"FI", tr("Finland")},
|
||||
{"FJ", tr("Fiji")},
|
||||
{"FK", tr("Falkland Islands (Malvinas)")},
|
||||
{"FM", tr("Micronesia, Federated States of")},
|
||||
{"FO", tr("Faroe Islands")},
|
||||
{"FR", tr("France")},
|
||||
{"GA", tr("Gabon")},
|
||||
{"GB", tr("United Kingdom")},
|
||||
{"GD", tr("Grenada")},
|
||||
{"GE", tr("Georgia")},
|
||||
{"GF", tr("French Guiana")},
|
||||
{"GG", tr("Guernsey")},
|
||||
{"GH", tr("Ghana")},
|
||||
{"GI", tr("Gibraltar")},
|
||||
{"GL", tr("Greenland")},
|
||||
{"GM", tr("Gambia")},
|
||||
{"GN", tr("Guinea")},
|
||||
{"GP", tr("Guadeloupe")},
|
||||
{"GQ", tr("Equatorial Guinea")},
|
||||
{"GR", tr("Greece")},
|
||||
{"GS", tr("South Georgia and the South Sandwich Islands")},
|
||||
{"GT", tr("Guatemala")},
|
||||
{"GU", tr("Guam")},
|
||||
{"GW", tr("Guinea-Bissau")},
|
||||
{"GY", tr("Guyana")},
|
||||
{"HK", tr("Hong Kong")},
|
||||
{"HM", tr("Heard Island and McDonald Islands")},
|
||||
{"HN", tr("Honduras")},
|
||||
{"HR", tr("Croatia")},
|
||||
{"HT", tr("Haiti")},
|
||||
{"HU", tr("Hungary")},
|
||||
{"ID", tr("Indonesia")},
|
||||
{"IE", tr("Ireland")},
|
||||
{"IL", tr("Israel")},
|
||||
{"IM", tr("Isle of Man")},
|
||||
{"IN", tr("India")},
|
||||
{"IO", tr("British Indian Ocean Territory")},
|
||||
{"IQ", tr("Iraq")},
|
||||
{"IR", tr("Iran, Islamic Republic of")},
|
||||
{"IS", tr("Iceland")},
|
||||
{"IT", tr("Italy")},
|
||||
{"JE", tr("Jersey")},
|
||||
{"JM", tr("Jamaica")},
|
||||
{"JO", tr("Jordan")},
|
||||
{"JP", tr("Japan")},
|
||||
{"KE", tr("Kenya")},
|
||||
{"KG", tr("Kyrgyzstan")},
|
||||
{"KH", tr("Cambodia")},
|
||||
{"KI", tr("Kiribati")},
|
||||
{"KM", tr("Comoros")},
|
||||
{"KN", tr("Saint Kitts and Nevis")},
|
||||
{"KP", tr("Korea, Democratic People's Republic of")},
|
||||
{"KR", tr("Korea, Republic of")},
|
||||
{"KW", tr("Kuwait")},
|
||||
{"KY", tr("Cayman Islands")},
|
||||
{"KZ", tr("Kazakhstan")},
|
||||
{"LA", tr("Lao People's Democratic Republic")},
|
||||
{"LB", tr("Lebanon")},
|
||||
{"LC", tr("Saint Lucia")},
|
||||
{"LI", tr("Liechtenstein")},
|
||||
{"LK", tr("Sri Lanka")},
|
||||
{"LR", tr("Liberia")},
|
||||
{"LS", tr("Lesotho")},
|
||||
{"LT", tr("Lithuania")},
|
||||
{"LU", tr("Luxembourg")},
|
||||
{"LV", tr("Latvia")},
|
||||
{"LY", tr("Libya")},
|
||||
{"MA", tr("Morocco")},
|
||||
{"MC", tr("Monaco")},
|
||||
{"MD", tr("Moldova, Republic of")},
|
||||
{"ME", tr("Montenegro")},
|
||||
{"MF", tr("Saint Martin (French part)")},
|
||||
{"MG", tr("Madagascar")},
|
||||
{"MH", tr("Marshall Islands")},
|
||||
{"MK", tr("Macedonia, The Former Yugoslav Republic of")},
|
||||
{"ML", tr("Mali")},
|
||||
{"MM", tr("Myanmar")},
|
||||
{"MN", tr("Mongolia")},
|
||||
{"MO", tr("Macao")},
|
||||
{"MP", tr("Northern Mariana Islands")},
|
||||
{"MQ", tr("Martinique")},
|
||||
{"MR", tr("Mauritania")},
|
||||
{"MS", tr("Montserrat")},
|
||||
{"MT", tr("Malta")},
|
||||
{"MU", tr("Mauritius")},
|
||||
{"MV", tr("Maldives")},
|
||||
{"MW", tr("Malawi")},
|
||||
{"MX", tr("Mexico")},
|
||||
{"MY", tr("Malaysia")},
|
||||
{"MZ", tr("Mozambique")},
|
||||
{"NA", tr("Namibia")},
|
||||
{"NC", tr("New Caledonia")},
|
||||
{"NE", tr("Niger")},
|
||||
{"NF", tr("Norfolk Island")},
|
||||
{"NG", tr("Nigeria")},
|
||||
{"NI", tr("Nicaragua")},
|
||||
{"NL", tr("Netherlands")},
|
||||
{"NO", tr("Norway")},
|
||||
{"NP", tr("Nepal")},
|
||||
{"NR", tr("Nauru")},
|
||||
{"NU", tr("Niue")},
|
||||
{"NZ", tr("New Zealand")},
|
||||
{"OM", tr("Oman")},
|
||||
{"PA", tr("Panama")},
|
||||
{"PE", tr("Peru")},
|
||||
{"PF", tr("French Polynesia")},
|
||||
{"PG", tr("Papua New Guinea")},
|
||||
{"PH", tr("Philippines")},
|
||||
{"PK", tr("Pakistan")},
|
||||
{"PL", tr("Poland")},
|
||||
{"PM", tr("Saint Pierre and Miquelon")},
|
||||
{"PN", tr("Pitcairn")},
|
||||
{"PR", tr("Puerto Rico")},
|
||||
{"PS", tr("Palestine, State of")},
|
||||
{"PT", tr("Portugal")},
|
||||
{"PW", tr("Palau")},
|
||||
{"PY", tr("Paraguay")},
|
||||
{"QA", tr("Qatar")},
|
||||
{"RE", tr("Reunion")},
|
||||
{"RO", tr("Romania")},
|
||||
{"RS", tr("Serbia")},
|
||||
{"RU", tr("Russian Federation")},
|
||||
{"RW", tr("Rwanda")},
|
||||
{"SA", tr("Saudi Arabia")},
|
||||
{"SB", tr("Solomon Islands")},
|
||||
{"SC", tr("Seychelles")},
|
||||
{"SD", tr("Sudan")},
|
||||
{"SE", tr("Sweden")},
|
||||
{"SG", tr("Singapore")},
|
||||
{"SH", tr("Saint Helena, Ascension and Tristan da Cunha")},
|
||||
{"SI", tr("Slovenia")},
|
||||
{"SJ", tr("Svalbard and Jan Mayen")},
|
||||
{"SK", tr("Slovakia")},
|
||||
{"SL", tr("Sierra Leone")},
|
||||
{"SM", tr("San Marino")},
|
||||
{"SN", tr("Senegal")},
|
||||
{"SO", tr("Somalia")},
|
||||
{"SR", tr("Suriname")},
|
||||
{"SS", tr("South Sudan")},
|
||||
{"ST", tr("Sao Tome and Principe")},
|
||||
{"SV", tr("El Salvador")},
|
||||
{"SX", tr("Sint Maarten (Dutch part)")},
|
||||
{"SY", tr("Syrian Arab Republic")},
|
||||
{"SZ", tr("Swaziland")},
|
||||
{"TC", tr("Turks and Caicos Islands")},
|
||||
{"TD", tr("Chad")},
|
||||
{"TF", tr("French Southern Territories")},
|
||||
{"TG", tr("Togo")},
|
||||
{"TH", tr("Thailand")},
|
||||
{"TJ", tr("Tajikistan")},
|
||||
{"TK", tr("Tokelau")},
|
||||
{"TL", tr("Timor-Leste")},
|
||||
{"TM", tr("Turkmenistan")},
|
||||
{"TN", tr("Tunisia")},
|
||||
{"TO", tr("Tonga")},
|
||||
{"TR", tr("Turkey")},
|
||||
{"TT", tr("Trinidad and Tobago")},
|
||||
{"TV", tr("Tuvalu")},
|
||||
{"TW", tr("Taiwan")},
|
||||
{"TZ", tr("Tanzania, United Republic of")},
|
||||
{"UA", tr("Ukraine")},
|
||||
{"UG", tr("Uganda")},
|
||||
{"UM", tr("United States Minor Outlying Islands")},
|
||||
{"US", tr("United States")},
|
||||
{"UY", tr("Uruguay")},
|
||||
{"UZ", tr("Uzbekistan")},
|
||||
{"VA", tr("Holy See (Vatican City State)")},
|
||||
{"VC", tr("Saint Vincent and the Grenadines")},
|
||||
{"VE", tr("Venezuela, Bolivarian Republic of")},
|
||||
{"VG", tr("Virgin Islands, British")},
|
||||
{"VI", tr("Virgin Islands, U.S.")},
|
||||
{"VN", tr("Vietnam")},
|
||||
{"VU", tr("Vanuatu")},
|
||||
{"WF", tr("Wallis and Futuna")},
|
||||
{"WS", tr("Samoa")},
|
||||
{"YE", tr("Yemen")},
|
||||
{"YT", tr("Mayotte")},
|
||||
{"ZA", tr("South Africa")},
|
||||
{"ZM", tr("Zambia")},
|
||||
{"ZW", tr("Zimbabwe")},
|
||||
{u"AD"_qs, tr("Andorra")},
|
||||
{u"AE"_qs, tr("United Arab Emirates")},
|
||||
{u"AF"_qs, tr("Afghanistan")},
|
||||
{u"AG"_qs, tr("Antigua and Barbuda")},
|
||||
{u"AI"_qs, tr("Anguilla")},
|
||||
{u"AL"_qs, tr("Albania")},
|
||||
{u"AM"_qs, tr("Armenia")},
|
||||
{u"AO"_qs, tr("Angola")},
|
||||
{u"AQ"_qs, tr("Antarctica")},
|
||||
{u"AR"_qs, tr("Argentina")},
|
||||
{u"AS"_qs, tr("American Samoa")},
|
||||
{u"AT"_qs, tr("Austria")},
|
||||
{u"AU"_qs, tr("Australia")},
|
||||
{u"AW"_qs, tr("Aruba")},
|
||||
{u"AX"_qs, tr("Aland Islands")},
|
||||
{u"AZ"_qs, tr("Azerbaijan")},
|
||||
{u"BA"_qs, tr("Bosnia and Herzegovina")},
|
||||
{u"BB"_qs, tr("Barbados")},
|
||||
{u"BD"_qs, tr("Bangladesh")},
|
||||
{u"BE"_qs, tr("Belgium")},
|
||||
{u"BF"_qs, tr("Burkina Faso")},
|
||||
{u"BG"_qs, tr("Bulgaria")},
|
||||
{u"BH"_qs, tr("Bahrain")},
|
||||
{u"BI"_qs, tr("Burundi")},
|
||||
{u"BJ"_qs, tr("Benin")},
|
||||
{u"BL"_qs, tr("Saint Barthelemy")},
|
||||
{u"BM"_qs, tr("Bermuda")},
|
||||
{u"BN"_qs, tr("Brunei Darussalam")},
|
||||
{u"BO"_qs, tr("Bolivia, Plurinational State of")},
|
||||
{u"BQ"_qs, tr("Bonaire, Sint Eustatius and Saba")},
|
||||
{u"BR"_qs, tr("Brazil")},
|
||||
{u"BS"_qs, tr("Bahamas")},
|
||||
{u"BT"_qs, tr("Bhutan")},
|
||||
{u"BV"_qs, tr("Bouvet Island")},
|
||||
{u"BW"_qs, tr("Botswana")},
|
||||
{u"BY"_qs, tr("Belarus")},
|
||||
{u"BZ"_qs, tr("Belize")},
|
||||
{u"CA"_qs, tr("Canada")},
|
||||
{u"CC"_qs, tr("Cocos (Keeling) Islands")},
|
||||
{u"CD"_qs, tr("Congo, The Democratic Republic of the")},
|
||||
{u"CF"_qs, tr("Central African Republic")},
|
||||
{u"CG"_qs, tr("Congo")},
|
||||
{u"CH"_qs, tr("Switzerland")},
|
||||
{u"CI"_qs, tr("Cote d'Ivoire")},
|
||||
{u"CK"_qs, tr("Cook Islands")},
|
||||
{u"CL"_qs, tr("Chile")},
|
||||
{u"CM"_qs, tr("Cameroon")},
|
||||
{u"CN"_qs, tr("China")},
|
||||
{u"CO"_qs, tr("Colombia")},
|
||||
{u"CR"_qs, tr("Costa Rica")},
|
||||
{u"CU"_qs, tr("Cuba")},
|
||||
{u"CV"_qs, tr("Cape Verde")},
|
||||
{u"CW"_qs, tr("Curacao")},
|
||||
{u"CX"_qs, tr("Christmas Island")},
|
||||
{u"CY"_qs, tr("Cyprus")},
|
||||
{u"CZ"_qs, tr("Czech Republic")},
|
||||
{u"DE"_qs, tr("Germany")},
|
||||
{u"DJ"_qs, tr("Djibouti")},
|
||||
{u"DK"_qs, tr("Denmark")},
|
||||
{u"DM"_qs, tr("Dominica")},
|
||||
{u"DO"_qs, tr("Dominican Republic")},
|
||||
{u"DZ"_qs, tr("Algeria")},
|
||||
{u"EC"_qs, tr("Ecuador")},
|
||||
{u"EE"_qs, tr("Estonia")},
|
||||
{u"EG"_qs, tr("Egypt")},
|
||||
{u"EH"_qs, tr("Western Sahara")},
|
||||
{u"ER"_qs, tr("Eritrea")},
|
||||
{u"ES"_qs, tr("Spain")},
|
||||
{u"ET"_qs, tr("Ethiopia")},
|
||||
{u"FI"_qs, tr("Finland")},
|
||||
{u"FJ"_qs, tr("Fiji")},
|
||||
{u"FK"_qs, tr("Falkland Islands (Malvinas)")},
|
||||
{u"FM"_qs, tr("Micronesia, Federated States of")},
|
||||
{u"FO"_qs, tr("Faroe Islands")},
|
||||
{u"FR"_qs, tr("France")},
|
||||
{u"GA"_qs, tr("Gabon")},
|
||||
{u"GB"_qs, tr("United Kingdom")},
|
||||
{u"GD"_qs, tr("Grenada")},
|
||||
{u"GE"_qs, tr("Georgia")},
|
||||
{u"GF"_qs, tr("French Guiana")},
|
||||
{u"GG"_qs, tr("Guernsey")},
|
||||
{u"GH"_qs, tr("Ghana")},
|
||||
{u"GI"_qs, tr("Gibraltar")},
|
||||
{u"GL"_qs, tr("Greenland")},
|
||||
{u"GM"_qs, tr("Gambia")},
|
||||
{u"GN"_qs, tr("Guinea")},
|
||||
{u"GP"_qs, tr("Guadeloupe")},
|
||||
{u"GQ"_qs, tr("Equatorial Guinea")},
|
||||
{u"GR"_qs, tr("Greece")},
|
||||
{u"GS"_qs, tr("South Georgia and the South Sandwich Islands")},
|
||||
{u"GT"_qs, tr("Guatemala")},
|
||||
{u"GU"_qs, tr("Guam")},
|
||||
{u"GW"_qs, tr("Guinea-Bissau")},
|
||||
{u"GY"_qs, tr("Guyana")},
|
||||
{u"HK"_qs, tr("Hong Kong")},
|
||||
{u"HM"_qs, tr("Heard Island and McDonald Islands")},
|
||||
{u"HN"_qs, tr("Honduras")},
|
||||
{u"HR"_qs, tr("Croatia")},
|
||||
{u"HT"_qs, tr("Haiti")},
|
||||
{u"HU"_qs, tr("Hungary")},
|
||||
{u"ID"_qs, tr("Indonesia")},
|
||||
{u"IE"_qs, tr("Ireland")},
|
||||
{u"IL"_qs, tr("Israel")},
|
||||
{u"IM"_qs, tr("Isle of Man")},
|
||||
{u"IN"_qs, tr("India")},
|
||||
{u"IO"_qs, tr("British Indian Ocean Territory")},
|
||||
{u"IQ"_qs, tr("Iraq")},
|
||||
{u"IR"_qs, tr("Iran, Islamic Republic of")},
|
||||
{u"IS"_qs, tr("Iceland")},
|
||||
{u"IT"_qs, tr("Italy")},
|
||||
{u"JE"_qs, tr("Jersey")},
|
||||
{u"JM"_qs, tr("Jamaica")},
|
||||
{u"JO"_qs, tr("Jordan")},
|
||||
{u"JP"_qs, tr("Japan")},
|
||||
{u"KE"_qs, tr("Kenya")},
|
||||
{u"KG"_qs, tr("Kyrgyzstan")},
|
||||
{u"KH"_qs, tr("Cambodia")},
|
||||
{u"KI"_qs, tr("Kiribati")},
|
||||
{u"KM"_qs, tr("Comoros")},
|
||||
{u"KN"_qs, tr("Saint Kitts and Nevis")},
|
||||
{u"KP"_qs, tr("Korea, Democratic People's Republic of")},
|
||||
{u"KR"_qs, tr("Korea, Republic of")},
|
||||
{u"KW"_qs, tr("Kuwait")},
|
||||
{u"KY"_qs, tr("Cayman Islands")},
|
||||
{u"KZ"_qs, tr("Kazakhstan")},
|
||||
{u"LA"_qs, tr("Lao People's Democratic Republic")},
|
||||
{u"LB"_qs, tr("Lebanon")},
|
||||
{u"LC"_qs, tr("Saint Lucia")},
|
||||
{u"LI"_qs, tr("Liechtenstein")},
|
||||
{u"LK"_qs, tr("Sri Lanka")},
|
||||
{u"LR"_qs, tr("Liberia")},
|
||||
{u"LS"_qs, tr("Lesotho")},
|
||||
{u"LT"_qs, tr("Lithuania")},
|
||||
{u"LU"_qs, tr("Luxembourg")},
|
||||
{u"LV"_qs, tr("Latvia")},
|
||||
{u"LY"_qs, tr("Libya")},
|
||||
{u"MA"_qs, tr("Morocco")},
|
||||
{u"MC"_qs, tr("Monaco")},
|
||||
{u"MD"_qs, tr("Moldova, Republic of")},
|
||||
{u"ME"_qs, tr("Montenegro")},
|
||||
{u"MF"_qs, tr("Saint Martin (French part)")},
|
||||
{u"MG"_qs, tr("Madagascar")},
|
||||
{u"MH"_qs, tr("Marshall Islands")},
|
||||
{u"MK"_qs, tr("Macedonia, The Former Yugoslav Republic of")},
|
||||
{u"ML"_qs, tr("Mali")},
|
||||
{u"MM"_qs, tr("Myanmar")},
|
||||
{u"MN"_qs, tr("Mongolia")},
|
||||
{u"MO"_qs, tr("Macao")},
|
||||
{u"MP"_qs, tr("Northern Mariana Islands")},
|
||||
{u"MQ"_qs, tr("Martinique")},
|
||||
{u"MR"_qs, tr("Mauritania")},
|
||||
{u"MS"_qs, tr("Montserrat")},
|
||||
{u"MT"_qs, tr("Malta")},
|
||||
{u"MU"_qs, tr("Mauritius")},
|
||||
{u"MV"_qs, tr("Maldives")},
|
||||
{u"MW"_qs, tr("Malawi")},
|
||||
{u"MX"_qs, tr("Mexico")},
|
||||
{u"MY"_qs, tr("Malaysia")},
|
||||
{u"MZ"_qs, tr("Mozambique")},
|
||||
{u"NA"_qs, tr("Namibia")},
|
||||
{u"NC"_qs, tr("New Caledonia")},
|
||||
{u"NE"_qs, tr("Niger")},
|
||||
{u"NF"_qs, tr("Norfolk Island")},
|
||||
{u"NG"_qs, tr("Nigeria")},
|
||||
{u"NI"_qs, tr("Nicaragua")},
|
||||
{u"NL"_qs, tr("Netherlands")},
|
||||
{u"NO"_qs, tr("Norway")},
|
||||
{u"NP"_qs, tr("Nepal")},
|
||||
{u"NR"_qs, tr("Nauru")},
|
||||
{u"NU"_qs, tr("Niue")},
|
||||
{u"NZ"_qs, tr("New Zealand")},
|
||||
{u"OM"_qs, tr("Oman")},
|
||||
{u"PA"_qs, tr("Panama")},
|
||||
{u"PE"_qs, tr("Peru")},
|
||||
{u"PF"_qs, tr("French Polynesia")},
|
||||
{u"PG"_qs, tr("Papua New Guinea")},
|
||||
{u"PH"_qs, tr("Philippines")},
|
||||
{u"PK"_qs, tr("Pakistan")},
|
||||
{u"PL"_qs, tr("Poland")},
|
||||
{u"PM"_qs, tr("Saint Pierre and Miquelon")},
|
||||
{u"PN"_qs, tr("Pitcairn")},
|
||||
{u"PR"_qs, tr("Puerto Rico")},
|
||||
{u"PS"_qs, tr("Palestine, State of")},
|
||||
{u"PT"_qs, tr("Portugal")},
|
||||
{u"PW"_qs, tr("Palau")},
|
||||
{u"PY"_qs, tr("Paraguay")},
|
||||
{u"QA"_qs, tr("Qatar")},
|
||||
{u"RE"_qs, tr("Reunion")},
|
||||
{u"RO"_qs, tr("Romania")},
|
||||
{u"RS"_qs, tr("Serbia")},
|
||||
{u"RU"_qs, tr("Russian Federation")},
|
||||
{u"RW"_qs, tr("Rwanda")},
|
||||
{u"SA"_qs, tr("Saudi Arabia")},
|
||||
{u"SB"_qs, tr("Solomon Islands")},
|
||||
{u"SC"_qs, tr("Seychelles")},
|
||||
{u"SD"_qs, tr("Sudan")},
|
||||
{u"SE"_qs, tr("Sweden")},
|
||||
{u"SG"_qs, tr("Singapore")},
|
||||
{u"SH"_qs, tr("Saint Helena, Ascension and Tristan da Cunha")},
|
||||
{u"SI"_qs, tr("Slovenia")},
|
||||
{u"SJ"_qs, tr("Svalbard and Jan Mayen")},
|
||||
{u"SK"_qs, tr("Slovakia")},
|
||||
{u"SL"_qs, tr("Sierra Leone")},
|
||||
{u"SM"_qs, tr("San Marino")},
|
||||
{u"SN"_qs, tr("Senegal")},
|
||||
{u"SO"_qs, tr("Somalia")},
|
||||
{u"SR"_qs, tr("Suriname")},
|
||||
{u"SS"_qs, tr("South Sudan")},
|
||||
{u"ST"_qs, tr("Sao Tome and Principe")},
|
||||
{u"SV"_qs, tr("El Salvador")},
|
||||
{u"SX"_qs, tr("Sint Maarten (Dutch part)")},
|
||||
{u"SY"_qs, tr("Syrian Arab Republic")},
|
||||
{u"SZ"_qs, tr("Swaziland")},
|
||||
{u"TC"_qs, tr("Turks and Caicos Islands")},
|
||||
{u"TD"_qs, tr("Chad")},
|
||||
{u"TF"_qs, tr("French Southern Territories")},
|
||||
{u"TG"_qs, tr("Togo")},
|
||||
{u"TH"_qs, tr("Thailand")},
|
||||
{u"TJ"_qs, tr("Tajikistan")},
|
||||
{u"TK"_qs, tr("Tokelau")},
|
||||
{u"TL"_qs, tr("Timor-Leste")},
|
||||
{u"TM"_qs, tr("Turkmenistan")},
|
||||
{u"TN"_qs, tr("Tunisia")},
|
||||
{u"TO"_qs, tr("Tonga")},
|
||||
{u"TR"_qs, tr("Turkey")},
|
||||
{u"TT"_qs, tr("Trinidad and Tobago")},
|
||||
{u"TV"_qs, tr("Tuvalu")},
|
||||
{u"TW"_qs, tr("Taiwan")},
|
||||
{u"TZ"_qs, tr("Tanzania, United Republic of")},
|
||||
{u"UA"_qs, tr("Ukraine")},
|
||||
{u"UG"_qs, tr("Uganda")},
|
||||
{u"UM"_qs, tr("United States Minor Outlying Islands")},
|
||||
{u"US"_qs, tr("United States")},
|
||||
{u"UY"_qs, tr("Uruguay")},
|
||||
{u"UZ"_qs, tr("Uzbekistan")},
|
||||
{u"VA"_qs, tr("Holy See (Vatican City State)")},
|
||||
{u"VC"_qs, tr("Saint Vincent and the Grenadines")},
|
||||
{u"VE"_qs, tr("Venezuela, Bolivarian Republic of")},
|
||||
{u"VG"_qs, tr("Virgin Islands, British")},
|
||||
{u"VI"_qs, tr("Virgin Islands, U.S.")},
|
||||
{u"VN"_qs, tr("Vietnam")},
|
||||
{u"VU"_qs, tr("Vanuatu")},
|
||||
{u"WF"_qs, tr("Wallis and Futuna")},
|
||||
{u"WS"_qs, tr("Samoa")},
|
||||
{u"YE"_qs, tr("Yemen")},
|
||||
{u"YT"_qs, tr("Mayotte")},
|
||||
{u"ZA"_qs, tr("South Africa")},
|
||||
{u"ZM"_qs, tr("Zambia")},
|
||||
{u"ZW"_qs, tr("Zimbabwe")},
|
||||
|
||||
{{}, tr("N/A")}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user