~mmcg069/software-center/catviewgtk-code-reorg

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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-01-03 14:24+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"

#: ../data/ui/SoftwareCenter.ui.h:1
msgid "Copy _Web Link"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:2
msgid "Get private launchpad repositories"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:3
msgid "Reinstall Previous Purchases…"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:4
msgid "Search…"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:5
msgid "Software Center _Help"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:6
msgid "Updating software catalog…"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:7
msgid "_All Software"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:8
msgid "_Canonical-Maintained Software"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:9
msgid "_Edit"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:10
msgid "_File"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:11
msgid "_Go Back"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:12
msgid "_Go Forward"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:13
msgid "_Help"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:14
msgid "_Install"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:15
msgid "_Software Sources…"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:16
msgid "_View"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:17
msgid "translator-credits"
msgstr ""

#: ../data/ui/SoftwareCenter.ui.h:18
msgid "©2009-2010 Canonical"
msgstr ""

#: ../data/ui/dialogs.ui.h:1
msgid ""
"<span weight=\"bold\" font_size=\"large\">Items cannot be installed or "
"removed \n"
"until the package catalog is repaired. Do you want to repair it now?</span>"
msgstr ""

#: ../data/ui/dialogs.ui.h:4
#, no-c-format
msgid ""
"<span weight=\"bold\" font_size=\"large\">Sorry, %s can't be installed at "
"the moment. Try again in a day or two.</span>"
msgstr ""

#: ../data/ui/dialogs.ui.h:5 ../softwarecenter/view/appdetailsview_gtk.py:943
msgid "Cancel"
msgstr ""

#: ../data/ui/dialogs.ui.h:6 ../softwarecenter/view/dialogs.py:71
msgid "Details"
msgstr ""

#: ../data/ui/dialogs.ui.h:7
msgid "OK"
msgstr ""

#: ../data/ui/dialogs.ui.h:8
msgid ""
"Once Update Manager has finished the repairs, you can close it and return to "
"the store."
msgstr ""

#: ../data/ui/dialogs.ui.h:9 ../softwarecenter/view/appdetailsview_gtk.py:276
#: ../softwarecenter/view/appdetailsview_webkit.py:411
#: ../softwarecenter/view/appdetailsview_webkit.py:427
#: ../softwarecenter/view/appview.py:618
msgid "Remove"
msgstr ""

#: ../data/ui/dialogs.ui.h:10
msgid "Repair"
msgstr ""

#: ../data/ui/login.ui.h:1
msgid "Continue"
msgstr ""

#: ../data/ui/login.ui.h:2
msgid "E-mail"
msgstr ""

#: ../data/ui/login.ui.h:3
msgid "I forgot my password"
msgstr ""

#: ../data/ui/login.ui.h:4
msgid "I have an Ubuntu Account"
msgstr ""

#: ../data/ui/login.ui.h:5
msgid "I want to register now"
msgstr ""

#: ../data/ui/login.ui.h:6
msgid "Login"
msgstr ""

#: ../data/ui/login.ui.h:7
msgid "Password"
msgstr ""

#: ../data/ui/login.ui.h:8
msgid "Remember password"
msgstr ""

#: ../data/ubuntu-software-center.desktop.in.h:1
msgid "Lets you choose from thousands of applications available for Ubuntu"
msgstr ""

#: ../data/ubuntu-software-center.desktop.in.h:2
#: ../data/unbranded-software-center.desktop.in.h:2
#: ../softwarecenter/distro/__init__.py:40
msgid "Software Center"
msgstr ""

#: ../data/ubuntu-software-center.desktop.in.h:3
#: ../softwarecenter/distro/Ubuntu.py:43
msgid "Ubuntu Software Center"
msgstr ""

#: ../data/unbranded-software-center.desktop.in.h:1
msgid ""
"Lets you choose from thousands of applications available for your system "
msgstr ""

#: ../data/featured.menu.in.h:1 ../softwarecenter/view/catview_gtk.py:409
msgid "Featured"
msgstr ""

#: ../data/new.menu.in.h:1 ../softwarecenter/view/catview_gtk.py:432
msgid "What’s New"
msgstr ""

#: ../data/software-center.menu.in.h:1
msgid "3D"
msgstr ""

#: ../data/software-center.menu.in.h:2
msgid "Accessories"
msgstr ""

#: ../data/software-center.menu.in.h:3
msgid "Arcade"
msgstr ""

#: ../data/software-center.menu.in.h:4
msgid "Astronomy"
msgstr ""

#: ../data/software-center.menu.in.h:5
msgid "Biology"
msgstr ""

#: ../data/software-center.menu.in.h:6
msgid "Board Games"
msgstr ""

#: ../data/software-center.menu.in.h:7
msgid "Card Games"
msgstr ""

#: ../data/software-center.menu.in.h:8
msgid "Chat"
msgstr ""

#: ../data/software-center.menu.in.h:9
msgid "Chemistry"
msgstr ""

#: ../data/software-center.menu.in.h:10
msgid "Computer Science &amp; Robotics"
msgstr ""

#: ../data/software-center.menu.in.h:11
msgid "Debugging"
msgstr ""

#: ../data/software-center.menu.in.h:12
msgid "Developer Tools"
msgstr ""

#: ../data/software-center.menu.in.h:13
msgid "Drawing"
msgstr ""

#: ../data/software-center.menu.in.h:14
msgid "Education"
msgstr ""

#: ../data/software-center.menu.in.h:15
msgid "Electronics"
msgstr ""

#: ../data/software-center.menu.in.h:16
msgid "Engineering"
msgstr ""

#: ../data/software-center.menu.in.h:17
msgid "File Sharing"
msgstr ""

#: ../data/software-center.menu.in.h:18
msgid "Fonts"
msgstr ""

#: ../data/software-center.menu.in.h:19
msgid "Games"
msgstr ""

#: ../data/software-center.menu.in.h:20
msgid "Geography"
msgstr ""

#: ../data/software-center.menu.in.h:21
msgid "Geology"
msgstr ""

#: ../data/software-center.menu.in.h:22
msgid "Graphic Interface Design"
msgstr ""

#: ../data/software-center.menu.in.h:23
msgid "Graphics"
msgstr ""

#: ../data/software-center.menu.in.h:24
msgid "Haskell"
msgstr ""

#: ../data/software-center.menu.in.h:25
msgid "IDEs"
msgstr ""

#: ../data/software-center.menu.in.h:26
msgid "Internet"
msgstr ""

#: ../data/software-center.menu.in.h:27
msgid "Java"
msgstr ""

#: ../data/software-center.menu.in.h:28
msgid "Libraries"
msgstr ""

#: ../data/software-center.menu.in.h:29
msgid "Lisp"
msgstr ""

#: ../data/software-center.menu.in.h:30
msgid "Localization"
msgstr ""

#: ../data/software-center.menu.in.h:31
msgid "Mail"
msgstr ""

#: ../data/software-center.menu.in.h:32
msgid "Mathematics"
msgstr ""

#: ../data/software-center.menu.in.h:33
msgid "Mono/CLI"
msgstr ""

#: ../data/software-center.menu.in.h:34
msgid "Multimedia"
msgstr ""

#: ../data/software-center.menu.in.h:35
msgid "OCaml"
msgstr ""

#: ../data/software-center.menu.in.h:36
msgid "Office"
msgstr ""

#: ../data/software-center.menu.in.h:37
msgid "Painting &amp; Editing"
msgstr ""

#: ../data/software-center.menu.in.h:38
msgid "Perl"
msgstr ""

#: ../data/software-center.menu.in.h:39
msgid "Photography"
msgstr ""

#: ../data/software-center.menu.in.h:40
msgid "Physics"
msgstr ""

#: ../data/software-center.menu.in.h:41
msgid "Profiling"
msgstr ""

#: ../data/software-center.menu.in.h:42
msgid "Publishing"
msgstr ""

#: ../data/software-center.menu.in.h:43
msgid "Puzzles"
msgstr ""

#: ../data/software-center.menu.in.h:44
msgid "Python"
msgstr ""

#: ../data/software-center.menu.in.h:45
msgid "Role Playing"
msgstr ""

#: ../data/software-center.menu.in.h:46
msgid "Ruby"
msgstr ""

#: ../data/software-center.menu.in.h:47
msgid "Scanning &amp; OCR"
msgstr ""

#: ../data/software-center.menu.in.h:48
msgid "Science &amp; Engineering"
msgstr ""

#: ../data/software-center.menu.in.h:49
msgid "Simulation"
msgstr ""

#: ../data/software-center.menu.in.h:50
msgid "Sports"
msgstr ""

#: ../data/software-center.menu.in.h:51
msgid "System"
msgstr ""

#: ../data/software-center.menu.in.h:52
msgid "Themes &amp; Tweaks"
msgstr ""

#: ../data/software-center.menu.in.h:53
msgid "Universal Access"
msgstr ""

#: ../data/software-center.menu.in.h:54
msgid "Version Control"
msgstr ""

#: ../data/software-center.menu.in.h:55
msgid "Viewers"
msgstr ""

#: ../data/software-center.menu.in.h:56
msgid "Web Browsers"
msgstr ""

#: ../data/software-center.menu.in.h:57
msgid "Web Development"
msgstr ""

#: ../data/software-center.xml.in.h:1
msgid "Software package"
msgstr ""

#: ../softwarecenter/app.py:156 ../softwarecenter/view/availablepane.py:736
#: ../softwarecenter/view/installedpane.py:226
msgid "Sorry, can not open the software database"
msgstr ""

#: ../softwarecenter/app.py:157 ../softwarecenter/view/availablepane.py:737
#: ../softwarecenter/view/installedpane.py:227
msgid "Please re-install the 'software-center' package."
msgstr ""

#: ../softwarecenter/backend/aptd.py:574
#: ../softwarecenter/view/appdetailsview_gtk.py:303
msgid "Error"
msgstr ""

#: ../softwarecenter/backend/channel.py:402
msgid "Canonical Partners"
msgstr ""

#: ../softwarecenter/backend/channel.py:404
#: ../softwarecenter/view/appdetailsview_gtk.py:1394
#: ../softwarecenter/view/appdetailsview_gtk.py:1400
#: ../softwarecenter/view/appdetailsview_gtk.py:1404
msgid "Unknown"
msgstr ""

#: ../softwarecenter/backend/channel.py:408
msgid "For Purchase"
msgstr ""

#: ../softwarecenter/backend/channel.py:410
msgid "Independent"
msgstr ""

#: ../softwarecenter/backend/channel.py:412
msgid "Other"
msgstr ""

#: ../softwarecenter/backend/login_sso.py:34
msgid "Ubuntu Software Center Store"
msgstr ""

#: ../softwarecenter/backend/login_sso.py:53
msgid ""
"To reinstall previous purchases, sign in to the Ubuntu Single Sign-On "
"account you used to pay for them."
msgstr ""

#: ../softwarecenter/db/application.py:191
#: ../softwarecenter/db/application.py:281
#: ../softwarecenter/db/application.py:407
#: ../softwarecenter/db/application.py:421
#: ../softwarecenter/db/application.py:584
#: ../softwarecenter/db/application.py:589
msgid "Not Found"
msgstr ""

#: ../softwarecenter/db/application.py:192
#: ../softwarecenter/db/application.py:282
#: ../softwarecenter/db/application.py:408
#: ../softwarecenter/db/application.py:422
#, python-format
msgid ""
"There isn't a software package called \"%s\" in your current software "
"sources."
msgstr ""

#: ../softwarecenter/db/application.py:487
#, python-format
msgid "Version %s or later not available."
msgstr ""

#: ../softwarecenter/db/application.py:500
#, python-format
msgid "Available from the \"%s\" source."
msgstr ""

#. Translators: the visible string is constructed concatenating
#. the following 3 strings like this:
#. Available from the following sources: %s, ... %s, %s.
#: ../softwarecenter/db/application.py:505
msgid "Available from the following sources: "
msgstr ""

#: ../softwarecenter/db/application.py:508
#, python-format
msgid "\"%s\", "
msgstr ""

#: ../softwarecenter/db/application.py:509
#, python-format
msgid "\"%s\"."
msgstr ""

#: ../softwarecenter/db/application.py:585
#, python-format
msgid "The file \"%s\" does not exist."
msgstr ""

#: ../softwarecenter/db/application.py:590
#, python-format
msgid "The file \"%s\" is not a software package."
msgstr ""

#. hm, deb files from launchpad get this error..
#: ../softwarecenter/db/application.py:593
msgid "Internal Error"
msgstr ""

#: ../softwarecenter/db/application.py:594
#, python-format
msgid "The file \"%s\" could not be opened."
msgstr ""

#: ../softwarecenter/db/application.py:686
msgid "Only install this file if you trust the origin."
msgstr ""

#: ../softwarecenter/db/application.py:691
#: ../softwarecenter/db/application.py:693
#, python-format
msgid ""
"Please install \"%s\" via your normal software channels. Only install this "
"file if you trust the origin."
msgstr ""

#: ../softwarecenter/db/application.py:695
#, python-format
msgid ""
"An older version of \"%s\" is available in your normal software channels. "
"Only install this file if you trust the origin."
msgstr ""

#. TRANSLATORS: List of "grey-listed" words sperated with ";"
#. Do not translate this list directly. Instead,
#. provide a list of words in your language that people are likely
#. to include in a search but that should normally be ignored in
#. the search.
#: ../softwarecenter/db/database.py:97
msgid "app;application;package;program;programme;suite;tool"
msgstr ""

#. WARNING: item.name needs to be different than
#. the item.name in the DB otherwise the DB
#. gets confused about (appname, pkgname) duplication
#: ../softwarecenter/db/update.py:358
#, python-format
msgid "%s (already purchased)"
msgstr ""

#: ../softwarecenter/distro/Debian.py:44
msgid "Provided by Debian"
msgstr ""

#: ../softwarecenter/distro/Debian.py:47 ../softwarecenter/distro/Ubuntu.py:57
#, python-format
msgid "To remove %s, these items must be removed as well:"
msgstr ""

#: ../softwarecenter/distro/Debian.py:49 ../softwarecenter/distro/Ubuntu.py:59
msgid "Remove All"
msgstr ""

#: ../softwarecenter/distro/Debian.py:54 ../softwarecenter/distro/Ubuntu.py:64
#, python-format
msgid ""
"If you uninstall %s, future updates will not include new items in <b>%s</b> "
"set. Are you sure you want to continue?"
msgstr ""

#: ../softwarecenter/distro/Debian.py:57 ../softwarecenter/distro/Debian.py:68
#: ../softwarecenter/distro/Ubuntu.py:67 ../softwarecenter/distro/Ubuntu.py:78
msgid "Remove Anyway"
msgstr ""

#: ../softwarecenter/distro/Debian.py:64
#, python-format
msgid ""
"%s is a core application in Debian. Uninstalling it may cause future "
"upgrades to be incomplete. Are you sure you want to continue?"
msgstr ""

#: ../softwarecenter/distro/Debian.py:82 ../softwarecenter/distro/Ubuntu.py:92
msgid "Open source"
msgstr ""

#: ../softwarecenter/distro/Debian.py:84
msgid "Open source, with proprietary parts"
msgstr ""

#: ../softwarecenter/distro/Debian.py:86 ../softwarecenter/distro/Ubuntu.py:94
msgid "Proprietary"
msgstr ""

#: ../softwarecenter/distro/__init__.py:46
msgid ""
"Lets you choose from thousands of applications available for your system."
msgstr ""

#: ../softwarecenter/distro/__init__.py:87
#, python-format
msgid "To install %s, these items must be removed:"
msgstr ""

#: ../softwarecenter/distro/__init__.py:88
#: ../softwarecenter/distro/__init__.py:96
#: ../softwarecenter/distro/__init__.py:106
msgid "Install Anyway"
msgstr ""

#: ../softwarecenter/distro/__init__.py:93
#, python-format
msgid ""
"If you install %s, future updates will not include new items in <b>%s</b> "
"set. Are you sure you want to continue?"
msgstr ""

#: ../softwarecenter/distro/__init__.py:103
#, python-format
msgid ""
"Installing %s may cause core applications to be removed. Are you sure you "
"want to continue?"
msgstr ""

#: ../softwarecenter/distro/Ubuntu.py:46
msgid "Lets you choose from thousands of applications available for Ubuntu."
msgstr ""

#: ../softwarecenter/distro/Ubuntu.py:54
msgid "Provided by Ubuntu"
msgstr ""

#: ../softwarecenter/distro/Ubuntu.py:74
#, python-format
msgid ""
"%s is a core application in Ubuntu. Uninstalling it may cause future "
"upgrades to be incomplete. Are you sure you want to continue?"
msgstr ""

#: ../softwarecenter/distro/Ubuntu.py:162
#: ../softwarecenter/distro/Ubuntu.py:174
#, python-format
msgid ""
"Canonical does no longer provide updates for %s in Ubuntu %s. Updates may be "
"available in a newer version of Ubuntu."
msgstr ""

#: ../softwarecenter/distro/Ubuntu.py:167
#, python-format
msgid ""
"Canonical provides critical updates for %(appname)s until "
"%(support_end_month_str)s %(support_end_year)s."
msgstr ""

#: ../softwarecenter/distro/Ubuntu.py:179
#, python-format
msgid ""
"Canonical provides critical updates supplied by the developers of "
"%(appname)s until %(support_end_month_str)s %(support_end_year)s."
msgstr ""

#: ../softwarecenter/distro/Ubuntu.py:190
#, python-format
msgid ""
"Canonical does not provide updates for %s. Some updates may be provided by "
"the third party vendor."
msgstr ""

#: ../softwarecenter/distro/Ubuntu.py:194
#, python-format
msgid "Canonical provides critical updates for %s."
msgstr ""

#: ../softwarecenter/distro/Ubuntu.py:196
#, python-format
msgid "Canonical provides critical updates supplied by the developers of %s."
msgstr ""

#: ../softwarecenter/distro/Ubuntu.py:199
#, python-format
msgid ""
"Canonical does not provide updates for %s. Some updates may be provided by "
"the Ubuntu community."
msgstr ""

#: ../softwarecenter/models/viewswitcherlist.py:79
#: ../softwarecenter/view/availablepane.py:87
msgid "Get Software"
msgstr ""

#: ../softwarecenter/models/viewswitcherlist.py:83
#: ../softwarecenter/view/installedpane.py:57
msgid "Installed Software"
msgstr ""

#: ../softwarecenter/models/viewswitcherlist.py:92
msgid "History"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:252
msgid "Installing..."
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:255
#: ../softwarecenter/view/pendingview.py:105
msgid "Installing purchase…"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:259
msgid "Removing..."
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:262
msgid "Upgrading..."
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:267
#: ../softwarecenter/view/appdetailsview_gtk.py:287
#, python-format
msgid "Purchased on %s"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:270
#, python-format
msgid "Installed on %s"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:272
#: ../softwarecenter/view/appdetailsview_webkit.py:242
msgid "Installed"
msgstr ""

#. only deb files atm
#: ../softwarecenter/view/appdetailsview_gtk.py:274
#: ../softwarecenter/view/appdetailsview_webkit.py:433
msgid "Reinstall"
msgstr ""

#. we want to re-enable the buy button if this is an app for purchase
#. FIXME:  hacky, find a better approach
#: ../softwarecenter/view/appdetailsview_gtk.py:284
#: ../softwarecenter/view/availablepane.py:552
#: ../softwarecenter/view/channelpane.py:181
msgid "Buy…"
msgstr ""

#. this is used when the pkg can not be installed
#. we display the error in the description field
#. string for action button
#. needs variants for the current label states: install, remove & pending
#: ../softwarecenter/view/appdetailsview_gtk.py:288
#: ../softwarecenter/view/appdetailsview_gtk.py:294
#: ../softwarecenter/view/appdetailsview_gtk.py:307
#: ../softwarecenter/view/appdetailsview_webkit.py:417
#: ../softwarecenter/view/appview.py:617
msgid "Install"
msgstr ""

#. its free
#: ../softwarecenter/view/appdetailsview_gtk.py:293
#: ../softwarecenter/view/appdetailsview_gtk.py:936
#: ../softwarecenter/view/appdetailsview_webkit.py:419
msgid "Free"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:296
msgid "Upgrade Available"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:297
msgid "Upgrade"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:299
msgid "Changing Add-ons…"
msgstr ""

#. FIXME: deal with the EULA stuff
#. FIXME: use a proper message here, but we are in string freeze
#: ../softwarecenter/view/appdetailsview_gtk.py:319
#: ../softwarecenter/view/appdetailsview_gtk.py:322
#: ../softwarecenter/view/appdetailsview_webkit.py:440
#: ../softwarecenter/view/appdetailsview_webkit.py:445
msgid "Use This Source"
msgstr ""

#. FIXME: This will currently not be displayed,
#. because we don't differenciate between
#. components that are not enabled or that just
#. lack the "Packages" files (but are in sources.list)
#: ../softwarecenter/view/appdetailsview_gtk.py:328
#: ../softwarecenter/view/appdetailsview_webkit.py:448
msgid "Update Now"
msgstr ""

#. unavailable layout
#: ../softwarecenter/view/appdetailsview_gtk.py:543
msgid "No screenshot"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:662
#: ../softwarecenter/view/appdetailsview_gtk.py:719
#: ../softwarecenter/view/appdetailsview_webkit.py:308
#, python-format
msgid "%s - Screenshot"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:712
#, python-format
msgid "%s - No screenshot available"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:732
msgid "Fetching screenshot ..."
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:863
msgid "Add-on"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:895
#, python-format
msgid "<b><span color=\"%s\">Add-ons</span></b>"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:941
msgid "Apply Changes"
msgstr ""

#. TRANSLATORS: apt:%(pkgname) is the apt protocol
#: ../softwarecenter/view/appdetailsview_gtk.py:1167
#: ../softwarecenter/view/appdetailsview_webkit.py:321
#, python-format
msgid "Check out %(appname)s! apt:%(pkgname)s"
msgstr ""

#. homepage link button
#: ../softwarecenter/view/appdetailsview_gtk.py:1268
#: ../softwarecenter/view/appdetailsview_webkit.py:245
msgid "Website"
msgstr ""

#. share app with microbloggers button
#: ../softwarecenter/view/appdetailsview_gtk.py:1275
msgid "Share..."
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:1278
msgid "Share via a micro-blogging service..."
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:1293
msgid "Total size:"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:1299
msgid "Version:"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:1302
msgid "License:"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:1305
msgid "Updates:"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:1504
msgid "Find it in the menu: "
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:1854
#, python-format
msgid "%sB to download, "
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:1857
#, python-format
msgid "%sB when installed"
msgstr ""

#. FIXME: this is not really a good indication of the size on disk
#: ../softwarecenter/view/appdetailsview_gtk.py:1865
#, python-format
msgid "%sB on disk"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:1868
#, python-format
msgid "%sB to be freed"
msgstr ""

#: ../softwarecenter/view/appdetailsview_gtk.py:1892
#, python-format
msgid "Used: one time"
msgid_plural "Used: %(amount)s times"
msgstr[0] ""
msgstr[1] ""

#: ../softwarecenter/view/appdetailsview_webkit.py:74
msgid "Description"
msgstr ""

#: ../softwarecenter/view/appdetailsview_webkit.py:126
#, python-format
msgid ""
"This software is available from the '%s' source, which you are not currently "
"using."
msgstr ""

#: ../softwarecenter/view/appdetailsview_webkit.py:131
msgid ""
"To show information about this item, the software catalog needs updating."
msgstr ""

#: ../softwarecenter/view/appdetailsview_webkit.py:137
msgid "This software is available for pay."
msgstr ""

#. if we don't have a package and it has no arch/component its
#. not available for us
#: ../softwarecenter/view/appdetailsview_webkit.py:141
#, python-format
msgid "Sorry, '%s' is not available for this type of computer (%s)."
msgstr ""

#: ../softwarecenter/view/appdetailsview_webkit.py:192
msgid "Application Screenshot"
msgstr ""

#: ../softwarecenter/view/appdetailsview_webkit.py:227
#, python-format
msgid "Version: %s (%s)"
msgstr ""

#: ../softwarecenter/view/appdetailsview_webkit.py:240
#, python-format
msgid "Installed since %s"
msgstr ""

#: ../softwarecenter/view/appdetailsview_webkit.py:248
msgid "Share via microblog"
msgstr ""

#: ../softwarecenter/view/appdetailsview_webkit.py:265
msgid "No screenshot available"
msgstr ""

#: ../softwarecenter/view/appdetailsview_webkit.py:420
msgid "Install - Free"
msgstr ""

#: ../softwarecenter/view/appdetailsview_webkit.py:430
#, python-format
msgid "Buy for %s"
msgstr ""

#. translatable labels for cell buttons
#. string for info button, currently does not need any variants
#: ../softwarecenter/view/appview.py:613
msgid "More Info"
msgstr ""

#: ../softwarecenter/view/availablepane.py:225
msgid "Custom List"
msgstr ""

#: ../softwarecenter/view/availablepane.py:227
#: ../softwarecenter/view/softwarepane.py:439
msgid "Search Results"
msgstr ""

#: ../softwarecenter/view/availablepane.py:311
#, python-format
msgid "%(amount)s item"
msgid_plural "%(amount)s items"
msgstr[0] ""
msgstr[1] ""

#: ../softwarecenter/view/availablepane.py:315
#: ../softwarecenter/view/channelpane.py:222
#: ../softwarecenter/view/channelpane.py:231
#: ../softwarecenter/view/installedpane.py:145
#, python-format
msgid "%(amount)s matching item"
msgid_plural "%(amount)s matching items"
msgstr[0] ""
msgstr[1] ""

#: ../softwarecenter/view/availablepane.py:319
#: ../softwarecenter/view/channelpane.py:235
#, python-format
msgid "%(amount)s item available"
msgid_plural "%(amount)s items available"
msgstr[0] ""
msgstr[1] ""

#: ../softwarecenter/view/availablepane.py:337
#, python-format
msgid "Install %(amount)s Item"
msgid_plural "Install %(amount)s Items"
msgstr[0] ""
msgstr[1] ""

#: ../softwarecenter/view/availablepane.py:657
msgid "Previous Purchases"
msgstr ""

#: ../softwarecenter/view/catview_gtk.py:117
#: ../softwarecenter/view/catview_gtk.py:492
#: ../softwarecenter/view/catview_webkit.py:72
#: ../softwarecenter/view/catview_webkit.py:82
msgid "Departments"
msgstr ""

#. Translators: full sentence will be: Welcome back! There is/are %(len)i new recommendation/s for you.
#: ../softwarecenter/view/catview_gtk.py:327
msgid "Welcome back! There is"
msgid_plural "Welcome back! There are"
msgstr[0] ""
msgstr[1] ""

#. Translators: full sentence will be: Welcome back! There is/are %(len)i new recommendation/s for you.
#: ../softwarecenter/view/catview_gtk.py:332
#, python-format
msgid "%(len)i new recommendation"
msgid_plural "%(len)i new recommendations"
msgstr[0] ""
msgstr[1] ""

#. Translators: full sentence will be: Welcome back! There is/are %(len)i new recommendation/s for you.
#: ../softwarecenter/view/catview_gtk.py:342
msgid "for you."
msgstr ""

#. build category
#: ../softwarecenter/view/catview_gtk.py:346
msgid "Recommendations"
msgstr ""

#. append an additional button to show all of the items in the category
#: ../softwarecenter/view/catview_gtk.py:589
#, python-format
msgid "All %s"
msgstr ""

#: ../softwarecenter/view/catview_gtk.py:591
#: ../softwarecenter/view/catview_gtk.py:649
msgid "All"
msgstr ""

#: ../softwarecenter/view/catview_gtk.py:655
#, python-format
msgid "%s section: show all"
msgstr ""

#: ../softwarecenter/view/catview_gtk.py:1227
#, python-format
msgid "Go to page %d"
msgstr ""

#: ../softwarecenter/view/channelpane.py:66
msgid "Software Channels"
msgstr ""

#: ../softwarecenter/view/channelpane.py:111
msgid "Add channel"
msgstr ""

#: ../softwarecenter/view/channelpane.py:112
msgid "The selected channel is not yet added. Do you want to add it now?"
msgstr ""

#: ../softwarecenter/view/channelpane.py:226
#: ../softwarecenter/view/installedpane.py:149
#, python-format
msgid "%(amount)s item installed"
msgid_plural "%(amount)s items installed"
msgstr[0] ""
msgstr[1] ""

#. FIXME: make this a generic pkgview widget
#: ../softwarecenter/view/dependency_dialogs.py:134
msgid "Dependency"
msgstr ""

#: ../softwarecenter/view/historypane.py:85
msgid "<span size=\"x-large\">History</span>"
msgstr ""

#: ../softwarecenter/view/historypane.py:100
msgid "All Changes"
msgstr ""

#: ../softwarecenter/view/historypane.py:105
msgid "Installations"
msgstr ""

#: ../softwarecenter/view/historypane.py:111
msgid "Updates"
msgstr ""

#: ../softwarecenter/view/historypane.py:117
msgid "Removals"
msgstr ""

#. make a spinner to display while history is loading
#: ../softwarecenter/view/historypane.py:134
msgid "Loading history"
msgstr ""

#: ../softwarecenter/view/historypane.py:156
msgid "Date"
msgstr ""

#: ../softwarecenter/view/historypane.py:236
#, python-format
msgid "%d changes"
msgstr ""

#: ../softwarecenter/view/historypane.py:311
#, python-format
msgid "%(pkgname)s installed %(time)s"
msgstr ""

#: ../softwarecenter/view/historypane.py:313
#, python-format
msgid "%(pkgname)s removed %(time)s"
msgstr ""

#: ../softwarecenter/view/historypane.py:315
#, python-format
msgid "%(pkgname)s updated %(time)s"
msgstr ""

#. Current week, display the name of the day
#: ../softwarecenter/view/historypane.py:321
msgid "%A"
msgstr ""

#. Current year, display the day and month
#: ../softwarecenter/view/historypane.py:325
msgid "%d %B"
msgstr ""

#. Display the full date: day, month, year
#: ../softwarecenter/view/historypane.py:328
msgid "%d %B %Y"
msgstr ""

#: ../softwarecenter/view/logindialog.py:84
msgid "Authentication failure"
msgstr ""

#: ../softwarecenter/view/logindialog.py:85
msgid "Sorry, please try again"
msgstr ""

#: ../softwarecenter/view/pendingview.py:191
#, python-format
msgid "Downloaded %sB of %sB"
msgstr ""

#: ../softwarecenter/view/purchaseview.py:87
msgid "Connecting to payment service..."
msgstr ""

#: ../softwarecenter/view/softwarepane.py:274
msgid "Buy"
msgstr ""

#: ../softwarecenter/view/softwarepane.py:290
msgid "Failure in the purchase process."
msgstr ""

#: ../softwarecenter/view/softwarepane.py:291
msgid "Sorry, something went wrong. Your payment has been cancelled."
msgstr ""

#. TRANSLATORS: the text inbetween the underscores acts as a link
#. In most/all languages you will want the whole string as a link
#: ../softwarecenter/view/softwarepane.py:374
#, python-format
msgid "_Hide %(amount)i technical item_"
msgid_plural "_Hide %(amount)i technical items_"
msgstr[0] ""
msgstr[1] ""

#: ../softwarecenter/view/softwarepane.py:379
#, python-format
msgid "_Show %(amount)i technical item_"
msgid_plural "_Show %(amount)i technical items_"
msgstr[0] ""
msgstr[1] ""

#: ../softwarecenter/view/softwarepane.py:391
msgid ""
"Search term not found in current category, do you want to search <a href="
"\"search-all:\">all categories</a> instead ?"
msgstr ""

#: ../softwarecenter/view/softwarepane.py:399
#, python-format
msgid "Search term not found, did you mean: %s ?"
msgstr ""

#: ../softwarecenter/view/viewswitcher.py:202
msgid "Software sources"
msgstr ""

#: ../softwarecenter/view/widgets/backforward.py:63
msgid "History Navigation"
msgstr ""

#: ../softwarecenter/view/widgets/backforward.py:64
msgid "Navigate forwards and backwards."
msgstr ""

#: ../softwarecenter/view/widgets/backforward.py:78
#: ../softwarecenter/view/widgets/backforward.py:92
msgid "Back Button"
msgstr ""

#: ../softwarecenter/view/widgets/backforward.py:79
#: ../softwarecenter/view/widgets/backforward.py:93
msgid "Navigates back."
msgstr ""

#: ../softwarecenter/view/widgets/backforward.py:84
#: ../softwarecenter/view/widgets/backforward.py:98
msgid "Forward Button"
msgstr ""

#: ../softwarecenter/view/widgets/backforward.py:85
#: ../softwarecenter/view/widgets/backforward.py:99
msgid "Navigates forward."
msgstr ""

#: ../softwarecenter/view/widgets/pathbar_gtk_atk.py:64
msgid "You are here:"
msgstr ""

#: ../softwarecenter/view/widgets/pathbar_gtk_atk.py:585
#: ../softwarecenter/view/widgets/pathbar_gtk_atk.py:687
#, python-format
msgid "Navigates to the %s page."
msgstr ""

#: ../softwarecenter/view/widgets/searchentry.py:54
msgid "Search"
msgstr ""