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
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
1594
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
|
# translation of ooo-build.km.po to Khmer
# Auk Piseth <piseth_dv@khmeros.info>, 2008, 2009.
# Khoem Sokhem <khoemsokhem@khmeros.info>, 2009.
#. extracted from (input file name not known)
msgid ""
msgstr ""
"Project-Id-Version: ooo-build.km\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?subcompo"
"nent=ui&comment=&short_desc=Localization%20issue%20in%20file%3A%20(input%20f"
"ile%20name%20not%20known)&component=l10n&form_name=enter_issue\n"
"POT-Creation-Date: 2010-10-07 12:22+0200\n"
"PO-Revision-Date: 2009-09-04 11:29+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: ~\n"
#: connectivity/source/drivers/postgresql/postgresql.xcu#.Drivers.Installed.sdbc_postgresql__.DriverTypeDisplayName.value.text
msgid "postgresql"
msgstr "postgresql"
#: cui/source/dialogs/grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_HEIGHT.metricfield.text
msgctxt "cui/source/dialogs/grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_HEIGHT.metricfield.text"
msgid " Pixel"
msgstr " แแธแแแแ"
#: cui/source/dialogs/grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_WIDTH.metricfield.text
msgctxt "cui/source/dialogs/grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_WIDTH.metricfield.text"
msgid " Pixel"
msgstr " แแธแแแแ"
#: cui/source/options/optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_WBCTBL.checkbox.text
msgid "E~xecutable code"
msgstr "แแผแโแแแโแขแถแ
โแแแแแทแแแแแทโแแถแ "
#: cui/source/options/optgdlg.src#OFA_TP_MISC.CB_ODMADLG.checkbox.text
msgid "Show ODMA DMS dialogs first"
msgstr "แแแแ แถแโแแแแขแแ ODMA DMS แแถแแปแ"
#: cui/source/options/optgdlg.src#OFA_TP_MISC.CB_SAVE_ALWAYS.checkbox.text
msgid "Allow to save document even when the document is not modified"
msgstr ""
"แขแแปแแแแถแโแฒแแโแแแแแถแแปแโแฏแแแถแ แแแแแธโแแถโแแ
แแแโแฏแแแถแโแแทแโแแแแผโแแแถแแแแแแแโแแโแแแ"
#: cui/source/options/treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.10.itemlist.text
msgid "Print"
msgstr "แแแแแปแแแ"
#: cui/source/options/treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.6.itemlist.text
msgid "Formula"
msgstr "แแผแแแแแ"
#: cui/source/options/treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.7.itemlist.text
msgid "Sort Lists"
msgstr "แแแแแธโแแแแพแแแพแ"
#: cui/source/options/treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.8.itemlist.text
msgid "Changes"
msgstr "แแถแโแแแแถแแแแแแผแ"
#: cui/source/options/treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.9.itemlist.text
msgid "Grid"
msgstr "แแแแกแถแ
แแแแแแ"
#: cui/source/options/treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.12.itemlist.text
msgctxt "cui/source/options/treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.12.itemlist.text"
msgid "Comparison"
msgstr "แแถแโแแแแแแแแ"
#: cui/source/options/treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.13.itemlist.text
msgid "Compatibility"
msgstr "แแถแโแแแแแแถ"
#: cui/source/options/treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.14.itemlist.text
msgid "AutoCaption"
msgstr "แ
แแแโแแพแโแแแแแโแแแแแแแแทโ"
#: cui/source/options/treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.15.itemlist.text
msgid "Mail Merge E-mail"
msgstr "แขแแธแแแโแแแแปแแแโแแแแปแแแแแแโ"
#: cui/source/tabpages/align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.7.stringlist.text
msgctxt "cui/source/tabpages/align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.7.stringlist.text"
msgid "Distributed"
msgstr "แแถแโแ
แแแ
แถแ"
#: cui/source/tabpages/align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.5.stringlist.text
msgid "Justified"
msgstr "แแแแแถแ"
#: cui/source/tabpages/align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.6.stringlist.text
msgctxt "cui/source/tabpages/align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.6.stringlist.text"
msgid "Distributed"
msgstr "แแถแโแ
แแแ
แถแ"
#: cui/source/tabpages/autocdlg.src#COMMON_CLB_ENTRIES.ST_CORRECT_ACCIDENTAL_CAPS_LOCK.string.text
msgid "Correct accidental use of cAPS LOCK key"
msgstr "แแโแแถแโแแแแพแแแแถแแโแแแแถแแแ
แปแ
โแแแแผแโแแถแแ (CAPS LOCK)"
#: cui/source/tabpages/textanim.src#RID_SVXPAGE_TEXTANIMATION.MTR_FLD_AMOUNT.metricfield.text
msgctxt "cui/source/tabpages/textanim.src#RID_SVXPAGE_TEXTANIMATION.MTR_FLD_AMOUNT.metricfield.text"
msgid " Pixel"
msgstr " แแธแแแแ"
#: editeng/source/items/svxitems.src#RID_SVXITEMS_HORJUST_BLOCK.string.text
msgid "Justify"
msgstr ""
#: editeng/source/items/svxitems.src#RID_SVXITEMS_HORJUST_CENTER.string.text
msgid "Centered horizontally"
msgstr ""
#: editeng/source/items/svxitems.src#RID_SVXITEMS_HORJUST_LEFT.string.text
msgid "Align left"
msgstr ""
#: editeng/source/items/svxitems.src#RID_SVXITEMS_HORJUST_REPEAT.string.text
msgid "Repeat alignment"
msgstr ""
#: editeng/source/items/svxitems.src#RID_SVXITEMS_HORJUST_RIGHT.string.text
msgid "Align right"
msgstr ""
#: editeng/source/items/svxitems.src#RID_SVXITEMS_HORJUST_STANDARD.string.text
msgid "Horizontal alignment default"
msgstr ""
#: editeng/source/items/svxitems.src#RID_SVXITEMS_JUSTMETHOD_AUTO.string.text
msgid "Automatic"
msgstr "แแแแแแแแแแแแแทโ"
#: editeng/source/items/svxitems.src#RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE.string.text
msgctxt "editeng/source/items/svxitems.src#RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE.string.text"
msgid "Distributed"
msgstr "แแถแโแ
แแแ
แถแ"
#: editeng/source/items/svxitems.src#RID_SVXITEMS_VERJUST_BOTTOM.string.text
msgid "Align to bottom"
msgstr ""
#: editeng/source/items/svxitems.src#RID_SVXITEMS_VERJUST_CENTER.string.text
msgid "Centered vertically"
msgstr ""
#: editeng/source/items/svxitems.src#RID_SVXITEMS_VERJUST_STANDARD.string.text
msgid "Vertical alignment default"
msgstr ""
#: editeng/source/items/svxitems.src#RID_SVXITEMS_VERJUST_TOP.string.text
msgid "Align to top"
msgstr ""
#: extensions/source/propctrlr/formres.src#RID_STR_GROUP_NAME.string.text
msgid "Group name"
msgstr "แแแแแโแแแแปแ"
#: filter/source/config/fragments/filters/calc_OOXML_Template_ui.xcu#Calc_Office_Open_XML_Template.UIName.value.text
msgid "Office Open XML Spreadsheet Template"
msgstr ""
#: filter/source/config/fragments/filters/calc_OOXML_ui.xcu#Calc_Office_Open_XML.UIName.value.text
msgid "Office Open XML Spreadsheet"
msgstr ""
#: filter/source/config/fragments/filters/impress_OOXML_Template_ui.xcu#Office_Open_XML_Presentation_Template.UIName.value.text
msgid "Office Open XML Presentation Template"
msgstr ""
#: filter/source/config/fragments/filters/impress_OOXML_ui.xcu#Office_Open_XML_Presentation.UIName.value.text
msgid "Office Open XML Presentation"
msgstr ""
#: filter/source/config/fragments/filters/OOXML_Text_Template_ui.xcu#Office_Open_XML_Text_Template.UIName.value.text
msgid "Office Open XML Text Template"
msgstr ""
#: filter/source/config/fragments/filters/OOXML_Text_ui.xcu#Office_Open_XML_Text.UIName.value.text
msgid "Office Open XML Text"
msgstr ""
#: filter/source/config/fragments/internalgraphicfilters/svg_Import.xcu#svg_Import.UIName.value.text
msgid "SVG - Scalable Vector Graphics"
msgstr "SVG - Scalable Vector Graphics"
#: framework/source/classes/resource.src#STR_STATUSBAR_LOGOTEXT.string.text
msgid "A %PRODUCTNAME product by %OOOVENDOR"
msgstr ""
#: helpcontent2/source/text/scalc/01/04060107.xhp#par_id936613.help.text
msgid ""
"The column separator (separating elements in one row) and the row separator "
"are language and locale dependent. But in this help content, the ';' "
"semicolon and '|' pipe symbol are used to indicate the column and row "
"separators, respectively. For example, in the English locale, the ',' comma "
"is used as the column separator, while the ';' semicolon is used as the row "
"separator."
msgstr ""
"แแถแแปโแแแแแแแฝแแแโ (แแแแแโแแถแแปโแแ
โแแแแปแแแฝแแแแโแแฝแ) "
"แ แพแโแแถแแปโแแแแแแแฝแแแแโแแบแแถโแแถแแถโ แแทแโ locale แแแโแฏแแแถแแแย แ "
"แแแปแแแแโแแ
โแแแแปแโแแถแแทแแถโแแแแฝแโ แแแแแถ ';' แแทแ '|' "
"แแแแผแโแแถแโแแแแพโแแพแแแแธแแแแ แถแโโแแถแแปโแแแแแแแฝแแแแ แแทแแแฝแโแแโแแแแแแแฝแย แ "
"แแถโแงแแถแ แแแ แแ
โแแแแปแโแแผแแแแแถแโแขแแแแแแแ แแแแแถ ',' "
"แแแแผแโแแถแโแแแแพโแแถโแแถแแปโแแแแแโแแฝแแแ แแแโแแแแแถ ';' "
"แแแแผโแแแถแโแแแแพโแแถโแแถแแปโแแแแแโแแฝแแแแย แ"
#: helpcontent2/source/text/scalc/01/12030200.xhp#bm_id3147228.help.text
msgid ""
"<bookmark_value>sorting; options for database "
"ranges</bookmark_value><bookmark_value>sorting;Asian "
"languages</bookmark_value><bookmark_value>Asian "
"languages;sorting</bookmark_value><bookmark_value>phonebook sorting "
"rules</bookmark_value><bookmark_value>natural sort "
"algorithm</bookmark_value>"
msgstr ""
"<bookmark_value>แแแแแแ; แแแแแพแโแแแแแถแแโแแฝแโแแผแแแแแถแโแแทแแแแแแ</bookmark_value"
"><bookmark_value>แแแแแแ;แแถแแถโแขแถแแแธ</bookmark_value><bookmark_value>แแถแแถโแขแถแแ"
"แธ;แแแแแแ</bookmark_value><bookmark_value>แแแแฝแโแแแแแแโแแแแแ
โแแผแแแแแแ</bookma"
"rk_value><bookmark_value>แแแแฝแโแแแแแแโแแแแแแถ</bookmark_value>"
#: helpcontent2/source/text/scalc/01/12030200.xhp#hd_id3147438.help.text
msgid "Enable natural sort"
msgstr "แขแแปแแแแถแโแแแแแแโแแถแโแแแแแแถ"
#: helpcontent2/source/text/scalc/01/12030200.xhp#par_id3149378.help.text
msgid ""
"<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_NATURALSORT\">Natural "
"sort is a sort algorithm that sorts string-prefixed numbers based on the "
"value of the numerical element in each sorted number, instead of the "
"traditional way of sorting them as ordinary strings.</ahelp> For instance, "
"let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, "
"..., A19, A20, A21. When you put these values into a range of cells and run "
"the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, "
"A5, ..., A9. While this sorting behavior may make sense to those who "
"understand the underlying sorting mechanism, to the rest of the population "
"it seems completely bizarre, if not outright inconvenient. With the natural "
"sort feature enabled, values such as the ones in the above example get "
"sorted \"properly\", which improves the convenience of sorting operations in "
"general."
msgstr ""
"<ahelp "
"hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_NATURALSORT\">แแแแแแโแแถแแแแแแถ "
"แแบโแแถโแแแแฝแโแแแแแแโแแแโแแแแแแโแแแโแแแแแขแแแแโแแแโแแถแโแแโแแธโแแปแ "
"แแถแโแแแแแโแแถแแปโแแแโแแ
โแแแแปแโแแแโแแแโแแถแโแแแแแแโแแธแแฝแ "
"แแแแฝแโโแแทแแธโแ
แถแแโแแธโแแปแโแแแโแแแแแแโโแแถแโแแแแแขแแแแโแแแแแแถย แ</ahelp> แงแแถแ แแแ "
"แแแแแโแแถโแขแแแโแแถแโแแแแแโแแแแแธโแแผแ
แแถ A1, A2, A3, A4, A5, A6, ..., A19, A20, "
"A21ย แ แแ
แแแโแแแโแขแแแโแแถแแโแแแแแโแแถแแแแแโแแ
โแแแแปแโแแฝแโแแแแกแถ "
"แ แพแโแแแแพแแแถแโแแแแแแ แแแโแแถโแแนแโแแ
แแถ A1, A11, A12, A13, ..., A19, A2, A20, "
"A21, A3, A4, A5, ..., A9ย แ แแ
แแแโแแแแปแโแแแแแแ "
"แฅแแทแแถแแโแแนแโแแถแโแแแแฝแโแแแแแถแแโแขแแแโแแแโแแแโแขแแแธโแแถแโแแแแแแโแแ
โแแแแแโแแแแแแถแ "
"แ
แแแฝแโแแแปแโแ แถแแโแแผแ
แแถโแ
แแแแแย แ แแแแแถแโแขแแปแแแแถแโแแแแแแโแแทแแแโโแแแแแแโแแแแแแถ "
"แแแแแโแแผแ
แแถโโแแแแแโแแฝแโแแ
โแแแแปแโแงแแถแ แแแโแแแโแแถแโแแปแ \"แแแแแแโแแแแแแแแท\" "
"แแแโแแแแพโแฒแแโโแแถแแแแแฝแโแแแแปแโแแถแโแแแแแแโแแแแแทแแแแแทแแถแโแแถแโแแแแแแถย แ"
#: helpcontent2/source/text/shared/guide/protection.xhp#par_id3153104.13.help.text
msgid ""
"Choose <emph>Edit - Changes - Protect Records</emph>. Enter and confirm a "
"password."
msgstr ""
#: helpcontent2/source/text/shared/guide/redlining_protect.xhp#par_id3153345.4.help.text
msgid "Enter a password and confirm it. Click <emph>OK</emph>."
msgstr ""
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#hd_id3145607.help.text
msgctxt "helpcontent2/source/text/shared/optionen/comparisonopt.xhp#hd_id3145607.help.text"
msgid "Settings"
msgstr "แแถแโแแแแแ"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#hd_id3145785.help.text
msgid "Use RSID"
msgstr "แแแแพ RSID"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#hd_id3148550.help.text
msgid "Auto"
msgstr "แแแแแโแแแแแแแแท"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#hd_id3148674.help.text
msgid "By character"
msgstr "แแถแแแฝแขแแแแ"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#hd_id3152812.help.text
msgid "By word"
msgstr "แแถแโแแถแแแ"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#hd_id3153823.help.text
msgid ""
"<link href=\"text/shared/optionen/comparisonopt.xhp\" "
"name=\"Comparison\">Comparison</link>"
msgstr ""
"<link href=\"text/shared/optionen/comparisonopt.xhp\" "
"name=\"Comparison\">แแแแแแแแ</link>"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#hd_id3155419.help.text
msgid "Compare Documents"
msgstr "แแแแแแแแโแฏแแแถแ"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#hd_id3163713.help.text
msgid "Ignore isolated pieces of length"
msgstr "แแทแแขแพแแพโแแนแโแ
แแแแโแแโแแแแแแขโแแแโแแถแแแแแแ"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#par_id3144510.help.text
msgid "Specifies the mode for comparing two documents."
msgstr "แแแแแถแแโแแแแโแแแแแถแแโแแแแแแแแโแฏแแแถแโแแธแย แ"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#par_id3146975.help.text
msgid ""
"<ahelp hid=\"SW:CHECKBOX:TP_COMPARISON_OPT:CB_IGNORE\">Specifies that matched "
"sequences of words or characters (depending on the chosen compare mode) of "
"length equal to or less than the entered one will be ignored and will be "
"shown as inserted/deleted.</ahelp>"
msgstr ""
"<ahelp hid=\"SW:CHECKBOX:TP_COMPARISON_OPT:CB_IGNORE\">แแแแแถแแโแแถโแแแแถแแโแแแแแถ"
"แแแแแผแแแแโแแโแแถแแแ แฌโแแฝแขแแแแ (แแแโแขแถแแแแแโแแพโแแแแโแแแโแแแโแแถแโแแแแพแ) "
"แแโแแแแแแโแแแแพแแนแโ แฌโแแทแ
โแแถแโแแฝแขแแแแโแแแแแถแแแแแ
แผแ แแนแโแแแแผแโแแถแโแแทแโแขแพแแพโ "
"แ แพแโแแนแโแแแแผแโแแถแแแแแ แถแโแแถโแแฝแขแแแแโแแแแแถแแแแแ
แผแ/แแปแย แ</ahelp>"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#par_id3149416.help.text
msgid ""
"<ahelp hid=\"HID_COMPARISON_OPT\">Specifies the settings for comparing two "
"documents.</ahelp>"
msgstr ""
"<ahelp hid=\"HID_COMPARISON_OPT\">แแแแแถแแโแแถแโแแแแแแแพแแแแธโแแแแแแแแโแฏแแแถแโแแถแแโ"
"แแธแย แ</ahelp>"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#par_id3149562.help.text
msgid "Specifies more comparison settings if the chosen mode is not Auto."
msgstr ""
"แแแแแถแแโแแถแโแแแแแโแแแแแแแแ "
"แแแแแทแแแพโแแแแโแแแโแแถแโแแแแพแโแแทแโแแแโแแแแแโแแแแแแแแทย แ"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#par_id3151042.help.text
msgid ""
"<ahelp hid=\"SW:RADIOBUTTON:TP_COMPARISON_OPT:RB_WORD\">Compare documents with "
"a character as the basic unit.</ahelp>"
msgstr ""
"<ahelp hid=\"SW:RADIOBUTTON:TP_COMPARISON_OPT:RB_WORD\">แแแแแแแแโแฏแแแถแโแแถโแแฝแโ"
"แแนแโแแฝแขแแแแโแแผแ
โแแถแโแแ
โแแแแปแโแฏแแแถแโแแผแแแแแถแย แ</ahelp>"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#par_id3154365.help.text
msgid ""
"<ahelp hid=\"SW:RADIOBUTTON:TP_COMPARISON_OPT:RB_CHAR\">Compare documents with "
"a word as the basic unit.</ahelp>"
msgstr ""
"<ahelp hid=\"SW:RADIOBUTTON:TP_COMPARISON_OPT:RB_CHAR\">แแแแแแแแโแฏแแแถแโแแถโแแฝแโ"
"แแนแโแแถแแแโแแผแ
โแแถแโแแแแปแโแฏแแแถโแแผแแแแแถแโย แ</ahelp>"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#par_id3154638.help.text
msgid ""
"<ahelp hid=\"SW:CHECKBOX:TP_COMPARISON_OPT:CB_RSID\">Specifies that RSIDs are "
"used when the documents are compared. This has an effect only if both "
"documents have RSIDs and their root RSIDs are the same.</ahelp>"
msgstr ""
"<ahelp hid=\"SW:CHECKBOX:TP_COMPARISON_OPT:CB_RSID\">แแแแแถแแโแแถ RSIDs "
"แแแแผแโแแถแแแแแพโแแ
แแแโแฏแแแถแโแแแแผแโแแถแโแแแแแแแแย แ "
"แแถโแแถแแแแแแทแแแแแถแโแแโแแแแปแโแแแแธโแแแโแฏแแแถแโแแถแแแแธแโแแถแ RSIDs แแทแ root RSIDs "
"แแแแโแแฝแแแถโแแผแ
โแแแแถโแแแปแแแแแย แ</ahelp>"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#par_id3154758.help.text
msgid ""
"<ahelp hid=\"SW:RADIOBUTTON:TP_COMPARISON_OPT:RB_AUTO\">Use the most "
"appropirate comparison settings for the current document.</ahelp>"
msgstr ""
"<ahelp hid=\"SW:RADIOBUTTON:TP_COMPARISON_OPT:RB_AUTO\">แแแแพโแแถแโแแแแแโแแแแแแแ"
"แโแแแโแแแแแแโแแแแแถแแโแฏแแแถแโแแ
แแ
แปแแแแแแย แ</ahelp>"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#par_id3156153.help.text
msgid ""
"To compare the current document with another one choose <link "
"href=\"text/shared/01/02240000.xhp\" name=\"Edit - Compare Document\"><emph>Edit "
"- Compare Document</emph></link>."
msgstr ""
"แแพแแแแธโแแแแแแแแโแฏแแแถแโแแ
แแ
แปแแแแแแโแแถโแแฝแโแแนแโแฏแแแถแโแแแแแโแแแ แแแแพแ <link "
"href=\"text/shared/01/02240000.xhp\" name=\"Edit - Compare "
"Document\"><emph>แแแแแแแฝแ - แแแแแแแแโแฏแแแถแ</emph></link>ย แ"
#: helpcontent2/source/text/shared/optionen/comparisonopt.xhp#tit.help.text
msgctxt "helpcontent2/source/text/shared/optionen/comparisonopt.xhp#tit.help.text"
msgid "Comparison"
msgstr "แแถแโแแแแแแแแ"
#: helpcontent2/source/text/shared/00/00000406.xhp#par_id3147006.help.text
msgid ""
"<variable id=\"comparisonoptions\">Open a text document, choose "
"<emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - "
"Preferences</caseinline><defaultinline>Tools - "
"Options</defaultinline></switchinline> - %PRODUCTNAME Writer - "
"Comparison</emph></variable>"
msgstr ""
#: helpcontent2/source/text/swriter/guide/protection.xhp#par_id3144764.32.help.text
msgid ""
"Select the text. Choose <emph>Insert - Section - Section</emph>, then under "
"<emph>Write protection</emph> mark the <emph>Protect</emph> and <emph>With "
"password</emph> check boxes. (If the section already exists: <emph>Format - "
"Sections</emph>.) Enter and confirm a password."
msgstr ""
#: instsetoo_native/inc_openoffice/windows/msi_languages/Control.ulf#OOO_CONTROL_124.LngText.text
msgid ""
"Build contributed in collaboration with the community by The Document "
"Foundation. For credits, see: http://www.documentfoundation.org"
msgstr ""
#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_DataForm.Label.value.text
msgid "D~ataForm..."
msgstr "แแแแปแโแแทแแแแแแ..."
#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ToggleMergeCells.Label.value.text
msgid "M~erge and Center Cells"
msgstr "แแแแ
แผแโแแแแกแถโแ
แผแโแแแแถ แแทแโแแถแแโแแ
โแแแแแถแ"
#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ToggleSheetGrid.Label.value.text
msgid "Toggle Grid Lines for Current Sheet"
msgstr "แแทแโแแพแโแแแแแถแแโแแแแกแถโแ
แแแแแแโแแแแแถแแโแแแแแนแโแแ
แแ
แปแแแแแแ"
#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Popups..uno_DelBreakMenu.Label.value.text
msgid "Delete Page ~Break"
msgstr "แแปแโโแแถแโแแแแแโแแแแแ"
#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Popups..uno_InsertBreakMenu.Label.value.text
msgid "Page ~Break"
msgstr "แแถแโแแแแแโแแแแแ"
#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Popups..uno_InsertCurrentDate.Label.value.text
msgctxt "officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Popups..uno_InsertCurrentDate.Label.value.text"
msgid "Insert Current Date"
msgstr "แแแแ
แผแโแแถแแแแทแ
แแแแโแแ
แแ
แปแแแแแแ"
#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Popups..uno_InsertCurrentTime.Label.value.text
msgctxt "officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Popups..uno_InsertCurrentTime.Label.value.text"
msgid "Insert Current Time"
msgstr "แแแแ
แผแโแแแแแแแถโแแ
แแ
แปแแแแแแ"
#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Popups..uno_MarkDependents.Label.value.text
msgid "Mark Dependents"
msgstr "แแแแแถแแโแแถแโแขแถแแแแแ"
#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Popups..uno_MarkPrecedents.Label.value.text
msgid "Mark Precedents"
msgstr "แแแแแถแแโโแขแแแธโแแแโแแถแโแแธแแปแ"
#: officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu#..GenericCommands.UserInterface.Commands.macro_///Premium.OOoHelpDocumentation.OpenHelpDocument.Label.value.text
msgid "User's manual"
msgstr "แแแแแ
โแแโแแแแโแขแแแแแแแพ"
#: officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu#..GenericCommands.UserInterface.Commands..uno_GetSubscription.Label.value.text
msgid "~Upgrade to Full Version"
msgstr "แแแแพโแฒแแโแแแแแพแโแกแพแโแแ
โแแแแโแแแแแแ "
#: officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu#..GenericCommands.UserInterface.Commands..uno_ShowLicense.Label.value.text
msgid "License Information..."
msgstr ""
#: officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu#..GenericCommands.UserInterface.Popups..uno_SubscriptionMenu.Label.value.text
msgid "~Subscription"
msgstr "แแถแโแแถแโแแแแ
แถแ "
#: officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu#..WriterCommands.UserInterface.Popups..uno_NavigateBack.Label.value.text
msgid "Back"
msgstr ""
#: officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu#..WriterCommands.UserInterface.Popups..uno_NavigateForward.Label.value.text
msgid "Forward"
msgstr ""
#: officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu#..WriterGlobalWindowState.UIElements.States.private_resource/toolbar/navigationobjectbar.UIName.value.text
msgctxt "officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu#..WriterGlobalWindowState.UIElements.States.private_resource/toolbar/navigationobjectbar.UIName.value.text"
msgid "Navigation"
msgstr ""
#: officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu#..WriterWindowState.UIElements.States.private_resource/toolbar/navigationobjectbar.UIName.value.text
msgctxt "officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu#..WriterWindowState.UIElements.States.private_resource/toolbar/navigationobjectbar.UIName.value.text"
msgid "Navigation"
msgstr ""
#: scp2/source/accessories/module_accessories.ulf#STR_DESC_MODULE_OPTIONAL_ACCESSORIES.LngText.text
msgid ""
"Useful %PRODUCTNAME accessories including various Galleries, Templates, "
"Sample documents and Fonts."
msgstr ""
"%PRODUCTNAME แแถแโแแแแแแแแโแแแแปแแแถแโแแฝแแแแแ
แผแโโแแทแ
แทแแแแแถแโแแแแแแ แแปแแแ "
"แฏแแแถแโแแแแผ แแทแโแแปแแแแขแแแแย แ"
#: scp2/source/accessories/module_accessories.ulf#STR_NAME_MODULE_OPTIONAL_ACCESSORIES.LngText.text
msgid "Accessories"
msgstr "แแแแแถแแแแแแแถ"
#: scp2/source/accessories/module_font_accessories.ulf#STR_DESC_MODULE_OPTIONAL_ACCESSORIES_FONTS.LngText.text
msgid "Additional fonts for %PRODUCTNAME and other applications."
msgstr "แแปแแแแขแแแแโแแแแแแโแแแแแถแแ %PRODUCTNAME แแทแโแแแแแแทแแธโแแแแแแแแย แ"
#: scp2/source/accessories/module_font_accessories.ulf#STR_NAME_MODULE_OPTIONAL_ACCESSORIES_FONTS.LngText.text
msgid "Fonts"
msgstr "แแปแแแแขแแแแ"
#: scp2/source/accessories/module_gallery_accessories.ulf#STR_DESC_MODULE_OPTIONAL_ACCESSORIES_GALLERY.LngText.text
msgid ""
"The %PRODUCTNAME Gallery contains more than three thousand element in "
"various themes."
msgstr ""
"แแทแ
แทแแแแแถแโ %PRODUCTNAME แแถแโแแถแแปโแ
แแแพแโแแถแ แฃแ แ แ แแแแปแโแแแแแโแแแแแแโโแแแแถย แ"
#: scp2/source/accessories/module_gallery_accessories.ulf#STR_NAME_MODULE_OPTIONAL_ACCESSORIES_GALLERY.LngText.text
msgid "Gallery"
msgstr "แแทแ
แทแแแแแถแ"
#: scp2/source/accessories/module_samples_accessories.ulf#STR_DESC_MODULE_OPTIONAL_ACCESSORIES_ADVERTISEMENT.LngText.text
msgid "%PRODUCTNAME advertisement materials."
msgstr "แแแแแถแแโแแแแถแโแแถแแทแแแแแแแ %PRODUCTNAME"
#: scp2/source/accessories/module_samples_accessories.ulf#STR_DESC_MODULE_OPTIONAL_ACCESSORIES_DOCUMENTATIONS.LngText.text
msgid "%PRODUCTNAME documentations."
msgstr "แฏแแแถแ %PRODUCTNAMEย แ"
#: scp2/source/accessories/module_samples_accessories.ulf#STR_DESC_MODULE_OPTIONAL_ACCESSORIES_SAMPLES.LngText.text
msgid "Sample documents are good for learning."
msgstr "แฏแแแถแโแแแแผโแแบโแแแขโแแแแแถแแโแแถแโแแทแแแแถย แ"
#: scp2/source/accessories/module_samples_accessories.ulf#STR_NAME_MODULE_OPTIONAL_ACCESSORIES_ADVERTISEMENT.LngText.text
msgid "Advertisement"
msgstr "แแถแโแแแแถแโแแถแแทแแแแแแแ"
#: scp2/source/accessories/module_samples_accessories.ulf#STR_NAME_MODULE_OPTIONAL_ACCESSORIES_DOCUMENTATIONS.LngText.text
msgid "Documentations"
msgstr "แฏแแแถแ"
#: scp2/source/accessories/module_samples_accessories.ulf#STR_NAME_MODULE_OPTIONAL_ACCESSORIES_SAMPLES.LngText.text
msgid "Sample documents"
msgstr "แฏแแแถแโแแแแผ"
#: scp2/source/accessories/module_templates_accessories.ulf#STR_DESC_MODULE_OPTIONAL_ACCESSORIES_TEMPLATES_TEMPLATES_COMMON.LngText.text
msgid ""
"Create perfect documents within seconds with document templates. Common "
"templates contain language intependent templates."
msgstr ""
"แแแแแพแโแฏแแแถแโแแแขโแฅแแแแ
แแโแแแแปแโแแแแแแแแแปแแแแถแโแแทแแถแแธโโแแแโแแแแพโแแปแแแโแฏแแแถแย แ "
"แแปแแแโแแแแแแถโแแถแโแแปแแแโแแถแแถโแฏแแแถแแแย แ"
#: scp2/source/accessories/module_templates_accessories.ulf#STR_DESC_MODULE_OPTIONAL_ACCESSORIES_TEMPLATES.LngText.text
msgid "Create perfect documents within seconds with document templates."
msgstr "แแแแแพแโโแฏแแแถแโแแแโแแแขโแฅแแแแ
แแโแแถแแฝแโแแปแแแโแฏแแแถแย แ"
#: scp2/source/accessories/module_templates_accessories.ulf#STR_NAME_MODULE_OPTIONAL_ACCESSORIES_TEMPLATES_TEMPLATES_COMMON.LngText.text
msgid "Common templates"
msgstr "แแปแแแโแแแแแแถ"
#: scp2/source/accessories/module_templates_accessories.ulf#STR_NAME_MODULE_OPTIONAL_ACCESSORIES_TEMPLATES.LngText.text
msgid "Templates"
msgstr "แแปแแแ"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_CT2N.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_CT2N.LngText.text"
msgid "Convert Text to Number"
msgstr ""
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_GOOGLE_DOCS.LngText.text
msgid "Google Docs & Zoho"
msgstr ""
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_HUNART.LngText.text
msgid ""
"Toolbar to add cross-references with automatic conditional Hungarian "
"articles (eg. *az* 5. รกbra, *a* 6. รกbra) to avoid bad article and number "
"combination in cross-references."
msgstr ""
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_LANGUAGETOOL.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_LANGUAGETOOL.LngText.text"
msgid "LanguageTool Open Source language checker"
msgstr ""
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_LIGHTPROOF.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_LIGHTPROOF.LngText.text"
msgid "Lightproof"
msgstr "Lightproof"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_MEDIAWIKI.LngText.text
msgid ""
"The Sun Wiki Publisher enables you to create Wiki articles on MediaWiki "
"servers without having to know the syntax of the MediaWiki markup language."
msgstr ""
"แแแแแแทแแธโแแแแแปแแแโแแแแถแโแแแแ Sun Wiki "
"แขแแปแแแแถแโแฒแแโแขแแแโแแแแแพแโแขแแแแแโแแธแแธโแแ
โแแพโแแแถแแแธแแแแแแพ MediaWiki "
"แแแโแแทแโแ
แถแแแถแ
แแแนแโแขแแแธโแแถแแแแแแแแแแแโแแโแแถแแถ MediaWiki markup แแแโแแย แ"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_MINIMIZER.LngText.text
msgid ""
"The Sun Presentation Minimizer is used to reduce the file size of the "
"current presentation. Images will be compressed, and data that is no longer "
"needed will be removed."
msgstr ""
"แแแแแแทแแธโแแแแแฝแโแแถแโแแแแ แถแโแขแแแแแแแถโแแแแ Sun "
"แแแแผแโแแถแแแแแพโโแแพแแแแธแแถแแโแแแแแโแแแ แโแฏแแแถแโแแโแแถแโแแแแ แถแโแแ
แแ
แปแแแแแแย แ "
"แแผแแแถแโแแนแโแแแแผแโแแถแโแแแแ แถแแ แ แพแโแแทแแแแแแโแแแโแแแแผแโแแถแโแแแโแ แพแ "
"แแแโแ
แถแแแถแ
แโแแแแผแโแแโแ
แแย แ"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_MYSQLC.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_MYSQLC.LngText.text"
msgid "MySQL Connector for OpenOffice.org"
msgstr ""
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_NLPSOLVER.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_NLPSOLVER.LngText.text"
msgid "Solver for Nonlinear Programming"
msgstr "แแแแแแทแแธโแแแแแแแถแโแแแแแถแแโแแแแแแทแแธโแแทแแแแโแแธแแแขแแแ"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_NUMBERTEXT.LngText.text
msgid ""
"The NUMBERTEXT/MONEYTEXT functions are number name and currency conversion "
"spreadsheet functions."
msgstr ""
"แแปแแแถแ NUMBERTEXT/MONEYTEXT แแบโแแถโแแแแแโแแแ "
"แแทแโโแแปแแแถแโแแแแแแโแแแแแ
โแแแแแธโแแแแแแโแแผแแทแแแแแแย แ"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_OOOBLOGGER.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_OOOBLOGGER.LngText.text"
msgid "Metaweblog Support"
msgstr "แแถโแแแถแแแแ Metaweblog"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_PDFIMPORT.LngText.text
msgid "The PDF Import Extension allows you to import and modify PDF documents."
msgstr "แแแแแโแแแแแแโแแถแแ
แผแ PDF แขแแปแแแแถแโแฒแแโแขแแแโแแถแแ
แผแ แแทแโแแแแแแโแฏแแแถแ PDFย แ"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_PRESENTER_SCREEN.LngText.text
msgid ""
"The Presenter Console Extension provides more control over your slide show "
"presentation, such as the ability to see the upcoming slide, the slide "
"notes, and a presentation timer whereas the audience see only the current "
"slide."
msgstr ""
"แแแแแโแแแแแแโแแโแแปแแแผแโแแแแแแทแแธโแแแแ แถแโ "
"แแแแแโแแผแโแแถแโแแแแฝแแแทแแทแแแโแแแแแแโแแแโแแพโแแถแโแแแแ
แถแแโแแแแถแโแแแแโแขแแแ "
"แแผแ
แแถโแแแแแแถแโ แแพแแแแธโแแพแโแแแแถแโแแแแแถแแ แ
แแแถแโแแแแโแแแแถแ "
"แแทแโแแแแแแทแแธโแแแแแโแแแแแแแถโแแแแ แถแ "
"แแแแแโแแถโแขแแแแแพแโแแพแแแโแแแแถแแแ
แแ
แปแแแแแแโแแแปแแแแแย แ"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_REPORTDESIGN.LngText.text
#, fuzzy
msgid "Report Builder"
msgstr "แแแแแแทแแธโแแแแถแแแถโแแแถแแแถแแแโแแแแ Sun"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_SUN_TEMPLATE_PACK.LngText.text
msgid ""
"Use the OpenOffice.org template package to save time and professional \"look "
"and feel\" of templates ensure output is noticed and read."
msgstr ""
"แแแแพโแแแแ
แแโแแแแแแโแขแถแแแแโแแแแโ OpenOffice.org แแ
โแแแแแถแแปแแแแแแแแถโ "
"แแทแโโโแแทแแแแถแแธแแโ \"แแพแโ แแทแโ แแแแถแแโ\" "
"แแแแทแแแแแแแปแแแโแแแโแแแแพโแฒแแโแแแแถแแโแแโแโแแแแผแโแแถแโแแแแแถแแโ แแทแโแขแถแโย แ"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_TYPO.LngText.text
msgid ""
"Toolbar for Graphite smart font features: ligatures, small caps, old style "
"numbers, proportional or monospaced numbers, automatic thousand separators, "
"minus sign, real superscript and subscript, German umlaut variants, "
"fractions."
msgstr ""
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_WATCH_WINDOW.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS_WATCH_WINDOW.LngText.text"
msgid "Watch Window"
msgstr "แแแแขแฝแ
โแแแแถแแแพแ"
#: scp2/source/extensions/module_extensions.ulf#STR_DESC_MODULE_OPTIONAL_EXTENSIONS.LngText.text
msgid "Useful %PRODUCTNAME extensions."
msgstr "แแแแแโแแแแแแโแแแแ %PRODUCTNAME แแแโแแถแโแแแแแแแแย แ"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_CT2N.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_CT2N.LngText.text"
msgid "Convert Text to Number"
msgstr ""
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_GOOGLE_DOCS.LngText.text
msgid "GoogleDocs"
msgstr "GoogleDocs"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_HUNART.LngText.text
msgid "Hungarian cross-reference toolbar"
msgstr ""
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_LANGUAGETOOL.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_LANGUAGETOOL.LngText.text"
msgid "LanguageTool Open Source language checker"
msgstr ""
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_LIGHTPROOF.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_LIGHTPROOF.LngText.text"
msgid "Lightproof"
msgstr "Lightproof"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_MEDIAWIKI.LngText.text
msgid "Sun MediaWiki Publisher"
msgstr "แแแแแแทแแธโแแแแแปแแแโแแแแถแ Sun MediaWiki"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_MINIMIZER.LngText.text
msgid "Sun Presentation Minimizer"
msgstr "แแแแแแทแแธโแแแแแฝแโแขแแแแแแแถโแแแแถแโแแแแ แถแโแแแแ Sun"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_MYSQLC.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_MYSQLC.LngText.text"
msgid "MySQL Connector for OpenOffice.org"
msgstr ""
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_NLPSOLVER.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_NLPSOLVER.LngText.text"
msgid "Solver for Nonlinear Programming"
msgstr "แแแแแแทแแธโแแแแแแแถแโแแแแแถแแโแแแแแแทแแธโแแทแแแแโแแธแแแขแแแ"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_NUMBERTEXT.LngText.text
msgid "Numbertext"
msgstr "Numbertext"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_OOOBLOGGER.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_OOOBLOGGER.LngText.text"
msgid "Metaweblog Support"
msgstr "แแถแโแแถแแแแ Metaweblog"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_PDFIMPORT.LngText.text
msgid "Sun PDF Import"
msgstr "แแถแแ
แผแ Sun PDF"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_PRESENTER_SCREEN.LngText.text
msgid "Sun Presenter Console"
msgstr "แแปแแแผแโแแโแแแแแแทแแธแแแแ แถแโแแแแ Sun"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_REPORTDESIGN.LngText.text
msgid "Sun Report Builder"
msgstr "แแแแแแทแแธโแแแแถแแแถโแแแถแแแถแแแโแแแแ Sun"
# 49184 AttribValues/label
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_SUN_TEMPLATE_PACK.LngText.text
msgid "Sun Professional Template Pack"
msgstr "แแแแ
แแโแแปแแแโแแแแแถแแแทแแแแถแแธแแโแแแแ Sun"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_TYPO.LngText.text
msgid "Typography toolbar"
msgstr ""
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_WATCH_WINDOW.LngText.text
msgctxt "scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS_WATCH_WINDOW.LngText.text"
msgid "Watch Window"
msgstr "แแแแขแฝแ
โแแแแถแแแพแ"
#: scp2/source/extensions/module_extensions.ulf#STR_NAME_MODULE_OPTIONAL_EXTENSIONS.LngText.text
msgid "Extensions"
msgstr "แแแแแโแแแแแแ"
#: scp2/source/javafilter/module_javafilter.ulf#STR_DESC_MODULE_OPTIONAL_JAVAFILTER_SVGIMPORT.LngText.text
msgid "Support for SVG Import"
msgstr "แแถแแแแโแแถแโแแถแแ
แผแ SVG"
#: scp2/source/javafilter/module_javafilter.ulf#STR_NAME_MODULE_OPTIONAL_JAVAFILTER_SVGIMPORT.LngText.text
msgid "SVG Import"
msgstr "แแถแโแแถแแ
แผแ SVG"
#: scp2/source/ooo/folderitem_ooo.ulf#STR_FI_TOOLTIP_SOFFICE.LngText.text
msgid ""
"LibreOffice, the office productivity suite provided by The Document "
"Foundation. See http://www.documentfoundation.org"
msgstr ""
#: scp2/source/ooo/registryitem_ooo.ulf#STR_REG_VAL_APPCAPABILITY_DESCRIPTION_OOO.LngText.text
msgid "LibreOffice"
msgstr ""
#: sc/source/ui/drawfunc/objdraw.src#MN_DELLNK.SID_DRAW_HLINK_DELETE.menuitem.text
msgid "~Remove Hyperlink"
msgstr "แแโแแแโแแแแแโแ
แแ"
#: sc/source/ui/drawfunc/objdraw.src#MN_EDITLNK.SID_DRAW_HLINK_EDIT.menuitem.text
msgid "~Hyperlink..."
msgstr "แแแโแแแแแ..."
#: sc/source/ui/drawfunc/objdraw.src#RID_POPUP_GRAPHIC.RID_POPUP_CHART.SID_INPLACE_OBJECT.menuitem.text
msgctxt "sc/source/ui/drawfunc/objdraw.src#RID_POPUP_GRAPHIC.RID_POPUP_CHART.SID_INPLACE_OBJECT.menuitem.text"
msgid "~Activate OLE object"
msgstr "แแแแพโแฒแแโแแแแแป OLE แแแแแ"
#: sc/source/ui/drawfunc/objdraw.src#RID_POPUP_GRAPHIC.RID_POPUP_CHART.SID_OUTPLACE_OBJECT.menuitem.text
msgctxt "sc/source/ui/drawfunc/objdraw.src#RID_POPUP_GRAPHIC.RID_POPUP_CHART.SID_OUTPLACE_OBJECT.menuitem.text"
msgid "~Activate OLE object outplace"
msgstr "แแแแพโแฒแแโแแถแโแแแแถแแแแแแผแโแแแแแแโแแแแแป OLE แแแแแ"
#: sc/source/ui/drawfunc/objdraw.src#RID_POPUP_GRAPHIC.RID_POPUP_OLE.SID_INPLACE_OBJECT.menuitem.text
msgctxt "sc/source/ui/drawfunc/objdraw.src#RID_POPUP_GRAPHIC.RID_POPUP_OLE.SID_INPLACE_OBJECT.menuitem.text"
msgid "~Activate OLE object"
msgstr "แแแแพโแฒแแโแแแแแป OLE แแแแแ"
#: sc/source/ui/drawfunc/objdraw.src#RID_POPUP_GRAPHIC.RID_POPUP_OLE.SID_OUTPLACE_OBJECT.menuitem.text
msgctxt "sc/source/ui/drawfunc/objdraw.src#RID_POPUP_GRAPHIC.RID_POPUP_OLE.SID_OUTPLACE_OBJECT.menuitem.text"
msgid "~Activate OLE object outplace"
msgstr "แแแแพโแฒแแโแแถแโแแแแถแแแแแแผแโแแแแแแโแแแแแป OLE แแแแแ"
#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.LAB_DATAFORM_RECORDNO.fixedtext.text
msgid "/"
msgstr "/"
#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.modaldialog.text
msgid "Data Form"
msgstr "แแแแปแโแแทแแแแแแ"
#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_CLOSE.pushbutton.text
msgid "Close"
msgstr "แแทแโ"
#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_DELETE.pushbutton.text
msgid "Delete"
msgstr "แแปแ"
#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_LAST.pushbutton.text
msgid "Last Record"
msgstr "แแแแแแแแแถโแ
แปแแแแแแ"
#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_NEW.pushbutton.text
msgid "New"
msgstr "แแแแธ"
#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_NEXT.pushbutton.text
msgid "Next Record"
msgstr "แแแแแแแแแถโแแแแแถแแ"
#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_RESTORE.pushbutton.text
msgid "Restore"
msgstr "แแปแโแกแพแแแทแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_BUTTON.string.text
msgid "Button"
msgstr "แแแผแแปแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_DROPDOWN.string.text
msgid "Drop Down"
msgstr "แแแแแถแแแ
แปแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_GROUPBOX.string.text
msgid "Group Box"
msgstr "แแแแขแแโแแแแปแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_CHECKBOX.string.text
msgid "Check Box"
msgstr "แแแแขแแโแแธแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_LABEL.string.text
msgid "Label"
msgstr "แแแแถแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_LISTBOX.string.text
msgid "List Box"
msgstr "แแแแขแแโแแแแแธ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_OPTIONBUTTON.string.text
msgid "Option Button"
msgstr "แแแผแแปแโแแแแแพแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_SCROLLBAR.string.text
msgid "Scroll Bar"
msgstr "แแแถแโแแแผแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_SPINNER.string.text
msgid "Spinner"
msgstr "แแแผแแปแโแแแแแพแโแแแแแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_OPTIONS_WARN_SEPARATORS.string.text
msgid ""
"Because the current formula separator settings conflict with the locale, the "
"formula separators have been reset to their default values."
msgstr ""
"แแธโแแแแแโแแโแแถแโแแแแแโแแแแแถโแแแแแถแโแแทแแธโแแผแแแแแโแแ
แแ
แปแแแแแแโแแแแแแแแทแ
โแแถโแแฝแ"
"โแแนแโโแฏแแแถแโแแผแแแแแถแ "
"แแแแแถโแแแแแถแแแทแแธโแแผแแแแแโแแแแผแโแแถแแแแแแโแแ
โแแแแแโแแแแถแแแพแโแแแแแแฝแแแถโแแทแย แ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_SHAPE_AUTOSHAPE.string.text
msgid "AutoShape"
msgstr "แแผแแแถแโแแแแแแแแแแแแแท"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_SHAPE_LINE.string.text
msgctxt "sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_SHAPE_LINE.string.text"
msgid "Line"
msgstr "แแแแแถแแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_SHAPE_OVAL.string.text
msgid "Oval"
msgstr "แแแแแแแพ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_SHAPE_RECTANGLE.string.text
msgid "Rectangle"
msgstr "แ
แแปแแแโแแแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_SHAPE_TEXTBOX.string.text
msgid "Text Box"
msgstr "แแแแขแแโแขแแแแแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_UNDO_INSERT_CURRENT_DATE.string.text
msgctxt "sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_UNDO_INSERT_CURRENT_DATE.string.text"
msgid "Insert Current Date"
msgstr "แแแแ
แผแโแแถแแแแทแ
แแแแโแแ
แแ
แปแแแแแแ"
#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_UNDO_INSERT_CURRENT_TIME.string.text
msgctxt "sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_UNDO_INSERT_CURRENT_TIME.string.text"
msgid "Insert Current Time"
msgstr "แแแแ
แผแโแแแแแแแถโแแ
แแ
แปแแแแแแ"
#: sc/source/ui/src/optdlg.src#RID_SCPAGE_FORMULA.FL_FORMULA_OPTIONS.fixedline.text
msgid "Formula options"
msgstr "แแแแแพแโแแผแแแแแ"
#: sc/source/ui/src/optdlg.src#RID_SCPAGE_FORMULA.FL_FORMULA_SEPS.fixedline.text
msgid "Separators"
msgstr "แแฝแขแแแแโแแแแแ"
#: sc/source/ui/src/optdlg.src#RID_SCPAGE_FORMULA.FT_FORMULA_SEP_ARG.fixedtext.text
msgid "~Function"
msgstr "แแปแแแถแ"
#: sc/source/ui/src/optdlg.src#RID_SCPAGE_FORMULA.FT_FORMULA_SEP_ARRAY_C.fixedtext.text
msgid "Array co~lumn"
msgstr "แแฝแแแโแขแถแแแ"
#: sc/source/ui/src/optdlg.src#RID_SCPAGE_FORMULA.FT_FORMULA_SEP_ARRAY_R.fixedtext.text
msgid "Array ~row"
msgstr "แแฝแแแแโแขแถแแแ"
#: sc/source/ui/src/optdlg.src#RID_SCPAGE_FORMULA.FT_FORMULA_SYNTAX.fixedtext.text
msgid "Formula ~syntax"
msgstr "แแถแแแโแแแแแแแแโแแผแแแแแ"
#: sc/source/ui/src/optdlg.src#RID_SCPAGE_FORMULA.CB_ENGLISH_FUNC_NAME.checkbox.text
msgid "Use English function names"
msgstr "แแแแพโแแแแแโแแปแแแถแโแแถโแแถแแถโแขแแแแแแแ"
#: sc/source/ui/src/optdlg.src#RID_SCPAGE_FORMULA.BTN_FORMULA_SEP_RESET.pushbutton.text
msgid "Rese~t"
msgstr "แแแแแโแกแพแโแแทแ"
#: sc/source/ui/src/optdlg.src#RID_SCPAGE_FORMULA.LB_FORMULA_SYNTAX.1.stringlist.text
msgid "Calc A1"
msgstr "Calc A1"
#: sc/source/ui/src/optdlg.src#RID_SCPAGE_FORMULA.LB_FORMULA_SYNTAX.2.stringlist.text
msgid "Excel A1"
msgstr "Excel A1"
#: sc/source/ui/src/optdlg.src#RID_SCPAGE_FORMULA.LB_FORMULA_SYNTAX.3.stringlist.text
msgid "Excel R1C1"
msgstr "Excel R1C1"
#: sc/source/ui/src/popup.src#RID_POPUP_PAGEBREAK.SID_INSERT_POSTIT.menuitem.text
msgid "Insert Not~e"
msgstr "แแแแ
แผแโแ
แแแถแ"
#: sc/source/ui/src/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_NATURALSORT.checkbox.text
msgid "Enable ~natural sort"
msgstr "แขแแปแแแแถแโแแถแโแแแแแแโแแแแแแถ"
#: sd/source/ui/app/menuids_tmpl.src#MN_OLE_OBJECT.SID_INPLACE_OBJECT.menuitem.text
msgid "~OLE Object"
msgstr "แแแแแป OLE"
#: sd/source/ui/app/menuids_tmpl.src#MN_OUTLINE_TEXT_AUTOFIT.SID_OUTLINE_TEXT_AUTOFIT.menuitem.text
msgid "~Autofit Text"
msgstr "แแโแขแแแแแโแแแโแแแแแแแแแแแแแท"
#: sd/source/ui/app/menuids_tmpl.src#MN_OUTPLACE_OLE_OBJECT.SID_OUTPLACE_OBJECT.menuitem.text
msgid "~Outplace OLE Object"
msgstr "แแแแผแโแแแแแแโแแแแแป OLE"
#: sd/source/ui/app/menuids_tmpl.src#MN_SAVE_GRAPHIC.menuitem.text
msgid "Save ~Graphic..."
msgstr "แแแแแถแแปแโแแแแถแ แแแทแ..."
#: sd/source/ui/dlg/vectdlg.src#DLG_VECTORIZE.MT_FILLHOLES.metricfield.text
msgctxt "sd/source/ui/dlg/vectdlg.src#DLG_VECTORIZE.MT_FILLHOLES.metricfield.text"
msgid " Pixel"
msgstr " แแธแแแแ"
#: sd/source/ui/dlg/vectdlg.src#DLG_VECTORIZE.MT_REDUCE.metricfield.text
msgctxt "sd/source/ui/dlg/vectdlg.src#DLG_VECTORIZE.MT_REDUCE.metricfield.text"
msgid " Pixel"
msgstr " แแธแแแแ"
# 48926 AttribValues/label
#: sfx2/source/appl/sfx.src#RID_SFXSTR_AVMEDIALINK.string.text
msgid "Audio/Video"
msgstr "แขแผแแธแแแผ/แแธแแแขแผ"
#: sfx2/source/dialog/dinfdlg.src#TP_DOCINFODOC.BTN_CHANGE_PASS.pushbutton.text
msgid "Change ~Password..."
msgstr "แแแแถแแแแแแผแโแแถแแแโแแแแแถแแ..."
#: sfx2/source/dialog/passwd.src#DLG_PASSWD.STR_PASSWD_EMPTY.string.text
msgid "(The password can be empty)"
msgstr "(แแถแแแโแแแแแถแแโแขแถแ
โแแแโแแถแ)"
#: sfx2/source/dialog/passwd.src#DLG_PASSWD.STR_PASSWD_MIN_LEN.string.text
msgid "(Minimum $(MINLEN) characters)"
msgstr "(แแฝแขแแแแ $(MINLEN) แขแแทแแแแถ)"
#: sfx2/source/doc/doctempl.src#TEMPLATE_LONG_NAMES_ARY.11.itemlist.text
msgid "Labels"
msgstr "แแแแถแ"
# 48926 AttribValues/label
#: svl/source/misc/mediatyp.src#STR_SVT_MIMETYPE_AUDIO_VORBIS.string.text
msgid "Audio file"
msgstr "แฏแแแถแโแขแผแแธแแแผ"
#: svl/source/misc/mediatyp.src#STR_SVT_MIMETYPE_VIDEO_THEORA.string.text
msgid "Video file"
msgstr "แฏแแแถแโแแธแแแขแผ"
#: svx/inc/globlmn_tmpl.hrc#ITEM_SHOW_LICENSE.#define.text
msgid "License information..."
msgstr ""
#: svx/source/dialog/linkwarn.src#RID_SVXDLG_LINK_WARNING.PB_NO.cancelbutton.text
msgid "~Embed Graphic"
msgstr "แแแแถแ แแแทแโแแแแแแ"
#: svx/source/dialog/linkwarn.src#RID_SVXDLG_LINK_WARNING.FT_INFOTEXT.fixedtext.text
msgid ""
"The file %FILENAME will not be stored along with your document, but only "
"referenced as a link. This is dangerous if you move and/or rename the files. "
"Do you want to embed the graphic instead?"
msgstr ""
"แฏแแแถแ %FILENAME แแนแโแแทแโแแแแผแแแถแโแแปแโแแ
โแแถแแฝแโแฏแแแถแโแแแแโแขแแแโแแ "
"แแแปแแแแโแแถแโแแแโแแถโแแแย แ แแแโแแถโแแแแแโแแแแถแแ แแแแแทแโแแพโแขแแแโแแแแถแแแแธ "
"แฌโแแแแผแแแแแแโแฏแแแถแย แ แแพโแขแแแโแ
แแโแแแแแแโแแแแถแ แแแทแโแแแแฝแโแแทแย ?"
#: svx/source/dialog/linkwarn.src#RID_SVXDLG_LINK_WARNING.CB_WARNING_OFF.checkbox.text
msgid "~Ask when linking a graphic"
msgstr "แแฝแโแแ
แแแโแแแโแแ
โแแแแถแ แแแทแ"
#: svx/source/dialog/linkwarn.src#RID_SVXDLG_LINK_WARNING.PB_OK.okbutton.text
msgid "~Keep Link"
msgstr "แแปแโแแแ"
#: svx/source/dialog/ruler.src#RID_SVXMN_RULER.ID_CHAR.menuitem.text
msgctxt "svx/source/dialog/ruler.src#RID_SVXMN_RULER.ID_CHAR.menuitem.text"
msgid "Char"
msgstr "แแฝแขแแแแ"
#: svx/source/dialog/ruler.src#RID_SVXMN_RULER.ID_LINE.menuitem.text
msgctxt "svx/source/dialog/ruler.src#RID_SVXMN_RULER.ID_LINE.menuitem.text"
msgid "Line"
msgstr "แแแแแถแแ"
#: svx/source/dialog/sdstring.src#RID_SVXSTR_FIELDUNIT_TABLE.10.itemlist.text
msgctxt "svx/source/dialog/sdstring.src#RID_SVXSTR_FIELDUNIT_TABLE.10.itemlist.text"
msgid "Char"
msgstr "แแฝแขแแแแ"
#: svx/source/dialog/sdstring.src#RID_SVXSTR_FIELDUNIT_TABLE.11.itemlist.text
msgctxt "svx/source/dialog/sdstring.src#RID_SVXSTR_FIELDUNIT_TABLE.11.itemlist.text"
msgid "Line"
msgstr "แแแแแถแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ANIMALS.string.text
msgid "Animals"
msgstr "แแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ARCHITECTURE_BATHROOM_KITCHEN.string.text
msgid "Architecture - bathroom, kitchen"
msgstr "แแแแถแแแแแแแแ - แแแแแแโแแนแ แแแแแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ARCHITECTURE_BUILDINGS.string.text
msgid "Architecture - buildings"
msgstr "แแแแถแแแแแแแแ - แขแถแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ARCHITECTURE_FURNITURES.string.text
msgid "Architecture - furnitures"
msgstr "แแแแถแแแแแแแแ - แแแแฟแโแแแแ แถแแนแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ARCHITECTURE_KITCHEN.string.text
msgid "Architecture - kitchen"
msgstr "แแแแถแแแแแแแแ - แแแแแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ARCHITECTURE_OVERLAY.string.text
msgid "Architecture - overlay"
msgstr "แแแแถแแแแแแแแ - แแถแโแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ARCHITECTURE_WINDOWS_DOORS.string.text
msgid "Architecture - windows, doors"
msgstr "แแแแถแแแแแแแแ - แแแแขแฝแ
แแแแถ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ARROWS_1.string.text
msgid "Arrows"
msgstr "แแแแฝแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_BLUE_MAN.string.text
msgid "Blue Man"
msgstr "แแแปแแแโแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_BUGS.string.text
msgid "Bugs"
msgstr "แแแ แปแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_BUILDINGS.string.text
msgid "Buildings"
msgstr "แขแถแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CARS.string.text
msgid "Cars"
msgstr "แแแแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CISCO_MEDIA.string.text
msgid "Cisco - Media"
msgstr "แแแธแแแแผ - แแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CISCO_OTHER.string.text
msgid "Cisco - Other"
msgstr "แแแธแแแแผ - แแแแแแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CISCO_PRODUCTS.string.text
msgid "Cisco - Products"
msgstr "แแแธแแแแผ - แแแทแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CISCO_WAN_LAN.string.text
msgid "Cisco - WAN - LAN"
msgstr "แแแธแแแแผ - WAN - LAN"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_01_CLOCK.string.text
msgid "Clock - 01 clock"
msgstr "แแถแกแทแแถ - แแแแ แ แก"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_02_CLOCK.string.text
msgid "Clock - 02 clock"
msgstr "แแถแกแทแแถ - แแแแ แ แข"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_03_CLOCK.string.text
msgid "Clock - 03 clock"
msgstr "แแถแกแทแแถ - แแแแ แ แฃ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_04_CLOCK.string.text
msgid "Clock - 04 clock"
msgstr "แแถแกแทแแถ - แแแแ แ แค"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_05_CLOCK.string.text
msgid "Clock - 05 clock"
msgstr "แแถแกแทแแถ - แแแแ แ แฅ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_06_CLOCK.string.text
msgid "Clock - 06 clock"
msgstr "แแถแกแทแแถ - แแแแ แ แฆ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_07_CLOCK.string.text
msgid "Clock - 07 clock"
msgstr "แแถแกแทแแถ - แแแแ แ แง"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_08_CLOCK.string.text
msgid "Clock - 08 clock"
msgstr "แแถแกแทแแถ - แแแแ แ แจ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_09_CLOCK.string.text
msgid "Clock - 09 clock"
msgstr "แแถแกแทแแถ - แแแแ แ แฉ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_10_CLOCK.string.text
msgid "Clock - 10 clock"
msgstr "แแถแกแทแแถ - แแแแ แกแ "
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_11_CLOCK.string.text
msgid "Clock - 11 clock"
msgstr "แแถแกแทแแถ - แแแแ แกแก"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CLOCK_12_CLOCK.string.text
msgid "Clock - 12 clock"
msgstr "แแถแกแทแแถ - แแแแ แกแข"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_COMPUTER_GENERAL.string.text
msgid "Computer - general"
msgstr "แแปแแแแแผแแแ - แแผแแ
"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_COMPUTER_NETWORK_DEVICES.string.text
msgid "Computer - network devices"
msgstr "แแปแแแแแผแแแ - แงแแแแแโแแแแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_COMPUTER_NETWORK.string.text
msgid "Computer - network"
msgstr "แแปแแแแแผแแแ - แแแแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_COMPUTER_WIFI.string.text
msgid "Computer - WIFI"
msgstr "แแปแแแแแผแแแ - WIFI"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CROPS.string.text
msgid "Crops"
msgstr "แ
แแแนแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_DOMINO_NUMBERED.string.text
msgid "Domino - numbered"
msgstr "แแผแแธแแผ - แแแแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_DOMINO_USUAL.string.text
msgid "Domino - usual"
msgstr "แแผแแธแแผ - แแแแแแถ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ELECTRONICS_CIRCUIT.string.text
msgid "Electronics - circuit"
msgstr "แขแแกแทแ
แแแแผแแทแ - แแแแแแธ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ELECTRONICS_GAUGES.string.text
msgid "Electronics - gauges"
msgstr "แขแแกแทแ
แแแแผแแทแ - แแแแแถแแโแแแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ELECTRONICS_PARTS_1.string.text
msgid "Electronics - parts 1"
msgstr "แขแแกแทแ
แแแแผแแทแ - แแแแแ แก"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ELECTRONICS_PARTS_2.string.text
msgid "Electronics - parts 2"
msgstr "แขแแกแทแ
แแแแผแแทแ - แแแแแ แข"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ELECTRONICS_PARTS_3.string.text
msgid "Electronics - parts 3"
msgstr "แขแแกแทแ
แแแแผแแทแ - แแแแแ แฃ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ELECTRONICS_PARTS_4.string.text
msgid "Electronics - parts 4"
msgstr "แขแแกแทแ
แแแแผแแทแ - แแแแแ แค"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ELECTRONICS_SIGNS.string.text
msgid "Electronics - signs"
msgstr "แแแทแโแขแแกแทแ
แแแแผแแทแ - แแแแแถ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_ELEMENTSBULLETS2.string.text
msgid "Bullets 2"
msgstr "แ
แแแปแ
แข"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_FLAGS_1.string.text
msgid "Flags"
msgstr "แแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_FLOWCHARTS_1.string.text
msgid "Flowcharts"
msgstr "แแแแผแแแถแโแแแ แผแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_FLOWCHARTS_2.string.text
msgid "Flowcharts 2"
msgstr "แแแแผแแแถแโแแแ แผแ แข"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_FORALSTUDIOA.string.text
msgid "Foral-StudioA"
msgstr "Foral-StudioA"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_FRACTIONS.string.text
msgid "Fractions"
msgstr "แแแแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_HOMEPAGE2.string.text
msgid "Homepage 2"
msgstr "แแแ แแแแแ แข"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_CHEMISTRY_AMINO_ACIDS.string.text
msgid "Chemistry - Amino acids"
msgstr "แแธแแธ - แขแถแแธแแผโแขแถแแแธแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_LOGICAL_GATES.string.text
msgid "Logical gates"
msgstr "แ
แแแโแกแผแแธแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_LOGICAL_SIGNS.string.text
msgid "Logical signs"
msgstr "แแแแแถโแแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_LOGOS.string.text
msgid "Logos"
msgstr "แกแผแ แแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_AFRICA.string.text
msgid "Maps - Africa"
msgstr "แแแแแธ - แขแถแ แแแแแธแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_ANCIENT_TIMES.string.text
msgid "Maps - Ancient times"
msgstr "แแแแแธ - แแแแโแแปแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_ASIA.string.text
msgid "Maps - Asia"
msgstr "แแแแแธ - แขแถแแแธ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_AUSTRALIA.string.text
msgid "Maps - Australia"
msgstr "แแแแแธ - แขแผแแแแแแถแแธ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_CANADA.string.text
msgid "Maps - Canada"
msgstr "แแแแแธ - แแถแแถแแถโ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_CONTINENTS.string.text
msgid "Maps - Continents"
msgstr "แแแแแธ - แแถแแทแแถ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_EUROPE_1.string.text
msgid "Maps - Europe 1"
msgstr "แแแแแธ - แขแบแแแปแ แก"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_EUROPE.string.text
msgid "Maps - Europe"
msgstr "แแแแแธ - แขแบแแแปแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_FRANCE_COUNTRIES.string.text
msgid "Maps - France - countries"
msgstr "แแแแแธ - แแแแแแโแแถแแถแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_FRANCE.string.text
msgid "Maps - France"
msgstr "แแแแแธ - แแถแแถแแโ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_HISTORY_1900.string.text
msgid "Maps - history - 1900"
msgstr "แแแแแธ - แแแแแแแแทแแถแแแแแ - แกแฉแ แ "
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_MEXICO.string.text
msgid "Maps - Mexico"
msgstr "แแแแแธ - แแแทแ
แแแทแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_MIDDLE_AGES.string.text
msgid "Maps - Middle ages"
msgstr "แแแแแธ - แแแแแนแแแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_MIDDLE_AMERICA.string.text
msgid "Maps - Middle America"
msgstr "แแแแแธ - แขแถแแแแทแโแแแแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_MIDDLE_EAST.string.text
msgid "Maps - Middle East"
msgstr "แแแแแธ - แแแแแนแแแผแแถ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_SIGNS.string.text
msgid "Maps - signs"
msgstr "แแแแแธ - แแแแแถ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_SIMBOLS.string.text
msgid "Maps - simbols"
msgstr "แแแแแธ - แแทแแแแทแแแแแแถ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_SOUTH_AMERICA.string.text
msgid "Maps - South America"
msgstr "แแแแแธ - แขแถแ แแแแแทแโแแถแแแแแผแโโ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_UNITED_STATES_OF_AMERICA.string.text
msgid "Maps - United States of America"
msgstr "แแแแแธ - แแ แแแแโแขแถแแแแทแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MAPS_WORLD.string.text
msgid "Maps - World"
msgstr "แแแแแธ - แแทแแแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MUSIC_INSTRUMENTS.string.text
msgid "Music - instruments"
msgstr "แแแแแแแธ - แงแแแแแโแแแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_MUSIC_SHEET_MUSIC.string.text
msgid "Music - sheet music"
msgstr "แแแแแแแธ - แแแแแนแโแแแโแแแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_NUMBERS.string.text
msgid "Numbers"
msgstr "แแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_OBJECTS.string.text
msgid "Objects"
msgstr "แแแแแป"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_OPENOFFICEORG_LOGOS.string.text
msgid "OpenOffice.org logos"
msgstr "แกแผแ แแแ OpenOffice.org"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PEOPLE_1.string.text
msgid "People"
msgstr "แแแปแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_BUILDINGS.string.text
msgid "Photos - Buildings"
msgstr "แแผแแแ - แขแถแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_CELEBRATION.string.text
msgid "Photos - Celebration"
msgstr "แแผแแแ - แแถแโแขแแขแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_CITIES.string.text
msgid "Photos - Cities"
msgstr "แแผแแแ - แแธแแแแปแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_FAUNA.string.text
msgid "Photos - Fauna"
msgstr "แแผแแแ - แแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_FLOWERS.string.text
msgid "Photos - Flowers"
msgstr "แแผแแแ - แแแแถ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_FOODSANDDRINKS.string.text
msgid "Photos - Foods and Drinks"
msgstr "แแผแแแ - แขแถแ แถแ แแทแโแแแแแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_HUMANS.string.text
msgid "Photos - Humans"
msgstr "แแผแแแ - แแแปแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_LANDSCAPES.string.text
msgid "Photos - Landscapes"
msgstr "แแผแแแ - แแแแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_OBJECTS.string.text
msgid "Photos - Objects"
msgstr "แแผแแแ - แแแแแป"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_PLANTS.string.text
msgid "Photos - Plants"
msgstr "แแผแแแ - แแปแแแแแถแแท"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_SPACE.string.text
msgid "Photos - Space"
msgstr "แแผแแแ - แแแ "
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_STATUES.string.text
msgid "Photos - Statues"
msgstr "แแผแแแ - แแผแโแแแแถแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PHOTOS_TRAVEL.string.text
msgid "Photos - Travel"
msgstr "แแผแแแ - แแถแโแแแแพโแแแแพแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_PNEUMATIC_PARTS.string.text
msgid "Pneumatic - parts"
msgstr "แงแแแแแ - แแแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_RELIGION.string.text
msgid "Religion"
msgstr "แแถแแแถ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_SHAPES_POLYGONS.string.text
msgid "Shapes - polygons"
msgstr "แแผแแแถแ - แแ แปแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_SHAPES_1.string.text
msgid "Shapes 1"
msgstr "แแผแแแถแโ แก"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_SHAPES_2.string.text
msgid "Shapes 2"
msgstr "แแผแแแถแ แข"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_SIGNS_DANGER.string.text
msgid "Signs - danger"
msgstr "แแแแแถ - แแแแแแแแแถแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_SIGNS.string.text
msgid "Signs"
msgstr "แแแแแถ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_SMILES.string.text
msgid "Smilies"
msgstr "แแแแแถโแขแถแแแแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_SPECIAL_PICTOGRAMM.string.text
msgid "Special Pictogramms"
msgstr "แขแแแแโแแปแแถแโแแทแแแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_THERAPEUTICS_GENERAL.string.text
msgid "Therapeutics - general"
msgstr "Therapeutics - แแผแแ
"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_VECHILES.string.text
msgid "Vehicles"
msgstr "แแถแโแแแแทแ"
#: svx/source/gallery2/galtheme.src#RID_GALLERYSTR_THEME_WEATHER.string.text
msgid "Weather"
msgstr "แขแถแแถแแแถแแป"
#: svx/source/intro/ooo.src#RID_DEFAULTABOUT.ABOUT_STR_VERSION.string.text
msgid "%PRODUCTNAME %ABOUTBOXPRODUCTVERSION %PRODUCTEXTENSION"
msgstr ""
#: svx/source/stbctrls/stbctrls.src#RID_SVXSTR_DOC_MODIFIED_NO.string.text
msgid "The document has not been modified since the last save."
msgstr "แฏแแแถแโแแทแโแแแแผแโแแถแแแแแแแโแแ แแถแแโแแธโแแถแโแแแแแถแแปแโแ
แปแแแแแแย แ"
#: svx/source/stbctrls/stbctrls.src#RID_SVXSTR_DOC_MODIFIED_YES.string.text
msgid "The document has been modified. Double-click to save the document."
msgstr "แฏแแแถแโแแแแผแโแแถแโโแแแแแแย แ แ
แปแ
โแแแแโแแโแแพแแแแธแแแแแถแแปแโแฏแแแถแย แ"
#: sw/source/ui/app/mn.src#MN_OLE_POPUPMENU.FN_INPLACE_OLE.menuitem.text
msgid "Activate OLE object"
msgstr "แแแแพโแฒแแโแแแแแป OLE แแแแแ"
#: sw/source/ui/app/mn.src#MN_OLE_POPUPMENU.FN_OUTPLACE_OLE.menuitem.text
msgid "Activate OLE object outplace"
msgstr "แแแแพโแฒแแโแแถแโแแแแผแโแแแแแแโแแแแแป OLE แแแแแ"
#: sw/source/ui/config/optdlg.src#TP_COMPARISON_OPT.FL_CMP.fixedline.text
msgid "Compare documents"
msgstr "แแแแแแแแโแฏแแแถแ"
#: sw/source/ui/config/optdlg.src#TP_COMPARISON_OPT.FL_SET.fixedline.text
msgctxt "sw/source/ui/config/optdlg.src#TP_COMPARISON_OPT.FL_SET.fixedline.text"
msgid "Settings"
msgstr "แแถแโแแแแแ"
#: sw/source/ui/config/optdlg.src#TP_COMPARISON_OPT.CB_IGNORE.checkbox.text
msgid "Ignore ~pieces of length"
msgstr "แแทแแขแพแแพโแแนแโแ
แแแแโแแแแแแ "
#: sw/source/ui/config/optdlg.src#TP_COMPARISON_OPT.CB_RSID.checkbox.text
msgid "Use ~RSID"
msgstr "แแแแพ RSID"
#: sw/source/ui/config/optdlg.src#TP_COMPARISON_OPT.RB_AUTO.radiobutton.text
msgid "~Auto"
msgstr "แแแแแโแแแแแแแแท "
#: sw/source/ui/config/optdlg.src#TP_COMPARISON_OPT.RB_CHAR.radiobutton.text
msgid "By ~character"
msgstr "แแถแโแแฝแขแแแแ "
#: sw/source/ui/config/optdlg.src#TP_COMPARISON_OPT.RB_WORD.radiobutton.text
msgid "By ~word"
msgstr "แแถแแแถแแแ "
#: sw/source/ui/config/optload.src#TP_OPTLOAD_PAGE.CB_USE_CHAR_UNIT.checkbox.text
msgid "Enable char unit"
msgstr "แแพแโแฏแแแถโแแฝแขแแแแ"
#: sw/source/ui/config/optload.src#STR_ARR_METRIC.10.itemlist.text
msgctxt "sw/source/ui/config/optload.src#STR_ARR_METRIC.10.itemlist.text"
msgid "Char"
msgstr "แแฝแขแแแแ"
#: sw/source/ui/config/optload.src#STR_ARR_METRIC.11.itemlist.text
msgctxt "sw/source/ui/config/optload.src#STR_ARR_METRIC.11.itemlist.text"
msgid "Line"
msgstr "แแแแแถแแ"
#: sw/source/ui/misc/pggrid.src#TP_TEXTGRID_PAGE.FT_CHARRANGE.fixedtext.text
msgid "( 1 - 45 )"
msgstr "( 1 - 45 )"
#: sw/source/ui/misc/pggrid.src#TP_TEXTGRID_PAGE.FT_LINERANGE.fixedtext.text
msgid "( 1 - 48 )"
msgstr "( 1 - 48 )"
#: sysui/desktop/share/launcher_comment.ulf#startcenter.LngText.text
msgid ""
"The office productivity suite compatible to the open and standardized ODF "
"document format. Supported by The Document Foundation."
msgstr ""
# cancel button label
#: vcl/source/src/btntext.src#SV_BUTTONTEXT_CANCEL.string.text
msgid "~Cancel"
msgstr "แแแแแแ"
# ok button label
#: vcl/source/src/btntext.src#SV_BUTTONTEXT_OK.string.text
msgid "~OK"
msgstr "แแแแแแแ"
#: vcl/source/src/units.src#SV_FUNIT_STRINGS.18.itemlist.text
msgid "ch"
msgstr "แแฝแขแแแแ"
#: vcl/source/src/units.src#SV_FUNIT_STRINGS.19.itemlist.text
msgid "line"
msgstr "แแแ"
#: vcl/source/src/units.src#SV_FUNIT_STRINGS.20.itemlist.text
msgid "%"
msgstr "%"
#~ msgid "Class Modules"
#~ msgstr "แแแผแแปแโแแแแถแแ"
#~ msgid "Document Objects"
#~ msgstr "แแแแแปโแฏแแแถแ"
#~ msgid "Modules"
#~ msgstr "แแแผโแแปแโ"
#~ msgid "Forms"
#~ msgstr "แแแแปแโแแแแแ"
#~ msgid "$(ARG1)."
#~ msgstr "$(ARG1)ย แ"
#~ msgid ""
#~ "<variable id=\"comparisonoptions\">Open a text document, choose <emph>Tools "
#~ "- Options - %PRODUCTNAME Writer - Comparison</emph></variable>"
#~ msgstr ""
#~ "<variable id=\"comparisonoptions\">แแพแโแฏแแแถแโแขแแแแแ แแแแพแ <emph>แงแแแแแ - แแแแแพแ - %"
#~ "PRODUCTNAME Writer - แแแแแแแแ</emph></variable>"
#~ msgid "MySQL (Connector/OOo)"
#~ msgstr "MySQL (Connector/OOo)"
#~ msgctxt ""
#~ "officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#.."
#~ "CalcCommands.UserInterface.Commands..uno_SetTabBgColor.ContextLabel.value."
#~ "text"
#~ msgid "~Tab Color..."
#~ msgstr "แแแโแแแแถแแ..."
#~ msgctxt ""
#~ "officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#.."
#~ "CalcCommands.UserInterface.Commands..uno_SetTabBgColor.Label.value.text"
#~ msgid "~Tab Color..."
#~ msgstr "แแแโแแแแถแแ..."
#~ msgctxt ""
#~ "officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#.."
#~ "CalcCommands.UserInterface.Commands..uno_TabBgColor.Label.value.text"
#~ msgid "Tab Color"
#~ msgstr "แแแโแแแแถแแ"
#~ msgid "Bibliography"
#~ msgstr "แแแแแแทแแแแแ"
#~ msgid "Base: Table Data View"
#~ msgstr "Baseย แ แแทแแแแแถแโแแถแแถแโแแทแแแแแแ"
#~ msgid ""
#~ "Export, Update and Import your documents to and from Google Docs, Zoho and "
#~ "WebDAV servers."
#~ msgstr "แแถแแ
แแ แแแแพโแฒแแโแแถแแแแแแ แแทแโแแถแแ
แผแโแฏแแแถแโแแแแโแขแแแแแ
โ/แแธโแแแถแแแธแแแแแแพ Docs, Zoho แแทแ WebDAVย แ"
#~ msgid ""
#~ "Lightproof is a grammar checker extension and a framework for quick grammar "
#~ "checker development for every language supported by OpenOffice.org."
#~ msgstr ""
#~ "Lightproof แแบโแแถโแแแแแแ แแทแโแแแแแโแแแแแแโแแแแแแทแแธโแแทแแทแแแโแแแแแแถแแแแ แแแแแถแแโแแถแโแขแแแทแแแแแโแแแแแแทแแธแแทแแทแแแโ"
#~ "แแแแแแถแแแแโแแ แแโ แแแแแถแแโแแแแแโแแถแแถโแแแโแแถแโแแถแแแแโแแแ OpenOffice.orgย แ"
#~ msgid ""
#~ "Create with the Sun Report Builder stylish, smart-looking database reports."
#~ msgstr ""
#~ "แแแแแพแโโแแถโแแฝแโแแ
แแถแแแแแโแแโแแแแแแทแแธโแแแแแพแโแแแถแแแถแแแโโ แแแถแแแถแแแแแผแแแแแถแโโแแทแแแแแแโโแแแแแพแโแแ
โแแแแถแโโแแแแย แ"
#~ msgid ""
#~ "The Watch Window is a separate, small window that remains \"on top\" and "
#~ "enables users to monitor a selected set of cells."
#~ msgstr ""
#~ "แแแแขแฝแ
โแแแแถแแแพแโแแบโแแถโแแแแขแฝแ
โแแแโแกแแ แแแแขแฝแ
โแแผแ
โแแแแแถแ \"แแ
โแแแแแโแแถแโแแพ\" แแทแโแขแแปแแแแถแโแฒแแโแขแแแโแแแแพโแแแแฝแแแทแแทแแแโ"
#~ "แแแแปแโแแแแกแถโแแแแแถแโแแแแพแย แ"
#~ msgid "NLP Solver"
#~ msgstr "แแแแแแทแแธโแแแแแแแถแ NLP"
#~ msgid "Show only the current item."
#~ msgstr "แแแแ แถแโแแโแแถแแปโแแ
แแ
แปแแแแแแโแแแปแแแแแย แ"
#~ msgid "All"
#~ msgstr "แแถแแแขแแโ"
#~ msgid "Hide only the current item."
#~ msgstr "แแถแแโแแโแแถแแปโแแ
แแ
แปแแแแแแโแแแปแแแแแย แ"
#~ msgid "Sort Ascending"
#~ msgstr "แแแแแแโแแถแโแแแแถแแโแกแพแ"
#~ msgid "Custom Sort"
#~ msgstr "แแแแแแโแแถแแแแแถแแแแแแฝแ"
#~ msgid "Sort Descending"
#~ msgstr "แแแแแแโแแถแโแแแแถแแโแ
แปแ"
# button label for other/more options
#~ msgid "Other options"
#~ msgstr "แแแแแพแโแแแแแแ"
# label for language selection
#~ msgid "Language"
#~ msgstr "แแถแแถ"
#~ msgid "Detect special numbers"
#~ msgstr "แแแแพแโแแแโแแทแแแ"
#~ msgid "~Quoted field as text"
#~ msgstr "แแถแโแแแแแโแแถแโแแถโแขแแแแแ"
#~ msgid "Select the language to use for import"
#~ msgstr "แแแแพแโแแถแแถโแแแโแแแแผแโแแแแพโแแแแแถแแโแแถแแ
แผแ"
#~ msgid "Options"
#~ msgstr "แแแแแพแ"
#~ msgid "Detect special numbers (such as dates)."
#~ msgstr "แแแแพแโแแแโแแทแแแ (แแผแ
แแถโแแถแแแแทแ
แแแแ)ย แ"
#~ msgid "Import Options"
#~ msgstr "แแแแแพแโแแถแแ
แผแโ"
#~ msgid "Custom"
#~ msgstr "แแแแถแแแแแแฝแ"
#~ msgid "Color Tabs"
#~ msgstr "แแแแถแแโแแแ"
#~ msgid "Color Tab"
#~ msgstr "แแแแถแแโแแแ"
#~ msgid "Limit decimals for general number format"
#~ msgstr "แแแโแแแแแโแแแแถแโแแแแแถแแโแแแแแแแแแถแแแแโแแผแแ
"
#~ msgid "~AutoFormat..."
#~ msgstr "แแแแแแแแแถแโแแแแแแแแแแแแแท..."
#~ msgctxt ""
#~ "sc/source/ui/src/popup.src#RID_POPUP_TAB.FID_TAB_MENU_SET_TAB_BG_COLOR."
#~ "menuitem.text"
#~ msgid "~Tab Color..."
#~ msgstr "แแแโแแแแถแแ..."
#~ msgid "Default"
#~ msgstr "แแแแถแแแพแ"
#~ msgctxt "sc/source/ui/src/scstring.src#SCSTR_SET_TAB_BG_COLOR.string.text"
#~ msgid "Tab Color"
#~ msgstr "แแแแโแแแแถแแ"
#~ msgid "~Change Color"
#~ msgstr "แแแแผแโแแแ"
#~ msgid "~Normal"
#~ msgstr "แแแแแแถ"
#~ msgid "~Thick"
#~ msgstr "แแแแถแแ"
#~ msgid "~Thin"
#~ msgstr "แแแแพแ"
#~ msgid "~Very Thick"
#~ msgstr "แแแแถแแโแแแแถแแ"
#~ msgid "~Very thin"
#~ msgstr "แแแแพแโแแแแถแแ"
#~ msgid "~Pen Width"
#~ msgstr "แแแ แโแแแทแ"
#~ msgctxt ""
#~ "svx/source/cui/autocdlg.src#RID_OFA_AUTOCORR_DLG.1."
#~ "RID_OFAPAGE_AUTOCORR_QUOTE.pageitem.text"
#~ msgid "Localized Options"
#~ msgstr "แแแแแพแโแแแโแแถแโโแแแแพโแแผแแแแแถแแธแแแแแ"
#~ msgid "Add non breaking space before specific punctuation marks in french text"
#~ msgstr "แแแแแแโแ
แแแแแโแแทแแแพแโแแปแโแแ แแแแแถโแแถแแแแถแแโแแ
โแแแแปแโแขแแแแแโแแถแแถโแแถแแถแแ"
#~ msgid "Format ordinal numbers suffixes (1st -> 1^st)"
#~ msgstr "แแแแพโแแแแแแแแแถแโแแ
แแ
แแโแแแแแแแถแแ (1st -> 1^st)"
#~ msgid "[M]"
#~ msgstr "[M]"
#~ msgid "[T]"
#~ msgstr "[T]"
#~ msgctxt "svx/source/cui/autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.tabpage.text"
#~ msgid "Localized Options"
#~ msgstr "แแแแแพแโแแแโแแถแโโแแแแพโแแผแแแแแถแแธแแแแแ"
#~ msgid "Oxygen"
#~ msgstr "แขแปแแแแธแ แแแแ"
#~ msgid "Open OLE object inplace"
#~ msgstr "แแพแโแแแแแป OLE แแ
โแแถแโแแแแปแ"
#~ msgid "Open OLE object outplace"
#~ msgstr "แแพแโแแแแแป OLE แแ
โแแถแแแแแ
"
#~ msgid "Add non breaking space"
#~ msgstr "แแแแแแโแ
แแแแแโแแทแแแแแแโโ"
|