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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: kaddressbook\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2011-02-23 21:44+0000\n"
"PO-Revision-Date: 2009-07-18 03:11+0000\n"
"Last-Translator: Nguyen Hung Vu <Unknown>\n"
"Language-Team: VIETNAMESE <vi@i18n.kde.org>\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-Launchpad-Export-Date: 2011-03-08 23:07+0000\n"
"X-Generator: Launchpad (build 12532)\n"
#: mainwindow.cpp:60
msgid ""
"You will be presented with a dialog where you can configure the application-"
"wide shortcuts."
msgstr ""
#: xxport/gmx/gmx_xxport.cpp:98
msgid "GMX address book file (*.gmxa)"
msgstr ""
#: xxport/gmx/gmx_xxport.cpp:133 xxport/ldif/ldif_xxport.cpp:75
#, kde-format
msgid "<qt>Unable to open <b>%1</b> for reading.</qt>"
msgstr ""
#: xxport/gmx/gmx_xxport.cpp:148
#, kde-format
msgid "%1 is not a GMX address book file."
msgstr ""
#: xxport/gmx/gmx_xxport.cpp:334 xxport/ldif/ldif_xxport.cpp:114
#: xxport/vcard/vcard_xxport.cpp:238 xxport/csv/csv_xxport.cpp:47
#, kde-format
msgid "Do you want to overwrite file \"%1\""
msgstr ""
#: xxport/gmx/gmx_xxport.cpp:342 xxport/ldif/ldif_xxport.cpp:101
#: xxport/csv/csv_xxport.cpp:54
#, kde-format
msgid "<qt>Unable to open file <b>%1</b></qt>"
msgstr ""
#: xxport/gmx/gmx_xxport.cpp:356 xxport/ldif/ldif_xxport.cpp:121
#: xxport/csv/csv_xxport.cpp:67
#, kde-format
msgid "<qt>Unable to open file <b>%1</b>.</qt>"
msgstr ""
#: xxport/ldap/kcmldap.cpp:88
msgid "kcmldap"
msgstr ""
#: xxport/ldap/kcmldap.cpp:89
msgid "LDAP Server Settings"
msgstr ""
#: xxport/ldap/kcmldap.cpp:91
msgid "(c) 2009 Tobias Koenig"
msgstr ""
#: xxport/ldap/kcmldap.cpp:93 aboutdata.cpp:32
msgid "Tobias Koenig"
msgstr ""
#: xxport/ldap/kcmldap.cpp:155
msgid "Edit Host"
msgstr ""
#: xxport/ldap/kcmldap.cpp:301
msgid "LDAP Servers"
msgstr ""
#: xxport/ldap/kcmldap.cpp:305
msgid "Check all servers that should be used:"
msgstr ""
#: xxport/ldap/kcmldap.cpp:333
msgid "&Add Host..."
msgstr ""
#: xxport/ldap/kcmldap.cpp:334
msgid "&Edit Host..."
msgstr ""
#: xxport/ldap/kcmldap.cpp:336
msgid "&Remove Host"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:81
msgctxt "@item LDAP search key"
msgid "Title"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:82 xxport/ldap/ldapsearchdialog.cpp:176
#: modelcolumnmanager.cpp:76
msgid "Full Name"
msgstr "Tên đầy đủ"
#: xxport/ldap/ldapsearchdialog.cpp:83
msgctxt "@item LDAP search key"
msgid "Email"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:84 xxport/ldap/ldapsearchdialog.cpp:178
#: xxport/ldap/ldapsearchdialog.cpp:475
msgid "Home Number"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:85 xxport/ldap/ldapsearchdialog.cpp:179
#: xxport/ldap/ldapsearchdialog.cpp:477
msgid "Work Number"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:86 xxport/ldap/ldapsearchdialog.cpp:180
msgid "Mobile Number"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:87 xxport/ldap/ldapsearchdialog.cpp:181
msgid "Fax Number"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:88
msgid "Pager"
msgstr "Pager"
#: xxport/ldap/ldapsearchdialog.cpp:89 xxport/ldap/ldapsearchdialog.cpp:184
msgid "Street"
msgstr "Phố"
#: xxport/ldap/ldapsearchdialog.cpp:90
msgctxt "@item LDAP search key"
msgid "State"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:91 xxport/ldap/ldapsearchdialog.cpp:186
msgid "Country"
msgstr "Nước"
#: xxport/ldap/ldapsearchdialog.cpp:92 xxport/ldap/ldapsearchdialog.cpp:189
msgid "City"
msgstr "Thành phố"
#. i18n: file: printing/rbs_appearance.ui:62
#. i18n: ectx: property (text), widget (QCheckBox, cbOrganization)
#: xxport/ldap/ldapsearchdialog.cpp:93 xxport/ldap/ldapsearchdialog.cpp:183
#: rc.cpp:56
msgid "Organization"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:94 xxport/ldap/ldapsearchdialog.cpp:182
msgid "Company"
msgstr "Công ti"
#: xxport/ldap/ldapsearchdialog.cpp:95 xxport/ldap/ldapsearchdialog.cpp:190
msgid "Department"
msgstr "Nhà ở"
#: xxport/ldap/ldapsearchdialog.cpp:96 xxport/ldap/ldapsearchdialog.cpp:187
msgid "Zip Code"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:97 xxport/ldap/ldapsearchdialog.cpp:188
#: printing/detailledstyle.cpp:129
msgid "Postal Address"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:98 xxport/ldap/ldapsearchdialog.cpp:191
msgid "Description"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:99 xxport/ldap/ldapsearchdialog.cpp:192
msgid "User ID"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:177
msgctxt "@title:column Column containing email addresses"
msgid "Email"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:185
msgctxt ""
"@title:column Column containing the residential state of the address"
msgid "State"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:193
msgctxt "@title:column Column containing title of the person"
msgid "Title"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:270
msgid "Import Contacts from LDAP"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:282
msgid "Search for Addresses in Directory"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:289
msgid "Search for:"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:296
msgctxt "In LDAP attribute"
msgid "in"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:300
msgctxt "@item:inlistbox Name of the contact"
msgid "Name"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:301
msgctxt "@item:inlistbox email address of the contact"
msgid "Email"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:302
msgctxt "@item:inlistbox"
msgid "Home Number"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:303
msgctxt "@item:inlistbox"
msgid "Work Number"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:307 xxport/ldap/ldapsearchdialog.cpp:500
msgid "Stop"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:309 xxport/ldap/ldapsearchdialog.cpp:538
msgctxt "@action:button Start searching"
msgid "&Search"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:317
msgid "Recursive search"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:322
msgid "Contains"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:323
msgid "Starts With"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:337 mainwidget.cpp:324
msgid "Select All"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:338
msgid "Unselect All"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:344
msgid "Import Selected"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:345
msgid "Configure LDAP Servers..."
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:468
msgctxt "Search attribute: Name of contact"
msgid "Name"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:473
msgctxt "Search attribute: Email of the contact"
msgid "Email"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:494
msgid "You must select a LDAP server before searching."
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:639
msgid "Select a distribution list to add the selected contacts to."
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:640
msgid "Select Distribution List"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:664
#, kde-format
msgctxt "arguments are host name, datetime"
msgid "Imported from LDAP directory %1 on %2"
msgstr ""
#: xxport/ldap/ldapsearchdialog.cpp:679
msgid "Configure the Address Book LDAP Settings"
msgstr ""
#: xxport/ldap/addhostdialog.cpp:38
msgid "Add Host"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:116
msgid ""
"You have selected a list of contacts, shall they be exported to several "
"files?"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:119
msgid "Export to Several Files"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:120
msgid "Export to One File"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:172
msgid "Select vCard to Import"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:177
msgid "vCard Import Failed"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:197
#, kde-format
msgctxt "@info"
msgid ""
"<para>When trying to read the vCard, there was an error opening the file "
"<filename>%1</filename>:</para><para>%2</para>"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:205
#, kde-format
msgctxt "@info"
msgid "<para>Unable to access vCard:</para><para>%1</para>"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:214
msgid "No contacts were imported, due to errors with the vCards."
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:216
msgid "The vCard does not contain any contacts."
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:393
msgid "Import vCard"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:406
msgid "Do you want to import this contact into your address book?"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:417
msgid "Import All..."
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:479
msgid "Select vCard Fields"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:492
msgid "Select the fields which shall be exported in the vCard."
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:495
msgid "Private fields"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:498
msgid "Business fields"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:501
msgid "Other fields"
msgstr ""
#: xxport/vcard/vcard_xxport.cpp:504
msgid "Encryption keys"
msgstr ""
#: xxport/csv/templateselectiondialog.cpp:171
#, kde-format
msgid "Do you really want to delete template '%1'?"
msgstr ""
#: xxport/csv/templateselectiondialog.cpp:188
msgctxt "@title:window"
msgid "Template Selection"
msgstr ""
#: xxport/csv/templateselectiondialog.cpp:194
msgctxt "@info"
msgid "Please select a template, that matches the CSV file:"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:169
msgctxt "@title:window"
msgid "CSV Import Dialog"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:219
msgctxt "@label"
msgid "Importing contacts"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:272
msgctxt "@label"
msgid "File to import:"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:283
msgctxt "@title:group"
msgid "Delimiter"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:294
msgctxt "@option:radio Field separator"
msgid "Comma"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:299
msgctxt "@option:radio Field separator"
msgid "Semicolon"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:303
msgctxt "@option:radio Field separator"
msgid "Tabulator"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:307
msgctxt "@option:radio Field separator"
msgid "Space"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:311
msgctxt "@option:radio Custum field separator"
msgid "Other"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:319
msgctxt "@label:listbox"
msgid "Text quote:"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:324
msgctxt "@item:inlistbox Qoute character option"
msgid "\""
msgstr ""
#: xxport/csv/csvimportdialog.cpp:325
msgctxt "@item:inlistbox Quote character option"
msgid "'"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:326
msgctxt "@item:inlistbox Quote character option"
msgid "None"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:330
msgctxt "@label:listbox"
msgid "Date format:"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:336
msgctxt "@info:tooltip"
msgid ""
"<para><list><item>y: year with 2 digits</item><item>Y: year with 4 "
"digits</item><item>m: month with 1 or 2 digits</item><item>M: month with 2 "
"digits</item><item>d: day with 1 or 2 digits</item><item>D: day with 2 "
"digits</item><item>H: hours with 2 digits</item><item>I: minutes with 2 "
"digits</item><item>S: seconds with 2 digits</item></list></para>"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:349
msgctxt "@label:listbox"
msgid "Text codec:"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:356
msgctxt "@option:check"
msgid "Skip first row of file"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:369
msgctxt "@action:button"
msgid "Apply Template..."
msgstr ""
#: xxport/csv/csvimportdialog.cpp:370
msgctxt "@action:button"
msgid "Save Template..."
msgstr ""
#: xxport/csv/csvimportdialog.cpp:389
#, kde-format
msgctxt "@item:inlistbox Codec setting"
msgid "Local (%1)"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:390
msgctxt "@item:inlistbox Codec setting"
msgid "Latin1"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:391
msgctxt "@item:inlistbox Codec setting"
msgid "Unicode"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:392
msgctxt "@item:inlistbox Codec setting"
msgid "Microsoft Unicode"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:474
msgctxt "@info:status"
msgid "You have to assign at least one column."
msgstr ""
#: xxport/csv/csvimportdialog.cpp:490
msgid "There are no templates available yet."
msgstr ""
#: xxport/csv/csvimportdialog.cpp:490
msgid "No templates available"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:550
msgctxt "@title:window"
msgid "Template Name"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:551
msgctxt "@info"
msgid "Please enter a name for the template:"
msgstr ""
#: xxport/csv/csvimportdialog.cpp:593
msgctxt "@info:status"
msgid "Cannot open input file."
msgstr ""
#: printing/ringbinderstyle.cpp:142
msgid "Ring Binder Printing Style - Appearance"
msgstr ""
#: printing/ringbinderstyle.cpp:160
msgid "Setting up fields"
msgstr ""
#: printing/ringbinderstyle.cpp:176 printing/detailledstyle.cpp:266
#: printing/mikesstyle.cpp:126
msgid "Setting up document"
msgstr ""
#: printing/ringbinderstyle.cpp:203 printing/detailledstyle.cpp:273
#: printing/mikesstyle.cpp:133
msgid "Printing"
msgstr ""
#: printing/ringbinderstyle.cpp:207 printing/detailledstyle.cpp:277
#: printing/mikesstyle.cpp:137
msgid "Done"
msgstr ""
#: printing/ringbinderstyle.cpp:223
msgid "Printout for Ring Binders"
msgstr ""
#: printing/printprogress.cpp:41
msgid "Printing: Progress"
msgstr ""
#: printing/printprogress.cpp:65
msgid "Progress"
msgstr ""
#: printing/detailledstyle.cpp:87
msgid "Email address:"
msgstr ""
#: printing/detailledstyle.cpp:87
msgid "Email addresses:"
msgstr ""
#: printing/detailledstyle.cpp:97
msgid "Telephone:"
msgstr ""
#: printing/detailledstyle.cpp:97
msgid "Telephones:"
msgstr ""
#: printing/detailledstyle.cpp:109
msgid "Web page:"
msgstr ""
#: printing/detailledstyle.cpp:123
msgid "Domestic Address"
msgstr ""
#: printing/detailledstyle.cpp:126
msgid "International Address"
msgstr ""
#: printing/detailledstyle.cpp:132
msgid "Parcel Address"
msgstr ""
#: printing/detailledstyle.cpp:135 modelcolumnmanager.cpp:85
msgid "Home Address"
msgstr "Địa chỉ nhà"
#: printing/detailledstyle.cpp:138
msgid "Work Address"
msgstr ""
#: printing/detailledstyle.cpp:142
msgid "Preferred Address"
msgstr ""
#: printing/detailledstyle.cpp:153
msgid "Notes:"
msgstr ""
#. i18n: file: printing/ds_appearance.ui:49
#. i18n: ectx: property (text), widget (QLabel, labelHeader)
#: printing/detailledstyle.cpp:230 rc.cpp:29
msgid "Detailed Print Style - Appearance"
msgstr ""
#: printing/detailledstyle.cpp:235
msgid "Click on the color button to change the header's background color."
msgstr ""
#: printing/detailledstyle.cpp:237
msgid "Click on the color button to change the header's text color."
msgstr ""
#: printing/detailledstyle.cpp:249
msgid "Setting up colors"
msgstr ""
#: printing/detailledstyle.cpp:292
msgid "Detailed Style"
msgstr ""
#: printing/stylepage.cpp:51
msgid "Ascending"
msgstr ""
#: printing/stylepage.cpp:52
msgid "Descending"
msgstr ""
#: printing/stylepage.cpp:64
msgid "(No preview available.)"
msgstr ""
#: printing/stylepage.cpp:121 printing/printingwizard.cpp:65
msgid "Choose Printing Style"
msgstr ""
#: printing/stylepage.cpp:127
msgid ""
"What should the print look like?\n"
"KAddressBook has several printing styles, designed for different purposes.\n"
"Choose the style that suits your needs below."
msgstr ""
#: printing/stylepage.cpp:132
msgid "Sorting"
msgstr ""
#: printing/stylepage.cpp:139
msgid "Criterion:"
msgstr ""
#: printing/stylepage.cpp:145
msgid "Order:"
msgstr ""
#: printing/stylepage.cpp:153
msgid "Print Style"
msgstr ""
#: printing/printingwizard.cpp:54 mainwidget.cpp:418
msgid "Print Contacts"
msgstr ""
#: printing/printingwizard.cpp:57
msgid "Which contacts do you want to print?"
msgstr ""
#: printing/printingwizard.cpp:59
msgid "Choose Contacts to Print"
msgstr ""
#: printing/printingwizard.cpp:135
msgid "Print Progress"
msgstr ""
#: printing/mikesstyle.cpp:153
msgid "Mike's Printing Style"
msgstr ""
#. i18n: file: kaddressbookui.rc:5
#. i18n: ectx: Menu (file)
#: rc.cpp:3
msgid "&File"
msgstr ""
#. i18n: file: kaddressbookui.rc:7
#. i18n: ectx: Menu (file_new)
#: rc.cpp:6
msgid "&New"
msgstr ""
#. i18n: file: kaddressbookui.rc:15
#. i18n: ectx: Menu (file_import)
#: rc.cpp:9
msgid "&Import"
msgstr ""
#. i18n: file: kaddressbookui.rc:23
#. i18n: ectx: Menu (file_export)
#: rc.cpp:12
msgid "&Export"
msgstr ""
#. i18n: file: kaddressbookui.rc:36
#. i18n: ectx: Menu (edit)
#: rc.cpp:15
msgid "&Edit"
msgstr ""
#. i18n: file: kaddressbookui.rc:47
#. i18n: ectx: Menu (settings)
#: rc.cpp:18
msgid "&Settings"
msgstr ""
#. i18n: file: kaddressbookui.rc:80
#. i18n: ectx: ToolBar (mainToolBar)
#: rc.cpp:21
msgid "Main Toolbar"
msgstr ""
#: rc.cpp:22
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Nguyen Hung Vu, ,Launchpad Contributions:"
#: rc.cpp:23
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "vuhung@fedu.uec.ac.jp,,"
#. i18n: file: printing/ds_appearance.ui:14
#. i18n: ectx: property (windowTitle), widget (QWidget, AppearancePage_Base)
#: rc.cpp:26
msgid "Appearance Page"
msgstr ""
#. i18n: file: printing/ds_appearance.ui:68
#. i18n: ectx: property (title), widget (QGroupBox, gbHeadline)
#: rc.cpp:32
msgid "Contact Headers"
msgstr ""
#. i18n: file: printing/ds_appearance.ui:106
#. i18n: ectx: property (text), widget (QLabel, tlBackgroundColor)
#: rc.cpp:35
msgid "Headline background color:"
msgstr ""
#. i18n: file: printing/ds_appearance.ui:116
#. i18n: ectx: property (text), widget (QLabel, tlHeaderColor)
#: rc.cpp:38
msgid "Headline text color:"
msgstr ""
#. i18n: file: printing/rbs_appearance.ui:14
#. i18n: ectx: property (windowTitle), widget (QWidget, RingBinderStyleAppearanceForm_Base)
#: rc.cpp:41
msgid "Appearance"
msgstr ""
#. i18n: file: printing/rbs_appearance.ui:26
#. i18n: ectx: property (title), widget (QGroupBox, GroupBox2)
#: rc.cpp:44
msgid "Print Contact's Information"
msgstr ""
#. i18n: file: printing/rbs_appearance.ui:32
#. i18n: ectx: property (text), widget (QCheckBox, cbPhoneNumbers)
#: rc.cpp:47
msgid "Phone numbers"
msgstr ""
#. i18n: file: printing/rbs_appearance.ui:42
#. i18n: ectx: property (text), widget (QCheckBox, cbEmails)
#: rc.cpp:50
msgid "Email addresses"
msgstr ""
#. i18n: file: printing/rbs_appearance.ui:52
#. i18n: ectx: property (text), widget (QCheckBox, cbStreetAddresses)
#: rc.cpp:53
msgid "Postal addresses"
msgstr ""
#. i18n: file: printing/rbs_appearance.ui:69
#. i18n: ectx: property (text), widget (QCheckBox, cbBirthday)
#: rc.cpp:59
msgid "Birthday"
msgstr ""
#. i18n: file: printing/rbs_appearance.ui:76
#. i18n: ectx: property (text), widget (QCheckBox, cbNote)
#: rc.cpp:62
msgid "Note"
msgstr ""
#: contactswitcher.cpp:35
msgid "Previous"
msgstr ""
#: contactswitcher.cpp:36
msgid "Next"
msgstr ""
#: contactswitcher.cpp:111
#, kde-format
msgid "%1 out of %2"
msgstr ""
#: mainwidget.cpp:317
msgid "Print the complete address book or a selected number of contacts."
msgstr ""
#: mainwidget.cpp:320
msgid "Quick search"
msgstr ""
#: mainwidget.cpp:326
msgid "Select all contacts in the current address book view."
msgstr ""
#: mainwidget.cpp:330
msgid "Show Address Books View"
msgstr ""
#: mainwidget.cpp:331
msgid "Toggle whether the address books view shall be visible."
msgstr ""
#: mainwidget.cpp:332
msgid "Hide Address Books View"
msgstr ""
#: mainwidget.cpp:337
msgid "Show Contacts View"
msgstr ""
#: mainwidget.cpp:338
msgid "Toggle whether the contacts view shall be visible."
msgstr ""
#: mainwidget.cpp:339
msgid "Hide Contacts View"
msgstr ""
#: mainwidget.cpp:344
msgid "Show Details View"
msgstr ""
#: mainwidget.cpp:345
msgid "Toggle whether the details view shall be visible."
msgstr ""
#: mainwidget.cpp:346
msgid "Hide Details View"
msgstr ""
#: mainwidget.cpp:351
msgid "Show Simple View"
msgstr ""
#: mainwidget.cpp:352
msgid "Show a simple mode of the address book view."
msgstr ""
#: mainwidget.cpp:357
msgid "Import vCard..."
msgstr ""
#: mainwidget.cpp:358
msgid "Import contacts from a vCard file."
msgstr ""
#: mainwidget.cpp:362
msgid "Import CSV file..."
msgstr ""
#: mainwidget.cpp:363
msgid "Import contacts from a file in comma separated value format."
msgstr ""
#: mainwidget.cpp:367
msgid "Import LDIF file..."
msgstr ""
#: mainwidget.cpp:368
msgid "Import contacts from an LDIF file."
msgstr ""
#: mainwidget.cpp:372
msgid "Import from LDAP server..."
msgstr ""
#: mainwidget.cpp:373
msgid "Import contacts from an LDAP server."
msgstr ""
#: mainwidget.cpp:377
msgid "Import GMX file..."
msgstr ""
#: mainwidget.cpp:378
msgid "Import contacts from a GMX address book file."
msgstr ""
#: mainwidget.cpp:384
msgid "Export vCard 3.0..."
msgstr ""
#: mainwidget.cpp:385
msgid "Export contacts to a vCard 3.0 file."
msgstr ""
#: mainwidget.cpp:389
msgid "Export vCard 2.1..."
msgstr ""
#: mainwidget.cpp:390
msgid "Export contacts to a vCard 2.1 file."
msgstr ""
#: mainwidget.cpp:394
msgid "Export CSV file..."
msgstr ""
#: mainwidget.cpp:395
msgid "Export contacts to a file in comma separated value format."
msgstr ""
#: mainwidget.cpp:399
msgid "Export LDIF file..."
msgstr ""
#: mainwidget.cpp:400
msgid "Export contacts to an LDIF file."
msgstr ""
#: mainwidget.cpp:404
msgid "Export GMX file..."
msgstr ""
#: mainwidget.cpp:405
msgid "Export contacts to a GMX address book file."
msgstr ""
#: mainwidget.cpp:412
msgid "Address Book"
msgstr ""
#: contactselectionwidget.cpp:97
msgid "All contacts"
msgstr ""
#: contactselectionwidget.cpp:98
msgid "Selected contacts"
msgstr ""
#: contactselectionwidget.cpp:99
msgid "All contacts from:"
msgstr ""
#: contactselectionwidget.cpp:103
msgid "Include Subfolders"
msgstr ""
#: standardcontactactionmanager.cpp:52
msgid "Add Address Book Folder..."
msgstr ""
#: standardcontactactionmanager.cpp:53
msgid ""
"Add a new address book folder to the currently selected address book folder."
msgstr ""
#: standardcontactactionmanager.cpp:54
#, kde-format
msgid "Copy Address Book Folder"
msgid_plural "Copy %1 Address Book Folders"
msgstr[0] ""
msgstr[1] ""
#: standardcontactactionmanager.cpp:55
msgid "Copy the selected address book folders to the clipboard."
msgstr ""
#: standardcontactactionmanager.cpp:56
msgid "Delete Address Book Folder"
msgstr ""
#: standardcontactactionmanager.cpp:57
msgid "Delete the selected address book folders from the address book."
msgstr ""
#: standardcontactactionmanager.cpp:58
#, kde-format
msgid "Cut Address Book Folder"
msgid_plural "Cut %1 Address Book Folders"
msgstr[0] ""
msgstr[1] ""
#: standardcontactactionmanager.cpp:59
msgid "Cut the selected address book folders from the address book."
msgstr ""
#: standardcontactactionmanager.cpp:60
msgid "Folder Properties..."
msgstr ""
#: standardcontactactionmanager.cpp:61
msgid ""
"Open a dialog to edit the properties of the selected address book folder."
msgstr ""
#: standardcontactactionmanager.cpp:62 standardcontactactionmanager.cpp:120
#, kde-format
msgid "Copy Contact"
msgid_plural "Copy %1 Contacts"
msgstr[0] ""
msgstr[1] ""
#: standardcontactactionmanager.cpp:63
msgid "Copy the selected contacts to the clipboard."
msgstr ""
#: standardcontactactionmanager.cpp:64 standardcontactactionmanager.cpp:122
#, kde-format
msgid "Delete Contact"
msgid_plural "Delete %1 Contacts"
msgstr[0] ""
msgstr[1] ""
#: standardcontactactionmanager.cpp:65
msgid "Delete the selected contacts from the address book."
msgstr ""
#: standardcontactactionmanager.cpp:66 standardcontactactionmanager.cpp:124
#, kde-format
msgid "Cut Contact"
msgid_plural "Cut %1 Contacts"
msgstr[0] ""
msgstr[1] ""
#: standardcontactactionmanager.cpp:67
msgid "Cut the selected contacts from the address book."
msgstr ""
#: standardcontactactionmanager.cpp:126 standardcontactactionmanager.cpp:363
msgid "Edit Contact..."
msgstr ""
#: standardcontactactionmanager.cpp:129
#, kde-format
msgid "Copy Group"
msgid_plural "Copy %1 Groups"
msgstr[0] ""
msgstr[1] ""
#: standardcontactactionmanager.cpp:131
#, kde-format
msgid "Delete Group"
msgid_plural "Delete %1 Groups"
msgstr[0] ""
msgstr[1] ""
#: standardcontactactionmanager.cpp:133
#, kde-format
msgid "Cut Group"
msgid_plural "Cut %1 Groups"
msgstr[0] ""
msgstr[1] ""
#: standardcontactactionmanager.cpp:135
msgid "Edit Group..."
msgstr ""
#: standardcontactactionmanager.cpp:208
msgid "Add Address Book"
msgstr ""
#: standardcontactactionmanager.cpp:228
#, kde-format
msgid "Could not add address book: %1"
msgstr ""
#: standardcontactactionmanager.cpp:229
msgid "Adding Address Book failed"
msgstr ""
#: standardcontactactionmanager.cpp:252
#, kde-format
msgid "Do you really want to delete address book '%1'?"
msgstr ""
#: standardcontactactionmanager.cpp:255
msgid "Delete Address Book?"
msgstr ""
#: standardcontactactionmanager.cpp:345
msgid "New &Contact..."
msgstr ""
#: standardcontactactionmanager.cpp:347
msgid ""
"Create a new contact<p>You will be presented with a dialog where you can add "
"data about a person, including addresses and phone numbers.</p>"
msgstr ""
#: standardcontactactionmanager.cpp:354
msgid "New &Group..."
msgstr ""
#: standardcontactactionmanager.cpp:356
msgid ""
"Create a new group<p>You will be presented with a dialog where you can add a "
"new group of contacts.</p>"
msgstr ""
#: standardcontactactionmanager.cpp:364
msgid ""
"Edit the selected contact<p>You will be presented with a dialog where you "
"can edit the data stored about a person, including addresses and phone "
"numbers.</p>"
msgstr ""
#: standardcontactactionmanager.cpp:373
msgid "Add &Address Book..."
msgstr ""
#: standardcontactactionmanager.cpp:374
msgid ""
"Add a new address book<p>You will be presented with a dialog where you can "
"select the type of the address book that shall be added.</p>"
msgstr ""
#: standardcontactactionmanager.cpp:382
msgid "&Delete Address Book"
msgstr ""
#: standardcontactactionmanager.cpp:383
msgid ""
"Delete the selected address book<p>The currently selected address book will "
"be deleted, along with all the contacts and contact groups it contains.</p>"
msgstr ""
#: standardcontactactionmanager.cpp:392
msgid "Address Book Properties..."
msgstr ""
#: standardcontactactionmanager.cpp:393
msgid "Open a dialog to edit properties of the selected address book."
msgstr ""
#: contactfields.cpp:28
msgctxt "@item Undefined import field type"
msgid "Undefined"
msgstr ""
#: contactfields.cpp:37
msgid "Anniversary"
msgstr "Kỉ niệm"
#: contactfields.cpp:60
msgid "EMail (preferred)"
msgstr ""
#: contactfields.cpp:61
msgid "EMail (2)"
msgstr ""
#: contactfields.cpp:62
msgid "EMail (3)"
msgstr ""
#: contactfields.cpp:63
msgid "EMail (4)"
msgstr ""
#: modelcolumnmanager.cpp:89
msgid "Business Address"
msgstr ""
#: modelcolumnmanager.cpp:93
msgid "Phone Numbers"
msgstr ""
#: modelcolumnmanager.cpp:97
msgid "Preferred EMail"
msgstr ""
#: modelcolumnmanager.cpp:101
msgid "All EMails"
msgstr ""
#: aboutdata.cpp:27
msgid "KAddressBook"
msgstr "KAđressBook"
#: aboutdata.cpp:28
msgid "The KDE Address Book Application"
msgstr ""
#: aboutdata.cpp:30
msgid "(c) 2007-2009 The KDE PIM Team"
msgstr ""
#: aboutdata.cpp:32
msgid "Current maintainer"
msgstr ""
#: aboutdata.cpp:33
msgid "Laurent Montel"
msgstr ""
#: aboutdata.cpp:33
msgid "Kontact integration"
msgstr ""
#: contactselectiondialog.cpp:29
msgid "Select Contacts"
msgstr ""
#: quicksearchwidget.cpp:38
msgid "Search"
msgstr ""
#: xxportmanager.cpp:99
msgid "Select Address Book"
msgstr ""
#: xxportmanager.cpp:100
msgid "Select the address book the imported contact(s) shall be saved in:"
msgstr ""
#: xxportmanager.cpp:124
msgid "Which contact do you want to export?"
msgstr ""
#: xxportmanager.cpp:131
msgid "You have not selected any contacts to export."
msgstr ""
|