summaryrefslogtreecommitdiffstats
path: root/src/corelib/text/qlocale.qdoc
blob: 6fbf720307d5c1b737069b6636637e2dfaffa256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
/****************************************************************************
**
** Copyright (C) 2019 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the documentation of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:FDL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Free Documentation License Usage
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of
** this file. Please review the following information to ensure
** the GNU Free Documentation License version 1.3 requirements
** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
** $QT_END_LICENSE$
**
****************************************************************************/

/*!
    \class QLocale
    \inmodule QtCore
    \brief The QLocale class converts between numbers and their
    string representations in various languages.

    \reentrant
    \ingroup i18n
    \ingroup string-processing
    \ingroup shared


    QLocale is initialized with a language/country pair in its
    constructor and offers number-to-string and string-to-number
    conversion functions similar to those in QString.

    Example:

    \snippet code/src_corelib_text_qlocale.cpp 0

    QLocale supports the concept of a default locale, which is
    determined from the system's locale settings at application
    startup. The default locale can be changed by calling the
    static member setDefault(). Setting the default locale has the
    following effects:

    \list
    \li If a QLocale object is constructed with the default constructor,
       it will use the default locale's settings.
    \li QString::toInt(), QString::toDouble(), etc., interpret the
       string according to the default locale. If this fails, it
       falls back on the "C" locale.
    \li QString::arg() uses the default locale to format a number when
       its position specifier in the format string contains an 'L',
       e.g. "%L1".
    \endlist

    The following example illustrates how to use QLocale directly:

    \snippet code/src_corelib_text_qlocale.cpp 1

    When a language/country pair is specified in the constructor, one
    of three things can happen:

    \list
    \li If the language/country pair is found in the database, it is used.
    \li If the language is found but the country is not, or if the country
       is \c AnyCountry, the language is used with the most
       appropriate available country (for example, Germany for German),
    \li If neither the language nor the country are found, QLocale
       defaults to the default locale (see setDefault()).
    \endlist

    Use language() and country() to determine the actual language and
    country values used.

    An alternative method for constructing a QLocale object is by
    specifying the locale name.

    \snippet code/src_corelib_text_qlocale.cpp 2

    This constructor converts the locale name to a language/country
    pair; it does not use the system locale database.

    \note For the current keyboard input locale take a look at
    QInputMethod::locale().

    QLocale's data is based on Common Locale Data Repository v37.

    \sa QString::arg(), QString::toInt(), QString::toDouble(),
    QInputMethod::locale()
*/

/*!
    \enum QLocale::Language

    This enumerated type is used to specify a language.

    \value AnyLanguage
    \value C A simplified English locale; see QLocale::c()

    \value Abkhazian
    \value Afan Obsolete, please use Oromo
    \value Afar
    \value Afrikaans
    \value Aghem
    \value Akan
    \value Akkadian Since Qt 5.1
    \value Akoose Since Qt 5.3
    \value Albanian
    \value AmericanSignLanguage Since Qt 5.7
    \value Amharic
    \value AncientEgyptian Since Qt 5.1
    \value AncientGreek Since Qt 5.1
    \value Arabic
    \value Aragonese Since Qt 5.1
    \value Aramaic Since Qt 5.1
    \value Armenian
    \value Assamese
    \value Asturian
    \value Asu
    \value Atsam
    \value Avaric
    \value Avestan
    \value Aymara
    \value Azerbaijani
    \value Bafia
    \value Balinese Since Qt 5.1
    \value Bambara
    \value Bamun Since Qt 5.1
    \value Basaa
    \value Bashkir
    \value Basque
    \value BatakToba Since Qt 5.1
    \value Belarusian
    \value Bemba
    \value Bena
    \value Bengali
    \value Bhojpuri Since Qt 5.7
    \value Bhutani Obsolete, please use Dzongkha
    \value Bislama
    \value Blin
    \value Bodo
    \value Bosnian
    \value Breton
    \value Buginese Since Qt 5.1
    \value Bulgarian
    \value Burmese
    \value Byelorussian Obsolete, please use Belarusian
    \value Cambodian Obsolete, please use Khmer
    \value Cantonese Since Qt 5.7
    \value Catalan
    \value Cebuano Since Qt 5.14
    \value CentralKurdish Since Qt 5.5
    \value CentralMoroccoTamazight
    \value Chakma Since Qt 5.1
    \value Chamorro
    \value Chechen
    \value Cherokee
    \value Chewa Obsolete, please use Nyanja
    \value Chickasaw Since Qt 5.14
    \value Chiga
    \value Chinese (Mandarin)
    \value Church
    \value Chuvash
    \value Colognian
    \value Coptic Since Qt 5.1
    \value Cornish
    \value Corsican
    \value Cree
    \value Croatian
    \value Czech
    \value Danish
    \value Divehi
    \value Dogri Since Qt 5.1
    \value Duala
    \value Dutch
    \value Dzongkha
    \value EasternKayah Obsolete, no locale data available
    \value Embu
    \value English
    \value Erzya Since Qt 5.14
    \value Esperanto
    \value Estonian
    \value Ewe
    \value Ewondo
    \value Faroese
    \value Fijian
    \value Filipino
    \value Finnish
    \value French
    \value Frisian same as WesternFrisian
    \value Friulian
    \value Fulah
    \value Ga
    \value Gaelic
    \value Galician
    \value Ganda
    \value Geez
    \value Georgian
    \value German
    \value Gothic Since Qt 5.1
    \value Greek
    \value Greenlandic
    \value Guarani
    \value Gujarati
    \value Gusii
    \value Haitian
    \value Hausa
    \value Hawaiian
    \value Hebrew
    \value Herero
    \value Hindi
    \value HiriMotu
    \value Hungarian
    \value Icelandic
    \value Ido Since Qt 5.12
    \value Igbo
    \value InariSami Since Qt 5.5
    \value Indonesian
    \value Ingush Since Qt 5.1
    \value Interlingua
    \value Interlingue
    \value Inuktitut
    \value Inupiak
    \value Irish
    \value Italian
    \value Japanese
    \value Javanese
    \value Jju
    \value JolaFonyi
    \value Kabuverdianu
    \value Kabyle
    \value Kako
    \value Kalenjin
    \value Kamba
    \value Kannada
    \value Kanuri
    \value Kashmiri
    \value Kazakh
    \value Kenyang Since Qt 5.5
    \value Khmer
    \value Kiche Since Qt 5.5
    \value Kikuyu
    \value Kinyarwanda
    \value Kirghiz
    \value Komi
    \value Kongo
    \value Konkani
    \value Korean
    \value Koro
    \value KoyraboroSenni
    \value KoyraChiini
    \value Kpelle
    \value Kurdish
    \value Kurundi Obsolete, please use Rundi
    \value Kwanyama
    \value Kwasio
    \value Lakota Since Qt 5.3
    \value Langi
    \value Lao
    \value Latin
    \value Latvian
    \value Lezghian Since Qt 5.5
    \value Limburgish
    \value Lingala
    \value LiteraryChinese Since Qt 5.7
    \value Lithuanian
    \value Lojban Since Qt 5.12
    \value LowerSorbian Since Qt 5.5
    \value LowGerman
    \value LubaKatanga
    \value LuleSami Since Qt 5.5
    \value Luo
    \value Luxembourgish
    \value Luyia
    \value Macedonian
    \value Machame
    \value Maithili Since Qt 5.5
    \value MakhuwaMeetto
    \value Makonde
    \value Malagasy
    \value Malay
    \value Malayalam
    \value Maltese
    \value Mandingo Since Qt 5.1
    \value Manipuri Since Qt 5.1
    \value Manx
    \value Maori
    \value Mapuche Since Qt 5.5
    \value Marathi
    \value Marshallese
    \value Masai
    \value Mazanderani Since Qt 5.7
    \value Mende Since Qt 5.5
    \value Meru
    \value Meta
    \value Mohawk Since Qt 5.5
    \value Mongolian
    \value Morisyen
    \value Mundang
    \value Muscogee Since Qt 5.14
    \value Nama
    \value NauruLanguage
    \value Navaho
    \value Ndonga
    \value Nepali
    \value Newari Since Qt 5.7
    \value Ngiemboon
    \value Ngomba
    \value Nko Since Qt 5.5
    \value NorthernLuri Since Qt 5.7
    \value NorthernSami
    \value NorthernSotho
    \value NorthNdebele
    \value NorwegianBokmal
    \value NorwegianNynorsk
    \value Nuer
    \value Nyanja
    \value Nyankole
    \value Occitan
    \value Ojibwa
    \value OldIrish Since Qt 5.1
    \value OldNorse Since Qt 5.1
    \value OldPersian Since Qt 5.1
    \value Oriya
    \value Oromo
    \value Osage Since Qt 5.7
    \value Ossetic
    \value Pahlavi Since Qt 5.1
    \value Palauan Since Qt 5.7
    \value Pali
    \value Papiamento Since Qt 5.7
    \value Pashto
    \value Persian
    \value Phoenician Since Qt 5.1
    \value Polish
    \value Portuguese
    \value Prussian Since Qt 5.5
    \value Punjabi
    \value Quechua
    \value RhaetoRomance Obsolete, please use Romansh
    \value Romanian
    \value Romansh
    \value Rombo
    \value Rundi
    \value Russian
    \value Rwa
    \value Saho
    \value Sakha
    \value Samburu
    \value Samoan
    \value Sango
    \value Sangu
    \value Sanskrit
    \value Santali Since Qt 5.1
    \value Sardinian
    \value Saurashtra Since Qt 5.1
    \value Sena
    \value Serbian
    \value Shambala
    \value Shona
    \value SichuanYi
    \value Sicilian Since Qt 5.12
    \value Sidamo
    \value Silesian Since Qt 5.14
    \value Sindhi
    \value Sinhala
    \value SkoltSami Since Qt 5.5
    \value Slovak
    \value Slovenian
    \value Soga
    \value Somali
    \value SouthernKurdish Since Qt 5.12
    \value SouthernSami Since Qt 5.5
    \value SouthernSotho
    \value SouthNdebele
    \value Spanish
    \value StandardMoroccanTamazight Since Qt 5.3
    \value Sundanese
    \value Swahili
    \value Swati
    \value Swedish
    \value SwissGerman
    \value Syriac
    \value Tachelhit
    \value Tahitian
    \value TaiDam Since Qt 5.1
    \value Taita
    \value Tajik
    \value Tamil
    \value Taroko
    \value Tasawaq
    \value Tatar
    \value Telugu
    \value Teso
    \value Thai
    \value Tibetan
    \value Tigre
    \value Tigrinya
    \value TokelauLanguage Since Qt 5.7
    \value TokPisin Since Qt 5.7
    \value Tongan
    \value Tsonga
    \value Tswana
    \value Turkish
    \value Turkmen
    \value TuvaluLanguage Since Qt 5.7
    \value Tyap
    \value Ugaritic Since Qt 5.1
    \value Uighur
    \value Uigur Obsolete, please use Uighur
    \value Ukrainian
    \value UpperSorbian Since Qt 5.5
    \value Urdu
    \value Uzbek
    \value Vai
    \value Venda
    \value Vietnamese
    \value Volapuk
    \value Vunjo
    \value Walamo
    \value Walloon
    \value Walser
    \value Warlpiri Since Qt 5.5
    \value Welsh
    \value WesternBalochi Since Qt 5.12
    \value WesternFrisian same as Frisian
    \value Wolof
    \value Xhosa
    \value Yangben
    \value Yiddish
    \value Yoruba
    \value Zarma
    \value Zhuang
    \value Zulu

    \omitvalue LastLanguage

    \sa language(), languageToString()
*/

/*!
    \enum QLocale::Country

    This enumerated type is used to specify a country.

    \value AnyCountry

    \value Afghanistan
    \value AlandIslands
    \value Albania
    \value Algeria
    \value AmericanSamoa
    \value Andorra
    \value Angola
    \value Anguilla
    \value Antarctica
    \value AntiguaAndBarbuda
    \value Argentina
    \value Armenia
    \value Aruba
    \value AscensionIsland
    \value Australia
    \value Austria
    \value Azerbaijan
    \value Bahamas
    \value Bahrain
    \value Bangladesh
    \value Barbados
    \value Belarus
    \value Belgium
    \value Belize
    \value Benin
    \value Bermuda
    \value Bhutan
    \value Bolivia
    \value Bonaire
    \value BosniaAndHerzegowina
    \value Botswana
    \value BouvetIsland
    \value Brazil
    \value BritishIndianOceanTerritory
    \value BritishVirginIslands
    \value Brunei
    \value Bulgaria
    \value BurkinaFaso
    \value Burundi
    \value Cambodia
    \value Cameroon
    \value Canada
    \value CanaryIslands
    \value CapeVerde
    \value CaymanIslands
    \value CentralAfricanRepublic
    \value CeutaAndMelilla
    \value Chad
    \value Chile
    \value China
    \value ChristmasIsland
    \value ClippertonIsland
    \value CocosIslands
    \value Colombia
    \value Comoros
    \value CongoBrazzaville
    \value CongoKinshasa
    \value CookIslands
    \value CostaRica
    \value Croatia
    \value Cuba
    \value CuraSao
    \value Cyprus
    \value CzechRepublic
    \value DemocraticRepublicOfCongo Obsolete, please use CongoKinshasa
    \value DemocraticRepublicOfKorea Obsolete, please use NorthKorea
    \value Denmark
    \value DiegoGarcia
    \value Djibouti
    \value Dominica
    \value DominicanRepublic
    \value EastTimor
    \value Ecuador
    \value Egypt
    \value ElSalvador
    \value EquatorialGuinea
    \value Eritrea
    \value Estonia
    \value Ethiopia
    \value EuropeanUnion Since Qt 5.7
    \value Europe Since Qt 5.12
    \value FalklandIslands
    \value FaroeIslands
    \value Fiji
    \value Finland
    \value France
    \value FrenchGuiana
    \value FrenchPolynesia
    \value FrenchSouthernTerritories
    \value Gabon
    \value Gambia
    \value Georgia
    \value Germany
    \value Ghana
    \value Gibraltar
    \value Greece
    \value Greenland
    \value Grenada
    \value Guadeloupe
    \value Guam
    \value Guatemala
    \value Guernsey
    \value Guinea
    \value GuineaBissau
    \value Guyana
    \value Haiti
    \value HeardAndMcDonaldIslands
    \value Honduras
    \value HongKong
    \value Hungary
    \value Iceland
    \value India
    \value Indonesia
    \value Iran
    \value Iraq
    \value Ireland
    \value IsleOfMan
    \value Israel
    \value Italy
    \value IvoryCoast
    \value Jamaica
    \value Japan
    \value Jersey
    \value Jordan
    \value Kazakhstan
    \value Kenya
    \value Kiribati
    \value Kosovo Since Qt 5.2
    \value Kuwait
    \value Kyrgyzstan
    \value Laos
    \value LatinAmerica
    \value LatinAmericaAndTheCaribbean Obsolete, please use LatinAmerica
    \value Latvia
    \value Lebanon
    \value Lesotho
    \value Liberia
    \value Libya
    \value Liechtenstein
    \value Lithuania
    \value Luxembourg
    \value Macau
    \value Macedonia
    \value Madagascar
    \value Malawi
    \value Malaysia
    \value Maldives
    \value Mali
    \value Malta
    \value MarshallIslands
    \value Martinique
    \value Mauritania
    \value Mauritius
    \value Mayotte
    \value Mexico
    \value Micronesia
    \value Moldova
    \value Monaco
    \value Mongolia
    \value Montenegro
    \value Montserrat
    \value Morocco
    \value Mozambique
    \value Myanmar
    \value Namibia
    \value NauruCountry
    \value Nepal
    \value Netherlands
    \value NewCaledonia
    \value NewZealand
    \value Nicaragua
    \value Niger
    \value Nigeria
    \value Niue
    \value NorfolkIsland
    \value NorthernMarianaIslands
    \value NorthKorea
    \value Norway
    \value Oman
    \value OutlyingOceania Since Qt 5.7
    \value Pakistan
    \value Palau
    \value PalestinianTerritories
    \value Panama
    \value PapuaNewGuinea
    \value Paraguay
    \value PeoplesRepublicOfCongo Obsolete, please use CongoBrazzaville
    \value Peru
    \value Philippines
    \value Pitcairn
    \value Poland
    \value Portugal
    \value PuertoRico
    \value Qatar
    \value RepublicOfKorea Obsolete, please use SouthKorea
    \value Reunion
    \value Romania
    \value RussianFederation same as Russia
    \value Russia same as RussianFederation
    \value Rwanda
    \value SaintBarthelemy
    \value SaintHelena
    \value SaintKittsAndNevis
    \value SaintLucia
    \value SaintMartin
    \value SaintPierreAndMiquelon
    \value SaintVincentAndTheGrenadines
    \value Samoa
    \value SanMarino
    \value SaoTomeAndPrincipe
    \value SaudiArabia
    \value Senegal
    \value Serbia
    \value Seychelles
    \value SierraLeone
    \value Singapore
    \value SintMaarten
    \value Slovakia
    \value Slovenia
    \value SolomonIslands
    \value Somalia
    \value SouthAfrica
    \value SouthGeorgiaAndTheSouthSandwichIslands
    \value SouthKorea
    \value SouthSudan
    \value Spain
    \value SriLanka
    \value Sudan
    \value Suriname
    \value SvalbardAndJanMayenIslands
    \value Swaziland
    \value Sweden
    \value Switzerland
    \value Syria
    \value SyrianArabRepublic Obsolete, please use Syria
    \value Taiwan
    \value Tajikistan
    \value Tanzania
    \value Thailand
    \value Togo
    \value TokelauCountry
    \value Tonga
    \value TrinidadAndTobago
    \value TristanDaCunha
    \value Tunisia
    \value Turkey
    \value Turkmenistan
    \value TurksAndCaicosIslands
    \value TuvaluCountry
    \value Uganda
    \value Ukraine
    \value UnitedArabEmirates
    \value UnitedKingdom
    \value UnitedStates
    \value UnitedStatesMinorOutlyingIslands
    \value UnitedStatesVirginIslands
    \value Uruguay
    \value Uzbekistan
    \value Vanuatu
    \value VaticanCityState
    \value Venezuela
    \value Vietnam
    \value WallisAndFutunaIslands
    \value WesternSahara
    \value World Since Qt 5.12
    \value Yemen
    \value Zambia
    \value Zimbabwe

    \omitvalue LastCountry

    \sa country(), countryToString()
*/

/*!
    \enum QLocale::Script

    This enumerated type is used to specify a script.

    \value AnyScript

    \value AdlamScript Since Qt 5.7
    \value AhomScript Since Qt 5.7
    \value AnatolianHieroglyphsScript Since Qt 5.7
    \value ArabicScript
    \value ArmenianScript
    \value AvestanScript Since Qt 5.1
    \value BalineseScript Since Qt 5.1
    \value BamumScript Since Qt 5.1
    \value BassaVahScript Since Qt 5.5
    \value BatakScript Since Qt 5.1
    \value BengaliScript
    \value BhaiksukiScript Since Qt 5.7
    \value BopomofoScript Since Qt 5.1
    \value BrahmiScript Since Qt 5.1
    \value BrailleScript Since Qt 5.1
    \value BugineseScript Since Qt 5.1
    \value BuhidScript Since Qt 5.1
    \value CanadianAboriginalScript Since Qt 5.1
    \value CarianScript Since Qt 5.1
    \value CaucasianAlbanianScript Since Qt 5.5
    \value ChakmaScript Since Qt 5.1
    \value ChamScript Since Qt 5.1
    \value CherokeeScript
    \value CopticScript Since Qt 5.1
    \value CuneiformScript Since Qt 5.1
    \value CypriotScript Since Qt 5.1
    \value CyrillicScript
    \value DeseretScript Since Qt 5.1
    \value DevanagariScript
    \value DuployanScript Since Qt 5.5
    \value EgyptianHieroglyphsScript Since Qt 5.1
    \value ElbasanScript Since Qt 5.5
    \value EthiopicScript
    \value FraserScript Since Qt 5.1
    \value GeorgianScript
    \value GlagoliticScript Since Qt 5.1
    \value GothicScript Since Qt 5.1
    \value GranthaScript Since Qt 5.5
    \value GreekScript
    \value GujaratiScript
    \value GurmukhiScript
    \value HangulScript Since Qt 5.1
    \value HanScript Since Qt 5.1
    \value HanunooScript Since Qt 5.1
    \value HanWithBopomofoScript Since Qt 5.7
    \value HatranScript Since Qt 5.7
    \value HebrewScript
    \value HiraganaScript Since Qt 5.1
    \value ImperialAramaicScript Since Qt 5.1
    \value InscriptionalPahlaviScript Since Qt 5.1
    \value InscriptionalParthianScript Since Qt 5.1
    \value JamoScript Since Qt 5.7
    \value JapaneseScript
    \value JavaneseScript Since Qt 5.1
    \value KaithiScript Since Qt 5.1
    \value KannadaScript
    \value KatakanaScript Since Qt 5.1
    \value KayahLiScript Since Qt 5.1
    \value KharoshthiScript Since Qt 5.1
    \value KhmerScript Since Qt 5.1
    \value KhojkiScript Since Qt 5.5
    \value KhudawadiScript Since Qt 5.5
    \value KoreanScript
    \value LannaScript Since Qt 5.1
    \value LaoScript
    \value LatinScript
    \value LepchaScript Since Qt 5.1
    \value LimbuScript Since Qt 5.1
    \value LinearAScript Since Qt 5.5
    \value LinearBScript Since Qt 5.1
    \value LycianScript Since Qt 5.1
    \value LydianScript Since Qt 5.1
    \value MahajaniScript Since Qt 5.5
    \value MalayalamScript
    \value MandaeanScript Since Qt 5.1
    \value ManichaeanScript Since Qt 5.5
    \value MarchenScript Since Qt 5.7
    \value MeiteiMayekScript Since Qt 5.1
    \value MendeKikakuiScript Since Qt 5.5
    \value MeroiticCursiveScript Since Qt 5.1
    \value MeroiticScript Since Qt 5.1
    \value ModiScript Since Qt 5.5
    \value MongolianScript
    \value MroScript Since Qt 5.5
    \value MultaniScript Since Qt 5.7
    \value MyanmarScript
    \value NabataeanScript Since Qt 5.5
    \value NewaScript Since Qt 5.7
    \value NewTaiLueScript Since Qt 5.1
    \value NkoScript Since Qt 5.1
    \value OghamScript Since Qt 5.1
    \value OlChikiScript Since Qt 5.1
    \value OldHungarianScript Since Qt 5.7
    \value OldItalicScript Since Qt 5.1
    \value OldNorthArabianScript Since Qt 5.5
    \value OldPermicScript Since Qt 5.5
    \value OldPersianScript Since Qt 5.1
    \value OldSouthArabianScript Since Qt 5.1
    \value OriyaScript
    \value OrkhonScript Since Qt 5.1
    \value OsageScript Since Qt 5.7
    \value OsmanyaScript Since Qt 5.1
    \value PahawhHmongScript Since Qt 5.5
    \value PalmyreneScript Since Qt 5.5
    \value PauCinHauScript Since Qt 5.5
    \value PhagsPaScript Since Qt 5.1
    \value PhoenicianScript Since Qt 5.1
    \value PollardPhoneticScript Since Qt 5.1
    \value PsalterPahlaviScript Since Qt 5.5
    \value RejangScript Since Qt 5.1
    \value RunicScript Since Qt 5.1
    \value SamaritanScript Since Qt 5.1
    \value SaurashtraScript Since Qt 5.1
    \value SharadaScript Since Qt 5.1
    \value ShavianScript Since Qt 5.1
    \value SiddhamScript Since Qt 5.5
    \value SignWritingScript Since Qt 5.7
    \value SimplifiedChineseScript same as SimplifiedHanScript
    \value SimplifiedHanScript same as SimplifiedChineseScript
    \value SinhalaScript
    \value SoraSompengScript Since Qt 5.1
    \value SundaneseScript Since Qt 5.1
    \value SylotiNagriScript Since Qt 5.1
    \value SyriacScript
    \value TagalogScript Since Qt 5.1
    \value TagbanwaScript Since Qt 5.1
    \value TaiLeScript Since Qt 5.1
    \value TaiVietScript Since Qt 5.1
    \value TakriScript Since Qt 5.1
    \value TamilScript
    \value TangutScript Since Qt 5.7
    \value TeluguScript
    \value ThaanaScript
    \value ThaiScript
    \value TibetanScript
    \value TifinaghScript
    \value TirhutaScript Since Qt 5.5
    \value TraditionalChineseScript same as TraditionalHanScript
    \value TraditionalHanScript same as TraditionalChineseScript
    \value UgariticScript Since Qt 5.1
    \value VaiScript
    \value VarangKshitiScript Since Qt 5.5
    \value YiScript

    \omitvalue LastScript

    \sa script(), scriptToString(), languageToString()
*/

/*!
    \enum QLocale::FormatType

    This enum describes the different formats that can be used when
    converting QDate, QTime, and QDateTime objects, as well
    as months and days, to strings specific to the locale.

    \value LongFormat Longer format.

    \value ShortFormat Shorter format.

    \value NarrowFormat A special version for use when space is very limited.

    \note \c NarrowFormat might contain the same text for
    different months and days. It can even be an empty string if the
    locale doesn't support narrow names, so you should avoid using it
    for date formatting. Also, for the system locale this format is
    the same as \c ShortFormat.

    \sa dateFormat(), timeFormat(), dateTimeFormat()
    \sa monthName(), standaloneMonthName(), dayName(), standaloneDayName()
    \sa toDate(), toTime(), toDateTime()
*/

/*!
    \enum QLocale::NumberOption

    This enum defines a set of options for number-to-string and string-to-number
    conversions. They can be retrieved with numberOptions() and set with
    setNumberOptions().

    \value DefaultNumberOptions This option represents the default behavior, with
            group separators, with one leading zero in single digit exponents, and
            without trailing zeroes after the decimal dot.
    \value OmitGroupSeparator If this option is set, the number-to-string functions
            will not insert group separators in their return values. The default
            is to insert group separators.
    \value RejectGroupSeparator If this option is set, the string-to-number functions
            will fail if they encounter group separators in their input. The default
            is to accept numbers containing correctly placed group separators.
    \value OmitLeadingZeroInExponent If this option is set, the number-to-string
            functions will not pad exponents with zeroes when printing floating point
            numbers in scientific notation. The default is to add one leading zero to
            single digit exponents.
    \value RejectLeadingZeroInExponent If this option is set, the string-to-number
            functions will fail if they encounter an exponent padded with zeroes when
            parsing a floating point number in scientific notation. The default is to
            accept such padding.
    \value IncludeTrailingZeroesAfterDot If this option is set, the number-to-string
            functions will pad numbers with zeroes to the requested precision in "g"
            or "most concise" mode, even if the number of significant digits is lower
            than the requested precision. The default is to omit trailing zeroes.
    \value RejectTrailingZeroesAfterDot If this option is set, the string-to-number
            functions will fail if they encounter trailing zeroes after the decimal
            dot when parsing a number in scientific or decimal representation. The
            default is to accept trailing zeroes.

    \sa setNumberOptions(), numberOptions()
*/

/*!
    \enum QLocale::FloatingPointPrecisionOption

    This enum defines constants that can be given as precision to QString::number(),
    QByteArray::number(), and QLocale::toString() when converting floats or doubles,
    in order to express a variable number of digits as precision.

    \value FloatingPointShortest The conversion algorithm will try to find the
            shortest accurate representation for the given number. "Accurate" means
            that you get the exact same number back from an inverse conversion on
            the generated string representation.

    \sa toString(), QString, QByteArray

    \since 5.7
*/

/*!
    \enum QLocale::MeasurementSystem

    This enum defines which units are used for measurement.

    \value MetricSystem This value indicates metric units, such as meters,
            centimeters and millimeters.
    \value ImperialUSSystem This value indicates imperial units, such as inches and
            miles as they are used in the United States.
    \value ImperialUKSystem This value indicates imperial units, such as inches and
            miles as they are used in the United Kingdom.
    \value ImperialSystem Provided for compatibility. Same as ImperialUSSystem

    \since 4.4
*/


/*!
    \fn bool QLocale::operator==(const QLocale &other) const

    Returns \c true if the QLocale object is the same as the \a other
    locale specified; otherwise returns \c false.
*/

/*!
    \fn bool QLocale::operator!=(const QLocale &other) const

    Returns \c true if the QLocale object is not the same as the \a other
    locale specified; otherwise returns \c false.
*/

/*!
    \enum QLocale::QuotationStyle

    This enum defines a set of possible styles for locale specific quotation.

    \value StandardQuotation If this option is set, the standard quotation marks
            will be used to quote strings.
    \value AlternateQuotation If this option is set, the alternate quotation marks
            will be used to quote strings.

    \since 4.8

    \sa quoteString()
*/

/*!
    \internal
    \class QSystemLocale
    \inmodule QtCore
    \brief The QSystemLocale class can be used to finetune the system locale
    of the user.
    \since 4.2

    \ingroup i18n

    \warning This class is only useful in very rare cases. Usually QLocale offers
    all the functionality required for application development.

    QSystemLocale allows to override the values provided by the system
    locale (QLocale::system()).

    \sa QLocale
*/

/*!
  \enum QSystemLocale::QueryType

  Specifies the type of information queried by query(). For each value
  the type of information to return from the query() method is listed.

  \value LanguageId a uint specifying the language.
  \value ScriptId a uint specifying the script.
  \value CountryId a uint specifying the country.
  \value DecimalPoint a QString specifying the decimal point.
  \value GroupSeparator a QString specifying the group separator.
  \value ZeroDigit a QString specifying the zero digit.
  \value NegativeSign a QString specifying the minus sign.
  \value PositiveSign a QString specifying the plus sign.
  \value DateFormatLong a QString specifying the long date format
  \value DateFormatShort a QString specifying the short date format
  \value TimeFormatLong a QString specifying the long time format
  \value TimeFormatShort a QString specifying the short time format
  \value DayNameLong a QString specifying the name of a weekday. the in variant contains an integer between 1 and 7 (Monday - Sunday)
  \value DayNameShort a QString specifying the short name of a weekday. the in variant contains an integer between 1 and 7 (Monday - Sunday)
  \value MonthNameLong a QString specifying the name of a month. the in variant contains an integer between 1 and 12
  \value MonthNameShort a QString specifying the short name of a month. the in variant contains an integer between 1 and 12
  \value DateToStringLong converts the QDate stored in the in variant to a QString using the long date format
  \value DateToStringShort converts the QDate stored in the in variant to a QString using the short date format
  \value TimeToStringLong converts the QTime stored in the in variant to a QString using the long time format
  \value TimeToStringShort converts the QTime stored in the in variant to a QString using the short time format
  \value DateTimeFormatLong a QString specifying the long date time format
  \value DateTimeFormatShort a QString specifying the short date time format
  \value DateTimeToStringLong converts the QDateTime in the in variant to a QString using the long datetime format
  \value DateTimeToStringShort converts the QDateTime in the in variant to a QString using the short datetime format
  \value MeasurementSystem a QLocale::MeasurementSystem enum specifying the measurement system
  \value AMText a string that represents the system AM designator associated with a 12-hour clock.
  \value PMText a string that represents the system PM designator associated with a 12-hour clock.
  \value FirstDayOfWeek a Qt::DayOfWeek enum specifiying the first day of the week
  \value CurrencySymbol a string that represents a currency in a format QLocale::CurrencyFormat.
  \value CurrencyToString a localized string representation of a number with a currency symbol. Converts a QSystemLocale::CurrencyToStringArgument stored in the in variant to a QString.
  \value UILanguages a list of strings representing locale names that could be used for UI translation.
  \value StringToStandardQuotation a QString containing a quoted version of the string ref stored in the in variant using standard quotes.
  \value StringToAlternateQuotation a QString containing a quoted version of the string ref stored in the in variant using alternate quotes.
  \value Weekdays a QList<Qt::DayOfWeek> specifying the regular weekdays
  \value LocaleChanged this type is queried whenever the system locale is changed.
  \value ListToSeparatedString a string that represents a join of a given QStringList with a locale-defined separator.
  \value NativeLanguageName a string that represents the name of the native language.
  \value NativeCountryName a string that represents the name of the native country.

  \sa FormatType
*/

/*!
    \fn QLocale QSystemLocale::fallbackUiLocale() const

    \since 4.6
    Returns the fallback locale obtained from the system.
*/

/*!
    \fn QVariant QSystemLocale::query(QueryType type, QVariant in = QVariant()) const

    Generic query method for locale data. Provides indirection.
    Denotes the \a type of the query
    with \a in as input data depending on the query.

    \sa QSystemLocale::QueryType
*/

/*!
    \class QSystemLocale::CurrencyToStringArgument
    \inmodule QtCore

    A helper class that provides arguments for the QSystemLocale::query()
    function with query type QSystemLocale::CurrencyToString.

    \sa QSystemLocale::QueryType
    \since 4.8
*/

/*!
    \fn QSystemLocale::CurrencyToStringArgument::CurrencyToStringArgument()
    \internal
*/
/*!
    \variable QSystemLocale::CurrencyToStringArgument::value

    An input value that should be converted to its string representation.
    Contains one of QMetaType::LongLong, QMetaType::ULongLong or QMetaType::Double
    types.
*/
/*!
    \variable QSystemLocale::CurrencyToStringArgument::symbol

    An optional argument containing a currency symbol to be used in the
    currency string.
*/

/*!
\fn QString QLocale::toString(long i) const

\overload

\sa toLong()
*/

/*!
\fn QString QLocale::toString(ulong i) const

\overload

\sa toULong()
*/

/*!
\fn QString QLocale::toString(ushort i) const

\overload

\sa toUShort()
*/


/*!
\fn QString QLocale::toString(short i) const

\overload

\sa toShort()
*/

/*!
\fn QString QLocale::toString(int i) const

\overload

\sa toInt()
*/

/*!
\fn QString QLocale::toString(uint i) const

\overload

\sa toUInt()
*/

/*
\fn QString QLocale::toString(long i) const

\overload

\sa  toLong()
*/

/*
\fn QString QLocale::toString(ulong i) const

\overload

\sa toULong()
*/

/*!
\fn QString QLocale::toString(float i, char f = 'g', int prec = 6) const

\overload

\a f and \a prec have the same meaning as in QString::number(double, char, int).

\sa toDouble()
*/

/*!
    \fn QString QLocale::toCurrencyString(short value, const QString &symbol) const
    \since 4.8
    \overload
*/

/*!
    \fn QString QLocale::toCurrencyString(ushort value, const QString &symbol) const
    \since 4.8
    \overload
*/

/*!
    \fn QString QLocale::toCurrencyString(int value, const QString &symbol) const
    \since 4.8
    \overload
*/

/*!
    \fn QString QLocale::toCurrencyString(uint value, const QString &symbol) const
    \since 4.8
    \overload
*/