File: si.po

package info (click to toggle)
gucharmap 1%3A11.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,948 kB
  • sloc: ansic: 8,549; perl: 788; makefile: 438; xml: 126; sh: 10
file content (1178 lines) | stat: -rw-r--r-- 26,036 bytes parent folder | download | duplicates (6)
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
# translation of si.po to Sinhala
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Danishka Navin <snavin@redhat.com>, 2007.
msgid ""
msgstr ""
"Project-Id-Version: si\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-08-29 03:36+0100\n"
"PO-Revision-Date: 2007-08-29 12:45+0530\n"
"Last-Translator: Danishka Navin <snavin@redhat.com>\n"
"Language-Team: Sinhala <en@li.org>\n"
"Language: si\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#: ../gucharmap.desktop.in.h:1 ../gucharmap/gucharmap-window.c:834
msgid "Character Map"
msgstr ""

#: ../gucharmap.desktop.in.h:2
msgid "Insert special characters into documents"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:268
msgid "Canonical decomposition:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:309 ../gucharmap/gucharmap-table.c:295
msgid "[not a printable character]"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:323
msgid "General Character Properties"
msgstr ""

#. character category
#: ../gucharmap/gucharmap-charmap.c:326
msgid "Unicode category:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:335
msgid "Various Useful Representations"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:345
msgid "UTF-8:"
msgstr "UTF-8:"

#: ../gucharmap/gucharmap-charmap.c:353
msgid "UTF-16:"
msgstr "UTF-16:"

#: ../gucharmap/gucharmap-charmap.c:364
msgid "C octal escaped UTF-8:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:374
msgid "XML decimal entity:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:385
msgid "Annotations and Cross References"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:392
msgid "Alias names:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:401
msgid "Notes:"
msgstr "සටහන්:"

#: ../gucharmap/gucharmap-charmap.c:410
msgid "See also:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:419
msgid "Approximate equivalents:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:428
msgid "Equivalents:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:444
msgid "CJK Ideograph Information"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:449
msgid "Definition in English:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:454
msgid "Mandarin Pronunciation:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:459
msgid "Cantonese Pronunciation:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:464
msgid "Japanese On Pronunciation:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:469
msgid "Japanese Kun Pronunciation:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:474
msgid "Tang Pronunciation:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:479
msgid "Korean Pronunciation:"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:780
msgid "Characte_r Table"
msgstr ""

#: ../gucharmap/gucharmap-charmap.c:783
msgid "Character _Details"
msgstr ""

#: ../gucharmap/gucharmap-mini-fontsel.c:205
msgid "Font"
msgstr "අක්‍ෂර"

#: ../gucharmap/gucharmap-mini-fontsel.c:212
msgid "Font Family"
msgstr ""

#: ../gucharmap/gucharmap-mini-fontsel.c:232
msgid "Font Size"
msgstr "අක්‍ෂර ප්‍රමාණය"

#. Unicode assigns "Common" as the script name for any character not
#. * specifically listed in Scripts.txt
#: ../gucharmap/gucharmap-script-codepoint-list.c:458
#: ../gucharmap/unicode-scripts.h:26
msgid "Common"
msgstr "පොදු"

#: ../gucharmap/gucharmap-table.c:1517
msgid "Unknown character, unable to identify."
msgstr ""

#: ../gucharmap/gucharmap-table.c:1519
#: ../gucharmap/gucharmap-search-dialog.c:596
msgid "Not found."
msgstr ""

#: ../gucharmap/gucharmap-table.c:1522
msgid "Character found."
msgstr ""

#: ../gucharmap/gucharmap-table.c:1586
msgid "Character Table"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:96
msgid "<Non Private Use High Surrogate>"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:98
msgid "<Private Use High Surrogate>"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:100
msgid "<Low Surrogate>"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:102
msgid "<Private Use>"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:104
msgid "<Plane 15 Private Use>"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:106
msgid "<Plane 16 Private Use>"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:111
msgid "<not assigned>"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:124
msgid "Other, Control"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:125
msgid "Other, Format"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:126
msgid "Other, Not Assigned"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:127
msgid "Other, Private Use"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:128
msgid "Other, Surrogate"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:129
msgid "Letter, Lowercase"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:130
msgid "Letter, Modifier"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:131
msgid "Letter, Other"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:132
msgid "Letter, Titlecase"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:133
msgid "Letter, Uppercase"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:134
msgid "Mark, Spacing Combining"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:135
msgid "Mark, Enclosing"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:136
msgid "Mark, Non-Spacing"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:137
msgid "Number, Decimal Digit"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:138
msgid "Number, Letter"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:139
msgid "Number, Other"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:140
msgid "Punctuation, Connector"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:141
msgid "Punctuation, Dash"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:142
msgid "Punctuation, Close"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:143
msgid "Punctuation, Final Quote"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:144
msgid "Punctuation, Initial Quote"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:145
msgid "Punctuation, Other"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:146
msgid "Punctuation, Open"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:147
msgid "Symbol, Currency"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:148
msgid "Symbol, Modifier"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:149
msgid "Symbol, Math"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:150
msgid "Symbol, Other"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:151
msgid "Separator, Line"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:152
msgid "Separator, Paragraph"
msgstr ""

#: ../gucharmap/gucharmap-unicode-info.c:153
msgid "Separator, Space"
msgstr ""

#: ../gucharmap/gucharmap-window.c:190
msgid "Searching..."
msgstr "සොයයමින්..."

#: ../gucharmap/gucharmap-window.c:337
msgid ""
"Gucharmap is free software; you can redistribute it and/or modify it under "
"the terms of the GNU General Public License as published by the Free "
"Software Foundation; either version 2 of the License, or (at your option) "
"any later version."
msgstr ""

#: ../gucharmap/gucharmap-window.c:341
msgid ""
"Permission is hereby granted, free of charge, to any person obtaining a copy "
"of the Unicode data files to deal in them without restriction, including "
"without limitation the rights to use, copy, modify, merge, publish, "
"distribute, and/or sell copies."
msgstr ""

#: ../gucharmap/gucharmap-window.c:345
msgid ""
"Gucharmap and the Unicode data files are distributed in the hope that they "
"will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty "
"of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General "
"Public License and Unicode Copyright for more details."
msgstr ""

#: ../gucharmap/gucharmap-window.c:349
msgid ""
"You should have received a copy of the GNU General Public License along with "
"Gucharmap; if not, write to the Free Software Foundation, Inc., 59 Temple "
"Place, Suite 330, Boston, MA  02111-1307  USA"
msgstr ""

#: ../gucharmap/gucharmap-window.c:352
msgid ""
"Also you should have received a copy of the Unicode Copyright along with "
"Gucharmap; you can always find it at Unicode's website: http://www.unicode."
"org/copyright.html"
msgstr ""

#: ../gucharmap/gucharmap-window.c:363
msgid ""
"GNOME Character Map\n"
"based on the Unicode Character Database"
msgstr ""

#: ../gucharmap/gucharmap-window.c:369 ../gucharmap/main.c:77
msgid "Gucharmap"
msgstr ""

#: ../gucharmap/gucharmap-window.c:371
msgid "translator-credits"
msgstr "පරිවර්තන ස්තුතිය"

#: ../gucharmap/gucharmap-window.c:468 ../gucharmap/gucharmap-window.c:513
msgid "Next Script"
msgstr ""

#: ../gucharmap/gucharmap-window.c:468 ../gucharmap/gucharmap-window.c:515
msgid "Previous Script"
msgstr ""

#: ../gucharmap/gucharmap-window.c:473 ../gucharmap/gucharmap-window.c:627
msgid "Next Block"
msgstr ""

#: ../gucharmap/gucharmap-window.c:473 ../gucharmap/gucharmap-window.c:627
msgid "Previous Block"
msgstr ""

#: ../gucharmap/gucharmap-window.c:486
msgid "_File"
msgstr "ගොනු (_F)"

#: ../gucharmap/gucharmap-window.c:487
msgid "_View"
msgstr "දසුන (_V)"

#: ../gucharmap/gucharmap-window.c:488
msgid "_Search"
msgstr "සොයන්න (_S)"

#: ../gucharmap/gucharmap-window.c:489
msgid "_Go"
msgstr "යන්න (_G)"

#: ../gucharmap/gucharmap-window.c:490
msgid "_Help"
msgstr "උදව් (_H)"

#: ../gucharmap/gucharmap-window.c:492
msgid "_Quit"
msgstr "ඉවත් වන්න (_Q)"

#: ../gucharmap/gucharmap-window.c:495
msgid "Zoom _In"
msgstr "විශාල කරන්න (_I)"

#: ../gucharmap/gucharmap-window.c:497
msgid "Zoom _Out"
msgstr "කුඩා කරන්න (_O)"

#: ../gucharmap/gucharmap-window.c:499
msgid "_Normal Size"
msgstr "සාමාන්‍ය ප්‍රමාණය (_N)"

#: ../gucharmap/gucharmap-window.c:502
msgid "_Find..."
msgstr "සොයන්න... (_F)"

#: ../gucharmap/gucharmap-window.c:504
msgid "Find _Next"
msgstr ""

#: ../gucharmap/gucharmap-window.c:506
msgid "Find _Previous"
msgstr ""

#: ../gucharmap/gucharmap-window.c:509
msgid "_Next Character"
msgstr ""

#: ../gucharmap/gucharmap-window.c:511
msgid "_Previous Character"
msgstr ""

#: ../gucharmap/gucharmap-window.c:519
msgid "_Contents"
msgstr "අන්තර්ගත (_C)"

#: ../gucharmap/gucharmap-window.c:522
msgid "_About"
msgstr "සම්බන්ධව (_A)"

#: ../gucharmap/gucharmap-window.c:528
msgid "By _Script"
msgstr ""

#: ../gucharmap/gucharmap-window.c:530
msgid "By _Unicode Block"
msgstr ""

#: ../gucharmap/gucharmap-window.c:594
msgid "Snap Columns to Power of Two"
msgstr ""

#: ../gucharmap/gucharmap-window.c:724
msgid "_Text to copy:"
msgstr ""

#: ../gucharmap/gucharmap-window.c:745
msgid "Copy to the clipboard."
msgstr ""

#: ../gucharmap/main.c:36
msgid "Font to start with; ex: 'Serif 27'"
msgstr ""

#: ../gucharmap/unicode-blocks.h:20
msgid "Basic Latin"
msgstr ""

#: ../gucharmap/unicode-blocks.h:21
msgid "Latin-1 Supplement"
msgstr ""

#: ../gucharmap/unicode-blocks.h:22
msgid "Latin Extended-A"
msgstr ""

#: ../gucharmap/unicode-blocks.h:23
msgid "Latin Extended-B"
msgstr ""

#: ../gucharmap/unicode-blocks.h:24
msgid "IPA Extensions"
msgstr ""

#: ../gucharmap/unicode-blocks.h:25
msgid "Spacing Modifier Letters"
msgstr ""

#: ../gucharmap/unicode-blocks.h:26
msgid "Combining Diacritical Marks"
msgstr ""

#: ../gucharmap/unicode-blocks.h:27
msgid "Greek and Coptic"
msgstr ""

#: ../gucharmap/unicode-blocks.h:28 ../gucharmap/unicode-scripts.h:30
msgid "Cyrillic"
msgstr "සයිරිලීක"

#: ../gucharmap/unicode-blocks.h:29
msgid "Cyrillic Supplement"
msgstr ""

#: ../gucharmap/unicode-blocks.h:30 ../gucharmap/unicode-scripts.h:17
msgid "Armenian"
msgstr "ඇමරිකානු"

#: ../gucharmap/unicode-blocks.h:31 ../gucharmap/unicode-scripts.h:43
msgid "Hebrew"
msgstr "හේබෘව්"

#: ../gucharmap/unicode-blocks.h:32 ../gucharmap/unicode-scripts.h:16
msgid "Arabic"
msgstr "අරාබී"

#: ../gucharmap/unicode-blocks.h:33 ../gucharmap/unicode-scripts.h:70
msgid "Syriac"
msgstr ""

#: ../gucharmap/unicode-blocks.h:34
msgid "Arabic Supplement"
msgstr ""

#: ../gucharmap/unicode-blocks.h:35 ../gucharmap/unicode-scripts.h:76
msgid "Thaana"
msgstr ""

#: ../gucharmap/unicode-blocks.h:36
msgid "NKo"
msgstr ""

#: ../gucharmap/unicode-blocks.h:37 ../gucharmap/unicode-scripts.h:32
msgid "Devanagari"
msgstr ""

#: ../gucharmap/unicode-blocks.h:38 ../gucharmap/unicode-scripts.h:19
msgid "Bengali"
msgstr ""

#: ../gucharmap/unicode-blocks.h:39 ../gucharmap/unicode-scripts.h:39
msgid "Gurmukhi"
msgstr "ගර්මුකී"

#: ../gucharmap/unicode-blocks.h:40 ../gucharmap/unicode-scripts.h:38
msgid "Gujarati"
msgstr "ගුජරාති"

#: ../gucharmap/unicode-blocks.h:41 ../gucharmap/unicode-scripts.h:62
msgid "Oriya"
msgstr "ඔරියා"

#: ../gucharmap/unicode-blocks.h:42 ../gucharmap/unicode-scripts.h:74
msgid "Tamil"
msgstr ""

#: ../gucharmap/unicode-blocks.h:43 ../gucharmap/unicode-scripts.h:75
msgid "Telugu"
msgstr "තෙලිගු"

#: ../gucharmap/unicode-blocks.h:44 ../gucharmap/unicode-scripts.h:46
msgid "Kannada"
msgstr ""

#: ../gucharmap/unicode-blocks.h:45 ../gucharmap/unicode-scripts.h:54
msgid "Malayalam"
msgstr ""

#: ../gucharmap/unicode-blocks.h:46 ../gucharmap/unicode-scripts.h:68
msgid "Sinhala"
msgstr "සිංහල"

#: ../gucharmap/unicode-blocks.h:47 ../gucharmap/unicode-scripts.h:77
msgid "Thai"
msgstr "තායී"

#: ../gucharmap/unicode-blocks.h:48 ../gucharmap/unicode-scripts.h:50
msgid "Lao"
msgstr ""

#: ../gucharmap/unicode-blocks.h:49 ../gucharmap/unicode-scripts.h:78
msgid "Tibetan"
msgstr ""

#: ../gucharmap/unicode-blocks.h:50 ../gucharmap/unicode-scripts.h:56
msgid "Myanmar"
msgstr ""

#: ../gucharmap/unicode-blocks.h:51 ../gucharmap/unicode-scripts.h:34
msgid "Georgian"
msgstr "ජොර්ජියානු"

#: ../gucharmap/unicode-blocks.h:52
msgid "Hangul Jamo"
msgstr ""

#: ../gucharmap/unicode-blocks.h:53 ../gucharmap/unicode-scripts.h:33
msgid "Ethiopic"
msgstr ""

#: ../gucharmap/unicode-blocks.h:54
msgid "Ethiopic Supplement"
msgstr ""

#: ../gucharmap/unicode-blocks.h:55 ../gucharmap/unicode-scripts.h:25
msgid "Cherokee"
msgstr ""

#: ../gucharmap/unicode-blocks.h:56
msgid "Unified Canadian Aboriginal Syllabics"
msgstr ""

#: ../gucharmap/unicode-blocks.h:57 ../gucharmap/unicode-scripts.h:59
msgid "Ogham"
msgstr ""

#: ../gucharmap/unicode-blocks.h:58 ../gucharmap/unicode-scripts.h:66
msgid "Runic"
msgstr ""

#: ../gucharmap/unicode-blocks.h:59 ../gucharmap/unicode-scripts.h:71
msgid "Tagalog"
msgstr ""

#: ../gucharmap/unicode-blocks.h:60 ../gucharmap/unicode-scripts.h:42
msgid "Hanunoo"
msgstr ""

#: ../gucharmap/unicode-blocks.h:61 ../gucharmap/unicode-scripts.h:23
msgid "Buhid"
msgstr ""

#: ../gucharmap/unicode-blocks.h:62 ../gucharmap/unicode-scripts.h:72
msgid "Tagbanwa"
msgstr ""

#: ../gucharmap/unicode-blocks.h:63 ../gucharmap/unicode-scripts.h:49
msgid "Khmer"
msgstr ""

#: ../gucharmap/unicode-blocks.h:64 ../gucharmap/unicode-scripts.h:55
msgid "Mongolian"
msgstr ""

#: ../gucharmap/unicode-blocks.h:65 ../gucharmap/unicode-scripts.h:52
msgid "Limbu"
msgstr ""

#: ../gucharmap/unicode-blocks.h:66 ../gucharmap/unicode-scripts.h:73
msgid "Tai Le"
msgstr ""

#: ../gucharmap/unicode-blocks.h:67 ../gucharmap/unicode-scripts.h:57
msgid "New Tai Lue"
msgstr ""

#: ../gucharmap/unicode-blocks.h:68
msgid "Khmer Symbols"
msgstr ""

#: ../gucharmap/unicode-blocks.h:69 ../gucharmap/unicode-scripts.h:22
msgid "Buginese"
msgstr ""

#: ../gucharmap/unicode-blocks.h:70 ../gucharmap/unicode-scripts.h:18
msgid "Balinese"
msgstr ""

#: ../gucharmap/unicode-blocks.h:71
msgid "Phonetic Extensions"
msgstr ""

#: ../gucharmap/unicode-blocks.h:72
msgid "Phonetic Extensions Supplement"
msgstr ""

#: ../gucharmap/unicode-blocks.h:73
msgid "Combining Diacritical Marks Supplement"
msgstr ""

#: ../gucharmap/unicode-blocks.h:74
msgid "Latin Extended Additional"
msgstr ""

#: ../gucharmap/unicode-blocks.h:75
msgid "Greek Extended"
msgstr ""

#: ../gucharmap/unicode-blocks.h:76
msgid "General Punctuation"
msgstr ""

#: ../gucharmap/unicode-blocks.h:77
msgid "Superscripts and Subscripts"
msgstr ""

#: ../gucharmap/unicode-blocks.h:78
msgid "Currency Symbols"
msgstr ""

#: ../gucharmap/unicode-blocks.h:79
msgid "Combining Diacritical Marks for Symbols"
msgstr ""

#: ../gucharmap/unicode-blocks.h:80
msgid "Letterlike Symbols"
msgstr ""

#: ../gucharmap/unicode-blocks.h:81
msgid "Number Forms"
msgstr ""

#: ../gucharmap/unicode-blocks.h:82
msgid "Arrows"
msgstr ""

#: ../gucharmap/unicode-blocks.h:83
msgid "Mathematical Operators"
msgstr ""

#: ../gucharmap/unicode-blocks.h:84
msgid "Miscellaneous Technical"
msgstr ""

#: ../gucharmap/unicode-blocks.h:85
msgid "Control Pictures"
msgstr ""

#: ../gucharmap/unicode-blocks.h:86
msgid "Optical Character Recognition"
msgstr ""

#: ../gucharmap/unicode-blocks.h:87
msgid "Enclosed Alphanumerics"
msgstr ""

#: ../gucharmap/unicode-blocks.h:88
msgid "Box Drawing"
msgstr ""

#: ../gucharmap/unicode-blocks.h:89
msgid "Block Elements"
msgstr ""

#: ../gucharmap/unicode-blocks.h:90
msgid "Geometric Shapes"
msgstr ""

#: ../gucharmap/unicode-blocks.h:91
msgid "Miscellaneous Symbols"
msgstr ""

#: ../gucharmap/unicode-blocks.h:92
msgid "Dingbats"
msgstr ""

#: ../gucharmap/unicode-blocks.h:93
msgid "Miscellaneous Mathematical Symbols-A"
msgstr ""

#: ../gucharmap/unicode-blocks.h:94
msgid "Supplemental Arrows-A"
msgstr ""

#: ../gucharmap/unicode-blocks.h:95
msgid "Braille Patterns"
msgstr ""

#: ../gucharmap/unicode-blocks.h:96
msgid "Supplemental Arrows-B"
msgstr ""

#: ../gucharmap/unicode-blocks.h:97
msgid "Miscellaneous Mathematical Symbols-B"
msgstr ""

#: ../gucharmap/unicode-blocks.h:98
msgid "Supplemental Mathematical Operators"
msgstr ""

#: ../gucharmap/unicode-blocks.h:99
msgid "Miscellaneous Symbols and Arrows"
msgstr ""

#: ../gucharmap/unicode-blocks.h:100 ../gucharmap/unicode-scripts.h:35
msgid "Glagolitic"
msgstr ""

#: ../gucharmap/unicode-blocks.h:101
msgid "Latin Extended-C"
msgstr ""

#: ../gucharmap/unicode-blocks.h:102 ../gucharmap/unicode-scripts.h:27
msgid "Coptic"
msgstr ""

#: ../gucharmap/unicode-blocks.h:103
msgid "Georgian Supplement"
msgstr ""

#: ../gucharmap/unicode-blocks.h:104 ../gucharmap/unicode-scripts.h:79
msgid "Tifinagh"
msgstr ""

#: ../gucharmap/unicode-blocks.h:105
msgid "Ethiopic Extended"
msgstr ""

#: ../gucharmap/unicode-blocks.h:106
msgid "Supplemental Punctuation"
msgstr ""

#: ../gucharmap/unicode-blocks.h:107
msgid "CJK Radicals Supplement"
msgstr ""

#: ../gucharmap/unicode-blocks.h:108
msgid "Kangxi Radicals"
msgstr ""

#: ../gucharmap/unicode-blocks.h:109
msgid "Ideographic Description Characters"
msgstr ""

#: ../gucharmap/unicode-blocks.h:110
msgid "CJK Symbols and Punctuation"
msgstr ""

#: ../gucharmap/unicode-blocks.h:111 ../gucharmap/unicode-scripts.h:44
msgid "Hiragana"
msgstr ""

#: ../gucharmap/unicode-blocks.h:112 ../gucharmap/unicode-scripts.h:47
msgid "Katakana"
msgstr ""

#: ../gucharmap/unicode-blocks.h:113 ../gucharmap/unicode-scripts.h:20
msgid "Bopomofo"
msgstr ""

#: ../gucharmap/unicode-blocks.h:114
msgid "Hangul Compatibility Jamo"
msgstr ""

#: ../gucharmap/unicode-blocks.h:115
msgid "Kanbun"
msgstr ""

#: ../gucharmap/unicode-blocks.h:116
msgid "Bopomofo Extended"
msgstr ""

#: ../gucharmap/unicode-blocks.h:117
msgid "CJK Strokes"
msgstr ""

#: ../gucharmap/unicode-blocks.h:118
msgid "Katakana Phonetic Extensions"
msgstr ""

#: ../gucharmap/unicode-blocks.h:119
msgid "Enclosed CJK Letters and Months"
msgstr ""

#: ../gucharmap/unicode-blocks.h:120
msgid "CJK Compatibility"
msgstr ""

#: ../gucharmap/unicode-blocks.h:121
msgid "CJK Unified Ideographs Extension A"
msgstr ""

#: ../gucharmap/unicode-blocks.h:122
msgid "Yijing Hexagram Symbols"
msgstr ""

#: ../gucharmap/unicode-blocks.h:123
msgid "CJK Unified Ideographs"
msgstr ""

#: ../gucharmap/unicode-blocks.h:124
msgid "Yi Syllables"
msgstr ""

#: ../gucharmap/unicode-blocks.h:125
msgid "Yi Radicals"
msgstr ""

#: ../gucharmap/unicode-blocks.h:126
msgid "Modifier Tone Letters"
msgstr ""

#: ../gucharmap/unicode-blocks.h:127
msgid "Latin Extended-D"
msgstr ""

#: ../gucharmap/unicode-blocks.h:128 ../gucharmap/unicode-scripts.h:69
msgid "Syloti Nagri"
msgstr ""

#: ../gucharmap/unicode-blocks.h:129
msgid "Phags-pa"
msgstr ""

#: ../gucharmap/unicode-blocks.h:130
msgid "Hangul Syllables"
msgstr ""

#: ../gucharmap/unicode-blocks.h:131
msgid "High Surrogates"
msgstr ""

#: ../gucharmap/unicode-blocks.h:132
msgid "High Private Use Surrogates"
msgstr ""

#: ../gucharmap/unicode-blocks.h:133
msgid "Low Surrogates"
msgstr ""

#: ../gucharmap/unicode-blocks.h:134
msgid "Private Use Area"
msgstr ""

#: ../gucharmap/unicode-blocks.h:135
msgid "CJK Compatibility Ideographs"
msgstr ""

#: ../gucharmap/unicode-blocks.h:136
msgid "Alphabetic Presentation Forms"
msgstr ""

#: ../gucharmap/unicode-blocks.h:137
msgid "Arabic Presentation Forms-A"
msgstr ""

#: ../gucharmap/unicode-blocks.h:138
msgid "Variation Selectors"
msgstr ""

#: ../gucharmap/unicode-blocks.h:139
msgid "Vertical Forms"
msgstr ""

#: ../gucharmap/unicode-blocks.h:140
msgid "Combining Half Marks"
msgstr ""

#: ../gucharmap/unicode-blocks.h:141
msgid "CJK Compatibility Forms"
msgstr ""

#: ../gucharmap/unicode-blocks.h:142
msgid "Small Form Variants"
msgstr ""

#: ../gucharmap/unicode-blocks.h:143
msgid "Arabic Presentation Forms-B"
msgstr ""

#: ../gucharmap/unicode-blocks.h:144
msgid "Halfwidth and Fullwidth Forms"
msgstr ""

#: ../gucharmap/unicode-blocks.h:145
msgid "Specials"
msgstr ""

#: ../gucharmap/unicode-blocks.h:146
msgid "Linear B Syllabary"
msgstr ""

#: ../gucharmap/unicode-blocks.h:147
msgid "Linear B Ideograms"
msgstr ""

#: ../gucharmap/unicode-blocks.h:148
msgid "Aegean Numbers"
msgstr ""

#: ../gucharmap/unicode-blocks.h:149
msgid "Ancient Greek Numbers"
msgstr ""

#: ../gucharmap/unicode-blocks.h:150 ../gucharmap/unicode-scripts.h:60
msgid "Old Italic"
msgstr ""

#: ../gucharmap/unicode-blocks.h:151 ../gucharmap/unicode-scripts.h:36
msgid "Gothic"
msgstr "Gothic"

#: ../gucharmap/unicode-blocks.h:152 ../gucharmap/unicode-scripts.h:80
msgid "Ugaritic"
msgstr ""

#: ../gucharmap/unicode-blocks.h:153 ../gucharmap/unicode-scripts.h:61
msgid "Old Persian"
msgstr ""

#: ../gucharmap/unicode-blocks.h:154 ../gucharmap/unicode-scripts.h:31
msgid "Deseret"
msgstr ""

#: ../gucharmap/unicode-blocks.h:155 ../gucharmap/unicode-scripts.h:67
msgid "Shavian"
msgstr ""

#: ../gucharmap/unicode-blocks.h:156 ../gucharmap/unicode-scripts.h:63
msgid "Osmanya"
msgstr ""

#: ../gucharmap/unicode-blocks.h:157
msgid "Cypriot Syllabary"
msgstr ""

#: ../gucharmap/unicode-blocks.h:158 ../gucharmap/unicode-scripts.h:65
msgid "Phoenician"
msgstr ""

#: ../gucharmap/unicode-blocks.h:159 ../gucharmap/unicode-scripts.h:48
msgid "Kharoshthi"
msgstr ""

#: ../gucharmap/unicode-blocks.h:160 ../gucharmap/unicode-scripts.h:28
msgid "Cuneiform"
msgstr ""

#: ../gucharmap/unicode-blocks.h:161
msgid "Cuneiform Numbers and Punctuation"
msgstr ""

#: ../gucharmap/unicode-blocks.h:162
msgid "Byzantine Musical Symbols"
msgstr ""

#: ../gucharmap/unicode-blocks.h:163
msgid "Musical Symbols"
msgstr ""

#: ../gucharmap/unicode-blocks.h:164
msgid "Ancient Greek Musical Notation"
msgstr ""

#: ../gucharmap/unicode-blocks.h:165
msgid "Tai Xuan Jing Symbols"
msgstr ""

#: ../gucharmap/unicode-blocks.h:166
msgid "Counting Rod Numerals"
msgstr ""

#: ../gucharmap/unicode-blocks.h:167
msgid "Mathematical Alphanumeric Symbols"
msgstr ""

#: ../gucharmap/unicode-blocks.h:168
msgid "CJK Unified Ideographs Extension B"
msgstr ""

#: ../gucharmap/unicode-blocks.h:169
msgid "CJK Compatibility Ideographs Supplement"
msgstr ""

#: ../gucharmap/unicode-blocks.h:170
msgid "Tags"
msgstr "ටැග්"

#: ../gucharmap/unicode-blocks.h:171
msgid "Variation Selectors Supplement"
msgstr ""

#: ../gucharmap/unicode-blocks.h:172
msgid "Supplementary Private Use Area-A"
msgstr ""

#: ../gucharmap/unicode-blocks.h:173
msgid "Supplementary Private Use Area-B"
msgstr ""

#: ../gucharmap/unicode-scripts.h:21
msgid "Braille"
msgstr ""

#: ../gucharmap/unicode-scripts.h:24
msgid "Canadian Aboriginal"
msgstr ""

#: ../gucharmap/unicode-scripts.h:29
msgid "Cypriot"
msgstr ""

#: ../gucharmap/unicode-scripts.h:37
msgid "Greek"
msgstr "ග්‍රීක"

#: ../gucharmap/unicode-scripts.h:40
msgid "Han"
msgstr ""

#: ../gucharmap/unicode-scripts.h:41
msgid "Hangul"
msgstr ""

#: ../gucharmap/unicode-scripts.h:45
msgid "Inherited"
msgstr ""

#: ../gucharmap/unicode-scripts.h:51
msgid "Latin"
msgstr "Latin"

#: ../gucharmap/unicode-scripts.h:53
msgid "Linear B"
msgstr ""

#: ../gucharmap/unicode-scripts.h:58
msgid "Nko"
msgstr ""

#: ../gucharmap/unicode-scripts.h:64
msgid "Phags Pa"
msgstr ""

#: ../gucharmap/unicode-scripts.h:81
msgid "Yi"
msgstr ""

#: ../gucharmap/gucharmap-block-chapters.c:61
msgid "All"
msgstr "සියළු"

#: ../gucharmap/gucharmap-block-chapters.c:79
msgid "Unicode Block"
msgstr ""

#: ../gucharmap/gucharmap-script-chapters.c:76
msgid "Script"
msgstr ""

#: ../gucharmap/gucharmap-search-dialog.c:550
msgid "Information"
msgstr "තොරතුරු"

#. follow hig guidelines
#: ../gucharmap/gucharmap-search-dialog.c:754
msgid "Find"
msgstr "සොයන්න"

#: ../gucharmap/gucharmap-search-dialog.c:768
msgid "_Previous"
msgstr "පෙර (_P)"

#: ../gucharmap/gucharmap-search-dialog.c:775
msgid "_Next"
msgstr "මීළඟ (_N)"

#: ../gucharmap/gucharmap-search-dialog.c:785
msgid "_Search:"
msgstr "සොයන්න (_S):"

#: ../gucharmap/gucharmap-search-dialog.c:795
msgid "Match _whole word"
msgstr ""

#: ../gucharmap/gucharmap-search-dialog.c:800
msgid "Search in character _details"
msgstr ""