~ubuntu-branches/ubuntu/hardy/emesene/hardy-backports

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
# 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: 2008-03-16 10:56-0300\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#: ConfigDialog.py:162
#, python-format
msgid ""
"Field '%(identifier)s ('%(value)s') not valid\n"
"'%(message)s'"
msgstr ""

#: Controller.py:98 UserList.py:406 abstract/status.py:37
msgid "Online"
msgstr ""

#: Controller.py:98 abstract/status.py:39
msgid "Away"
msgstr ""

#: Controller.py:98 abstract/status.py:38
msgid "Busy"
msgstr ""

#: Controller.py:98 abstract/status.py:44
msgid "Be right back"
msgstr ""

#: Controller.py:99 abstract/status.py:43
msgid "On the phone"
msgstr ""

#: Controller.py:99
msgid "Gone to lunch"
msgstr ""

#: Controller.py:99 abstract/status.py:41
msgid "Invisible"
msgstr ""

#: Controller.py:100 abstract/status.py:40
msgid "Idle"
msgstr ""

#: Controller.py:100 abstract/status.py:36
msgid "Offline"
msgstr ""

#: Controller.py:102
msgid "_Online"
msgstr ""

#: Controller.py:102
msgid "_Away"
msgstr ""

#: Controller.py:102
msgid "_Busy"
msgstr ""

#: Controller.py:102
msgid "Be _right back"
msgstr ""

#: Controller.py:103
msgid "On the _phone"
msgstr ""

#: Controller.py:103
msgid "Gone to _lunch"
msgstr ""

#: Controller.py:103
msgid "_Invisible"
msgstr ""

#: Controller.py:104
msgid "I_dle"
msgstr ""

#: Controller.py:104
msgid "O_ffline"
msgstr ""

#: Controller.py:244
msgid "Error during login, please retry"
msgstr ""

#: Controller.py:295 MainMenu.py:66 UserPanel.py:391 abstract/MainMenu.py:71
msgid "_Status"
msgstr ""

#: Controller.py:368
msgid "Fatal error"
msgstr ""

#: Controller.py:370
msgid "This is a bug. Please report it at:"
msgstr ""

#: Controller.py:548
msgid "invalid check() return value"
msgstr ""

#: Controller.py:550
#, python-format
msgid "plugin %s could not be initialized, reason:"
msgstr ""

#: Controller.py:600 abstract/GroupMenu.py:81
msgid "Empty account"
msgstr ""

#: Controller.py:628
msgid "Error loading theme, falling back to default"
msgstr ""

#: Controller.py:777
msgid "Logged in from another location."
msgstr ""

#: Controller.py:779
msgid "The server has disconnected you."
msgstr ""

#: Conversation.py:170 ConversationUI.py:518
msgid "Group chat"
msgstr ""

#: Conversation.py:264
#, python-format
msgid "%s just sent you a nudge!"
msgstr ""

#: Conversation.py:328
#, python-format
msgid "%s has joined the conversation"
msgstr ""

#: Conversation.py:340
#, python-format
msgid "%s has left the conversation"
msgstr ""

#: Conversation.py:374
msgid "you have sent a nudge!"
msgstr ""

#: Conversation.py:425
#, python-format
msgid "Are you sure you want to send a offline message to %s"
msgstr ""

#: Conversation.py:448
msgid "Can't send message"
msgstr ""

#: ConversationLayoutManager.py:222
msgid "This is an outgoing message"
msgstr ""

#: ConversationLayoutManager.py:229
msgid "This is a consecutive outgoing message"
msgstr ""

#: ConversationLayoutManager.py:235
msgid "This is an incoming message"
msgstr ""

#: ConversationLayoutManager.py:242
msgid "This is a consecutive incoming message"
msgstr ""

#: ConversationLayoutManager.py:247
msgid "This is an information message"
msgstr ""

#: ConversationLayoutManager.py:252
msgid "This is an error message"
msgstr ""

#: ConversationLayoutManager.py:348
msgid "says"
msgstr ""

#: ConversationUI.py:348
msgid "is typing a message..."
msgstr ""

#: ConversationUI.py:350
msgid "are typing a message..."
msgstr ""

#: ConversationUI.py:442 ConversationUI.py:525
msgid "Connecting..."
msgstr ""

#: ConversationUI.py:444
msgid "Reconnect"
msgstr ""

#: ConversationUI.py:489
msgid "The user is already present"
msgstr ""

#: ConversationUI.py:491
msgid "The user is offline"
msgstr ""

#: ConversationUI.py:496
msgid "Can't connect"
msgstr ""

#: ConversationUI.py:520
msgid "Members"
msgstr ""

#: ConversationUI.py:734
msgid "Send"
msgstr ""

#: ConversationUI.py:1083
msgid "Fontstyle"
msgstr ""

#: ConversationUI.py:1088
msgid "Smilie"
msgstr ""

#: ConversationUI.py:1092
msgid "Nudge"
msgstr ""

#: ConversationUI.py:1096 ConversationUI.py:1247
msgid "Invite"
msgstr ""

#: ConversationUI.py:1103
msgid "Clear Conversation"
msgstr ""

#: ConversationUI.py:1108
msgid "Send File"
msgstr ""

#: ConversationUI.py:1135
msgid "Font selection"
msgstr ""

#: ConversationUI.py:1136
msgid "Font color selection"
msgstr ""

#: ConversationUI.py:1137 FontStyleWindow.py:43
msgid "Font styles"
msgstr ""

#: ConversationUI.py:1138
msgid "Insert a smilie"
msgstr ""

#: ConversationUI.py:1139
msgid "Send nudge"
msgstr ""

#: ConversationUI.py:1141
msgid "Invite a friend to the conversation"
msgstr ""

#: ConversationUI.py:1142
msgid "Clear conversation"
msgstr ""

#: ConversationUI.py:1143 plugins_base/Commands.py:93
msgid "Send a file"
msgstr ""

#: ConversationUI.py:1274
msgid "Users"
msgstr ""

#: ConversationUI.py:1290
msgid "For multiple select hold CTRL key and click"
msgstr ""

#: ConversationUI.py:1529 plugins_base/CurrentSong.py:425
msgid "Status:"
msgstr ""

#: ConversationUI.py:1530
msgid "Average speed:"
msgstr ""

#: ConversationUI.py:1531
msgid "Time elapsed:"
msgstr ""

#: ConversationWindow.py:399 plugins_base/Notification.py:184
msgid "Choose a font"
msgstr ""

#: ConversationWindow.py:422 plugins_base/Notification.py:195
msgid "Choose a color"
msgstr ""

#: ConversationWindow.py:442
msgid "Send file"
msgstr ""

#: ConversationWindow.py:470
msgid "_Conversation"
msgstr ""

#: ConversationWindow.py:473
msgid "_Invite"
msgstr ""

#: ConversationWindow.py:480
msgid "_Send file"
msgstr ""

#: ConversationWindow.py:487
msgid "C_lear Conversation"
msgstr ""

#: ConversationWindow.py:495
msgid "Close all"
msgstr ""

#: ConversationWindow.py:511
msgid "For_mat"
msgstr ""

#: CustomEmoticons.py:40
msgid "Shortcut is empty"
msgstr ""

#: CustomEmoticons.py:44
msgid "Shortcut already in use"
msgstr ""

#: CustomEmoticons.py:56
msgid "No Image selected"
msgstr ""

#: FileTransfer.py:70
#, python-format
msgid "Sending %s"
msgstr ""

#: FileTransfer.py:74
#, python-format
msgid "%(mail)s is sending you %(file)s"
msgstr ""

#: FileTransfer.py:100
#, python-format
msgid "You have accepted %s"
msgstr ""

#: FileTransfer.py:114
#, python-format
msgid "You have canceled the transfer of %s"
msgstr ""

#: FileTransfer.py:148
#, python-format
msgid "Starting transfer of %s"
msgstr ""

#: FileTransfer.py:165
#, python-format
msgid "Transfer of %s failed."
msgstr ""

#: FileTransfer.py:168
msgid "Some parts of the file are missing"
msgstr ""

#: FileTransfer.py:170
msgid "Interrupted by user"
msgstr ""

#: FileTransfer.py:172
msgid "Transfer error"
msgstr ""

#: FileTransfer.py:184
#, python-format
msgid "%s sent successfully"
msgstr ""

#: FileTransfer.py:187
#, python-format
msgid "%s received successfully."
msgstr ""

#: FontStyleWindow.py:54 plugins_base/PlusColorPanel.py:59
msgid "Bold"
msgstr ""

#: FontStyleWindow.py:62 plugins_base/PlusColorPanel.py:64
msgid "Italic"
msgstr ""

#: FontStyleWindow.py:70 plugins_base/PlusColorPanel.py:69
msgid "Underline"
msgstr ""

#: FontStyleWindow.py:78 plugins_base/PlusColorPanel.py:74
msgid "Strike"
msgstr ""

#: FontStyleWindow.py:82
msgid "Reset"
msgstr ""

#: GroupMenu.py:33 MainMenu.py:190
msgid "Re_name group..."
msgstr ""

#: GroupMenu.py:36 MainMenu.py:188
msgid "Re_move group"
msgstr ""

#: GroupMenu.py:45 MainMenu.py:129 UserMenu.py:142
msgid "_Add contact..."
msgstr ""

#: GroupMenu.py:48 MainMenu.py:133
msgid "Add _group..."
msgstr ""

#: LogViewer.py:38
msgid "Log viewer"
msgstr ""

#: LogViewer.py:44
#, python-format
msgid "[%(date)s] %(mail)s changed the nick to %(data)s\n"
msgstr ""

#: LogViewer.py:46
#, python-format
msgid "[%(date)s] %(mail)s changed the personal message to %(data)s\n"
msgstr ""

#: LogViewer.py:48
#, python-format
msgid "[%(date)s] %(mail)s changed his status to %(data)s\n"
msgstr ""

#: LogViewer.py:50
#, python-format
msgid "[%(date)s] %(mail)s is now offline\n"
msgstr ""

#: LogViewer.py:52
#, python-format
msgid "[%(date)s] %(mail)s: %(data)s\n"
msgstr ""

#: LogViewer.py:54
#, python-format
msgid "[%(date)s] %(mail)s just sent you a nudge\n"
msgstr ""

#: LogViewer.py:56
#, python-format
msgid "[%(date)s] %(mail)s %(data)s\n"
msgstr ""

#: LogViewer.py:59
#, python-format
msgid "[%(date)s] %(mail)s %(event)s %(data)s\n"
msgstr ""

#: LogViewer.py:127
msgid "Open a log file"
msgstr ""

#: LogViewer.py:129
msgid "Open"
msgstr ""

#: LogViewer.py:130 Login.py:198 Login.py:210
msgid "Cancel"
msgstr ""

#: LogViewer.py:308 MainMenu.py:39
msgid "_File"
msgstr ""

#: LogViewer.py:346
msgid "Contact"
msgstr ""

#: LogViewer.py:347 LogViewer.py:348 PluginManagerDialog.py:62
msgid "Name"
msgstr ""

#: LogViewer.py:351
msgid "Contacts"
msgstr ""

#: LogViewer.py:353
msgid "User Events"
msgstr ""

#: LogViewer.py:355
msgid "Conversation Events"
msgstr ""

#: LogViewer.py:387
msgid "User events"
msgstr ""

#: LogViewer.py:389
msgid "Conversation events"
msgstr ""

#: LogViewer.py:444
msgid "State"
msgstr ""

#: LogViewer.py:455
msgid "Select all"
msgstr ""

#: LogViewer.py:456
msgid "Deselect all"
msgstr ""

#: Login.py:49
msgid "_User:"
msgstr ""

#: Login.py:50
msgid "_Password:"
msgstr ""

#: Login.py:51
msgid "_Status:"
msgstr ""

#: Login.py:147
msgid "_Login"
msgstr ""

#: Login.py:151
msgid "_Remember me"
msgstr ""

#: Login.py:157
msgid "Forget me"
msgstr ""

#: Login.py:162
msgid "R_emember password"
msgstr ""

#: Login.py:166
msgid "Auto-Login"
msgstr ""

#: Login.py:194
msgid "Connection error"
msgstr ""

#: Login.py:280
msgid "Reconnecting in "
msgstr ""

#: Login.py:280
msgid " seconds"
msgstr ""

#: Login.py:282
msgid "Reconnecting..."
msgstr ""

#: Login.py:289
msgid "User or password empty"
msgstr ""

#: MainMenu.py:46 abstract/MainMenu.py:94
msgid "_View"
msgstr ""

#: MainMenu.py:50 abstract/MainMenu.py:129
msgid "_Actions"
msgstr ""

#: MainMenu.py:55 abstract/MainMenu.py:213
msgid "_Options"
msgstr ""

#: MainMenu.py:59 abstract/MainMenu.py:231
msgid "_Help"
msgstr ""

#: MainMenu.py:77
msgid "_New account"
msgstr ""

#: MainMenu.py:96 abstract/MainMenu.py:100
msgid "Order by _group"
msgstr ""

#: MainMenu.py:98 abstract/MainMenu.py:97
msgid "Order by _status"
msgstr ""

#: MainMenu.py:109 abstract/MainMenu.py:107
msgid "Show by _nick"
msgstr ""

#: MainMenu.py:111 abstract/MainMenu.py:111
msgid "Show _offline"
msgstr ""

#: MainMenu.py:114 abstract/MainMenu.py:115
msgid "Show _empty groups"
msgstr ""

#: MainMenu.py:116
msgid "Show _contact count"
msgstr ""

#: MainMenu.py:144 UserMenu.py:50
msgid "_Set contact alias..."
msgstr ""

#: MainMenu.py:145 UserMenu.py:87 abstract/ContactMenu.py:42
#: abstract/MainMenu.py:159
msgid "_Block"
msgstr ""

#: MainMenu.py:147 UserMenu.py:93 abstract/ContactMenu.py:46
#: abstract/MainMenu.py:163
msgid "_Unblock"
msgstr ""

#: MainMenu.py:149 UserMenu.py:106
msgid "M_ove to group"
msgstr ""

#: MainMenu.py:151 UserMenu.py:99
msgid "_Remove contact"
msgstr ""

#: MainMenu.py:202
msgid "_Change nick..."
msgstr ""

#: MainMenu.py:204 UserPanel.py:395
msgid "Change _display picture..."
msgstr ""

#: MainMenu.py:211
msgid "Edit a_utoreply..."
msgstr ""

#: MainMenu.py:214
msgid "Activate au_toreply"
msgstr ""

#: MainMenu.py:221
msgid "P_lugins"
msgstr ""

#: MainMenu.py:376
#, python-format
msgid "A client for the WLM%s network"
msgstr ""

#: MainMenu.py:401
msgid "translator-credits"
msgstr ""

#: MainMenu.py:473
msgid "Empty autoreply"
msgstr ""

#: MainMenu.py:478
msgid "Autoreply message:"
msgstr ""

#: MainMenu.py:480
msgid "Change autoreply"
msgstr ""

#: MainWindow.py:301
msgid "no group"
msgstr ""

#: PluginManagerDialog.py:43 PluginManagerDialog.py:44
msgid "Plugin Manager"
msgstr ""

#: PluginManagerDialog.py:60
msgid "Active"
msgstr ""

#: PluginManagerDialog.py:66
msgid "Description"
msgstr ""

#: PluginManagerDialog.py:106 PreferenceWindow.py:519
msgid "Author:"
msgstr ""

#: PluginManagerDialog.py:109 PreferenceWindow.py:521
msgid "Website:"
msgstr ""

#: PluginManagerDialog.py:121
msgid "Configure"
msgstr ""

#: PluginManagerDialog.py:262
msgid "Plugin initialization failed: \n"
msgstr ""

#: PreferenceWindow.py:39 PreferenceWindow.py:40
msgid "Preferences"
msgstr ""

#: PreferenceWindow.py:66 PreferenceWindow.py:361 plugins_base/Sound.py:249
msgid "Theme"
msgstr ""

#: PreferenceWindow.py:67
msgid "Interface"
msgstr ""

#: PreferenceWindow.py:69
msgid "Color scheme"
msgstr ""

#: PreferenceWindow.py:71
msgid "Filetransfer"
msgstr ""

#: PreferenceWindow.py:77 PreferenceWindow.py:81
msgid "Desktop"
msgstr ""

#: PreferenceWindow.py:78 PreferenceWindow.py:80
msgid "Connection"
msgstr ""

#: PreferenceWindow.py:135
msgid "Contact typing"
msgstr ""

#: PreferenceWindow.py:137
msgid "Message waiting"
msgstr ""

#: PreferenceWindow.py:139
msgid "Personal msn message"
msgstr ""

#: PreferenceWindow.py:182
msgid "Links and files"
msgstr ""

#: PreferenceWindow.py:189
msgid "Enable rgba colormap (requires restart)"
msgstr ""

#: PreferenceWindow.py:216
#, python-format
msgid ""
"The detected desktop environment is <b>\"%(detected)s\"</b>.\n"
"<span face=\"Monospace\">%(commandline)s</span> will be used to open links "
"and files"
msgstr ""

#: PreferenceWindow.py:221
msgid ""
"<b>No desktop environment detected.</b> The first browser found will be used "
"to open links"
msgstr ""

#: PreferenceWindow.py:232
msgid "Command line:"
msgstr ""

#: PreferenceWindow.py:235
msgid "Override detected settings"
msgstr ""

#: PreferenceWindow.py:240
#, python-format
msgid "<i>Note:</i> %s is replaced by the actual url to be opened"
msgstr ""

#: PreferenceWindow.py:245
msgid "Click to test"
msgstr ""

#: PreferenceWindow.py:293
msgid "_Show debug in console"
msgstr ""

#: PreferenceWindow.py:295
msgid "_Show binary codes in debug"
msgstr ""

#: PreferenceWindow.py:297
msgid "_Use HTTP method"
msgstr ""

#: PreferenceWindow.py:301
msgid "Proxy settings"
msgstr ""

#: PreferenceWindow.py:347
msgid "_Use small icons"
msgstr ""

#: PreferenceWindow.py:349
msgid "Display _smiles"
msgstr ""

#: PreferenceWindow.py:351
msgid "Disable text formatting"
msgstr ""

#: PreferenceWindow.py:368
msgid "Smilie theme"
msgstr ""

#: PreferenceWindow.py:375 PreferenceWindow.py:436
msgid "Conversation Layout"
msgstr ""

#: PreferenceWindow.py:515
msgid "Name:"
msgstr ""

#: PreferenceWindow.py:517
msgid "Description:"
msgstr ""

#: PreferenceWindow.py:566 PreferenceWindow.py:584
msgid "Show _menu bar"
msgstr ""

#: PreferenceWindow.py:567
msgid "Show _user panel"
msgstr ""

#: PreferenceWindow.py:568
msgid "Show _search entry"
msgstr ""

#: PreferenceWindow.py:570
msgid "Show status _combo"
msgstr ""

#: PreferenceWindow.py:573
msgid "Main window"
msgstr ""

#: PreferenceWindow.py:585
msgid "Show conversation _header"
msgstr ""

#: PreferenceWindow.py:596
msgid "Show conversation _toolbar"
msgstr ""

#: PreferenceWindow.py:598
msgid "S_how a Send button"
msgstr ""

#: PreferenceWindow.py:601
msgid "Show st_atusbar"
msgstr ""

#: PreferenceWindow.py:602
msgid "Show a_vatars"
msgstr ""

#: PreferenceWindow.py:605
msgid "Conversation Window"
msgstr ""

#: PreferenceWindow.py:617
msgid "Use multiple _windows"
msgstr ""

#: PreferenceWindow.py:618
msgid "Show close button on _each tab"
msgstr ""

#: PreferenceWindow.py:619
msgid "Show _avatars"
msgstr ""

#: PreferenceWindow.py:620
msgid "Show avatars in task_bar"
msgstr ""

#: PreferenceWindow.py:647
msgid "_Use proxy"
msgstr ""

#: PreferenceWindow.py:659
msgid "_Host:"
msgstr ""

#: PreferenceWindow.py:663
msgid "_Port:"
msgstr ""

#: PreferenceWindow.py:713
msgid "Choose a Directory"
msgstr ""

#: PreferenceWindow.py:725
msgid "Sort received _files by sender"
msgstr ""

#: PreferenceWindow.py:731
msgid "_Save files to:"
msgstr ""

#: SlashCommands.py:86
msgid "Use \"/help <command>\" for help on a specific command"
msgstr ""

#: SlashCommands.py:87
msgid "The following commands are available:"
msgstr ""

#: SlashCommands.py:104
#, python-format
msgid "The command %s doesn't exist"
msgstr ""

#: SmilieWindow.py:44
msgid "Smilies"
msgstr ""

#: SmilieWindow.py:132 SmilieWindow.py:172
msgid "Change shortcut"
msgstr ""

#: SmilieWindow.py:138
msgid "Delete"
msgstr ""

#: SmilieWindow.py:169 dialog.py:1061 htmltextview.py:605
msgid "Empty shortcut"
msgstr ""

#: SmilieWindow.py:171 htmltextview.py:607
msgid "New shortcut"
msgstr ""

#: TreeViewTooltips.py:61
#, python-format
msgid "Blocked: %s"
msgstr ""

#: TreeViewTooltips.py:62
#, python-format
msgid "Has you: %s"
msgstr ""

#: TreeViewTooltips.py:63
#, python-format
msgid "Has MSN Space: %s"
msgstr ""

#: TreeViewTooltips.py:67
#, python-format
msgid "%s"
msgstr ""

#: TreeViewTooltips.py:70
msgid "Yes"
msgstr ""

#: TreeViewTooltips.py:70
msgid "No"
msgstr ""

#: TreeViewTooltips.py:258
#, python-format
msgid "%(status)s since: %(time)s"
msgstr ""

#: UserMenu.py:36
msgid "_Open Conversation"
msgstr ""

#: UserMenu.py:40
msgid "Send _Mail"
msgstr ""

#: UserMenu.py:45
msgid "Copy email"
msgstr ""

#: UserMenu.py:55 dialog.py:519
msgid "View profile"
msgstr ""

#: UserMenu.py:120
msgid "_Copy to group"
msgstr ""

#: UserMenu.py:135
msgid "R_emove from group"
msgstr ""

#: UserPanel.py:100 UserPanel.py:118 UserPanel.py:274
msgid "Click here to set your personal message"
msgstr ""

#: UserPanel.py:107 UserPanel.py:292
msgid "No media playing"
msgstr ""

#: UserPanel.py:117
msgid "Click here to set your nick name"
msgstr ""

#: UserPanel.py:119
msgid "Your current media"
msgstr ""

#: dialog.py:192 abstract/dialog.py:24
msgid "Error!"
msgstr ""

#: dialog.py:200 abstract/dialog.py:31
msgid "Warning"
msgstr ""

#: dialog.py:210 abstract/dialog.py:39
msgid "Information"
msgstr ""

#: dialog.py:219 abstract/dialog.py:47
msgid "Exception"
msgstr ""

#: dialog.py:235 dialog.py:248 dialog.py:263 abstract/dialog.py:52
#: abstract/dialog.py:58 abstract/dialog.py:64
msgid "Confirm"
msgstr ""

#: dialog.py:272
msgid "User invitation"
msgstr ""

#: dialog.py:283 abstract/dialog.py:81
msgid "Add user"
msgstr ""

#: dialog.py:292
msgid "Account"
msgstr ""

#: dialog.py:296
msgid "Group"
msgstr ""

#: dialog.py:336 abstract/dialog.py:92
msgid "Add group"
msgstr ""

#: dialog.py:344
msgid "Group name"
msgstr ""

#: dialog.py:347 abstract/dialog.py:102
msgid "Change nick"
msgstr ""

#: dialog.py:352
msgid "New nick"
msgstr ""

#: dialog.py:357 abstract/dialog.py:109
msgid "Change personal message"
msgstr ""

#: dialog.py:363
msgid "New personal message"
msgstr ""

#: dialog.py:368 abstract/dialog.py:117
msgid "Change picture"
msgstr ""

#: dialog.py:381 abstract/dialog.py:128
msgid "Rename group"
msgstr ""

#: dialog.py:387
msgid "New group name"
msgstr ""

#: dialog.py:392 abstract/dialog.py:136
msgid "Set alias"
msgstr ""

#: dialog.py:398
msgid "Contact alias"
msgstr ""

#: dialog.py:475
msgid "Add contact"
msgstr ""

#: dialog.py:516
msgid "Remind me later"
msgstr ""

#: dialog.py:585
msgid ""
" has added you.\n"
"Do you want to add him/her to your contact list?"
msgstr ""

#: dialog.py:650
msgid "Avatar chooser"
msgstr ""

#: dialog.py:681
msgid "No picture"
msgstr ""

#: dialog.py:684
msgid "Remove all"
msgstr ""

#: dialog.py:698
msgid "Current"
msgstr ""

#: dialog.py:851
msgid "Are you sure you want to remove all items?"
msgstr ""

#: dialog.py:865 dialog.py:989 dialog.py:1066
msgid "No picture selected"
msgstr ""

#: dialog.py:892
msgid "Image Chooser"
msgstr ""

#: dialog.py:935
msgid "All files"
msgstr ""

#: dialog.py:940
msgid "All images"
msgstr ""

#: dialog.py:1027
msgid "small (16x16)"
msgstr ""

#: dialog.py:1028
msgid "big (50x50)"
msgstr ""

#: dialog.py:1036 htmltextview.py:608
msgid "Shortcut"
msgstr ""

#: htmltextview.py:343
msgid "_Open link"
msgstr ""

#: htmltextview.py:349
msgid "_Copy link location"
msgstr ""

#: htmltextview.py:585
msgid "_Save as ..."
msgstr ""

#: plugins_base/Commands.py:37
msgid "Make some useful commands available, try /help"
msgstr ""

#: plugins_base/Commands.py:40
msgid "Commands"
msgstr ""

#: plugins_base/Commands.py:85
msgid "Replaces variables"
msgstr ""

#: plugins_base/Commands.py:87
msgid "Replaces me with your username"
msgstr ""

#: plugins_base/Commands.py:89
msgid "Sends a nudge"
msgstr ""

#: plugins_base/Commands.py:91
msgid "Invites a buddy"
msgstr ""

#: plugins_base/Commands.py:95
msgid "Add a contact"
msgstr ""

#: plugins_base/Commands.py:97
msgid "Remove a contact"
msgstr ""

#: plugins_base/Commands.py:99
msgid "Block a contact"
msgstr ""

#: plugins_base/Commands.py:101
msgid "Unblock a contact"
msgstr ""

#: plugins_base/Commands.py:103
msgid "Clear the conversation"
msgstr ""

#: plugins_base/Commands.py:105
msgid "Set your nick"
msgstr ""

#: plugins_base/Commands.py:107
msgid "Set your psm"
msgstr ""

#: plugins_base/Commands.py:144
#, python-format
msgid "Usage /%s contact"
msgstr ""

#: plugins_base/Commands.py:163
msgid "File doesn't exist"
msgstr ""

#: plugins_base/CurrentSong.py:49
msgid ""
"Show a personal message with the current song played in multiple players."
msgstr ""

#: plugins_base/CurrentSong.py:53
msgid "CurrentSong"
msgstr ""

#: plugins_base/CurrentSong.py:352
msgid "Display style"
msgstr ""

#: plugins_base/CurrentSong.py:353
msgid ""
"Change display style of the song you are listening, possible variables are %"
"title, %artist and %album"
msgstr ""

#: plugins_base/CurrentSong.py:355
msgid "Music player"
msgstr ""

#: plugins_base/CurrentSong.py:356
msgid "Select the music player that you are using"
msgstr ""

#: plugins_base/CurrentSong.py:362
msgid "Show logs"
msgstr ""

#: plugins_base/CurrentSong.py:370 plugins_base/CurrentSong.py:371
msgid "Change Avatar"
msgstr ""

#: plugins_base/CurrentSong.py:373
msgid "Get cover art from web"
msgstr ""

#: plugins_base/CurrentSong.py:376 plugins_base/CurrentSong.py:377
msgid "Custom config"
msgstr ""

#: plugins_base/CurrentSong.py:380
msgid "Config Plugin"
msgstr ""

#: plugins_base/CurrentSong.py:436
msgid "Logs"
msgstr ""

#: plugins_base/CurrentSong.py:445
msgid "Type"
msgstr ""

#: plugins_base/CurrentSong.py:446 plugins_base/Plugin.py:163
msgid "Value"
msgstr ""

#: plugins_base/Dbus.py:44
msgid "With this plugin you can interact via Dbus with emesene"
msgstr ""

#: plugins_base/Dbus.py:47
msgid "Dbus"
msgstr ""

#: plugins_base/Eval.py:50
msgid "Evaluate python commands - USE AT YOUR OWN RISK"
msgstr ""

#: plugins_base/Eval.py:65
msgid "Run python commands"
msgstr ""

#: plugins_base/Eval.py:156
msgid "Alowed users:"
msgstr ""

#: plugins_base/Eval.py:159
msgid "Remote Configuration"
msgstr ""

#: plugins_base/IdleStatusChange.py:34
msgid ""
"Changes status to selected one if session is idle (you must use gnome and "
"have gnome-screensaver installed)"
msgstr ""

#: plugins_base/IdleStatusChange.py:36
msgid "Idle Status Change"
msgstr ""

#: plugins_base/IdleStatusChange.py:78
msgid "Idle Status:"
msgstr ""

#: plugins_base/IdleStatusChange.py:78
msgid "Set the idle status"
msgstr ""

#: plugins_base/IdleStatusChange.py:79
msgid "Idle Status Change configuration"
msgstr ""

#: plugins_base/LastStuff.py:34
msgid "Get Last something from the logs"
msgstr ""

#: plugins_base/LastStuff.py:70
msgid "invalid number as first parameter"
msgstr ""

#: plugins_base/LastStuff.py:81 plugins_base/LastStuff.py:90
#: plugins_base/LastStuff.py:99 plugins_base/LastStuff.py:108
#: plugins_base/LastStuff.py:133 plugins_base/LastStuff.py:145
msgid "Empty result"
msgstr ""

#: plugins_base/LastStuff.py:155
msgid "Enable the logger plugin"
msgstr ""

#: plugins_base/LibNotify.py:34
msgid "there was a problem initializing the pynotify module"
msgstr ""

#: plugins_base/LibNotify.py:44
msgid "Notify about diferent events using pynotify"
msgstr ""

#: plugins_base/LibNotify.py:47
msgid "LibNotify"
msgstr ""

#: plugins_base/LibNotify.py:126 plugins_base/Notification.py:100
msgid "Notify when someone gets online"
msgstr ""

#: plugins_base/LibNotify.py:129 plugins_base/Notification.py:102
msgid "Notify when someone gets offline"
msgstr ""

#: plugins_base/LibNotify.py:132 plugins_base/Notification.py:104
msgid "Notify when receiving an email"
msgstr ""

#: plugins_base/LibNotify.py:135 plugins_base/Notification.py:106
msgid "Notify when someone starts typing"
msgstr ""

#: plugins_base/LibNotify.py:138 plugins_base/Notification.py:108
msgid "Notify when receiving a message"
msgstr ""

#: plugins_base/LibNotify.py:144 plugins_base/Notification.py:112
msgid "Disable notifications when busy"
msgstr ""

#: plugins_base/LibNotify.py:147
msgid "Config LibNotify Plugin"
msgstr ""

#: plugins_base/LibNotify.py:273 plugins_base/Notification.py:564
msgid "is online"
msgstr ""

#: plugins_base/LibNotify.py:283 plugins_base/Notification.py:580
msgid "is offline"
msgstr ""

#: plugins_base/LibNotify.py:303 plugins_base/Notification.py:606
msgid "has send a message"
msgstr ""

#: plugins_base/LibNotify.py:322 plugins_base/Notification.py:631
msgid "sent an offline message"
msgstr ""

#: plugins_base/LibNotify.py:337
msgid "starts typing"
msgstr ""

#: plugins_base/LibNotify.py:348 plugins_base/Notification.py:664
#: plugins_base/Notification.py:667
msgid "From: "
msgstr ""

#: plugins_base/LibNotify.py:348 plugins_base/Notification.py:671
msgid "Subj: "
msgstr ""

#: plugins_base/LibNotify.py:351 plugins_base/Notification.py:673
msgid "New email"
msgstr ""

#: plugins_base/LibNotify.py:363 plugins_base/Notification.py:690
#, python-format
msgid "You have %(num)i unread message%(s)s"
msgstr ""

#: plugins_base/Logger.py:638
msgid "View conversation _log"
msgstr ""

#: plugins_base/Logger.py:647
#, python-format
msgid "Conversation log for %s"
msgstr ""

#: plugins_base/Logger.py:680
msgid "Date"
msgstr ""

#: plugins_base/Logger.py:705
#, python-format
msgid "No logs were found for %s"
msgstr ""

#: plugins_base/Logger.py:765
msgid "Save conversation log"
msgstr ""

#: plugins_base/Notification.py:44
msgid "Notification Config"
msgstr ""

#: plugins_base/Notification.py:61 plugins_base/Notification.py:205
msgid "Sample Text"
msgstr ""

#: plugins_base/Notification.py:82
msgid "Image"
msgstr ""

#: plugins_base/Notification.py:110
msgid "Don`t notify if conversation is started"
msgstr ""

#: plugins_base/Notification.py:116
msgid "Position"
msgstr ""

#: plugins_base/Notification.py:118
msgid "Top Left"
msgstr ""

#: plugins_base/Notification.py:119
msgid "Top Right"
msgstr ""

#: plugins_base/Notification.py:120
msgid "Bottom Left"
msgstr ""

#: plugins_base/Notification.py:121
msgid "Bottom Right"
msgstr ""

#: plugins_base/Notification.py:129
msgid "Scroll"
msgstr ""

#: plugins_base/Notification.py:131
msgid "Horizontal"
msgstr ""

#: plugins_base/Notification.py:132
msgid "Vertical"
msgstr ""

#: plugins_base/Notification.py:508
msgid ""
"Show a little window in the bottom-right corner of the screen when someone "
"gets online etc."
msgstr ""

#: plugins_base/Notification.py:511
msgid "Notification"
msgstr ""

#: plugins_base/Notification.py:652
msgid "starts typing..."
msgstr ""

#: plugins_base/PersonalMessage.py:29
msgid "Save the personal message between sessions."
msgstr ""

#: plugins_base/PersonalMessage.py:32
msgid "Personal Message"
msgstr ""

#: plugins_base/Plugin.py:162
msgid "Key"
msgstr ""

#: plugins_base/Plus.py:245
msgid "Messenser Plus like plugin for emesene"
msgstr ""

#: plugins_base/Plus.py:248
msgid "Plus"
msgstr ""

#: plugins_base/PlusColorPanel.py:81
msgid "Select custom color"
msgstr ""

#: plugins_base/PlusColorPanel.py:87
msgid "Enable background color"
msgstr ""

#: plugins_base/PlusColorPanel.py:210
msgid "A panel for applying Messenger Plus formats to the text"
msgstr ""

#: plugins_base/PlusColorPanel.py:212
msgid "Plus Color Panel"
msgstr ""

#: plugins_base/Screenshots.py:34
msgid "Take screenshots and send them with "
msgstr ""

#: plugins_base/Screenshots.py:56
msgid "Takes screenshots"
msgstr ""

#: plugins_base/Screenshots.py:74
#, python-format
msgid "Taking screenshot in %s seconds"
msgstr ""

#: plugins_base/Screenshots.py:79
msgid "Tip: Use \"/screenshot save <seconds>\" to skip the upload "
msgstr ""

#: plugins_base/Screenshots.py:133
msgid "Temporary file:"
msgstr ""

#: plugins_base/Sound.py:122
msgid "Play sounds for common events."
msgstr ""

#: plugins_base/Sound.py:125
msgid "Sound"
msgstr ""

#: plugins_base/Sound.py:185
msgid "gstreamer, play and aplay not found."
msgstr ""

#: plugins_base/Sound.py:253
msgid "Play online sound"
msgstr ""

#: plugins_base/Sound.py:254
msgid "Play a sound when someone gets online"
msgstr ""

#: plugins_base/Sound.py:259
msgid "Play message sound"
msgstr ""

#: plugins_base/Sound.py:260
msgid "Play a sound when someone sends you a message"
msgstr ""

#: plugins_base/Sound.py:265
msgid "Play nudge sound"
msgstr ""

#: plugins_base/Sound.py:266
msgid "Play a sound when someone sends you a nudge"
msgstr ""

#: plugins_base/Sound.py:271 plugins_base/Sound.py:272
msgid "Play sound when you send a message"
msgstr ""

#: plugins_base/Sound.py:277
msgid "Only play message sound when window is inactive"
msgstr ""

#: plugins_base/Sound.py:278
msgid "Play the message sound only when the window is inactive"
msgstr ""

#: plugins_base/Sound.py:283 plugins_base/Sound.py:284
msgid "Disable sounds when busy"
msgstr ""

#: plugins_base/Sound.py:289
msgid "Use system beep"
msgstr ""

#: plugins_base/Sound.py:290
msgid "Play the system beep instead of sound files"
msgstr ""

#: plugins_base/Sound.py:294
msgid "Config Sound Plugin"
msgstr ""

#: plugins_base/Spell.py:32
msgid "You need to install gtkspell to use Spell plugin"
msgstr ""

#: plugins_base/Spell.py:42
msgid "SpellCheck for emesene"
msgstr ""

#: plugins_base/Spell.py:45
msgid "Spell"
msgstr ""

#: plugins_base/Spell.py:103
msgid "Plugin disabled."
msgstr ""

#: plugins_base/Spell.py:126 plugins_base/Spell.py:136
#, python-format
msgid "Error applying Spell to input (%s)"
msgstr ""

#: plugins_base/Spell.py:170
msgid "Error getting dictionaries list"
msgstr ""

#: plugins_base/Spell.py:174
msgid "No dictionaries found."
msgstr ""

#: plugins_base/Spell.py:178
msgid "Default language"
msgstr ""

#: plugins_base/Spell.py:179
msgid "Set the default language"
msgstr ""

#: plugins_base/Spell.py:182
msgid "Spell configuration"
msgstr ""

#: plugins_base/StatusHistory.py:69
msgid "Show status image:"
msgstr ""

#: plugins_base/StatusHistory.py:71
msgid "StatusHistory plugin config"
msgstr ""

#: plugins_base/Tweaks.py:31
msgid "Edit your config file"
msgstr ""

#: plugins_base/Tweaks.py:34
msgid "Tweaks"
msgstr ""

#: plugins_base/Tweaks.py:66
msgid "Config config"
msgstr ""

#: plugins_base/WindowTremblingNudge.py:34
msgid "Shakes the window when a nudge is received."
msgstr ""

#: plugins_base/WindowTremblingNudge.py:38
msgid "Window Trembling Nudge"
msgstr ""

#: plugins_base/Youtube.py:39
msgid "Displays thumbnails of youtube videos next to links"
msgstr ""

#: plugins_base/Youtube.py:42
msgid "Youtube"
msgstr ""

#: plugins_base/lastfm.py:207
msgid "Send information to last.fm"
msgstr ""

#: plugins_base/lastfm.py:210
msgid "Last.fm"
msgstr ""

#: plugins_base/lastfm.py:256
msgid "Username:"
msgstr ""

#: plugins_base/lastfm.py:258
msgid "Password:"
msgstr ""

#: abstract/ContactManager.py:450
#, python-format
msgid "Are you sure you want to delete %s?"
msgstr ""

#: abstract/ContactMenu.py:38 abstract/GroupMenu.py:39
#: abstract/MainMenu.py:139 abstract/MainMenu.py:155
msgid "_Remove"
msgstr ""

#: abstract/ContactMenu.py:50 abstract/MainMenu.py:167
msgid "_Move"
msgstr ""

#: abstract/ContactMenu.py:54
msgid "_Copy"
msgstr ""

#: abstract/ContactMenu.py:58 abstract/MainMenu.py:171
msgid "Set _alias"
msgstr ""

#: abstract/ContactMenu.py:77 abstract/MainMenu.py:331
#, python-format
msgid "Are you sure you want to remove contact %s?"
msgstr ""

#: abstract/GroupManager.py:155
#, python-format
msgid "Are you sure you want to delete the %s group?"
msgstr ""

#: abstract/GroupManager.py:170
msgid "Old and new name are the same"
msgstr ""

#: abstract/GroupManager.py:174
msgid "new name not valid"
msgstr ""

#: abstract/GroupMenu.py:43 abstract/MainMenu.py:144
msgid "Re_name"
msgstr ""

#: abstract/GroupMenu.py:47
msgid "_Add contact"
msgstr ""

#: abstract/GroupMenu.py:63 abstract/MainMenu.py:302
#, python-format
msgid "Are you sure you want to remove group %s?"
msgstr ""

#: abstract/MainMenu.py:66
msgid "_Quit"
msgstr ""

#: abstract/MainMenu.py:79
msgid "_Disconnect"
msgstr ""

#: abstract/MainMenu.py:130
msgid "_Contact"
msgstr ""

#: abstract/MainMenu.py:134 abstract/MainMenu.py:150
msgid "_Add"
msgstr ""

#: abstract/MainMenu.py:177
msgid "Set _nick"
msgstr ""

#: abstract/MainMenu.py:182
msgid "Set _message"
msgstr ""

#: abstract/MainMenu.py:187
msgid "Set _picture"
msgstr ""

#: abstract/MainMenu.py:214
msgid "_Preferences"
msgstr ""

#: abstract/MainMenu.py:219
msgid "Plug_ins"
msgstr ""

#: abstract/MainMenu.py:232
msgid "_About"
msgstr ""

#: abstract/MainMenu.py:305 abstract/MainMenu.py:314
msgid "No group selected"
msgstr ""

#: abstract/MainMenu.py:334 abstract/MainMenu.py:343 abstract/MainMenu.py:352
#: abstract/MainMenu.py:365
msgid "No contact selected"
msgstr ""

#: abstract/status.py:42
msgid "Lunch"
msgstr ""

#: emesenelib/ProfileManager.py:288
#, python-format
msgid "User could not be added: %s"
msgstr ""

#: emesenelib/ProfileManager.py:320
#, python-format
msgid "User could not be remove: %s"
msgstr ""

#: emesenelib/ProfileManager.py:357
#, python-format
msgid "User could not be added to group: %s"
msgstr ""

#: emesenelib/ProfileManager.py:427
#, python-format
msgid "User could not be moved to group: %s"
msgstr ""

#: emesenelib/ProfileManager.py:462
#, python-format
msgid "User could not be removed: %s"
msgstr ""

#: emesenelib/ProfileManager.py:582
#, python-format
msgid "Group could not be added: %s"
msgstr ""

#: emesenelib/ProfileManager.py:615
#, python-format
msgid "Group could not be removed: %s"
msgstr ""

#: emesenelib/ProfileManager.py:657
#, python-format
msgid "Group could not be renamed: %s"
msgstr ""

#: emesenelib/ProfileManager.py:721
#, python-format
msgid "Nick could not be changed: %s"
msgstr ""