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
|
# translation of lo-build-km.po to Khmer
#. extracted from (input file name not known)
# Auk Piseth <piseth_dv@khmeros.info>, 2008, 2009.
# Khoem Sokhem <khoemsokhem@khmeros.info>, 2009, 2010.
msgid ""
msgstr ""
"Project-Id-Version: lo-build-km\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?subcomponent=ui&comment=&short_desc=Localization%20issue%20in%20file%3A%20(input%20file%20name%20not%20known)&component=l10n&form_name=enter_issue\n"
"POT-Creation-Date: 2010-10-07 12:22+0200\n"
"PO-Revision-Date: 2010-10-12 10:04+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: KBabel 1.11.4\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 "ពុម្ពសៀវភៅបញ្ជីរបស់ Office Open XML"
#: filter/source/config/fragments/filters/calc_OOXML_ui.xcu#Calc_Office_Open_XML.UIName.value.text
msgid "Office Open XML Spreadsheet"
msgstr "សៀវភៅបញ្ជីរបស់ Office Open XML"
#: 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 "ពុម្ពកម្មវិធីបង្ហាញរបស់ Office Open XML"
#: filter/source/config/fragments/filters/impress_OOXML_ui.xcu#Office_Open_XML_Presentation.UIName.value.text
msgid "Office Open XML Presentation"
msgstr "កម្មវិធីបង្ហាញរបស់ Office Open XML"
#: 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 "ពុម្ពអក្សររបស់ Office Open XML"
#: filter/source/config/fragments/filters/OOXML_Text_ui.xcu#Office_Open_XML_Text.UIName.value.text
msgid "Office Open XML Text"
msgstr "អត្ថបទរបស់ Office Open XML"
#: 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 "%PRODUCTNAME product by %OOOVENDOR"
#: 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 "ជ្រើស <emph>កែសម្រួល - ផ្លាស់ប្ដូរ - ការពារកំណត់ត្រា</emph> ។ បញ្ចូល ហើយបញ្ជាក់ពាក្យសម្ងាត់ ។"
#: 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 "បញ្ចូលពាក្យសម្ងាត់ ហើយបញ្ជាក់វា ។ ចុច <emph>យល់ព្រម</emph> ។"
#: 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 ""
"<variable id=\"comparisonoptions\">បើកឯកសារអត្ថបទ ជ្រើស"
"<emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - "
"ចំណូលចិត្ត</caseinline><defaultinline>ឧបករណ៍ - "
"ជម្រើស</defaultinline></switchinline> - %PRODUCTNAME Writer - ប្រៀបធៀប</emph></variable>"
#: 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 ""
"ជ្រើសអត្ថបទ ។ ជ្រើស <emph>បញ្ចូល - ភាគ - ភាគ</emph>បន្ទាប់មកក្រោម "
"<emph>ការពារមិនឲ្យសរសេរចូល</emph> គូសធូក <emph>ការពារ</emph> <emph>ដោយពាក្យសម្ងាត់</emph> ។ (ប្រសិនបើមានភាគរួចហើយ ៖ ចូល<emph>ទ្រង់ទ្រាយ - "
"ភាគ</emph> ។) បញ្ចូល និងបញ្ជាក់ពាក្យសម្ងាត់ ។"
#: 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 ""
"ការស្ថាបនាបានចែកចាយដោយសហការណ៍ជាមួយនឹងសហគមន៍ ដោយ The Document "
"Foundation ។ ចំពោះបញ្ជីអ្នកចូលរួម សូមមើល ៖ http://www.documentfoundation.org"
#: 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 "Google Docs និង Zoho"
#: 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 "របារឧបករណ៍ត្រូវបន្ថែមសេចក្ដីយោងឆ្លងដែលមានអត្ថបទភាសាហុងគ្រីបន្ថែមដោយស្វ័យប្រវត្តិ (eg. *az* 5. ábra, *a* 6. ábra) ដើម្បីជៀសវាងអត្ថបទមិនល្អ និងបន្សំលេខក្នុងសេចក្ដីយោងឆ្លង ។"
#: 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 "កម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធភាសាប្រភពកូដចំហរបស់ LanguageTool"
#: 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 "កម្មវិធីតភ្ជាប់ MySQL សម្រាប់ OpenOffice.org"
#: 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
msgid "Report Builder"
msgstr "កម្មវិធីស្ថាបនារបាយការណ៍"
#: 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 "របារឧបករណ៍សម្រាប់លក្ខណៈពិសេសពុម្ពអក្សរឆ្លាតរបស់ Graphite ៖ បន្សំ អក្សរតូច លេខរចនាប័ទ្មចាស់ៗ លេខសមាមាត្រ និង monospace ធាតុបំបែកខ្ទង់ពាន់ សញ្ញាដក អក្សរតូចលើ និងអក្សរតូចក្រោម វ៉ារ្យង់ umlaut អាល្លឺម៉ង់ ប្រភាគ ។"
#: 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 "កម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធភាសាកម្មវិធីប្រភពកូដចំហរបស់ LanguageTool"
#: 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 "កម្មវិធីតភ្ជាប់ MySQL សម្រាប់ OpenOffice.org"
#: 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 ""
"LibreOffice ឈុតកម្មវិធីការិយាល័យដែលបានផ្ដល់ដោយ The Document "
"Foundation ។ សូមមើល http://www.documentfoundation.org"
#: scp2/source/ooo/registryitem_ooo.ulf#STR_REG_VAL_APPCAPABILITY_DESCRIPTION_OOO.LngText.text
msgid "LibreOffice"
msgstr "LibreOffice"
#: 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 "%PRODUCTNAME %ABOUTBOXPRODUCTVERSION %PRODUCTEXTENSION"
#: 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 "ឈុតកម្មវិធីការិយាល័យឆបគ្នាជាមួយនឹងទ្រង់ទ្រាយឯកសារស្តង់ដារ និងឥតគិតថ្លៃ ODF ។ ដែលបានគាំទ្រដោយ The Document Foundation ។"
# 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 "%"
|