~ubuntu-l10n-en-au/+junk/en_AU-precise

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
# English (Australia) translation for kdesdk
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the kdesdk package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: kdesdk\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-11-06 18:31+0000\n"
"PO-Revision-Date: 2011-07-30 12:11+0000\n"
"Last-Translator: Joel Pickett <jlkpcktt@gmail.com>\n"
"Language-Team: English (Australia) <en_AU@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2012-01-02 13:47+0000\n"
"X-Generator: Launchpad (build 14560)\n"

#: main.cpp:28 main.cpp:32 gui/cwloadingwidget.cpp:164
#: gui/cwloadingwidget.cpp:164
msgid "KBugBuster"
msgstr "KBugBuster"

#: main.cpp:34
msgid "(c) 2001,2002,2003 the KBugBuster authors"
msgstr "(c) 2001,2002,2003 the KBugBuster authors"

#: main.cpp:35
msgid "Martijn Klingens"
msgstr "Martijn Klingens"

#: main.cpp:36
msgid "Cornelius Schumacher"
msgstr "Cornelius Schumacher"

#: main.cpp:37
msgid "Simon Hausmann"
msgstr "Simon Hausmann"

#: main.cpp:38
msgid "David Faure"
msgstr "David Faure"

#: main.cpp:43
msgid "Start in disconnected mode"
msgstr "Start in disconnected mode"

#: main.cpp:45
msgid "Start with the buglist for <package>"
msgstr "Start with the buglist for <package>"

#: main.cpp:46
msgid "Start with bug report <br>"
msgstr "Start with bug report <br>"

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr " ,Launchpad Contributions:,Joel Pickett"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ",,jlkpcktt@gmail.com"

#. i18n: file: kresources/kresources_kcal_bugzilla.kcfg:10
#. i18n: ectx: label, entry (Server), group (General)
#: rc.cpp:5 rc.cpp:14
msgid "Server"
msgstr "Server"

#. i18n: file: kresources/kresources_kcal_bugzilla.kcfg:13
#. i18n: ectx: label, entry (Product), group (General)
#: rc.cpp:8 rc.cpp:17
msgid "Product"
msgstr "Product"

#. i18n: file: kresources/kresources_kcal_bugzilla.kcfg:16
#. i18n: ectx: label, entry (Component), group (General)
#: rc.cpp:11 rc.cpp:20
msgid "Component"
msgstr "Component"

#. i18n: file: gui/kbugbusterui.rc:5
#. i18n: ectx: Menu (file)
#: rc.cpp:23 rc.cpp:47
msgid "&File"
msgstr "&File"

#. i18n: file: gui/kbugbusterui.rc:12
#. i18n: ectx: Menu (view)
#: rc.cpp:26 rc.cpp:50
msgid "&View"
msgstr "&View"

#. i18n: file: gui/kbugbusterui.rc:27
#. i18n: ectx: Menu (search)
#: rc.cpp:29 rc.cpp:53
msgid "S&earch"
msgstr "S&earch"

#. i18n: file: gui/kbugbusterui.rc:33
#. i18n: ectx: Menu (commands)
#: rc.cpp:32 rc.cpp:56
msgid "&Commands"
msgstr "&Commands"

#. i18n: file: gui/kbugbusterui.rc:47
#. i18n: ectx: Menu (settings)
#: rc.cpp:35 rc.cpp:59
msgid "&Settings"
msgstr "&Settings"

#. i18n: file: gui/kbugbusterui.rc:53
#. i18n: ectx: ToolBar (searchToolBar)
#: rc.cpp:38 rc.cpp:62
msgid "Search Toolbar"
msgstr "Search Toolbar"

#. i18n: file: gui/kbugbusterui.rc:59
#. i18n: ectx: ToolBar (commandToolBar)
#: rc.cpp:41 rc.cpp:65
msgid "Command Toolbar"
msgstr "Command Toolbar"

#. i18n: file: gui/kbugbusterui.rc:73
#. i18n: ectx: ToolBar (settingToolBar)
#: rc.cpp:44 rc.cpp:68
msgid "Settings Toolbar"
msgstr "Settings Toolbar"

#. i18n: file: gui/centralwidget_base.ui:22
#. i18n: ectx: property (title), widget (QGroupBox, m_searchGroup)
#. i18n: file: gui/cwsearchwidget_base.ui:22
#. i18n: ectx: property (text), widget (QLabel, m_searchLabel)
#. i18n: file: gui/centralwidget_base.ui:22
#. i18n: ectx: property (title), widget (QGroupBox, m_searchGroup)
#. i18n: file: gui/cwsearchwidget_base.ui:22
#. i18n: ectx: property (text), widget (QLabel, m_searchLabel)
#: rc.cpp:104 rc.cpp:113 rc.cpp:158 rc.cpp:167
msgid "Search"
msgstr "Search"

#. i18n: file: gui/centralwidget_base.ui:63
#. i18n: ectx: property (text), widget (QLabel, TextLabel9)
#. i18n: file: gui/cwsearchwidget_base.ui:58
#. i18n: ectx: property (text), widget (QLabel, TextLabel9)
#. i18n: file: gui/centralwidget_base.ui:63
#. i18n: ectx: property (text), widget (QLabel, TextLabel9)
#. i18n: file: gui/cwsearchwidget_base.ui:58
#. i18n: ectx: property (text), widget (QLabel, TextLabel9)
#: rc.cpp:107 rc.cpp:119 rc.cpp:161 rc.cpp:173
msgid "Bug &number:"
msgstr "Bug &number:"

#. i18n: file: gui/centralwidget_base.ui:116
#. i18n: ectx: property (text), widget (QLabel, TextLabel7)
#. i18n: file: gui/cwsearchwidget_base.ui:111
#. i18n: ectx: property (text), widget (QLabel, TextLabel7)
#. i18n: file: gui/centralwidget_base.ui:116
#. i18n: ectx: property (text), widget (QLabel, TextLabel7)
#. i18n: file: gui/cwsearchwidget_base.ui:111
#. i18n: ectx: property (text), widget (QLabel, TextLabel7)
#: rc.cpp:110 rc.cpp:122 rc.cpp:164 rc.cpp:176
msgid "&Description:"
msgstr "&Description:"

#. i18n: file: gui/cwbugdetailscontainer_base.ui:56
#. i18n: ectx: property (text), widget (K3ActiveLabel, m_bugLabel)
#: gui/cwbugdetailscontainer.cpp:198 rc.cpp:71 rc.cpp:125
#: gui/cwbugdetailscontainer.cpp:198
msgid "Bug Title"
msgstr "Bug Title"

#. i18n: file: gui/cwbugdetailscontainer_base.ui:63
#. i18n: ectx: property (text), widget (QLabel, m_cmdLabel)
#: rc.cpp:74 rc.cpp:128
msgid "Bug Commands"
msgstr "Bug Commands"

#. i18n: file: gui/cwbugdetailscontainer_base.ui:83
#. i18n: ectx: property (text), widget (QPushButton, m_cmdClearBtn)
#: rc.cpp:77 rc.cpp:131
msgid "Clear Co&mmands"
msgstr "Clear Co&mmands"

#. i18n: file: gui/cwbugdetailscontainer_base.ui:109
#. i18n: ectx: property (text), widget (QPushButton, m_bugCloseBtn)
#: gui/kbbmainwindow.cpp:223 rc.cpp:80 rc.cpp:134 gui/kbbmainwindow.cpp:223
msgid "C&lose..."
msgstr "C&lose..."

#. i18n: file: gui/cwbugdetailscontainer_base.ui:119
#. i18n: ectx: property (text), widget (QPushButton, m_bugCloseSilentlyBtn)
#: rc.cpp:83 rc.cpp:137
msgid "Close Silentl&y"
msgstr "Close Silentl&y"

#. i18n: file: gui/cwbugdetailscontainer_base.ui:129
#. i18n: ectx: property (text), widget (QPushButton, m_bugReopenBtn)
#: gui/kbbmainwindow.cpp:230 rc.cpp:86 rc.cpp:140 gui/kbbmainwindow.cpp:230
msgid "Re&open"
msgstr "Re&open"

#. i18n: file: gui/cwbugdetailscontainer_base.ui:139
#. i18n: ectx: property (text), widget (QPushButton, m_bugReassignBtn)
#: rc.cpp:89 rc.cpp:143
msgid "Re&assign..."
msgstr "Re&assign..."

#. i18n: file: gui/cwbugdetailscontainer_base.ui:149
#. i18n: ectx: property (text), widget (QPushButton, m_bugTitleBtn)
#: rc.cpp:92 rc.cpp:146
msgid "Change &Title..."
msgstr "Change &Title..."

#. i18n: file: gui/cwbugdetailscontainer_base.ui:159
#. i18n: ectx: property (text), widget (QPushButton, m_bugSeverityBtn)
#: rc.cpp:95 rc.cpp:149
msgid "Chan&ge Severity..."
msgstr "Chan&ge Severity..."

#. i18n: file: gui/cwbugdetailscontainer_base.ui:185
#. i18n: ectx: property (text), widget (QPushButton, m_bugReplyBtn)
#: gui/kbbmainwindow.cpp:241 rc.cpp:98 rc.cpp:152 gui/kbbmainwindow.cpp:241
msgid "&Reply..."
msgstr "&Reply..."

#. i18n: file: gui/cwbugdetailscontainer_base.ui:195
#. i18n: ectx: property (text), widget (QPushButton, m_bugReplyPrivBtn)
#: gui/kbbmainwindow.cpp:246 rc.cpp:101 rc.cpp:155 gui/kbbmainwindow.cpp:246
msgid "Reply &Privately..."
msgstr "Reply &Privately..."

#. i18n: file: gui/cwsearchwidget_base.ui:32
#. i18n: ectx: property (text), widget (QLabel, TextLabel2)
#: rc.cpp:116 rc.cpp:170
msgid "&Package:"
msgstr "&Package:"

#: kresources/kcalresourceconfig.cpp:46 kresources/kcalresourceconfig.cpp:46
msgid "Server:"
msgstr "Server:"

#: kresources/kcalresourceconfig.cpp:53 kresources/kcalresourceconfig.cpp:53
msgid "Product:"
msgstr "Product:"

#: kresources/kcalresourceconfig.cpp:60 kresources/kcalresourceconfig.cpp:60
msgid "Component:"
msgstr "Component:"

#: gui/cwloadingwidget.cpp:155 gui/cwloadingwidget.cpp:155
msgid ""
"Welcome to KBugBuster, a tool to manage the KDE Bug Report System. With "
"KBugBuster you can manage outstanding bug reports for KDE from a convenient "
"front end."
msgstr ""
"Welcome to KBugBuster, a tool to manage the KDE Bug Report System. With "
"KBugBuster you can manage outstanding bug reports for KDE from a convenient "
"front end."

#: gui/msginputdialog.cpp:57 gui/msginputdialog.cpp:57
msgid "&Edit Presets..."
msgstr "&Edit Presets..."

#: gui/msginputdialog.cpp:60 gui/msginputdialog.cpp:60
#, kde-format
msgid "Close Bug %1"
msgstr "Close Bug %1"

#: gui/msginputdialog.cpp:63 gui/msginputdialog.cpp:63
msgid "Reply to Bug"
msgstr "Reply to Bug"

#: gui/msginputdialog.cpp:66 gui/msginputdialog.cpp:66
msgid "Reply Privately to Bug"
msgstr "Reply Privately to Bug"

#: gui/msginputdialog.cpp:83 gui/msginputdialog.cpp:83
msgid "&Message"
msgstr "&Message"

#: gui/msginputdialog.cpp:101 gui/msginputdialog.cpp:101
msgid "&Recipient:"
msgstr "&Recipient:"

#: gui/msginputdialog.cpp:108 gui/msginputdialog.cpp:108
msgid "Normal (bugs.kde.org & Maintainer & kde-bugs-dist)"
msgstr "Normal (bugs.kde.org & Maintainer & kde-bugs-dist)"

#: gui/msginputdialog.cpp:109 gui/msginputdialog.cpp:109
msgid "Maintonly (bugs.kde.org & Maintainer)"
msgstr "Maintonly (bugs.kde.org & Maintainer)"

#: gui/msginputdialog.cpp:110 gui/msginputdialog.cpp:110
msgid "Quiet (bugs.kde.org only)"
msgstr "Quiet (bugs.kde.org only)"

#: gui/msginputdialog.cpp:121 gui/msginputdialog.cpp:121
msgid "&Preset Messages"
msgstr "&Preset Messages"

#: gui/severityselectdialog.cpp:37 gui/severityselectdialog.cpp:37
msgid "Select Severity"
msgstr "Select Severity"

#: gui/cwbuglistcontainer.cpp:70 gui/severityselectdialog.cpp:41
#: backend/bugcommand.cpp:305 backend/bugcommand.cpp:305
#: gui/cwbuglistcontainer.cpp:70 gui/severityselectdialog.cpp:41
msgid "Severity"
msgstr "Severity"

#: gui/packageselectdialog.cpp:100 gui/preferencesdialog.cpp:80
#: gui/packageselectdialog.cpp:100 gui/preferencesdialog.cpp:80
msgid "Name"
msgstr "Name"

#: gui/preferencesdialog.cpp:81 gui/preferencesdialog.cpp:81
msgid "Base URL"
msgstr "Base URL"

#: gui/preferencesdialog.cpp:82 gui/preferencesdialog.cpp:82
msgid "User"
msgstr "User"

#: gui/preferencesdialog.cpp:83 gui/cwbugdetails.cpp:103
#: gui/preferencesdialog.cpp:83 gui/cwbugdetails.cpp:103
msgid "Version"
msgstr "Version"

#: gui/preferencesdialog.cpp:91 gui/preferencesdialog.cpp:91
msgid "Preferences"
msgstr "Preferences"

#: gui/preferencesdialog.cpp:113 gui/preferencesdialog.cpp:113
msgid "Servers"
msgstr "Servers"

#: gui/preferencesdialog.cpp:127 gui/preferencesdialog.cpp:127
msgid "Add Server..."
msgstr "Add Server..."

#: gui/preferencesdialog.cpp:130 gui/preferencesdialog.cpp:130
msgid "Edit Server..."
msgstr "Edit Server..."

#: gui/preferencesdialog.cpp:133 gui/preferencesdialog.cpp:133
msgid "Delete Server"
msgstr "Delete Server"

#: gui/preferencesdialog.cpp:136 gui/preferencesdialog.cpp:136
msgid "Select Server From List..."
msgstr "Select Server From List..."

#: gui/preferencesdialog.cpp:146 gui/preferencesdialog.cpp:146
msgid "Advanced"
msgstr "Advanced"

#: gui/preferencesdialog.cpp:153 gui/preferencesdialog.cpp:153
msgid "Mail Client"
msgstr "Mail Client"

#: gui/preferencesdialog.cpp:158 gui/preferencesdialog.cpp:158
msgid "&KMail"
msgstr "&KMail"

#: gui/preferencesdialog.cpp:159 gui/preferencesdialog.cpp:159
msgid "D&irect"
msgstr "D&irect"

#: gui/preferencesdialog.cpp:160 gui/preferencesdialog.cpp:160
msgid "&Sendmail"
msgstr "&Sendmail"

#: gui/preferencesdialog.cpp:165 gui/preferencesdialog.cpp:165
msgid "Show closed bugs"
msgstr "Show closed bugs"

#: gui/preferencesdialog.cpp:168 gui/preferencesdialog.cpp:168
msgid "Show wishes"
msgstr "Show wishes"

#: gui/preferencesdialog.cpp:171 gui/preferencesdialog.cpp:171
msgid "Show bugs with number of votes greater than:"
msgstr "Show bugs with number of votes greater than:"

#: gui/preferencesdialog.cpp:180 gui/preferencesdialog.cpp:180
msgid "Send BCC to myself"
msgstr "Send BCC to myself"

#: gui/kbbmainwindow.cpp:281 gui/preferencesdialog.cpp:321
#: gui/kbbmainwindow.cpp:281 gui/preferencesdialog.cpp:321
msgid "Select Server"
msgstr "Select Server"

#: gui/serverconfigdialog.cpp:38 gui/serverconfigdialog.cpp:38
msgid "Edit Bugzilla Server"
msgstr "Edit Bugzilla Server"

#: gui/serverconfigdialog.cpp:52 gui/serverconfigdialog.cpp:52
msgid "Name:"
msgstr "Name:"

#: gui/serverconfigdialog.cpp:59 gui/serverconfigdialog.cpp:59
msgid "URL:"
msgstr "URL:"

#: gui/serverconfigdialog.cpp:65 gui/serverconfigdialog.cpp:65
msgid "User:"
msgstr "User:"

#: gui/serverconfigdialog.cpp:72 gui/serverconfigdialog.cpp:72
msgid "Password:"
msgstr "Password:"

#: gui/serverconfigdialog.cpp:78 gui/serverconfigdialog.cpp:78
msgid "Bugzilla version:"
msgstr "Bugzilla version:"

#: gui/cwbuglistcontainer.cpp:66 gui/cwbuglistcontainer.cpp:66
msgid "Number"
msgstr "Number"

#: gui/cwbuglistcontainer.cpp:67 gui/cwbuglistcontainer.cpp:67
msgid "Age"
msgstr "Age"

#: gui/cwbuglistcontainer.cpp:68 gui/cwbuglistcontainer.cpp:68
msgid "Title"
msgstr "Title"

#: gui/cwbuglistcontainer.cpp:69 gui/cwbuglistcontainer.cpp:69
msgid "Status"
msgstr "Status"

#: gui/cwbuglistcontainer.cpp:71 gui/cwbuglistcontainer.cpp:71
msgid "Sender"
msgstr "Sender"

#: gui/cwbuglistcontainer.cpp:144 gui/cwbuglistcontainer.cpp:144
#, kde-format
msgid "%1 (%2 bugs, %3 wishes)"
msgstr "%1 (%2 bugs, %3 wishes)"

#: gui/cwbuglistcontainer.cpp:154 gui/cwbuglistcontainer.cpp:154
#, kde-format
msgid "Product '%1', all components"
msgstr "Product '%1', all components"

#: gui/cwbuglistcontainer.cpp:156 gui/cwbuglistcontainer.cpp:156
#, kde-format
msgid "Product '%1'"
msgstr "Product '%1'"

#: gui/cwbuglistcontainer.cpp:160 gui/cwbuglistcontainer.cpp:160
#, kde-format
msgid "Product '%1', component '%2'"
msgstr "Product '%1', component '%2'"

#: gui/cwbuglistcontainer.cpp:201 gui/cwbuglistcontainer.cpp:201
msgid "Outstanding Bugs"
msgstr "Outstanding Bugs"

#: gui/cwbuglistcontainer.cpp:202 gui/cwbuglistcontainer.cpp:202
msgid "Click here to select a product"
msgstr "Click here to select a product"

#: gui/cwbuglistcontainer.cpp:209 gui/cwbuglistcontainer.cpp:209
#, kde-format
msgid "Retrieving List of Outstanding Bugs for Product '%1'..."
msgstr "Retrieving List of Outstanding Bugs for Product '%1'..."

#: gui/cwbuglistcontainer.cpp:211 gui/cwbuglistcontainer.cpp:211
#, kde-format
msgid ""
"Retrieving List of Outstanding Bugs for Product '%1' (Component %2)..."
msgstr ""
"Retrieving List of Outstanding Bugs for Product '%1' (Component %2)..."

#: gui/cwbuglistcontainer.cpp:222 gui/cwbuglistcontainer.cpp:222
#, kde-format
msgid "Package '%1'"
msgstr "Package '%1'"

#: gui/cwbuglistcontainer.cpp:227 gui/cwbuglistcontainer.cpp:227
#, kde-format
msgid "%1 is not available offline."
msgstr "%1 is not available offline."

#: gui/cwbugdetails.cpp:86 gui/cwbugdetails.cpp:86
#, kde-format
msgid "Bug Report</a> from <b>%1</b> "
msgstr "Bug Report</a> from <b>%1</b> "

#: gui/cwbugdetails.cpp:89 gui/cwbugdetails.cpp:89
#, kde-format
msgid "(1 reply)"
msgid_plural "(%1 replies)"
msgstr[0] "(1 reply)"
msgstr[1] "(%1 replies)"

#: gui/cwbugdetails.cpp:93 gui/cwbugdetails.cpp:93
#, kde-format
msgid "1 day old"
msgid_plural "%1 days old"
msgstr[0] "1 day old"
msgstr[1] "%1 days old"

#: gui/cwbugdetails.cpp:104 gui/cwbugdetails.cpp:104
msgid "Source"
msgstr "Source"

#: gui/cwbugdetails.cpp:105 gui/cwbugdetails.cpp:105
msgid "Compiler"
msgstr "Compiler"

#: gui/cwbugdetails.cpp:106 gui/cwbugdetails.cpp:106
msgid "OS"
msgstr "OS"

#: gui/cwbugdetails.cpp:124 gui/cwbugdetails.cpp:124
#, kde-format
msgid "Bug Report</a> from <b>%1</b>"
msgstr "Bug Report</a> from <b>%1</b>"

#: gui/cwbugdetails.cpp:128 gui/cwbugdetails.cpp:128
#, kde-format
msgid "Reply #%1</a> from <b>%2</b>"
msgstr "Reply #%1</a> from <b>%2</b>"

#: gui/cwbugdetails.cpp:152 gui/cwbugdetails.cpp:152
msgid "Attachment List"
msgstr "Attachment List"

#: gui/packageselectdialog.cpp:101 gui/cwbugdetails.cpp:154
#: gui/packageselectdialog.cpp:101 gui/cwbugdetails.cpp:154
msgid "Description"
msgstr "Description"

#: gui/cwbugdetails.cpp:155 gui/cwbugdetails.cpp:155
msgid "Date"
msgstr "Date"

#: gui/cwbugdetails.cpp:156 gui/cwbugdetails.cpp:164 gui/cwbugdetails.cpp:156
#: gui/cwbugdetails.cpp:164
msgid "View"
msgstr "View"

#: gui/cwbugdetails.cpp:157 gui/cwbugdetails.cpp:167 gui/cwbugdetails.cpp:157
#: gui/cwbugdetails.cpp:167
msgid "Edit"
msgstr "Edit"

#: gui/packageselectdialog.cpp:71 gui/packageselectdialog.cpp:71
msgid "Select Product"
msgstr "Select Product"

#: gui/packageselectdialog.cpp:86 gui/packageselectdialog.cpp:86
msgid "Recent"
msgstr "Recent"

#: gui/loadallbugsdlg.cpp:37 gui/loadallbugsdlg.cpp:37
#, kde-format
msgid "Loading All Bugs for Product %1"
msgstr "Loading All Bugs for Product %1"

#: gui/loadallbugsdlg.cpp:56 gui/loadallbugsdlg.cpp:56
#, kde-format
msgid "Bug %1 loaded"
msgstr "Bug %1 loaded"

#: gui/buglvi.cpp:31 gui/buglvi.cpp:31
#, kde-format
msgid "1 day"
msgid_plural "%1 days"
msgstr[0] "1 day"
msgstr[1] "%1 days"

#: gui/buglvi.cpp:43 backend/bugcommand.cpp:30 backend/person.cpp:41
#: backend/bugcommand.cpp:30 backend/person.cpp:41 gui/buglvi.cpp:43
msgid "Unknown"
msgstr "Unknown"

#: gui/buglvi.cpp:47 gui/buglvi.cpp:47
#, kde-format
msgid "%1 (%2)"
msgstr "%1 (%2)"

#: gui/centralwidget.cpp:334 gui/centralwidget.cpp:334
msgid "Found the following attachments. Save?"
msgstr "Found the following attachments. Save?"

#: gui/centralwidget.cpp:338 gui/centralwidget.cpp:338
msgid "Select Folder Where to Save Attachments"
msgstr "Select Folder Where to Save Attachments"

#: gui/centralwidget.cpp:415 gui/centralwidget.cpp:415
msgid "Change Bug Title"
msgstr "Change Bug Title"

#: gui/centralwidget.cpp:416 gui/centralwidget.cpp:416
msgid "Please enter a new title:"
msgstr "Please enter a new title:"

#: gui/cwbugdetailscontainer.cpp:121 gui/cwbugdetailscontainer.cpp:121
#, kde-format
msgctxt "bug #number [Merged with: a list of bugs] (severity): title"
msgid "Bug #%1 [Merged with: %2] (%3): %4"
msgstr "Bug #%1 [Merged with: %2] (%3): %4"

#: gui/cwbugdetailscontainer.cpp:130 gui/cwbugdetailscontainer.cpp:130
#, kde-format
msgctxt "bug #number (severity): title"
msgid "Bug #%1 (%2): %3"
msgstr "Bug #%1 (%2): %3"

#: gui/cwbugdetailscontainer.cpp:150 gui/cwbugdetailscontainer.cpp:150
msgid "Pending commands:"
msgstr "Pending commands:"

#: gui/cwbugdetailscontainer.cpp:203 gui/cwbugdetailscontainer.cpp:203
msgid "Click here to select a bug by number"
msgstr "Click here to select a bug by number"

#: gui/cwbugdetailscontainer.cpp:212 gui/cwbugdetailscontainer.cpp:212
#, kde-format
msgid ""
"Retrieving Details for Bug %1\n"
"\n"
"(%2)"
msgstr ""
"Retrieving Details for Bug %1\n"
"\n"
"(%2)"

#: gui/cwbugdetailscontainer.cpp:224 gui/cwbugdetailscontainer.cpp:224
#, kde-format
msgid "Bug #%1 (%2) is not available offline."
msgstr "Bug #%1 (%2) is not available offline."

#: gui/cwbugdetailscontainer.cpp:227 gui/cwbugdetailscontainer.cpp:227
#, kde-format
msgid ""
"Retrieving details for bug #%1\n"
"(%2)"
msgstr ""
"Retrieving details for bug #%1\n"
"(%2)"

#: gui/kbbmainwindow.cpp:106 gui/kbbmainwindow.cpp:106
msgid "Welcome to <b>KBugBuster</b>."
msgstr "Welcome to <b>KBugBuster</b>."

#: gui/kbbmainwindow.cpp:156 gui/kbbmainwindow.cpp:156
msgid "Quit KBugBuster"
msgstr "Quit KBugBuster"

#: gui/kbbmainwindow.cpp:160 gui/kbbmainwindow.cpp:160
msgid "See &Pending Changes"
msgstr "See &Pending Changes"

#: gui/kbbmainwindow.cpp:164 gui/kbbmainwindow.cpp:164
msgid "&Submit Changes"
msgstr "&Submit Changes"

#: gui/kbbmainwindow.cpp:169 gui/kbbmainwindow.cpp:169
msgid "Reload &Product List"
msgstr "Reload &Product List"

#: gui/kbbmainwindow.cpp:174 gui/kbbmainwindow.cpp:174
msgid "Reload Bug &List (for current product)"
msgstr "Reload Bug &List (for current product)"

#: gui/kbbmainwindow.cpp:179 gui/kbbmainwindow.cpp:179
msgid "Reload Bug &Details (for current bug)"
msgstr "Reload Bug &Details (for current bug)"

#: gui/kbbmainwindow.cpp:183 gui/kbbmainwindow.cpp:183
msgid "Load &My Bugs List"
msgstr "Load &My Bugs List"

#: gui/kbbmainwindow.cpp:186 gui/kbbmainwindow.cpp:186
msgid "Load All Bug Details (for current product)"
msgstr "Load All Bug Details (for current product)"

#: gui/kbbmainwindow.cpp:191 gui/kbbmainwindow.cpp:191
msgid "Extract &Attachments"
msgstr "Extract &Attachments"

#: gui/kbbmainwindow.cpp:196 gui/kbbmainwindow.cpp:196
msgid "Clear Cache"
msgstr "Clear Cache"

#: gui/kbbmainwindow.cpp:201 gui/kbbmainwindow.cpp:201
msgid "&Search by Product..."
msgstr "&Search by Product..."

#: gui/kbbmainwindow.cpp:206 gui/kbbmainwindow.cpp:206
msgid "Search by Bug &Number..."
msgstr "Search by Bug &Number..."

#: gui/kbbmainwindow.cpp:213 gui/kbbmainwindow.cpp:213
msgid "Search by &Description..."
msgstr "Search by &Description..."

#: gui/kbbmainwindow.cpp:255 gui/kbbmainwindow.cpp:255
msgid "&Disconnected Mode"
msgstr "&Disconnected Mode"

#: gui/kbbmainwindow.cpp:261 gui/kbbmainwindow.cpp:261
msgid "&Bookmarks"
msgstr "&Bookmarks"

#: gui/kbbmainwindow.cpp:268 gui/kbbmainwindow.cpp:268
msgid "Show Closed Bugs"
msgstr "Show Closed Bugs"

#: gui/kbbmainwindow.cpp:270 gui/kbbmainwindow.cpp:270
msgid "Hide Closed Bugs"
msgstr "Hide Closed Bugs"

#: gui/kbbmainwindow.cpp:275 gui/kbbmainwindow.cpp:275
msgid "Show Wishes"
msgstr "Show Wishes"

#: gui/kbbmainwindow.cpp:277 gui/kbbmainwindow.cpp:277
msgid "Hide Wishes"
msgstr "Hide Wishes"

#: gui/kbbmainwindow.cpp:286 gui/kbbmainwindow.cpp:286
msgid "Show Last Server Response..."
msgstr "Show Last Server Response..."

#: gui/kbbmainwindow.cpp:289 gui/kbbmainwindow.cpp:289
msgid "Show Bug HTML Source..."
msgstr "Show Bug HTML Source..."

#: gui/kbbmainwindow.cpp:383 gui/kbbmainwindow.cpp:383
msgid "List of pending commands:"
msgstr "List of pending commands:"

#: gui/kbbmainwindow.cpp:388 gui/kbbmainwindow.cpp:388
msgid "Do you really want to delete all commands?"
msgstr "Do you really want to delete all commands?"

#: gui/kbbmainwindow.cpp:389 gui/kbbmainwindow.cpp:389
msgid "Confirmation Required"
msgstr "Confirmation Required"

#: gui/kbbmainwindow.cpp:389 gui/kbbmainwindow.cpp:389
msgid "&Delete"
msgstr "&Delete"

#: gui/kbbmainwindow.cpp:396 gui/kbbmainwindow.cpp:396
msgid "There are no pending commands."
msgstr "There are no pending commands."

#: gui/kbbmainwindow.cpp:431 gui/kbbmainwindow.cpp:431
msgid "Search for Bug Number"
msgstr "Search for Bug Number"

#: gui/kbbmainwindow.cpp:432 gui/kbbmainwindow.cpp:432
msgid "Please enter a bug number:"
msgstr "Please enter a bug number:"

#: gui/kbbmainwindow.cpp:461 gui/kbbmainwindow.cpp:461
msgid "There are unsent bug commands. Do you want to send them now?"
msgstr "There are unsent bug commands. Do you want to send them now?"

#: gui/kbbmainwindow.cpp:462 gui/kbbmainwindow.cpp:462
msgid "Send"
msgstr "Send"

#: gui/kbbmainwindow.cpp:462 gui/kbbmainwindow.cpp:462
msgid "Do Not Send"
msgstr "Do Not Send"

#: gui/kbbmainwindow.cpp:514 gui/kbbmainwindow.cpp:514
msgid "Last Server Response"
msgstr "Last Server Response"

#: gui/kbbmainwindow.cpp:526 gui/kbbmainwindow.cpp:526
msgid "Bug HTML Source"
msgstr "Bug HTML Source"

#: gui/messageeditor.cpp:44 gui/messageeditor.cpp:44
msgid "Edit Message Buttons"
msgstr "Edit Message Buttons"

#: gui/messageeditor.cpp:58 gui/messageeditor.cpp:58
msgid "Button:"
msgstr "Button:"

#: gui/messageeditor.cpp:65 gui/messageeditor.cpp:65
msgid "Add Button..."
msgstr "Add Button..."

#: gui/messageeditor.cpp:69 gui/messageeditor.cpp:69
msgid "Remove Button"
msgstr "Remove Button"

#: gui/messageeditor.cpp:96 gui/messageeditor.cpp:96
msgid "Add Message Button"
msgstr "Add Message Button"

#: gui/messageeditor.cpp:97 gui/messageeditor.cpp:97
msgid "Enter button name:"
msgstr "Enter button name:"

#: gui/messageeditor.cpp:113 gui/messageeditor.cpp:113
#, kde-format
msgid "Remove the button %1?"
msgstr "Remove the button %1?"

#: gui/messageeditor.cpp:114 gui/messageeditor.cpp:114
msgid "Remove"
msgstr "Remove"

#: gui/messageeditor.cpp:114 gui/messageeditor.cpp:114
msgid "Delete"
msgstr "Delete"

#: backend/smtp.cpp:50 backend/smtp.cpp:50
#, kde-format
msgid "Connecting to %1"
msgstr "Connecting to %1"

#: backend/smtp.cpp:90 backend/smtp.cpp:90
#, kde-format
msgid "Connected to %1"
msgstr "Connected to %1"

#: backend/smtp.cpp:98 backend/smtp.cpp:98
msgid "Connection refused."
msgstr "Connection refused."

#: backend/smtp.cpp:101 backend/smtp.cpp:101
msgid "Host Not Found."
msgstr "Host Not Found."

#: backend/smtp.cpp:104 backend/smtp.cpp:104
msgid "Error reading socket."
msgstr "Error reading socket."

#: backend/smtp.cpp:107 backend/smtp.cpp:107
msgid "Internal error, unrecognized error."
msgstr "Internal error, unrecognised error."

#: backend/smtp.cpp:164 backend/smtp.cpp:164
msgid "Message sent"
msgstr "Message sent"

#: backend/bugjob.cpp:71 backend/bugjob.cpp:71
msgid "Parsing..."
msgstr "Parsing..."

#: backend/bugjob.cpp:82 backend/bugjob.cpp:82
msgid "Ready."
msgstr "Ready."

#: backend/buglistjob.cpp:63 backend/buglistjob.cpp:63
#, kde-format
msgid "Package %1: %2"
msgstr "Package %1: %2"

#: backend/kbbprefs.cpp:135 backend/kbbprefs.cpp:135
msgid "Bug Fixed in SVN"
msgstr "Bug Fixed in SVN"

#: backend/kbbprefs.cpp:138 backend/kbbprefs.cpp:138
msgid "Duplicate Report"
msgstr "Duplicate Report"

#: backend/kbbprefs.cpp:141 backend/kbbprefs.cpp:141
msgid "Packaging Bug"
msgstr "Packaging Bug"

#: backend/kbbprefs.cpp:147 backend/kbbprefs.cpp:147
msgid "Feature Implemented in SVN"
msgstr "Feature Implemented in SVN"

#: backend/kbbprefs.cpp:150 backend/kbbprefs.cpp:150
msgid "More Information Required"
msgstr "More Information Required"

#: backend/kbbprefs.cpp:155 backend/kbbprefs.cpp:155
msgid "No Longer Applicable"
msgstr "No Longer Applicable"

#: backend/kbbprefs.cpp:160 backend/kbbprefs.cpp:160
msgid "Will Not Fix Bug"
msgstr "Will Not Fix Bug"

#: backend/kbbprefs.cpp:163 backend/kbbprefs.cpp:163
msgid "Cannot Reproduce Bug"
msgstr "Cannot Reproduce Bug"

#: backend/bugcommand.cpp:106 backend/bugcommand.cpp:106
msgid "Close"
msgstr "Close"

#: backend/bugcommand.cpp:128 backend/bugcommand.cpp:128
msgid "Close Silently"
msgstr "Close Silently"

#: backend/bugcommand.cpp:145 backend/bugcommand.cpp:145
msgid "Reopen"
msgstr "Reopen"

#: backend/bugcommand.cpp:162 backend/bugcommand.cpp:162
msgid "Retitle"
msgstr "Retitle"

#: backend/bugcommand.cpp:184 backend/bugcommand.cpp:184
msgid "Merge"
msgstr "Merge"

#: backend/bugcommand.cpp:206 backend/bugcommand.cpp:206
msgid "Unmerge"
msgstr "Unmerge"

#: backend/bugcommand.cpp:239 backend/bugcommand.cpp:243
#: backend/bugcommand.cpp:239 backend/bugcommand.cpp:243
msgid "Reply"
msgstr "Reply"

#: backend/bugcommand.cpp:245 backend/bugcommand.cpp:245
msgid "Reply (Maintonly)"
msgstr "Reply (Maintonly)"

#: backend/bugcommand.cpp:247 backend/bugcommand.cpp:247
msgid "Reply (Quiet)"
msgstr "Reply (Quiet)"

#: backend/bugcommand.cpp:280 backend/bugcommand.cpp:280
msgid "Private Reply"
msgstr "Private Reply"

#: backend/bugcommand.cpp:327 backend/bugcommand.cpp:327
msgid "Reassign"
msgstr "Reassign"

#: backend/mailsender.cpp:118 backend/mailsender.cpp:118
msgid "Sending through sendmail..."
msgstr "Sending through sendmail..."

#: backend/mailsender.cpp:126 backend/mailsender.cpp:126
msgid "No running instance of KMail found."
msgstr "No running instance of KMail found."

#: backend/mailsender.cpp:131 backend/mailsender.cpp:131
msgid "Passing mail to KDE email program..."
msgstr "Passing mail to KDE email program..."

#: backend/mailsender.cpp:192 backend/mailsender.cpp:192
#, kde-format
msgid ""
"Error during SMTP transfer.\n"
"command: %1\n"
"response: %2"
msgstr ""
"Error during SMTP transfer.\n"
"command: %1\n"
"response: %2"

#: backend/bug.cpp:63 backend/bug.cpp:63
msgid "Critical"
msgstr "Critical"

#: backend/bug.cpp:64 backend/bug.cpp:64
msgid "Grave"
msgstr "Grave"

#: backend/bug.cpp:65 backend/bug.cpp:65
msgid "Major"
msgstr "Major"

#: backend/bug.cpp:66 backend/bug.cpp:66
msgid "Crash"
msgstr "Crash"

#: backend/bug.cpp:67 backend/bug.cpp:67
msgid "Normal"
msgstr "Normal"

#: backend/bug.cpp:68 backend/bug.cpp:68
msgid "Minor"
msgstr "Minor"

#: backend/bug.cpp:69 backend/bug.cpp:69
msgid "Wishlist"
msgstr "Wishlist"

#: backend/bug.cpp:71 backend/bug.cpp:127 backend/bug.cpp:71
#: backend/bug.cpp:127
msgid "Undefined"
msgstr "Undefined"

#: backend/bug.cpp:121 backend/bug.cpp:121
msgid "Unconfirmed"
msgstr "Unconfirmed"

#: backend/bug.cpp:122 backend/bug.cpp:122
msgid "New"
msgstr "New"

#: backend/bug.cpp:123 backend/bug.cpp:123
msgid "Assigned"
msgstr "Assigned"

#: backend/bug.cpp:124 backend/bug.cpp:124
msgid "Reopened"
msgstr "Reopened"

#: backend/bug.cpp:125 backend/bug.cpp:125
msgid "Closed"
msgstr "Closed"

#: backend/bugserver.cpp:292 backend/bugserver.cpp:292
msgid "Mail generated by KBugBuster"
msgstr "Mail generated by KBugBuster"

#: backend/bugserver.cpp:328 backend/bugserver.cpp:328
#, kde-format
msgid "Control command: %1"
msgstr "Control command: %1"

#: backend/bugserver.cpp:330 backend/bugserver.cpp:330
#, kde-format
msgid "Mail to %1"
msgstr "Mail to %1"

#: backend/bugmybugsjob.cpp:70 backend/bugmybugsjob.cpp:70
#, kde-format
msgid "My Bugs: %1"
msgstr "My Bugs: %1"

#: backend/bugsystem.cpp:162 backend/bugmybugsjob.cpp:72
#: backend/bugsystem.cpp:162 backend/bugmybugsjob.cpp:72
msgid "My Bugs"
msgstr "My Bugs"

#: backend/bugdetails.cpp:264 backend/bugdetails.cpp:264
#, kde-format
msgid ""
"Attachment %1 could not be decoded.\n"
"Encoding: %2"
msgstr ""
"Attachment %1 could not be decoded.\n"
"Encoding: %2"

#: backend/bugdetailsjob.cpp:60 backend/bugdetailsjob.cpp:60
#, kde-format
msgid "Bug %1: %2"
msgstr "Bug %1: %2"

#: backend/bugsystem.cpp:168 backend/bugsystem.cpp:168
msgid "Retrieving My Bugs list..."
msgstr "Retrieving My Bugs list..."