Welcome to mirror list, hosted at ThFree Co, Russian Federation.

plagins_translations.pot « plagins_translations - dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e62e2828ec26a3adfa88d4a47fb12cabc761eb84 (plain)
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-09-03 10:08+0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#: community_plugins/now_listen/now_listen.py:20
msgid ""
"Copy tune info to conversation input box (alt + n),\n"
"at cursor position"
msgstr ""

#: community_plugins/clients_icons/clients_icons.py:137
msgid ""
"Shows the client icons in the roster and in groupchats.\n"
"Depends: Gajim > r12506"
msgstr ""

#: community_plugins/clients_icons/clients_icons.py:139
msgid "after statusicon"
msgstr ""

#: community_plugins/clients_icons/clients_icons.py:139
msgid "before avatar"
msgstr ""

#: community_plugins/image/image.py:17
msgid ""
"This plugin is designed to send a small(0 - 40 kb) graphic image to your "
"contact.\n"
"Client on the other side must support XEP-0071: XHTML-IM and maintain the "
"scheme data: URI.\n"
"Psi+ and Jabbim supported this."
msgstr ""

#: community_plugins/image/image.py:50
msgid "This contact does not support XHTML_IM"
msgstr ""

#: community_plugins/image/image.py:52
msgid "Send image"
msgstr ""

#: community_plugins/image/image.py:86
msgid "File is empty"
msgstr ""

#: community_plugins/image/image.py:89
msgid "File does not exist"
msgstr ""

#: community_plugins/image/image.py:95 community_plugins/image/image.py:98
msgid "File too big"
msgstr ""

#: community_plugins/image/image.py:100
msgid "Could not load image"
msgstr ""

#: community_plugins/chatstate/chatstate.py:18
msgid ""
"Chat State Notifications in roster.Font color of the contact varies "
"depending on the chat state.\n"
"The plugin does not work if you use custom font color for contacts in "
"roster.\n"
"http://trac.gajim.org/ticket/3628.\n"
"http://xmpp.org/extensions/xep-0085.html"
msgstr ""

#: community_plugins/ubuntu_integration/plugin.py:51
msgid ""
"This plugin integrates Gajim with the Ubuntu Messaging Menu.\n"
"\n"
"You must have python-indicate and python-xdg (and Gajim obviously) installed "
"to enable this plugin.\n"
"\n"
"Many thanks to the guys from gajim@conference.gajim.org for answering my "
"questions :)"
msgstr ""

#: community_plugins/plagins_translations/plagins_translations.py:17
msgid "This plugin contains translations files for Gajim plugins"
msgstr ""

#: community_plugins/set_location/set_location.py:29
msgid ""
"Set information about the current geographical or physical location.\n"
"To be able to specify a location on the built-in card, you must install "
"python-osmgpsmap > 0.5"
msgstr ""

#: community_plugins/set_location/set_location.py:141
msgid ""
"Click the right mouse button to specify the location, \n"
"middle mouse button to show / hide the contacts on the map"
msgstr ""

#: community_plugins/set_location/set_location.py:226
msgid "Save as Preset"
msgstr ""

#: community_plugins/set_location/set_location.py:226
msgid "Please type a name for this preset"
msgstr ""

#: community_plugins/roster_tweaks/roster_tweaks.py:21
msgid ""
"Allows user to tweak roster window appearance (eg. make it compact).\n"
"Based on ticket #3340:\n"
"http://trac.gajim.org/ticket/3340.\n"
"Added ability to quickly change the status message to all connected accounts."
msgstr ""

#: community_plugins/wrong_layout/plugin.py:15
msgid "Press alt+r to convert chars typed in wrong layout Rus<>Eng"
msgstr ""

#: community_plugins/clickable_nicknames/clickable_nicknames.py:16
msgid "Clickable nicknames in the conversation textview."
msgstr ""

#: community_plugins/juick/plugin.py:26
msgid ""
"Clickable juick links , juick nics, preview juick picturs.\n"
"The key combination alt + up in the textbox allow insert the number of last "
"message (comment or topic)."
msgstr ""

#: community_plugins/juick/plugin.py:35
msgid "Avatar size(10-32)"
msgstr ""

#: community_plugins/juick/plugin.py:37
#: community_plugins/juick/config_dialog.ui.h:5
msgid "Preview size(10-512)"
msgstr ""

#: community_plugins/juick/plugin.py:38
#: community_plugins/juick/config_dialog.ui.h:2
msgid "Juick link color"
msgstr ""

#: community_plugins/juick/plugin.py:195
msgid "Reply to message"
msgstr ""

#: community_plugins/juick/plugin.py:199
msgid "Unsubscribe from comments"
msgstr ""

#: community_plugins/juick/plugin.py:200
msgid "Subscribe to message replies"
msgstr ""

#: community_plugins/juick/plugin.py:201
msgid "Recommend post"
msgstr ""

#: community_plugins/juick/plugin.py:202
msgid "Show message with replies"
msgstr ""

#: community_plugins/juick/plugin.py:203
msgid "Delete post"
msgstr ""

#: community_plugins/juick/plugin.py:209
msgid "Open in browser"
msgstr ""

#: community_plugins/juick/plugin.py:213
msgid "Show user's info"
msgstr ""

#: community_plugins/juick/plugin.py:214
msgid "Show user's info and last 10 messages"
msgstr ""

#: community_plugins/juick/plugin.py:215
msgid "Subscribe to user's blog"
msgstr ""

#: community_plugins/juick/plugin.py:216
msgid "Unsubscribe from user's blog"
msgstr ""

#: community_plugins/juick/plugin.py:217
msgid "Add/delete user to/from your blacklist"
msgstr ""

#: community_plugins/juick/plugin.py:223
msgid "Send personal message"
msgstr ""

#: community_plugins/juick/plugin.py:469
msgid "Show last messages from public timeline"
msgstr ""

#: community_plugins/juick/plugin.py:470
msgid "Show last messages from your feed"
msgstr ""

#: community_plugins/juick/plugin.py:471
msgid "Show popular personal blogs"
msgstr ""

#: community_plugins/juick/plugin.py:472
msgid "Show your tags"
msgstr ""

#: community_plugins/juick/plugin.py:473
msgid "Show your subscriptions"
msgstr ""

#: community_plugins/juick/plugin.py:474
msgid "Delete last message"
msgstr ""

#: community_plugins/juick/plugin.py:475
msgid "Enable subscriptions delivery"
msgstr ""

#: community_plugins/juick/plugin.py:476
msgid "Disable subscriptions delivery"
msgstr ""

#: community_plugins/juick/plugin.py:477
msgid "Show your blacklist"
msgstr ""

#: community_plugins/juick/plugin.py:478
msgid "Update \"About\" info from Jabber vCard"
msgstr ""

#: community_plugins/juick/plugin.py:479
msgid "Ping"
msgstr ""

#: community_plugins/juick/plugin.py:480
msgid "Login"
msgstr ""

#: community_plugins/juick/plugin.py:481
msgid "HELP"
msgstr ""

#: community_plugins/gotr/otrmodule.py:100
#, python-format
msgid "Private conversation with %s refreshed."
msgstr ""

#: community_plugins/gotr/otrmodule.py:104
#, python-format
msgid ""
"%s has ended his/her private conversation with you. You should do the same."
msgstr ""

#: community_plugins/gotr/otrmodule.py:113
#, python-format
msgid "New fingerprint for %s: %s"
msgstr ""

#: community_plugins/gotr/otrmodule.py:118
#, python-format
msgid "%s secured OTR conversation with %s started"
msgstr ""

#: community_plugins/gotr/otrmodule.py:125
#, python-format
msgid "Private conversation with %s lost."
msgstr ""

#: community_plugins/gotr/otrmodule.py:213
msgid "See http://www.cypherpunks.ca/otr/"
msgstr ""

#: community_plugins/gotr/otrmodule.py:461
#, python-format
msgid "The following message received from %s was *not encrypted*: [%s]"
msgstr ""

#: community_plugins/gotr/otrmodule.py:464
#, python-format
msgid ""
"The encrypted message received from %s is unreadable, as you are not "
"currently communicating privately"
msgstr ""

#: community_plugins/gotr/otrmodule.py:469
#, python-format
msgid "We received the following OTR error message from %s: [%s]"
msgstr ""

#: community_plugins/gotr/otrmodule.py:474
#, python-format
msgid ""
"The following error occurred when trying to decrypt a message from %s: [%s]"
msgstr ""

#: community_plugins/gotr/otrmodule.py:517
msgid ""
"Your message was not send. Either end your private conversation, or restart "
"it"
msgstr ""

#: community_plugins/gotr/ui.py:189
#, python-format
msgid ""
"Your fingerprint:\n"
"<span weight=\"bold\" face=\"monospace\">%s</span>"
msgstr ""

#: community_plugins/gotr/ui.py:191
#, python-format
msgid ""
"Purported fingerprint for %s:\n"
"<span weight=\"bold\" face=\"monospace\">%s</span>"
msgstr ""

#: community_plugins/gotr/ui.py:194
msgid ""
"You may want to authenticate your buddy as well by askingyour own question."
msgstr ""

#: community_plugins/gotr/ui.py:196
#, python-format
msgid ""
"<b>%s is trying to authenticate you using a secret only known to him/her and "
"you.</b>"
msgstr ""

#: community_plugins/gotr/ui.py:198
#, python-format
msgid ""
"<b>%s has chosen a question for you to answer to authenticate yourself:</b>"
msgstr ""

#: community_plugins/gotr/ui.py:200
msgid "Please enter your secret below."
msgstr ""

#: community_plugins/gotr/ui.py:202
#, python-format
msgid ""
"<b>You are trying to authenticate %s using a secret only known to him/her "
"and yourself.</b>"
msgstr ""

#: community_plugins/gotr/ui.py:204
msgid "You can choose a question as a hint for your buddy below."
msgstr ""

#: community_plugins/gotr/ui.py:224 community_plugins/gotr/ui.py:398
#, python-format
msgid "OTR settings for %s"
msgstr ""

#: community_plugins/gotr/ui.py:332
msgid "SMP verifying aborted"
msgstr ""

#: community_plugins/gotr/ui.py:353 community_plugins/gotr/ui.py:363
msgid "SMP verifying succeeded"
msgstr ""

#: community_plugins/gotr/ui.py:358 community_plugins/gotr/ui.py:368
msgid "SMP verifying failed"
msgstr ""

#: community_plugins/gotr/ui.py:372
msgid "user aborted SMP authentication"
msgstr ""

#: community_plugins/gotr/ui.py:438
msgid "unknown"
msgstr ""

#: community_plugins/flashing_keyboard/flashing_keyboard.py:16
msgid "Flashing keyboard led if there is unread messages"
msgstr ""

#: community_plugins/gnome_session_manager/plugin.py:35
msgid "Set and react on GNOME Session presence settings"
msgstr ""

#: events_dump/plugin.py:39
msgid "Dumps info about selected events to console."
msgstr ""

#: acronyms_expander/acronyms_expander.py:39
msgid "Replaces acronyms (or other strings) with given expansions/substitutes."
msgstr ""

#: triggers/triggers.py:37
msgid "Configure Gajim's behaviour for each contact"
msgstr ""

#: triggers/triggers.py:269
msgid "#"
msgstr ""

#: triggers/triggers.py:275
msgid "Condition"
msgstr ""

#: triggers/triggers.py:388
msgid "when I am "
msgstr ""

#: plugin_installer/plugin_installer.py:44
msgid "Install and upgrade plugins from ftp"
msgstr ""

#: plugin_installer/plugin_installer.py:103
msgid "Plugin"
msgstr ""

#: plugin_installer/plugin_installer.py:108
msgid ""
"Installed\n"
"version"
msgstr ""

#: plugin_installer/plugin_installer.py:110
msgid ""
"Available\n"
"version"
msgstr ""

#: plugin_installer/plugin_installer.py:117
msgid ""
"Install /\n"
"Upgrade"
msgstr ""

#: dbus_plugin/plugin.py:691
msgid ""
"D-Bus support. Based on remote_control module from\n"
"Gajim core but uses new events handling system."
msgstr ""

#: new_events_example/plugin.py:44
msgid ""
"Shows how to generate new network events based on existing one using Network "
"Events Controller."
msgstr ""

#: banner_tweaks/plugin.py:48
msgid ""
"Allows user to tweak chat window banner appearance (eg. make it compact).\n"
"Based on patch by pb in ticket #4133:\n"
"http://trac.gajim.org/attachment/ticket/4133."
msgstr ""

#: banner_tweaks/plugin.py:111
#, python-format
msgid "%(nickname)s from group chat %(room_name)s"
msgstr ""

#: snarl_notifications/plugin.py:44
msgid ""
"Shows events notification using Snarl (http://www.fullphat.net/) under "
"Windows. Snarl needs to be installed in system.\n"
"PySnarl bindings are used (http://code.google.com/p/pysnarl/)."
msgstr ""

#: google_translation/plugin.py:47
msgid "Translates (currently only incoming)messages using Google Translate."
msgstr ""

#: length_notifier/length_notifier.py:39
msgid ""
"Highlights message entry field in chat window when given length of message "
"is exceeded."
msgstr ""

#: roster_buttons/plugin.py:39
msgid "Adds quick action buttons to roster window."
msgstr ""

#: whiteboard/plugin.py:55
msgid "Shows a whiteboard in chat. python-pygoocanvas is required."
msgstr ""

#: whiteboard/plugin.py:155
msgid "Incoming Whiteboard"
msgstr ""

#: whiteboard/plugin.py:156
#, python-format
msgid ""
"%(name)s (%(jid)s) wants to start a whiteboard with you. Do you want to "
"accept?"
msgstr ""

#: whiteboard/plugin.py:206
msgid "Invalid Jabber ID"
msgstr ""

#: whiteboard/plugin.py:207
msgid "A message from a non-valid JID arrived, it has been ignored."
msgstr ""

#: whiteboard/plugin.py:346
#, python-format
msgid "Whiteboard stopped: %(reason)s"
msgstr ""

#: whiteboard/whiteboard_widget.py:263
msgid "Save Image as..."
msgstr ""

#: whiteboard/whiteboard_widget.py:273
msgid "All files"
msgstr ""

#: whiteboard/whiteboard_widget.py:278
msgid "SVG Files"
msgstr ""

#: community_plugins/now_listen/config_dialog.ui.h:2
#, no-c-format
msgid ""
"%title - song name\n"
"%artist - artist\n"
"%album - album"
msgstr ""

#: community_plugins/now_listen/config_dialog.ui.h:5
msgid "<b>Legend:</b>"
msgstr ""

#: community_plugins/now_listen/config_dialog.ui.h:6
msgid "Format string:"
msgstr ""

#: community_plugins/clients_icons/config_dialog.ui.h:1
msgid "Show icon for an unknown client"
msgstr ""

#: community_plugins/clients_icons/config_dialog.ui.h:2
msgid "Show icon:"
msgstr ""

#: community_plugins/clients_icons/config_dialog.ui.h:3
msgid "Show icons in groupchats"
msgstr ""

#: community_plugins/clients_icons/config_dialog.ui.h:4
msgid "Show icons in roster"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:1
msgid "A URI or URL pointing to information about the location"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:2
msgid ""
"A catch-all element that captures any other information about the location"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:3
msgid "A code used for postal delivery"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:4
msgid "A locality within the administrative region, such as a town or city"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:5
msgid "A named area such as a campus or neighborhood"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:6
msgid "A natural-language name for or description of the location"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:7
msgid "A particular floor in a building"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:8
msgid "A particular room in a building"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:9
msgid "A specific building on a street or in an area"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:10
msgid "A thoroughfare within the locality, or a crossing of two thoroughfares"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:11
msgid "Altitude in meters above or below sea level"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:12
msgid "An administrative region of the nation, such as a state or province"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:13
msgid "Delete preset"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:14
msgid "Latitude in decimal degrees North"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:15
msgid "Longitude in decimal degrees East"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:16
msgid "Preset:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:17
msgid "Save preset"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:18
msgid "The ISO 3166 two-letter country code"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:19
msgid "The nation where the user is located"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:20
msgid "alt:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:21
msgid "area:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:22
msgid "building:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:23
msgid "country:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:24
msgid "countrycode:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:25
msgid "description:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:26
msgid "floor:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:27
msgid "lat:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:28
msgid "locality:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:29
msgid "lon:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:30
msgid "postalcode:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:31
msgid "region:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:32
msgid "room:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:33
msgid "street:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:34
msgid "text:"
msgstr ""

#: community_plugins/set_location/config_dialog.ui.h:35
msgid "uri:"
msgstr ""

#: community_plugins/roster_tweaks/config_dialog.ui.h:1
msgid "Hide status combobox"
msgstr ""

#: community_plugins/roster_tweaks/config_dialog.ui.h:2
msgid "Show quick-change status field"
msgstr ""

#: community_plugins/roster_tweaks/config_dialog.ui.h:3
msgid "Use Ctrl +M to hide/show menu"
msgstr ""

#: community_plugins/juick/config_dialog.ui.h:1
msgid "Avatar size"
msgstr ""

#: community_plugins/juick/config_dialog.ui.h:3
msgid "Juick tag button menu options:"
msgstr ""

#: community_plugins/juick/config_dialog.ui.h:4
msgid "Preview size"
msgstr ""

#: community_plugins/juick/config_dialog.ui.h:6
msgid "Show avatar of post author only"
msgstr ""

#: community_plugins/juick/config_dialog.ui.h:7
msgid "Show avatars in messages"
msgstr ""

#: community_plugins/juick/config_dialog.ui.h:8
msgid "Show juick picture preview"
msgstr ""

#: community_plugins/juick/config_dialog.ui.h:9
msgid "Show juick tag button"
msgstr ""

#: community_plugins/juick/config_dialog.ui.h:10
msgid "menuitem name:"
msgstr ""

#: community_plugins/juick/config_dialog.ui.h:11
msgid "text will be inserted:"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:1
msgid "(Re-)generate"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:2
msgid "<b>Default OTR Settings</b>"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:3
msgid "<b>Off-the-Record settings for:</b>"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:4
msgid "<tt>-------- -------- -------- -------- --------\t</tt>"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:5
msgid "Advertise Off-the-Record messaging support"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:6
msgid "Automatically start private messaging"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:7
msgid "Enable private (Off-the-Record) messaging"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:8
msgid "Fingerprint:"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:9
msgid "Forget Fingerprint"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:10
msgid "Known Fingerprints"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:11
#: community_plugins/gotr/contact_otr_window.ui.h:8
msgid "OTR Settings"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:12
msgid "Require private messaging"
msgstr ""

#: community_plugins/gotr/config_dialog.ui.h:13
msgid "Verify Fingerprint"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:1
msgid "Authenticate contact"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:2
msgid "Authentication"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:3
msgid "Automatically initiate encryption if partner understands OTR"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:4
msgid "Encryption required"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:5
msgid "End OTR "
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:6
msgid "I have"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:7
msgid "I have NOT"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:9
msgid "OTR settings / fingerprint"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:10
msgid "OTR version 2 allowed"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:11
msgid "Off-the-Record Encryption"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:12
msgid ""
"Purported fingerprint for asdfasdf@xyzxyzxyz.de:\n"
"<span weight=\"bold\" face=\"monospace\">01234567 89ABCDEF 01234567 89ABCDEF "
"01234567</span>"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:14
msgid "Show others we understand OTR"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:15
msgid "Start / Refresh OTR"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:16
msgid "Use question: "
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:17
msgid "Use the default settings"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:18
msgid ""
"Your fingerprint:\n"
"<span weight=\"bold\" face=\"monospace\">01234567 89ABCDEF 01234567 89ABCDEF "
"01234567</span>"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:20
msgid "label"
msgstr ""

#: community_plugins/gotr/contact_otr_window.ui.h:21
msgid ""
"verified that the purported fingerprint is in fact the correct fingerprint "
"for that contact."
msgstr ""

#: community_plugins/flashing_keyboard/config_dialog.ui.h:1
msgid "command 1:"
msgstr ""

#: community_plugins/flashing_keyboard/config_dialog.ui.h:2
msgid "command 2:"
msgstr ""

#: triggers/config_dialog.ui.h:1
msgid " a window/tab opened with that contact "
msgstr ""

#: triggers/config_dialog.ui.h:2
msgid "<b>Actions</b>"
msgstr ""

#: triggers/config_dialog.ui.h:3
msgid "<b>Conditions</b>"
msgstr ""

#: triggers/config_dialog.ui.h:4
msgid "<b>Sounds</b>"
msgstr ""

#: triggers/config_dialog.ui.h:5
msgid "Advanced Actions"
msgstr ""

#: triggers/config_dialog.ui.h:6
msgid "Advanced Notifications Control"
msgstr ""

#: triggers/config_dialog.ui.h:7
msgid "All statuses"
msgstr ""

#: triggers/config_dialog.ui.h:8
msgid "Away"
msgstr ""

#: triggers/config_dialog.ui.h:9
msgid "Busy "
msgstr ""

#: triggers/config_dialog.ui.h:10
msgid "Contact Changes Status"
msgstr ""

#: triggers/config_dialog.ui.h:11
msgid "Contact Connects"
msgstr ""

#: triggers/config_dialog.ui.h:12
msgid "Contact Disconnects"
msgstr ""

#: triggers/config_dialog.ui.h:13
msgid "Don't have "
msgstr ""

#: triggers/config_dialog.ui.h:14
msgid "Have "
msgstr ""

#: triggers/config_dialog.ui.h:15
msgid "Invisible"
msgstr ""

#: triggers/config_dialog.ui.h:16
msgid "Launch a command"
msgstr ""

#: triggers/config_dialog.ui.h:17
msgid "Not Available"
msgstr ""

#: triggers/config_dialog.ui.h:18
msgid "One or more special statuses..."
msgstr ""

#: triggers/config_dialog.ui.h:19
msgid "Online / Free For Chat"
msgstr ""

#: triggers/config_dialog.ui.h:20
msgid "Play a sound"
msgstr ""

#: triggers/config_dialog.ui.h:21
msgid "Receive a Message"
msgstr ""

#: triggers/config_dialog.ui.h:22
msgid "When "
msgstr ""

#: triggers/config_dialog.ui.h:23
msgid ""
"_Activate window manager's UrgencyHint to make chat window in taskbar flash"
msgstr ""

#: triggers/config_dialog.ui.h:24
msgid "_Deactivate window manager's UrgencyHint"
msgstr ""

#: triggers/config_dialog.ui.h:25
msgid "_Disable auto opening chat window"
msgstr ""

#: triggers/config_dialog.ui.h:26
msgid "_Disable existing popup window"
msgstr ""

#: triggers/config_dialog.ui.h:27
msgid "_Disable existing sound for this event"
msgstr ""

#: triggers/config_dialog.ui.h:28
msgid "_Disable showing event in notification area"
msgstr ""

#: triggers/config_dialog.ui.h:29
msgid "_Disable showing event in roster"
msgstr ""

#: triggers/config_dialog.ui.h:30
msgid "_Inform me with a popup window"
msgstr ""

#: triggers/config_dialog.ui.h:31
msgid "_Open chat window with user"
msgstr ""

#: triggers/config_dialog.ui.h:32
msgid "_Show event in notification area"
msgstr ""

#: triggers/config_dialog.ui.h:33
msgid "_Show event in roster"
msgstr ""

#: triggers/config_dialog.ui.h:34
msgid "and I "
msgstr ""

#: triggers/config_dialog.ui.h:35
msgid "comma separated list"
msgstr ""

#: triggers/config_dialog.ui.h:36
msgid "contact(s)"
msgstr ""

#: triggers/config_dialog.ui.h:37
msgid "everybody"
msgstr ""

#: triggers/config_dialog.ui.h:38
msgid "for "
msgstr ""

#: triggers/config_dialog.ui.h:39
msgid "group(s)"
msgstr ""

#: triggers/config_dialog.ui.h:40
msgid "when I'm in"
msgstr ""

#: plugin_installer/config_dialog.ui.h:1
msgid "Authors:"
msgstr ""

#: plugin_installer/config_dialog.ui.h:2
msgid "Description:"
msgstr ""

#: plugin_installer/config_dialog.ui.h:3
msgid "Ftp server:"
msgstr ""

#: plugin_installer/config_dialog.ui.h:4
msgid "Homepage:"
msgstr ""

#: plugin_installer/config_dialog.ui.h:5
msgid "Install/Upgrade"
msgstr ""

#: banner_tweaks/config_dialog.ui.h:1
msgid "Display resource name of contact"
msgstr ""

#: banner_tweaks/config_dialog.ui.h:2
msgid "Display status icon"
msgstr ""

#: banner_tweaks/config_dialog.ui.h:3
msgid "Display status message of contact"
msgstr ""

#: banner_tweaks/config_dialog.ui.h:4
msgid ""
"If checked, resource name of contact will be displayed in chat window banner."
msgstr ""

#: banner_tweaks/config_dialog.ui.h:5
msgid ""
"If checked, smaller font will be used to display resource name and contact "
"name in chat window banner."
msgstr ""

#: banner_tweaks/config_dialog.ui.h:6
msgid "If checked, status icon will be displayed in chat window banner."
msgstr ""

#: banner_tweaks/config_dialog.ui.h:7
msgid ""
"If checked, status message of contact will be displayed in chat window "
"banner."
msgstr ""

#: banner_tweaks/config_dialog.ui.h:8
msgid "Use small fonts for contact name and resource name"
msgstr ""

#: length_notifier/config_dialog.ui.h:1
msgid ""
"Background color of text entry field in chat window when notification is "
"invoked."
msgstr ""

#: length_notifier/config_dialog.ui.h:2
msgid ""
"JabberIDs that plugin should be used with (eg. restrict only to one "
"microblogging bot). Use comma (without space) as separator. If empty plugin "
"is used with every JID. "
msgstr ""

#: length_notifier/config_dialog.ui.h:3
msgid "JabberIDs to include:"
msgstr ""

#: length_notifier/config_dialog.ui.h:4
msgid "Message length at which notification is invoked."
msgstr ""

#: length_notifier/config_dialog.ui.h:5
msgid "Message length:"
msgstr ""

#: length_notifier/config_dialog.ui.h:6
msgid "Notification color:"
msgstr ""

#: length_notifier/config_dialog.ui.h:7
msgid "Pick a color for notification"
msgstr ""

#: roster_buttons/roster_buttons.ui.h:1
msgid "1"
msgstr ""

#: roster_buttons/roster_buttons.ui.h:2
msgid "2"
msgstr ""

#: roster_buttons/roster_buttons.ui.h:3
msgid "3"
msgstr ""

#: roster_buttons/roster_buttons.ui.h:4
msgid "4"
msgstr ""

#: whiteboard/whiteboard_widget.ui.h:1
msgid "Brush Tool: Draw freehand lines"
msgstr ""

#: whiteboard/whiteboard_widget.ui.h:2
msgid "Clear Canvas: Cleanup canvas"
msgstr ""

#: whiteboard/whiteboard_widget.ui.h:3
msgid "Delete Tool: Remove individual figures"
msgstr ""

#: whiteboard/whiteboard_widget.ui.h:4
msgid "Export Image: Save image to svg file"
msgstr ""

#: whiteboard/whiteboard_widget.ui.h:5
msgid "Foreground color"
msgstr ""

#: whiteboard/whiteboard_widget.ui.h:6
msgid "Line Tool: Draw straight lines"
msgstr ""

#: whiteboard/whiteboard_widget.ui.h:7
msgid "Line width"
msgstr ""

#: whiteboard/whiteboard_widget.ui.h:8
msgid "Oval Tool: Draw circles and ellipses"
msgstr ""