~woutc/specto/specto-dbus-client

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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2008-12-30 13:35+EST\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: ENCODING\n"
"Generated-By: pygettext.py 1.5\n"


#: ../data/glade/add_watch.glade.h:1 ../data/glade/edit_watch.glade.h:2
msgid "<b>Run a custom command:</b>"
msgstr ""

#: ../data/glade/add_watch.glade.h:2
msgid "Add a Watch"
msgstr ""

#: ../data/glade/add_watch.glade.h:3 ../data/glade/edit_watch.glade.h:4
msgid "Advanced options"
msgstr ""

#: ../data/glade/add_watch.glade.h:4
msgid ""
"Choose \n"
"an other name"
msgstr ""

#: ../data/glade/add_watch.glade.h:6
msgid ""
"Edit existing\n"
"watch"
msgstr ""

#: ../data/glade/add_watch.glade.h:8 ../data/glade/edit_watch.glade.h:6
msgid "General options"
msgstr ""

#: ../data/glade/add_watch.glade.h:9 ../data/glade/edit_watch.glade.h:7
msgid "Name:"
msgstr ""

#: ../data/glade/add_watch.glade.h:10 ../data/glade/edit_watch.glade.h:8
msgid "Refresh Interval:"
msgstr ""

#: ../data/glade/add_watch.glade.h:11 ../data/glade/edit_watch.glade.h:9
msgid ""
"Seconds\n"
"Minutes\n"
"Hours\n"
"Days"
msgstr ""

#: ../data/glade/add_watch.glade.h:15
msgid "The watch name is already in use"
msgstr ""

#: ../data/glade/add_watch.glade.h:16
msgid ""
"The watch name you specified already exists! Did you mean to modify that existing watch, or did you really want to create a new one?\n"
"\n"
"If you want to create a new one, you need to choose a different name."
msgstr ""

#: ../data/glade/add_watch.glade.h:19 ../data/glade/edit_watch.glade.h:14
msgid "When this watch has changed"
msgstr ""

#: ../data/glade/add_watch.glade.h:20 ../data/glade/edit_watch.glade.h:15
msgid "When you open this watch"
msgstr ""

#: ../data/glade/edit_watch.glade.h:1
msgid "<b>General settings</b>"
msgstr ""

#: ../data/glade/edit_watch.glade.h:3
msgid "<b>Watch options</b>"
msgstr ""

#: ../data/glade/edit_watch.glade.h:5 ../spectlib/notifier.py:823
msgid "Error log"
msgstr ""

#: ../data/glade/edit_watch.glade.h:13
msgid "Watch $WATCH_NAME"
msgstr ""

#: ../data/glade/import_export.glade.h:1
msgid "Deselect all"
msgstr ""

#: ../data/glade/import_export.glade.h:2
msgid "Select all"
msgstr ""

#: ../data/glade/log_dialog.glade.h:1
msgid ""
"All\n"
"Debug\n"
"Info\n"
"Warning\n"
"Error\n"
"Critical"
msgstr ""

#: ../data/glade/log_dialog.glade.h:7
msgid "Filter:"
msgstr ""

#: ../data/glade/log_dialog.glade.h:8
msgid "Logs"
msgstr ""

#: ../data/glade/log_dialog.glade.h:9
msgid "Save As"
msgstr ""

#: ../data/glade/notifier.glade.h:1
msgid "By Active"
msgstr ""

#: ../data/glade/notifier.glade.h:2
msgid "By Name"
msgstr ""

#: ../data/glade/notifier.glade.h:3
msgid "By Watch Type"
msgstr ""

#: ../data/glade/notifier.glade.h:4
msgid "Debug information"
msgstr ""

#: ../data/glade/notifier.glade.h:5
msgid "Display _All Watches"
msgstr ""

#: ../data/glade/notifier.glade.h:6
msgid "Display _Toolbar"
msgstr ""

#: ../data/glade/notifier.glade.h:7
msgid "Error"
msgstr ""

#: ../data/glade/notifier.glade.h:8
msgid "Extra information"
msgstr ""

#: ../data/glade/notifier.glade.h:9
msgid "General"
msgstr ""

#: ../data/glade/notifier.glade.h:10 ../spectlib/notifier.py:525
#: ../spectlib/trayicon.py:139
msgid "Mark as read"
msgstr ""

#: ../data/glade/notifier.glade.h:11
msgid "Notifications"
msgstr ""

#: ../data/glade/notifier.glade.h:12
msgid "Sorting"
msgstr ""

#: ../data/glade/notifier.glade.h:13
msgid "Visit the issue tracker"
msgstr ""

#: ../data/glade/notifier.glade.h:14
msgid "_Edit"
msgstr ""

#: ../data/glade/notifier.glade.h:15
msgid "_Error Log"
msgstr ""

#: ../data/glade/notifier.glade.h:16
msgid "_Export Watches"
msgstr ""

#: ../data/glade/notifier.glade.h:17
msgid "_File"
msgstr ""

#: ../data/glade/notifier.glade.h:18
msgid "_Help"
msgstr ""

#: ../data/glade/notifier.glade.h:19
msgid "_Import Watches"
msgstr ""

#: ../data/glade/notifier.glade.h:20 ../spectlib/trayicon.py:149
msgid "_Mark all read"
msgstr ""

#: ../data/glade/notifier.glade.h:21
msgid "_Refresh All"
msgstr ""

#: ../data/glade/notifier.glade.h:22
msgid "_View"
msgstr ""

#: ../data/glade/preferences.glade.h:1
msgid "<b>Debugging and Logging</b>"
msgstr ""

#: ../data/glade/preferences.glade.h:2
msgid "<b>Display</b>"
msgstr ""

#: ../data/glade/preferences.glade.h:3
msgid "<b>Security</b>"
msgstr ""

#: ../data/glade/preferences.glade.h:4
msgid "<b>Sounds</b>"
msgstr ""

#: ../data/glade/preferences.glade.h:5
msgid "Always show the icon in the notification area"
msgstr ""

#: ../data/glade/preferences.glade.h:6
msgid "Display the notification window in the window list"
msgstr ""

#: ../data/glade/preferences.glade.h:7
msgid "Duration (in seconds):"
msgstr ""

#: ../data/glade/preferences.glade.h:8
msgid "Enable debug mode and logging"
msgstr ""

#: ../data/glade/preferences.glade.h:9
msgid "If activated, you will receive more information when running Specto from a terminal, and more information will be printed to the logs."
msgstr ""

#: ../data/glade/preferences.glade.h:10
msgid "It is strongly recommended to use keyring password encryption. If you disable this option, your passwords will be saved in <b>plain text, unencrypted</b> in your watch list, and could be read by anyone gaining access to your system user account."
msgstr ""

#: ../data/glade/preferences.glade.h:11
msgid "Play this sound when a problem occurs:"
msgstr ""

#: ../data/glade/preferences.glade.h:12
msgid "Play this sound when a watch has changed:"
msgstr ""

#: ../data/glade/preferences.glade.h:13
msgid "Preferences"
msgstr ""

#: ../data/glade/preferences.glade.h:14
msgid "Select a File"
msgstr ""

#: ../data/glade/preferences.glade.h:15
msgid "Show balloons from the notification icon when a watch has changed"
msgstr ""

#: ../data/glade/preferences.glade.h:16
msgid "Use GNOME keyring to store passwords in encrypted format"
msgstr ""

#: ../spectlib/about.py:66
msgid "translator-credits"
msgstr ""

#: ../spectlib/about.py:79
msgid "Specto's Website"
msgstr ""

#: ../spectlib/balloons.py:87
msgid "Cannot display notification message. Make sure that libnotify and D-Bus are available on your system."
msgstr ""

#: ../spectlib/console.py:37
msgid ""
"\n"
"Specto console version\n"
"\n"
"Use \"specto --console --only-changed\" to show only watch changes notifications.\n"
"\n"
msgstr ""

#: ../spectlib/console.py:48 ../spectlib/watch.py:147
msgid "Watch has changed."
msgstr ""

#: ../spectlib/console.py:53 ../spectlib/watch.py:126
msgid "Watch started checking."
msgstr ""

#: ../spectlib/console.py:55
msgid "Watch is idle."
msgstr ""

#: ../spectlib/console.py:57 ../spectlib/watch.py:183
msgid "No network connection detected"
msgstr ""

#: ../spectlib/console.py:59 ../spectlib/watch.py:142 ../spectlib/watch.py:179
msgid "There was an error checking the watch"
msgstr ""

#: ../spectlib/edit_watch.py:70
msgid "Edit watch: "
msgstr ""

#: ../spectlib/edit_watch.py:183 ../spectlib/notifier.py:625
msgid "Remove a watch"
msgstr ""

#: ../spectlib/edit_watch.py:184 ../spectlib/notifier.py:626
msgid ""
"<big>Remove the watch \"%s\"?</big>\n"
"This operation cannot be undone."
msgstr ""

#: ../spectlib/export_watch.py:56 ../spectlib/export_watch.py:57
msgid "Export watches"
msgstr ""

#: ../spectlib/export_watch.py:85 ../spectlib/import_watch.py:85
msgid "Select"
msgstr ""

#: ../spectlib/export_watch.py:91 ../spectlib/import_watch.py:90
#: ../spectlib/notifier.py:736
msgid "Type"
msgstr ""

#: ../spectlib/export_watch.py:97 ../spectlib/import_watch.py:95
#: ../spectlib/notifier.py:745 ../spectlib/plugins/watch_mail_gmail.py:113
#: ../spectlib/plugins/watch_mail_imap.py:180
#: ../spectlib/plugins/watch_mail_pop3.py:164
#: ../spectlib/plugins/watch_sn_facebook.py:244
#: ../spectlib/plugins/watch_system_file.py:168
#: ../spectlib/plugins/watch_system_folder.py:243
#: ../spectlib/plugins/watch_system_port.py:108
#: ../spectlib/plugins/watch_system_process.py:93
#: ../spectlib/plugins/watch_vc_bazaar.py:168
#: ../spectlib/plugins/watch_web_greader.py:107
#: ../spectlib/plugins/watch_web_static.py:279
msgid "Name"
msgstr ""

#: ../spectlib/export_watch.py:105 ../spectlib/import_watch.py:102
#: ../spectlib/notifier.py:754
msgid "ID"
msgstr ""

#: ../spectlib/export_watch.py:112 ../spectlib/import_watch.py:109
#: ../spectlib/notifier.py:761
msgid "TYPE"
msgstr ""

#: ../spectlib/gtkconfig.py:171 ../spectlib/gtkconfig.py:402
msgid "Choose a file"
msgstr ""

#: ../spectlib/gtkconfig.py:204 ../spectlib/gtkconfig.py:408
msgid "Choose a directory"
msgstr ""

#: ../spectlib/gtkconfig.py:344
msgid ""
"<b>Specto encountered an error</b>\n"
"Please verify if this bug has been entered in our issue tracker, and if not, file a bug report so we can fix it."
msgstr ""

#: ../spectlib/import_watch.py:58 ../spectlib/import_watch.py:59
msgid "Import watches"
msgstr ""

#: ../spectlib/main.py:59
msgid "no GTK, activating console mode"
msgstr ""

#: ../spectlib/main.py:95
msgid "Console mode enabled."
msgstr ""

#: ../spectlib/main.py:127
msgid "Could not create a watch, because it is corrupt."
msgstr ""

#: ../spectlib/main.py:201
msgid "Specto is already running!"
msgstr ""

#: ../spectlib/main.py:248
msgid "Cannot quit yet"
msgstr ""

#: ../spectlib/main.py:254
msgid "Murder!"
msgstr ""

#: ../spectlib/main.py:265
msgid ""
"<b><big>Specto is currently busy and cannot quit yet.</big></b>\n"
"\n"
"This may be because it is checking for watch changes.\n"
"However, you can try forcing it to quit by clicking the murder button."
msgstr ""

#: ../spectlib/notifier.py:176
msgid "Stop"
msgstr ""

#: ../spectlib/notifier.py:199 ../spectlib/trayicon.py:140
msgid "Refresh All"
msgstr ""

#: ../spectlib/notifier.py:228
msgid "The watch \"%s\" is checking."
msgstr ""

#: ../spectlib/notifier.py:235
msgid "The watch \"%s\" is idle."
msgstr ""

#: ../spectlib/notifier.py:237 ../spectlib/notifier.py:379
msgid "The network connection seems to be down, networked watches will not check until then."
msgstr ""

#: ../spectlib/notifier.py:248
msgid "The watch \"%s\" is cleared."
msgstr ""

#: ../spectlib/notifier.py:257
msgid "The watch \"%s\" has a problem."
msgstr ""

#: ../spectlib/notifier.py:260
msgid "The watch, <b>%s</b>, has a problem. You may need to check the error log."
msgstr ""

#: ../spectlib/notifier.py:266
msgid "The watch \"%s\" has changed."
msgstr ""

#: ../spectlib/notifier.py:291
msgid "There was an error marking the watch status"
msgstr ""

#: ../spectlib/notifier.py:424 ../spectlib/watch.py:239
msgid "No extra information available."
msgstr ""

#: ../spectlib/notifier.py:431
msgid "Extra information could not be set"
msgstr ""

#: ../spectlib/notifier.py:459
msgid "Watch opened"
msgstr ""

#: ../spectlib/notifier.py:516
msgid "Refresh"
msgstr ""

#: ../spectlib/notifier.py:537
msgid "Edit"
msgstr ""

#: ../spectlib/notifier.py:544
msgid "Remove"
msgstr ""

#: ../spectlib/notifier.py:577
msgid "You can add all kinds of websites as watches. Static pages, RSS or Atom feeds, etc. Specto will automatically handle them."
msgstr ""

#: ../spectlib/notifier.py:578
msgid "Website watches can use an error margin that allows you to set a minimum difference percentage. This allows you to adapt to websites that change constantly or have lots of advertising."
msgstr ""

#: ../spectlib/notifier.py:579
msgid "Single-click an existing watch to display information, and double-click it to open the content."
msgstr ""

#: ../spectlib/notifier.py:580
msgid "Please set a reasonable refresh interval in order to save bandwidth and prevent you from being blocked from content providers."
msgstr ""

#: ../spectlib/notifier.py:729
msgid "Active"
msgstr ""

#: ../spectlib/notifier.py:778
msgid "Tip of the Day:"
msgstr ""

#: ../spectlib/plugins/watch_mail_gmail.py:34
msgid "GMail"
msgstr ""

#: ../spectlib/plugins/watch_mail_gmail.py:36
#: ../spectlib/plugins/watch_mail_imap.py:34
#: ../spectlib/plugins/watch_mail_pop3.py:37
msgid "Mail"
msgstr ""

#: ../spectlib/plugins/watch_mail_gmail.py:40
#: ../spectlib/plugins/watch_mail_gmail.py:115
#: ../spectlib/plugins/watch_mail_imap.py:38
#: ../spectlib/plugins/watch_mail_imap.py:182
#: ../spectlib/plugins/watch_mail_pop3.py:41
#: ../spectlib/plugins/watch_mail_pop3.py:166
#: ../spectlib/plugins/watch_web_greader.py:35
#: ../spectlib/plugins/watch_web_greader.py:109
msgid "Username"
msgstr ""

#: ../spectlib/plugins/watch_mail_gmail.py:41
#: ../spectlib/plugins/watch_mail_imap.py:39
#: ../spectlib/plugins/watch_mail_pop3.py:42
#: ../spectlib/plugins/watch_sn_facebook.py:44
#: ../spectlib/plugins/watch_web_greader.py:36
msgid "Password"
msgstr ""

#: ../spectlib/plugins/watch_mail_gmail.py:108
#: ../spectlib/plugins/watch_mail_imap.py:139
#: ../spectlib/plugins/watch_mail_pop3.py:93
#: ../spectlib/plugins/watch_mail_pop3.py:123
#: ../spectlib/plugins/watch_sn_facebook.py:126
#: ../spectlib/plugins/watch_system_file.py:121
#: ../spectlib/plugins/watch_system_folder.py:92
#: ../spectlib/plugins/watch_system_port.py:77
#: ../spectlib/plugins/watch_system_process.py:79
#: ../spectlib/plugins/watch_vc_bazaar.py:97
#: ../spectlib/plugins/watch_web_greader.py:102
#: ../spectlib/plugins/watch_web_static.py:189
msgid "Unexpected error:"
msgstr ""

#: ../spectlib/plugins/watch_mail_gmail.py:114
#: ../spectlib/plugins/watch_mail_imap.py:181
#: ../spectlib/plugins/watch_mail_pop3.py:165
#: ../spectlib/plugins/watch_sn_facebook.py:245
#: ../spectlib/plugins/watch_system_file.py:169
#: ../spectlib/plugins/watch_system_folder.py:244
#: ../spectlib/plugins/watch_system_port.py:109
#: ../spectlib/plugins/watch_system_process.py:94
#: ../spectlib/plugins/watch_vc_bazaar.py:169
#: ../spectlib/plugins/watch_web_greader.py:108
#: ../spectlib/plugins/watch_web_static.py:280
msgid "Last changed"
msgstr ""

#: ../spectlib/plugins/watch_mail_gmail.py:116
#: ../spectlib/plugins/watch_mail_imap.py:183
#: ../spectlib/plugins/watch_mail_pop3.py:167
#: ../spectlib/plugins/watch_web_greader.py:110
msgid "Unread messages"
msgstr ""

#: ../spectlib/plugins/watch_mail_gmail.py:123
#: ../spectlib/plugins/watch_mail_imap.py:149
#: ../spectlib/plugins/watch_mail_pop3.py:133
msgid ""
"<b>%s</b> has received a new message from <b>%s</b>...\n"
"\n"
"... <b>totalling %d</b> unread mails."
msgstr ""

#: ../spectlib/plugins/watch_mail_gmail.py:133
#: ../spectlib/plugins/watch_mail_imap.py:161
#: ../spectlib/plugins/watch_mail_pop3.py:145
msgid ""
"<b>%s</b> has received %d new messages from <b>%s</b>...\n"
"\n"
"... <b>totalling %d</b> unread mails."
msgstr ""

#: ../spectlib/plugins/watch_mail_gmail.py:142
#: ../spectlib/plugins/watch_mail_imap.py:173
#: ../spectlib/plugins/watch_mail_pop3.py:140
#: ../spectlib/plugins/watch_mail_pop3.py:157
#: ../spectlib/plugins/watch_vc_bazaar.py:124
#: ../spectlib/plugins/watch_vc_bazaar.py:130
#: ../spectlib/plugins/watch_web_greader.py:124
#: ../spectlib/plugins/watch_web_greader.py:136
msgid "and others..."
msgstr ""

#: ../spectlib/plugins/watch_mail_gmail.py:151
#: ../spectlib/plugins/watch_mail_gmail.py:165
#: ../spectlib/plugins/watch_mail_imap.py:191
#: ../spectlib/plugins/watch_mail_pop3.py:175
#: ../spectlib/plugins/watch_sn_facebook.py:196
#: ../spectlib/plugins/watch_sn_facebook.py:215
#: ../spectlib/plugins/watch_system_file.py:146
#: ../spectlib/plugins/watch_system_folder.py:235
#: ../spectlib/plugins/watch_vc_bazaar.py:139
#: ../spectlib/plugins/watch_vc_bazaar.py:154
#: ../spectlib/plugins/watch_web_greader.py:146
#: ../spectlib/plugins/watch_web_greader.py:160
#: ../spectlib/plugins/watch_web_static.py:211
#: ../spectlib/plugins/watch_web_static.py:223 ../spectlib/watch.py:276
msgid "There was an error opening the file %s"
msgstr ""

#: ../spectlib/plugins/watch_mail_imap.py:32
msgid "IMAP"
msgstr ""

#: ../spectlib/plugins/watch_mail_imap.py:40
#: ../spectlib/plugins/watch_mail_pop3.py:43
msgid "Host"
msgstr ""

#: ../spectlib/plugins/watch_mail_imap.py:41
#: ../spectlib/plugins/watch_mail_pop3.py:44
msgid "Use SSL"
msgstr ""

#: ../spectlib/plugins/watch_mail_imap.py:205
#: ../spectlib/plugins/watch_mail_pop3.py:189
#: ../spectlib/plugins/watch_system_file.py:131
#: ../spectlib/plugins/watch_system_folder.py:215 ../spectlib/watch.py:434
#: ../spectlib/watch.py:528 ../spectlib/watch.py:556 ../spectlib/watch.py:580
#: ../spectlib/watch.py:606 ../spectlib/watch.py:620
msgid "There was an error writing to the file %s"
msgstr ""

#: ../spectlib/plugins/watch_mail_pop3.py:35
msgid "POP3"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:37
msgid "Facebook"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:39
msgid "Social networks"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:43
#: ../spectlib/plugins/watch_sn_facebook.py:246
msgid "Email"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:132
msgid "You received"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:135
msgid "a new message"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:137
msgid "%d new messages"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:142
msgid "a new notification"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:144
msgid "%d new notifications"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:149
msgid "a new request"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:151
msgid "%d new requests"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:156
msgid "a new wall post"
msgstr ""

#: ../spectlib/plugins/watch_sn_facebook.py:158
msgid "%d new wall posts"
msgstr ""

#: ../spectlib/plugins/watch_system_file.py:31
#: ../spectlib/plugins/watch_system_file.py:37
#: ../spectlib/plugins/watch_system_file.py:170
msgid "File"
msgstr ""

#: ../spectlib/plugins/watch_system_file.py:33
#: ../spectlib/plugins/watch_system_folder.py:34
#: ../spectlib/plugins/watch_system_port.py:33
#: ../spectlib/plugins/watch_system_process.py:31
msgid "System"
msgstr ""

#: ../spectlib/plugins/watch_system_file.py:73
msgid "The file was removed"
msgstr ""

#: ../spectlib/plugins/watch_system_file.py:100
msgid "User id of the owner changed"
msgstr ""

#: ../spectlib/plugins/watch_system_file.py:103
msgid "Group id of the owner changed"
msgstr ""

#: ../spectlib/plugins/watch_system_file.py:106
msgid "File size changed"
msgstr ""

#: ../spectlib/plugins/watch_system_file.py:109
msgid "Time of last access changed"
msgstr ""

#: ../spectlib/plugins/watch_system_file.py:112
msgid "Time of last modification changed"
msgstr ""

#: ../spectlib/plugins/watch_system_file.py:153
#: ../spectlib/plugins/watch_system_file.py:160
#: ../spectlib/plugins/watch_system_folder.py:168
msgid ""
"<b>%s</b> has changed:\n"
msgstr ""

#: ../spectlib/plugins/watch_system_folder.py:32
#: ../spectlib/plugins/watch_system_folder.py:38
#: ../spectlib/plugins/watch_system_folder.py:245
#: ../spectlib/plugins/watch_vc_bazaar.py:42
#: ../spectlib/plugins/watch_vc_bazaar.py:170
msgid "Folder"
msgstr ""

#: ../spectlib/plugins/watch_system_folder.py:84
msgid "The watch is not set to a folder"
msgstr ""

#: ../spectlib/plugins/watch_system_folder.py:147
msgid "Skipping %s"
msgstr ""

#: ../spectlib/plugins/watch_system_folder.py:171
msgid ""
"1 new file was created.\n"
msgstr ""

#: ../spectlib/plugins/watch_system_folder.py:173
msgid ""
" new files were created.\n"
msgstr ""

#: ../spectlib/plugins/watch_system_folder.py:176
msgid ""
"1 file was removed.\n"
msgstr ""

#: ../spectlib/plugins/watch_system_folder.py:178
msgid ""
" files were removed.\n"
msgstr ""

#: ../spectlib/plugins/watch_system_folder.py:181
msgid ""
"1 file was modified.\n"
msgstr ""

#: ../spectlib/plugins/watch_system_folder.py:183
msgid ""
" files were modified.\n"
msgstr ""

#: ../spectlib/plugins/watch_system_port.py:31
#: ../spectlib/plugins/watch_system_port.py:37
#: ../spectlib/plugins/watch_system_port.py:110
msgid "Port"
msgstr ""

#: ../spectlib/plugins/watch_system_port.py:67
msgid "Closed"
msgstr ""

#: ../spectlib/plugins/watch_system_port.py:71
msgid "Open"
msgstr ""

#: ../spectlib/plugins/watch_system_port.py:74
#: ../spectlib/plugins/watch_system_process.py:76
msgid "Unknown"
msgstr ""

#: ../spectlib/plugins/watch_system_port.py:111
#: ../spectlib/plugins/watch_system_process.py:96
msgid "Status"
msgstr ""

#: ../spectlib/plugins/watch_system_port.py:118
msgid "The connection, <b>%s</b>, was established."
msgstr ""

#: ../spectlib/plugins/watch_system_port.py:120
msgid "The connection, <b>%s</b>, was closed."
msgstr ""

#: ../spectlib/plugins/watch_system_process.py:29
#: ../spectlib/plugins/watch_system_process.py:35
#: ../spectlib/plugins/watch_system_process.py:95
msgid "Process"
msgstr ""

#: ../spectlib/plugins/watch_system_process.py:69
msgid "Not running"
msgstr ""

#: ../spectlib/plugins/watch_system_process.py:73
msgid "Running"
msgstr ""

#: ../spectlib/plugins/watch_system_process.py:101
msgid "The system process, <b>%s</b>, has started."
msgstr ""

#: ../spectlib/plugins/watch_system_process.py:103
msgid "The system process, <b>%s</b>, has stopped."
msgstr ""

#: ../spectlib/plugins/watch_vc_bazaar.py:36
msgid "Bazaar"
msgstr ""

#: ../spectlib/plugins/watch_vc_bazaar.py:38
msgid "Version control"
msgstr ""

#: ../spectlib/plugins/watch_vc_bazaar.py:106
msgid "One new revision on your local branch."
msgstr ""

#: ../spectlib/plugins/watch_vc_bazaar.py:108
msgid "%d new revisions on your local branch."
msgstr ""

#: ../spectlib/plugins/watch_vc_bazaar.py:111
msgid "One new revision on the remote branch."
msgstr ""

#: ../spectlib/plugins/watch_vc_bazaar.py:114
msgid "%d new revisions on the remote branch."
msgstr ""

#: ../spectlib/plugins/watch_vc_bazaar.py:171
msgid "Main branch"
msgstr ""

#: ../spectlib/plugins/watch_web_greader.py:29
msgid "Google Reader"
msgstr ""

#: ../spectlib/plugins/watch_web_greader.py:31
#: ../spectlib/plugins/watch_web_static.py:45
msgid "Internet"
msgstr ""

#: ../spectlib/plugins/watch_web_greader.py:87
msgid " or more"
msgstr ""

#: ../spectlib/plugins/watch_web_greader.py:117
msgid ""
"<b>%s</b> has a new newsitems in <b>%s</b>...\n"
"\n"
"... <b>totalling %s</b> unread items."
msgstr ""

#: ../spectlib/plugins/watch_web_greader.py:127
msgid ""
"<b>%s</b> has received %d new newsitems in <b>%s</b>...\n"
"\n"
"... <b>totalling %s</b> unread items."
msgstr ""

#: ../spectlib/plugins/watch_web_greader.py:492
msgid "Wrong username or password"
msgstr ""

#: ../spectlib/plugins/watch_web_greader.py:495
msgid "Could not establish a connection to server"
msgstr ""

#: ../spectlib/plugins/watch_web_greader.py:498
msgid "Could not get cookies"
msgstr ""

#: ../spectlib/plugins/watch_web_greader.py:504
msgid "You are not subscribed to any feeds"
msgstr ""

#: ../spectlib/plugins/watch_web_greader.py:506
msgid "No unread items"
msgstr ""

#: ../spectlib/plugins/watch_web_static.py:43
msgid "Webpage/feed"
msgstr ""

#: ../spectlib/plugins/watch_web_static.py:172
msgid "Filesize difference: %.2f"
msgstr ""

#: ../spectlib/plugins/watch_web_static.py:262
msgid ""
"The website, <b>%s</b>, has changed.\n"
"Difference percentage: %s percent"
msgstr ""

#: ../spectlib/plugins/watch_web_static.py:281
#: ../spectlib/plugins/watch_web_static.py:287
msgid "URL"
msgstr ""

#: ../spectlib/plugins/watch_web_static.py:282
#: ../spectlib/plugins/watch_web_static.py:288
msgid "Error margin (%)"
msgstr ""

#: ../spectlib/trayicon.py:93
msgid "No changed watches."
msgstr ""

#: ../spectlib/trayicon.py:129
msgid "Hide window"
msgstr ""

#: ../spectlib/trayicon.py:131
msgid "Show window"
msgstr ""

#: ../spectlib/watch.py:87
msgid "There was an error starting the watch"
msgstr ""

#: ../spectlib/watch.py:98
msgid "There was an error stopping the watch"
msgstr ""

#: ../spectlib/watch.py:110
msgid "There was an error clearing the watch"
msgstr ""

#: ../spectlib/watch.py:159
msgid "There was an error marking the watch as changed"
msgstr ""

#: ../spectlib/watch.py:225 ../spectlib/watch.py:226
msgid "No changes yet"
msgstr ""

#: ../spectlib/watch.py:289
msgid "Please enable plugin \"%s\" if you want to use the watch \"%s\"."
msgstr ""

#: ../spectlib/watch.py:442 ../spectlib/watch.py:455 ../spectlib/watch.py:475
#: ../spectlib/watch.py:501 ../spectlib/watch.py:517 ../spectlib/watch.py:541
#: ../spectlib/watch.py:596
msgid "There was an error initializing config file %s"
msgstr ""