File: fr.po

package info (click to toggle)
fcitx5 5.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 11,196 kB
  • sloc: cpp: 55,280; sh: 1,769; python: 844; xml: 487; ansic: 64; makefile: 11
file content (2436 lines) | stat: -rw-r--r-- 47,030 bytes parent folder | download
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
863
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
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1863
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
msgid ""
msgstr ""
"Project-Id-Version: fcitx5\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2021-02-14 20:22 0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI ZONE\n"
"Language-Team: French (https://www.transifex.com/fcitx/teams/12005/fr/)\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"

#: data/fcitx5-diagnose.sh:852
msgid "${1} Environment Variables:"
msgstr ""

#: data/fcitx5-diagnose.sh:838
msgid "${1} Settings Directory:"
msgstr ""

#: data/fcitx5-diagnose.sh:912
msgid "${1} is not running."
msgstr ""

#: data/fcitx5-diagnose.sh:861
msgid "${1} is not set."
msgstr ""

#: data/fcitx5-diagnose.sh:858
msgid "${1} is set to ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:520
msgid "${1} not found."
msgstr ""

#: data/fcitx5-diagnose.sh:929
msgid "${1} works properly."
msgstr ""

#: src/lib/fcitx/instance.cpp:353
msgid "(Not available)"
msgstr ""

#: src/modules/unicode/unicode.cpp:324
msgid "(Type to search unicode by code or description)"
msgstr ""

#: data/fcitx5-diagnose.sh:662
msgid "/Beginner's_Guide"
msgstr ""

#: data/fcitx5-diagnose.sh:709
msgid "/Hall_of_Shame_for_Linux_IME_Support"
msgstr ""

#: data/fcitx5-diagnose.sh:673
msgid "/Input_method_related_environment_variables"
msgstr ""

#: data/fcitx5-diagnose.sh:689
msgid "/Note_for_GNOME_Later_than_3.6"
msgstr ""

#: data/fcitx5-diagnose.sh:713
msgid "/XIM"
msgstr ""

#: src/modules/unicode/charselectdata.cpp:220
msgid "<Low Surrogate>"
msgstr ""

#: src/modules/unicode/charselectdata.cpp:216
msgid "<Non Private Use High Surrogate>"
msgstr ""

#: src/modules/unicode/charselectdata.cpp:218
msgid "<Private Use High Surrogate>"
msgstr ""

#: src/modules/unicode/charselectdata.cpp:222
msgid "<Private Use>"
msgstr ""

#: src/modules/unicode/charselectdata.cpp:252
msgid "<not assigned>"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:74
msgid "Activate Input Method"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:130
msgid "Active By Default"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:109
msgctxt "Key name"
msgid "Add Favorite"
msgstr ""

#: src/modules/unicode/unicode.conf.in:4
msgid "Add Unicode Typing Support"
msgstr ""

#: data/fcitx5-diagnose.sh:1536
msgid "Addon Config Dir:"
msgstr ""

#: data/fcitx5-diagnose.sh:1606
msgid "Addon Libraries:"
msgstr ""

#: data/fcitx5-diagnose.sh:1561
msgid "Addon List:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:111
msgctxt "Key name"
msgid "Adjust Brightness"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:18
msgid "All"
msgstr ""

#: data/fcitx5-diagnose.sh:1299
msgid "All found Gtk ${1} immodule files exist."
msgstr ""

#: data/fcitx5-diagnose.sh:1632
msgid "All libraries for all addons are found."
msgstr ""

#: data/fcitx5-diagnose.sh:806
msgid "All locale:"
msgstr ""

#: src/modules/xcb/xcbmodule.h:30
msgid "Allow Overriding System XKB Settings"
msgstr ""

#: src/im/keyboard/keyboard.h:33 src/modules/quickphrase/quickphrase.h:29
msgid "Alt"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:476
msgctxt "Key name"
msgid "Alt"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:116
msgctxt "Key name"
msgid "Application Left"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:117
msgctxt "Key name"
msgid "Application Right"
msgstr ""

#: src/im/keyboard/keyboard.h:75
msgid "Applications disabled for long press"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:176
msgctxt "Key name"
msgid "Audio Cycle Track"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:174
msgctxt "Key name"
msgid "Audio Random Play"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:173
msgctxt "Key name"
msgid "Audio Repeat"
msgstr ""

#: src/ui/classic/theme.h:150
msgid "Author"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:163
msgctxt "Key name"
msgid "Away"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:58
msgctxt "Key name"
msgid "Back"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:115
msgctxt "Key name"
msgid "Back Forward"
msgstr ""

#: src/ui/classic/theme.h:116 src/ui/classic/theme.h:135
msgid "Background"
msgstr ""

#: src/ui/classic/theme.h:49
msgid "Background Image"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:42
msgctxt "Key name"
msgid "Backspace"
msgstr ""

#: data/fcitx5-diagnose.sh:780
msgid "Bash Version:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:169
msgctxt "Key name"
msgid "Battery"
msgstr ""

#: data/fcitx5-diagnose.sh:661
msgid "Beginner's Guide"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:164
msgid "Behavior"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:187
msgctxt "Key name"
msgid "Blue"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:170
msgctxt "Key name"
msgid "Bluetooth"
msgstr ""

#: src/ui/classic/theme.h:125
msgid "Blur Margin"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:118
msgctxt "Key name"
msgid "Book"
msgstr ""

#: src/ui/classic/theme.h:61
msgid "Border Color"
msgstr ""

#: src/ui/classic/theme.h:69
msgid "Border width"
msgstr ""

#: src/ui/classic/theme.h:33
msgid "Bottom Center"
msgstr ""

#: src/ui/classic/theme.h:33
msgid "Bottom Left"
msgstr ""

#: src/ui/classic/theme.h:34
msgid "Bottom Right"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:129
msgctxt "Key name"
msgid "Browser"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:119
msgctxt "Key name"
msgid "CD"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:120
msgctxt "Key name"
msgid "Calculator"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:229
msgctxt "Key name"
msgid "Cancel"
msgstr ""

#: src/im/keyboard/longpress.h:19
msgid "Candidates"
msgstr ""

#: data/fcitx5-diagnose.sh:927
msgid "Cannot connect to ${1} correctly."
msgstr ""

#: data/fcitx5-diagnose.sh:775
msgid "Cannot determine desktop environment."
msgstr ""

#: data/fcitx5-diagnose.sh:1552
msgid "Cannot find ${1} addon config directory."
msgstr ""

#: data/fcitx5-diagnose.sh:1047
msgid "Cannot find ${1} executable!"
msgstr ""

#: data/fcitx5-diagnose.sh:1449 data/fcitx5-diagnose.sh:1502
msgid "Cannot find ${1} im module for gtk ${2} in cache."
msgstr ""

#: data/fcitx5-diagnose.sh:1366
msgid "Cannot find ${1} im module for gtk ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:1225 data/fcitx5-diagnose.sh:1230
msgid "Cannot find ${1} input method module for ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:1360
msgid "Cannot find ${2} for gtk ${1}"
msgstr ""

#: data/fcitx5-diagnose.sh:947
msgid "Cannot find DBus name ${1} owner."
msgstr ""

#: data/fcitx5-diagnose.sh:1057
msgid "Cannot find a GUI config tool, please install one of ${1}, or ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:1635
msgid "Cannot find enabled ${1} user interface!"
msgstr ""

#: data/fcitx5-diagnose.sh:890
msgid "Cannot find fcitx5 executable!"
msgstr ""

#: data/fcitx5-diagnose.sh:1614
msgid "Cannot find file ${1} of addon ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:1624
msgid "Cannot find following required libraries for ${1} of addon ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:1444 data/fcitx5-diagnose.sh:1497
msgid "Cannot find immodules cache for gtk ${1}"
msgstr ""

#: data/fcitx5-diagnose.sh:1654
msgid ""
"Cannot find kimpanel dbus interface or enabled non-kimpanel user interface."
msgstr ""

#: data/fcitx5-diagnose.sh:955
msgid "Cannot find pid of DBus name ${1} owner."
msgstr ""

#: data/fcitx5-diagnose.sh:1123
msgid "Cannot find xim_server on root window."
msgstr ""

#: data/fcitx5-diagnose.sh:1097
msgid "Cannot interpret XMODIFIERS: ${1}."
msgstr ""

#: src/lib/fcitx-utils/key.cpp:53
msgctxt "Key name"
msgid "CapsLock"
msgstr ""

#: src/ui/classic/theme.h:32
msgid "Center"
msgstr ""

#: src/ui/classic/theme.h:31
msgid "Center Left"
msgstr ""

#: src/ui/classic/theme.h:32
msgid "Center Right"
msgstr ""

#: data/fcitx5-configtool.desktop.in.in:5
msgid "Change Fcitx 5 Configuration"
msgstr ""

#: src/ui/classic/theme.h:140
msgid "Check box"
msgstr ""

#: src/im/keyboard/keyboard.h:57 src/modules/quickphrase/quickphrase.h:41
msgid "Choose key modifier"
msgstr ""

#: src/ui/classic/classicui.conf.in:3
msgid "Classic User Inteface"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:121
msgctxt "Key name"
msgid "Clear"
msgstr ""

#: src/ui/classic/theme.h:95
msgid "Click Margin"
msgstr ""

#: src/modules/clipboard/clipboard.conf.in:3
msgid "Clipboard"
msgstr ""

#: src/modules/clipboard/clipboard.cpp:311
msgid "Clipboard:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:122
msgctxt "Key name"
msgid "Close"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:215
msgctxt "Key name"
msgid "Code input"
msgstr ""

#: src/ui/classic/theme.h:53
msgid "Color"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:113
msgctxt "Key name"
msgid "Community"
msgstr ""

#: src/im/keyboard/keyboard.cpp:790
msgid "Completion"
msgstr ""

#: src/im/keyboard/keyboard.cpp:781
msgid "Completion is disabled."
msgstr ""

#: src/im/keyboard/keyboard.cpp:784
msgid "Completion is enabled temporarily."
msgstr ""

#: src/im/keyboard/keyboard.cpp:786
msgid "Completion is enabled."
msgstr ""

#: data/fcitx5-diagnose.sh:999
msgid "Config GUI for gtk${1} not found."
msgstr ""

#: data/fcitx5-diagnose.sh:995
msgid "Config GUI for gtk${1}:"
msgstr ""

#: data/fcitx5-diagnose.sh:1029
msgid "Config GUI for kde:"
msgstr ""

#: data/fcitx5-diagnose.sh:1018
msgid "Config GUI for qt not found."
msgstr ""

#: data/fcitx5-diagnose.sh:1016
msgid "Config GUI for qt:"
msgstr ""

#: data/fcitx5-diagnose.sh:1045
msgid "Config Tool Wrapper:"
msgstr ""

#: data/fcitx5-diagnose.sh:1797
msgid "Configuration:"
msgstr ""

#: src/ui/classic/xcbtraywindow.cpp:40
#: src/modules/notificationitem/dbusmenu.cpp:257
msgid "Configure"
msgstr ""

#: src/im/keyboard/keyboard.h:34 src/modules/quickphrase/quickphrase.h:29
msgid "Control"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:475
msgctxt "Key name"
msgid "Control"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:123
msgctxt "Key name"
msgid "Copy"
msgstr ""

#: data/fcitx5-diagnose.sh:840
msgid "Current ${1} settings directory is ${2} (${3})."
msgstr ""

#: data/fcitx5-diagnose.sh:808
msgid "Current locale:"
msgstr ""

#: data/fcitx5-diagnose.sh:846
msgid "Current user:"
msgstr ""

#: data/fcitx5-diagnose.sh:834
msgid "Current value of ${1} is ${2} (${3})."
msgstr ""

#: src/modules/spell/spell.h:22
msgid "Custom"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:124
msgctxt "Key name"
msgid "Cut"
msgstr ""

#: src/modules/dbus/dbus.conf.in:3
msgid "DBus"
msgstr ""

#: src/frontend/dbusfrontend/dbusfrontend.conf.in:3
msgid "DBus Frontend"
msgstr ""

#: src/modules/notificationitem/notificationitem.conf.in:4
msgid "DBus based new Freedesktop.org tray icon"
msgstr ""

#: data/fcitx5-diagnose.sh:935
msgid "DBus interface:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:126
msgctxt "Key name"
msgid "DOS"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:83
msgid "Deactivate Input Method"
msgstr ""

#: src/lib/fcitx/inputmethodmanager.cpp:130 src/lib/fcitx/instance.cpp:659
#: src/ui/classic/themes/default/theme.conf.in:3
msgid "Default"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:119
msgid "Default Next Candidate"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:103
msgid "Default Next page"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:113
msgid "Default Previous Candidate"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:91
msgid "Default Previous page"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:151
msgid "Default page size"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:195
msgctxt "Key name"
msgid "Delete"
msgstr ""

#: src/ui/classic/theme.h:152
msgid "Description"
msgstr ""

#: data/fcitx5-diagnose.sh:772
msgid "Desktop Environment:"
msgstr ""

#: data/fcitx5-diagnose.sh:777
msgid "Desktop environment is ${1}."
msgstr ""

#: data/fcitx5-diagnose.sh:820
msgid "Directories:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:125
msgctxt "Key name"
msgid "Display"
msgstr ""

#: src/modules/notifications/notifications.cpp:203
msgid "Do not show again"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:127
msgctxt "Key name"
msgid "Documents"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:50
msgctxt "Key name"
msgid "Down"
msgstr ""

#: src/modules/quickphrase/quickphrase.h:47
msgid "Editor"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:213
msgctxt "Key name"
msgid "Eisu Shift"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:214
msgctxt "Key name"
msgid "Eisu toggle"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:102
msgctxt "Key name"
msgid "Eject"
msgstr ""

#: src/modules/emoji/emoji.conf.in:3
msgid "Emoji"
msgstr ""

#: src/im/keyboard/longpress.h:17
msgid "Enable"
msgstr ""

#: src/ui/classic/theme.h:104
msgid "Enable Blur on KWin"
msgstr ""

#: src/modules/quickphrase/quickphrase.h:43
msgid "Enable Spell check"
msgstr ""

#: src/im/keyboard/keyboard.h:52
msgid "Enable emoji in hint"
msgstr ""

#: src/im/keyboard/keyboard.h:55
msgid "Enable emoji in quickphrase"
msgstr ""

#: src/modules/spell/spell.h:23
msgid "Enchant"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:46
msgctxt "Key name"
msgid "End"
msgstr ""

#: src/im/keyboard/longpress.h:26
msgid "Entries"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:50
msgid "Enumerate Input Method Backward"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:43
msgid "Enumerate Input Method Forward"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:67
msgid "Enumerate Input Method Group Backward"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:60
msgid "Enumerate Input Method Group Forward"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:32
msgid "Enumerate when press trigger key repeatedly"
msgstr ""

#: data/fcitx5-diagnose.sh:1075
msgid ""
"Environment variable ${1} is \"${2}\" instead of \"${3}\". Please check if "
"you have exported it incorrectly in any of your init files."
msgstr ""

#: data/fcitx5-diagnose.sh:826
msgid "Environment variable ${1} is not set."
msgstr ""

#: data/fcitx5-diagnose.sh:1069
msgid "Environment variable ${1} is set to \"${2}\" correctly."
msgstr ""

#: data/fcitx5-diagnose.sh:830
msgid "Environment variable ${1} is set to ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:785
msgid "Environment:"
msgstr ""

#: data/fcitx5-diagnose.sh:812
msgid "Error occurs when running ${1}. Please check your locale settings."
msgstr ""

#: src/lib/fcitx-utils/key.cpp:196
msgctxt "Key name"
msgid "Escape"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:230
msgctxt "Key name"
msgid "Execute"
msgstr ""

#: src/ui/classic/xcbtraywindow.cpp:42
#: src/modules/notificationitem/dbusmenu.cpp:270
msgid "Exit"
msgstr ""

#: data/fcitx5-diagnose.sh:1438 data/fcitx5-diagnose.sh:1491
msgid "Failed to find ${1} in immodule cache at ${2}"
msgstr ""

#: data/fcitx5-diagnose.sh:1354
msgid "Failed to find ${1} in the output of ${2}"
msgstr ""

#: src/modules/quickphrase/quickphrase.h:45
msgid "Fallback Spell check language"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:72
msgctxt "Key name"
msgid "Favorites"
msgstr ""

#: data/org.fcitx.Fcitx5.desktop.in.in:3
#: data/org.fcitx.Fcitx5.metainfo.xml.in:6
msgid "Fcitx 5"
msgstr ""

#: data/fcitx5-configtool.desktop.in.in:3
msgid "Fcitx 5 Configuration"
msgstr ""

#: data/fcitx5-diagnose.sh:1535
msgid "Fcitx Addons:"
msgstr ""

#: data/fcitx5-diagnose.sh:1044
msgid "Fcitx Configure UI:"
msgstr ""

#: data/fcitx5-diagnose.sh:887
msgid "Fcitx State:"
msgstr ""

#: data/org.fcitx.Fcitx5.metainfo.xml.in:9
msgid ""
"Fcitx is an input method framework. It can help you to type your own "
"language. It also features variant choice of addons that improve your typing "
"experience."
msgstr ""

#: data/fcitx5-diagnose.sh:901
msgid "Fcitx version: ${1}"
msgstr ""

#: src/frontend/fcitx4frontend/fcitx4frontend.conf.in:3
msgid "Fcitx4 Frontend"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:112
msgctxt "Key name"
msgid "Finance"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:190
msgctxt "Key name"
msgid "Find"
msgstr ""

#: src/ui/classic/classicui.h:98
msgid "Font"
msgstr ""

#: src/ui/classic/classicui.h:109
msgid ""
"For example, display character with Chinese variant when using Pinyin and "
"Japanese variant when using Anthy. The font configuration needs to support "
"this to use this feature."
msgstr ""

#: src/lib/fcitx-utils/key.cpp:59
msgctxt "Key name"
msgid "Forward"
msgstr ""

#: data/fcitx5-diagnose.sh:1214
msgid "Found ${1} ${2} module: ${3}."
msgstr ""

#: data/fcitx5-diagnose.sh:921
msgid "Found ${1} ${2} process:"
msgstr ""

#: data/fcitx5-diagnose.sh:919
msgid "Found ${1} ${2} processes:"
msgstr ""

#: data/fcitx5-diagnose.sh:1555
msgid "Found ${1} addon config directory: ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:896 data/fcitx5-diagnose.sh:1008
#: data/fcitx5-diagnose.sh:1021 data/fcitx5-diagnose.sh:1049
msgid "Found ${1} at ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:1600
msgid "Found ${1} disabled addons:"
msgstr ""

#: data/fcitx5-diagnose.sh:1595
msgid "Found ${1} enabled addons:"
msgstr ""

#: data/fcitx5-diagnose.sh:1637
msgid "Found ${1} enabled user interface addons:"
msgstr ""

#: data/fcitx5-diagnose.sh:1348 data/fcitx5-diagnose.sh:1432
#: data/fcitx5-diagnose.sh:1485
msgid "Found ${1} im modules for gtk ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:1035
msgid "Found ${1} kcm module."
msgstr ""

#: data/fcitx5-diagnose.sh:1340
msgid "Found ${2} for unknown gtk version at ${1}."
msgstr ""

#: data/fcitx5-diagnose.sh:1332
msgid "Found ${3} for gtk ${1} at ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:1203 data/fcitx5-diagnose.sh:1208
msgid "Found ${3} im module for ${2}: ${1}."
msgstr ""

#: data/fcitx5-diagnose.sh:1425
msgid "Found immodule cache for unknown gtk version at ${1}."
msgstr ""

#: data/fcitx5-diagnose.sh:1417 data/fcitx5-diagnose.sh:1478
msgid "Found immodules cache for gtk ${1} at ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:1217
msgid "Found unknown ${1} qt module: ${2}."
msgstr ""

#: src/modules/notifications/notifications.conf.in:4
msgid "Freedesktop.org Notification Support"
msgstr ""

#: data/fcitx5-diagnose.sh:1790
msgid "Frontends setup:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:130
msgctxt "Key name"
msgid "Game"
msgstr ""

#: src/ui/classic/theme.h:162
msgid "General"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:131
msgctxt "Key name"
msgid "Go"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:185
msgctxt "Key name"
msgid "Green"
msgstr ""

#: src/ui/classic/xcbtraywindow.cpp:36
#: src/modules/notificationitem/dbusmenu.cpp:247
msgid "Group"
msgstr ""

#: src/lib/fcitx/instance.cpp:357
msgid "Group {0}: {1}"
msgstr ""

#: src/lib/fcitx/instance.cpp:661
msgid "Group {}"
msgstr ""

#: data/fcitx5-diagnose.sh:1293
msgid "Gtk ${1} immodule file ${2} does not exist."
msgstr ""

#: data/fcitx5-diagnose.sh:1515
msgid "Gtk IM module cache:"
msgstr ""

#: data/fcitx5-diagnose.sh:1521
msgid "Gtk IM module files:"
msgstr ""

#: data/fcitx5-diagnose.sh:708
msgid "Hall of Shame for Linux IME Support"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:218
msgctxt "Key name"
msgid "Hangul"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:225
msgctxt "Key name"
msgid "Hangul Banja"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:220
msgctxt "Key name"
msgid "Hangul End"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:221
msgctxt "Key name"
msgid "Hangul Hanja"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:222
msgctxt "Key name"
msgid "Hangul Jamo"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:224
msgctxt "Key name"
msgid "Hangul Jeonja"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:227
msgctxt "Key name"
msgid "Hangul PostHanja"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:226
msgctxt "Key name"
msgid "Hangul PreHanja"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:223
msgctxt "Key name"
msgid "Hangul Romaja"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:228
msgctxt "Key name"
msgid "Hangul Special"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:219
msgctxt "Key name"
msgid "Hangul Start"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:207
msgctxt "Key name"
msgid "Hankaku"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:57
msgctxt "Key name"
msgid "Help"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:201
msgctxt "Key name"
msgid "Henkan"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:178
msgctxt "Key name"
msgid "Hibernate"
msgstr ""

#: src/modules/notifications/notifications.h:28
msgid "Hidden Notifications"
msgstr ""

#: src/ui/classic/theme.h:80
msgid "Hide overlay if size does not fit"
msgstr ""

#: src/ui/classic/theme.h:118 src/ui/classic/theme.h:137
msgid "Highlight Background"
msgstr ""

#: src/ui/classic/theme.h:113
msgid "Highlight Background color"
msgstr ""

#: src/ui/classic/theme.h:102 src/ui/classic/theme.h:131
msgid "Highlight Candidate Color"
msgstr ""

#: src/ui/classic/theme.h:90
msgid "Highlight Click Margin"
msgstr ""

#: src/ui/classic/theme.h:111
msgid "Highlight text color"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:203
msgctxt "Key name"
msgid "Hiragana"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:205
msgctxt "Key name"
msgid "Hiragana Katakana"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:108
msgctxt "Key name"
msgid "History"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:45
msgctxt "Key name"
msgid "Home"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:140
msgctxt "Key name"
msgid "Home Office"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:71
msgctxt "Key name"
msgid "Home Page"
msgstr ""

#: data/fcitx5-diagnose.sh:822
msgid "Home:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:110
msgctxt "Key name"
msgid "Hot Links"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:162
msgid "Hotkey"
msgstr ""

#: src/modules/imselector/imselector.h:35
msgid "Hotkey for switching to the N-th input method"
msgstr ""

#: src/modules/imselector/imselector.h:44
msgid ""
"Hotkey for switching to the N-th input method for only current input context"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:479
msgctxt "Key name"
msgid "Hyper"
msgstr ""

#: src/frontend/ibusfrontend/ibusfrontend.conf.in:3
msgid "IBus Frontend"
msgstr ""

#: data/fcitx5-diagnose.sh:697
msgid ""
"If you are using ${1}, you may want to uninstall ${2} or remove ${3} in "
"order to use any input method other than ${2}. See ${link} for more detail "
"as well as alternative solutions."
msgstr ""

#: data/fcitx5-diagnose.sh:695
msgid ""
"If you are using ${1}, you may want to uninstall ${2}, remove ${3} or use "
"the command ${g36_disable_ibus} to disable IBus integration in order to use "
"any input method other than ${2}. See ${link} for more detail."
msgstr ""

#: src/ui/classic/theme.h:93
msgid "Image"
msgstr ""

#: src/im/keyboard/keyboard.cpp:789 src/ui/classic/xcbtraywindow.cpp:38
#: src/lib/fcitx/instance.cpp:730 src/lib/fcitx/instance.cpp:900
#: src/modules/notificationitem/dbusmenu.cpp:241
#: src/modules/notificationitem/notificationitem.cpp:128
#: src/modules/xcb/xcbconnection.cpp:388 data/org.fcitx.Fcitx5.desktop.in.in:4
#: data/org.fcitx.Fcitx5.metainfo.xml.in:7
msgid "Input Method"
msgstr ""

#: data/fcitx5-configtool.desktop.in.in:4
msgid "Input Method Configuration"
msgstr ""

#: data/fcitx5-diagnose.sh:672
msgid "Input Method Related Environment Variables: "
msgstr ""

#: src/ui/classic/theme.h:164
msgid "Input Panel"
msgstr ""

#: src/modules/imselector/imselector.conf.in:3
msgid "Input method selector"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:95 src/lib/fcitx/globalconfig.cpp:107
msgid ""
"Input methods may have different setup in their own configuration. This is "
"commonly used by modules like clipboard or quickphrase."
msgstr ""

#: src/lib/fcitx-utils/key.cpp:194
msgctxt "Key name"
msgid "Insert"
msgstr ""

#: data/fcitx5-diagnose.sh:1567
msgid "Invalid addon config file ${1}."
msgstr ""

#: src/ui/kimpanel/kimpanel.conf.in:3
msgid "KDE Input Method Panel"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:211
msgctxt "Key name"
msgid "Kana Lock"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:212
msgctxt "Key name"
msgid "Kana Shift"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:199
msgctxt "Key name"
msgid "Kanji"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:204
msgctxt "Key name"
msgid "Katakana"
msgstr ""

#: src/im/keyboard/longpress.h:16
msgid "Key"
msgstr ""

#: src/im/keyboard/keyboard.cpp:324 src/im/keyboard/keyboard.conf.in:3
msgid "Keyboard"
msgstr ""

#: src/im/keyboard/keyboard.cpp:250
msgid "Keyboard - {0}"
msgstr ""

#: src/im/keyboard/keyboard.cpp:269
msgid "Keyboard - {0} - {1}"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:99
msgctxt "Key name"
msgid "Keyboard Brightness Down"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:97
msgctxt "Key name"
msgid "Keyboard Brightness Up"
msgstr ""

#: data/fcitx5-diagnose.sh:788
msgid "Keyboard Layout:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:96
msgctxt "Key name"
msgid "Keyboard Light On/Off"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:136
msgctxt "Key name"
msgid "Keyboard Menu"
msgstr ""

#: data/fcitx5-diagnose.sh:1646
msgid "Kimpanel process:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:77
msgctxt "Key name"
msgid "Launch (0)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:78
msgctxt "Key name"
msgid "Launch (1)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:79
msgctxt "Key name"
msgid "Launch (2)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:80
msgctxt "Key name"
msgid "Launch (3)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:81
msgctxt "Key name"
msgid "Launch (4)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:82
msgctxt "Key name"
msgid "Launch (5)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:83
msgctxt "Key name"
msgid "Launch (6)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:84
msgctxt "Key name"
msgid "Launch (7)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:85
msgctxt "Key name"
msgid "Launch (8)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:86
msgctxt "Key name"
msgid "Launch (9)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:87
msgctxt "Key name"
msgid "Launch (A)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:88
msgctxt "Key name"
msgid "Launch (B)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:89
msgctxt "Key name"
msgid "Launch (C)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:90
msgctxt "Key name"
msgid "Launch (D)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:91
msgctxt "Key name"
msgid "Launch (E)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:92
msgctxt "Key name"
msgid "Launch (F)"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:76
msgctxt "Key name"
msgid "Launch Mail"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:47
msgctxt "Key name"
msgid "Left"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:30
msgctxt "Key name"
msgid "Left Alt"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:34
msgctxt "Key name"
msgid "Left Control"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:38
msgctxt "Key name"
msgid "Left Hyper"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:32
msgctxt "Key name"
msgid "Left Shift"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:36
msgctxt "Key name"
msgid "Left Super"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:106
msgctxt "Key name"
msgid "LightBulb"
msgstr ""

#: data/fcitx5-diagnose.sh:803
msgid "Locale:"
msgstr ""

#: data/fcitx5-diagnose.sh:1803
msgid "Log:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:133
msgctxt "Key name"
msgid "Logoff"
msgstr ""

#: src/im/keyboard/keyboard.h:77
msgid "Long Press behavior"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:166
msgctxt "Key name"
msgid "Mail Forward"
msgstr ""

#: src/ui/classic/theme.h:82
msgid "Margin"
msgstr ""

#: src/ui/classic/theme.h:44
msgid "Margin Bottom"
msgstr ""

#: src/ui/classic/theme.h:38
msgid "Margin Left"
msgstr ""

#: src/ui/classic/theme.h:40
msgid "Margin Right"
msgstr ""

#: src/ui/classic/theme.h:42
msgid "Margin Top"
msgstr ""

#: src/ui/classic/theme.h:120 src/ui/classic/theme.h:143
msgid "Margin around all content"
msgstr ""

#: src/ui/classic/theme.h:122 src/ui/classic/theme.h:145
msgid "Margin around text"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:134
msgctxt "Key name"
msgid "Market"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:210
msgctxt "Key name"
msgid "Massyo"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:172
msgctxt "Key name"
msgid "Media Fast Forward"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:68
msgctxt "Key name"
msgid "Media Next"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:70
msgctxt "Key name"
msgid "Media Pause"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:65
msgctxt "Key name"
msgid "Media Play"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:67
msgctxt "Key name"
msgid "Media Previous"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:69
msgctxt "Key name"
msgid "Media Record"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:114
msgctxt "Key name"
msgid "Media Rewind"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:66
msgctxt "Key name"
msgid "Media Stop"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:135
msgctxt "Key name"
msgid "Meeting"
msgstr ""

#: src/ui/classic/theme.h:165
msgid "Menu"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:56
msgctxt "Key name"
msgid "Menu"
msgstr ""

#: src/ui/classic/classicui.h:100
msgid "Menu Font"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:137
msgctxt "Key name"
msgid "Menu PB"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:164
msgctxt "Key name"
msgid "Messenger"
msgstr ""

#: src/ui/classic/theme.h:160
msgid "Metadata"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:183
msgctxt "Key name"
msgid "Microphone Mute"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:95
msgctxt "Key name"
msgid "Monitor Brightness Down"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:93
msgctxt "Key name"
msgid "Monitor Brightness Up"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:200
msgctxt "Key name"
msgid "Muhenkan"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:216
msgctxt "Key name"
msgid "Multiple Candidate"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:168
msgctxt "Key name"
msgid "Music"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:138
msgctxt "Key name"
msgid "My Sites"
msgstr ""

#: src/ui/classic/theme.h:148
msgid "Name"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:188
msgctxt "Key name"
msgid "New"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:139
msgctxt "Key name"
msgid "News"
msgstr ""

#: src/im/keyboard/keyboard.h:49
msgid "Next Candidate"
msgstr ""

#: src/ui/classic/theme.h:124
msgid "Next Page Button"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:19
msgid "No"
msgstr ""

#: src/modules/clipboard/clipboard.cpp:313
msgid "No clipboard history."
msgstr ""

#: src/im/keyboard/keyboard.h:33 src/modules/quickphrase/quickphrase.h:28
msgid "None"
msgstr ""

#: src/ui/classic/theme.h:99 src/ui/classic/theme.h:128
msgid "Normal text color"
msgstr ""

#: src/ui/kimpanel/kimpanel.cpp:360
msgid "Not available"
msgstr ""

#: data/fcitx5-diagnose.sh:688
msgid "Note for GNOME Later than 3.6"
msgstr ""

#: src/modules/notifications/notifications.conf.in:3
msgid "Notification"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:54
msgctxt "Key name"
msgid "NumLock"
msgstr ""

#: src/modules/clipboard/clipboard.h:35
msgid "Number of entries"
msgstr ""

#: src/im/keyboard/keyboard.cpp:775
msgid ""
"Only emoji support is found. To enable spell checking, you may need to "
"install spell check data for the language."
msgstr ""

#: src/lib/fcitx-utils/key.cpp:189
msgctxt "Key name"
msgid "Open"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:75
msgctxt "Key name"
msgid "Open URL"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:141
msgctxt "Key name"
msgid "Option"
msgstr ""

#: src/ui/classic/theme.h:84
msgid "Overlay Clip Margin"
msgstr ""

#: src/ui/classic/theme.h:74
msgid "Overlay Image"
msgstr ""

#: src/ui/classic/theme.h:77
msgid "Overlay X offset"
msgstr ""

#: src/ui/classic/theme.h:78
msgid "Overlay Y offset"
msgstr ""

#: src/ui/classic/theme.h:76
msgid "Overlay position"
msgstr ""

#: data/fcitx5-diagnose.sh:943
msgid "Owner of DBus name ${1} is ${2}."
msgstr ""

#: data/fcitx5-diagnose.sh:951
msgid "PID of DBus name ${1} owner is ${2}."
msgstr ""

#: src/im/keyboard/keyboard.h:38
msgid "Page size"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:142
msgctxt "Key name"
msgid "Paste"
msgstr ""

#: src/modules/clipboard/clipboard.h:33
msgid "Paste Primary"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:44
msgctxt "Key name"
msgid "Pause"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:52
msgctxt "Key name"
msgid "PgDown"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:51
msgctxt "Key name"
msgid "PgUp"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:143
msgctxt "Key name"
msgid "Phone"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:167
msgctxt "Key name"
msgid "Pictures"
msgstr ""

#: data/fcitx5-diagnose.sh:892
msgid "Please check ${1} for how to install fcitx5."
msgstr ""

#: data/fcitx5-diagnose.sh:914
msgid ""
"Please check the Configure link of your distribution in ${1} for how to "
"setup ${2} autostart."
msgstr ""

#: data/fcitx5-diagnose.sh:669
msgid ""
"Please set environment variable ${env_name} to \"${value}\" using the tool "
"your distribution provides or add ${1} to your ${2}. See ${link}."
msgstr ""

#: src/lib/fcitx-utils/key.cpp:181
msgctxt "Key name"
msgid "Power Down"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:100
msgctxt "Key name"
msgid "Power Off"
msgstr ""

#: src/lib/fcitx/instance.cpp:900
msgid "Preedit"
msgstr ""

#: src/lib/fcitx/instance.cpp:902
msgid "Preedit disabled"
msgstr ""

#: src/lib/fcitx/instance.cpp:901
msgid "Preedit enabled"
msgstr ""

#: src/modules/spell/spell.h:22
msgid "Presage"
msgstr ""

#: src/im/keyboard/keyboard.h:43
msgid "Prev Candidate"
msgstr ""

#: src/ui/classic/theme.h:123
msgid "Prev Page Button"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:217
msgctxt "Key name"
msgid "Previous Candidate"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:193
msgctxt "Key name"
msgid "Print Screen"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:19
msgid "Program"
msgstr ""

#: src/modules/spell/spell.h:38
msgid "Providers"
msgstr ""

#: data/fcitx5-diagnose.sh:1189
msgid "Qt IM module files:"
msgstr ""

#: src/modules/quickphrase/quickphrase.conf.in:3
msgid "Quick Phrase"
msgstr ""

#: src/modules/quickphrase/quickphrase.cpp:395
msgid "Quick Phrase: "
msgstr ""

#: src/lib/fcitx-utils/key.cpp:184
msgctxt "Key name"
msgid "Red"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:192
msgctxt "Key name"
msgid "Redo"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:61
msgctxt "Key name"
msgid "Refresh"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:145
msgctxt "Key name"
msgid "Reload"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:144
msgctxt "Key name"
msgid "Reply"
msgstr ""

#: src/ui/classic/xcbtraywindow.cpp:41
#: src/modules/notificationitem/dbusmenu.cpp:264
msgid "Restart"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:43
msgctxt "Key name"
msgid "Return"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:49
msgctxt "Key name"
msgid "Right"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:31
msgctxt "Key name"
msgid "Right Alt"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:35
msgctxt "Key name"
msgid "Right Control"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:39
msgctxt "Key name"
msgid "Right Hyper"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:33
msgctxt "Key name"
msgid "Right Shift"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:37
msgctxt "Key name"
msgid "Right Super"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:202
msgctxt "Key name"
msgid "Romaji"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:146
msgctxt "Key name"
msgid "Rotate Windows"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:148
msgctxt "Key name"
msgid "Rotation KB"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:147
msgctxt "Key name"
msgid "Rotation PB"
msgstr ""

#: data/fcitx5-diagnose.sh:868
msgid "Running as root:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:149
msgctxt "Key name"
msgid "Save"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:103
msgctxt "Key name"
msgid "Screensaver"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:55
msgctxt "Key name"
msgid "ScrollLock"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:73
msgctxt "Key name"
msgid "Search"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:198
msgctxt "Key name"
msgid "Select"
msgstr ""

#: src/modules/imselector/imselector.cpp:264
msgid "Select input method:"
msgstr ""

#: src/modules/imselector/imselector.cpp:263
msgid "Select local input method:"
msgstr ""

#: src/modules/imselector/imselector.conf.in:4
msgid "Select specific input method via keyboard"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:150
msgctxt "Key name"
msgid "Send"
msgstr ""

#: src/ui/classic/theme.h:139
msgid "Separator Background"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:133
msgid "Share Input State"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:477
msgctxt "Key name"
msgid "Shift"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:107
msgctxt "Key name"
msgid "Shop"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:143
msgid "Show Input Method Information when changing focus"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:140
msgid "Show Input Method Information when switch input method"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:146
msgid "Show compact input method information"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:149
msgid "Show first input method information"
msgstr ""

#: src/modules/notificationitem/notificationitem.h:26
msgid "Show label when using keyboard or icon unavailable"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:136
msgid "Show preedit in application"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:56
msgid "Skip first input method while enumerating"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:105
msgctxt "Key name"
msgid "Sleep"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:40
msgctxt "Key name"
msgid "Space"
msgstr ""

#: src/ui/classic/theme.h:133
msgid "Spacing"
msgstr ""

#: src/modules/spell/spell.conf.in:3
msgid "Spell"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:151
msgctxt "Key name"
msgid "Spellchecker"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:152
msgctxt "Key name"
msgid "Split Screen"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:128
msgctxt "Key name"
msgid "Spreadsheet"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:74
msgctxt "Key name"
msgid "Standby"
msgstr ""

#: data/org.fcitx.Fcitx5.desktop.in.in:5
msgid "Start Input Method"
msgstr ""

#: src/modules/notificationitem/notificationitem.conf.in:3
msgid "Status Notifier"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:60
msgctxt "Key name"
msgid "Stop"
msgstr ""

#: src/ui/classic/theme.h:141
msgid "Sub Menu"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:175
msgctxt "Key name"
msgid "Subtitle"
msgstr ""

#: src/im/keyboard/keyboard.h:34 src/modules/quickphrase/quickphrase.h:29
msgid "Super"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:478
msgctxt "Key name"
msgid "Super"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:153
msgctxt "Key name"
msgid "Support"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:182
msgctxt "Key name"
msgid "Suspend"
msgstr ""

#: src/lib/fcitx/instance.cpp:731 src/modules/xcb/xcbconnection.cpp:389
msgid "Switch group"
msgstr ""

#: src/modules/xcb/xcbconnection.cpp:390
msgid "Switch group to {0}"
msgstr ""

#: src/lib/fcitx/instance.cpp:732
msgid "Switched group to {0}"
msgstr ""

#: data/fcitx5-diagnose.sh:744
msgid "System Info:"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:197
msgctxt "Key name"
msgid "System Request"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:41
msgctxt "Key name"
msgid "Tab"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:154
msgctxt "Key name"
msgid "Task Panel"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:36
msgid "Temporally switch between first and current Input Method"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:155
msgctxt "Key name"
msgid "Terminal"
msgstr ""

#: src/modules/imselector/imselector.h:40
#: src/modules/imselector/imselector.h:50
msgid "The n-th hotkey in the list selects the n-th input method."
msgstr ""

#: data/fcitx5-diagnose.sh:847
msgid "The script is run as ${1} (${2})."
msgstr ""

#: src/ui/classic/classicui.h:114
msgid "Theme"
msgstr ""

#: src/ui/classic/classicui.h:77
msgid "This is only effective when the tray icon is xembed."
msgstr ""

#: src/ui/classic/theme.h:57 src/ui/classic/theme.h:65
msgid "This option is only effective if image is not set."
msgstr ""

#: src/ui/classic/theme.h:73
msgid "This value should be less than any of margin value."
msgstr ""

#: src/lib/fcitx-utils/key.cpp:177
msgctxt "Key name"
msgid "Time"
msgstr ""

#: data/fcitx5-diagnose.sh:705
#, sh-format
msgid ""
"To see some application specific problems you may have when using xim, check "
"${link1}. For other more general problems of using XIM including application "
"freezing, see ${link2}."
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:124
msgid "Toggle embedded preedit"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:156
msgctxt "Key name"
msgid "Tools"
msgstr ""

#: src/ui/classic/theme.h:30
msgid "Top Center"
msgstr ""

#: src/ui/classic/theme.h:30
msgid "Top Left"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:180
msgctxt "Key name"
msgid "Top Menu"
msgstr ""

#: src/ui/classic/theme.h:31
msgid "Top Right"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:233
msgctxt "Key name"
msgid "Touchpad Off"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:232
msgctxt "Key name"
msgid "Touchpad On"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:231
msgctxt "Key name"
msgid "Touchpad Toggle"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:209
msgctxt "Key name"
msgid "Touroku"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:157
msgctxt "Key name"
msgid "Travel"
msgstr ""

#: src/ui/classic/theme.h:156
msgid "Tray Font"
msgstr ""

#: src/lib/fcitx/globalconfig.cpp:26
msgid "Trigger Input Method"
msgstr ""

#: src/modules/imselector/imselector.h:25
#: src/modules/quickphrase/quickphrase.h:36
#: src/modules/clipboard/clipboard.h:29
msgid "Trigger Key"
msgstr ""

#: src/modules/imselector/imselector.h:29
msgid "Trigger Key for only current input context"
msgstr ""

#: src/im/keyboard/keyboard.h:61
msgid "Trigger hint mode"
msgstr ""

#: src/im/keyboard/keyboard.h:66
msgid "Trigger hint mode for one time"
msgstr ""

#: src/im/keyboard/keyboard.h:70
msgid "Type special characters with long press"
msgstr ""

#: data/org.fcitx.Fcitx5.metainfo.xml.in:20
msgid "Typing with Fcitx and Kimpanel"
msgstr ""

#: data/fcitx5-diagnose.sh:959
msgid "Unable to find a program to check dbus."
msgstr ""

#: src/lib/fcitx-utils/key.cpp:191
msgctxt "Key name"
msgid "Undo"
msgstr ""

#: src/modules/unicode/unicode.conf.in:3
msgid "Unicode"
msgstr ""

#: src/modules/unicode/unicode.cpp:322
msgid "Unicode: "
msgstr ""

#: src/lib/fcitx-utils/key.cpp:48
msgctxt "Key name"
msgid "Up"
msgstr ""

#: src/frontend/xim/xim.h:33
msgid "Use On The Spot Style (Needs restarting)"
msgstr ""

#: src/ui/classic/classicui.h:91
msgid "Use Per Screen DPI"
msgstr ""

#: src/ui/classic/theme.h:108
msgid "Use all horizontal space for highlight when it is vertical list"
msgstr ""

#: src/ui/classic/classicui.h:105
msgid "Use input method langauge to display text"
msgstr ""

#: src/ui/classic/classicui.h:94
msgid "Use mouse wheel to go to prev or next page"
msgstr ""

#: data/fcitx5-diagnose.sh:1633
msgid "User Interface:"
msgstr ""

#: data/fcitx5-diagnose.sh:938
msgid "Using ${1} to check dbus."
msgstr ""

#: src/ui/classic/theme.h:149
msgid "Version"
msgstr ""

#: data/fcitx5-diagnose.sh:1337 data/fcitx5-diagnose.sh:1421
msgid "Version Line:"
msgstr ""

#: src/ui/classic/classicui.h:90
msgid "Vertical Candidate List"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:158
msgctxt "Key name"
msgid "Video"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:179
msgctxt "Key name"
msgid "View"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:62
msgctxt "Key name"
msgid "Volume Down"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:63
msgctxt "Key name"
msgid "Volume Mute"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:64
msgctxt "Key name"
msgid "Volume Up"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:104
msgctxt "Key name"
msgid "WWW"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:101
msgctxt "Key name"
msgid "Wake Up"
msgstr ""

#: src/modules/wayland/wayland.conf.in:3
msgid "Wayland"
msgstr ""

#: src/frontend/waylandim/waylandim.conf.in:3
msgid "Wayland Input method frontend"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:165
msgctxt "Key name"
msgid "WebCam"
msgstr ""

#: data/fcitx5-diagnose.sh:878
msgid "Why is it bad to run as root"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:171
msgctxt "Key name"
msgid "Wireless"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:159
msgctxt "Key name"
msgid "Word Processor"
msgstr ""

#: src/frontend/xim/xim.conf.in:3
msgid "X Input Method Frontend"
msgstr ""

#: src/modules/xcb/xcb.conf.in:3
msgid "XCB"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:160
msgctxt "Key name"
msgid "XFer"
msgstr ""

#: data/fcitx5-diagnose.sh:1136
msgid "XIM encoding:"
msgstr ""

#: data/fcitx5-diagnose.sh:1131
msgid "XIM for Emacs:"
msgstr ""

#: data/fcitx5-diagnose.sh:1107
msgid "XIM_SERVERS on root window:"
msgstr ""

#: data/fcitx5-diagnose.sh:1084
msgid "XMODIFIERS is not set"
msgstr ""

#: data/fcitx5-diagnose.sh:1105
msgid "Xim Server Name from Environment variable is ${1}."
msgstr ""

#: data/fcitx5-diagnose.sh:1117
msgid "Xim server name is the same with that set in the environment variable."
msgstr ""

#: data/fcitx5-diagnose.sh:1119
msgid ""
"Xim server name: \"${1}\" is different from that set in the environment "
"variable: \"${2}\"."
msgstr ""

#: src/lib/fcitx-utils/key.cpp:186
msgctxt "Key name"
msgid "Yellow"
msgstr ""

#: data/fcitx5-diagnose.sh:876
msgid ""
"You are probably logging in as ${1} or using ${2} to run this script. This "
"either means you have security problems or the result of this script may not "
"be accurate. See ${3} or ${4} for more information."
msgstr ""

#: data/fcitx5-diagnose.sh:871
msgid ""
"You are probably using ${1} to run this script. This means the result of "
"this script may not be accurate. See ${2} for more information."
msgstr ""

#: data/fcitx5-diagnose.sh:1158
msgid "You are using xim in ${1} programs."
msgstr ""

#: data/fcitx5-diagnose.sh:1163
msgid "You may have trouble using fcitx in ${1} programs."
msgstr ""

#: data/fcitx5-configtool.sh:131
msgid ""
"You're currently running Fcitx with GUI, but fcitx5-config-qt couldn't be "
"found. Now it will open config directory."
msgstr ""

#: data/fcitx5-configtool.sh:128
msgid ""
"You're currently running KDE, but KCModule for fcitx couldn't be found, the "
"package name of this KCModule is usually kcm-fcitx or kde-config-fcitx5. Now "
"it will open config directory."
msgstr ""

#: data/fcitx5-diagnose.sh:1133
msgid ""
"Your LC_CTYPE is set to ${1} instead of one of zh, ja, ko. You may not be "
"able to use input method in emacs because of an really old emacs bug that "
"upstream refuse to fix for years."
msgstr ""

#: data/fcitx5-diagnose.sh:1138
msgid ""
"Your LC_CTYPE is set to ${1} whose encoding is not UTF-8. You may have "
"trouble committing strings using XIM."
msgstr ""

#: src/lib/fcitx-utils/key.cpp:206
msgctxt "Key name"
msgid "Zenkaku"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:208
msgctxt "Key name"
msgid "Zenkaku Hankaku"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:161
msgctxt "Key name"
msgid "Zoom In"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:162
msgctxt "Key name"
msgid "Zoom Out"
msgstr ""

#: data/fcitx5-diagnose.sh:888
msgid "executable:"
msgstr ""

#: data/fcitx5-diagnose.sh:712
msgid "here"
msgstr ""

#: src/lib/fcitx-utils/key.cpp:132
msgctxt "Key name"
msgid "iTouch"
msgstr ""

#: data/fcitx5-diagnose.sh:902
msgid "process:"
msgstr ""

#: data/fcitx5-diagnose.sh:873 data/fcitx5-diagnose.sh:879
msgid "sudo environment variables"
msgstr ""

#: data/fcitx5-diagnose.sh:898
msgid "version:"
msgstr ""

#: src/im/keyboard/keyboard.cpp:301
msgid "{0} (Not Available)"
msgstr ""

#: src/lib/fcitx/instance.cpp:351
msgid "{0} (Not available)"
msgstr ""

#: src/lib/fcitx/instance.cpp:348
msgid "{0} ({1})"
msgstr ""