1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
|
# Kontrolni Center slovenski prevod
# Copyright (C) 2000 Free Software Foundation, Inc.
# Andraz Tori <andraz.tori1@guest.arnes.si>, 2000.
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center\n"
"POT-Creation-Date: 2002-03-10 18:10+0100\n"
"PO-Revision-Date: 2001-08-19 14:26+0200\n"
"Last-Translator: Andraz Tori <andraz.tori1@guest.arnes.si>\n"
"Language-Team: Slovenian <sl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
#: capplets/background/background.desktop.in.h:1
msgid "Background"
msgstr "Ozadje"
#: capplets/background/background.desktop.in.h:2
msgid "Configuration of the desktop's background"
msgstr "Nastavitev ozadja namizja"
#: capplets/background/background-properties-capplet.c:238
msgid "Please select a background image"
msgstr "Prosim, izberite sliko ozadja"
#: capplets/background/background-properties-capplet.c:292
#: capplets/common/capplet-util.c:243
#: capplets/default-applications/gnome-default-applications-properties.c:575
#: capplets/keyboard/gnome-keyboard-properties.c:319
#: capplets/mouse/gnome-mouse-properties.c:679
#: capplets/sound/sound-properties-capplet.c:138
msgid "Retrieve and store legacy settings"
msgstr "Prenesi in shrani zapuščene nastavitve"
#: capplets/background/background-properties-capplet.c:315
msgid "Background properties"
msgstr "Lastnosti ozadja"
#: capplets/background/background-properties.glade.h:1
msgid "Background colors"
msgstr "Barve ozadja"
#: capplets/background/background-properties.glade.h:2
msgid "Background picture"
msgstr "Slika v ozadju"
#: capplets/background/background-properties.glade.h:3
msgid "Centered"
msgstr "Na sredini"
#: capplets/background/background-properties.glade.h:4
msgid "Horizontal gradient"
msgstr "Vodoravni preliv"
#: capplets/background/background-properties.glade.h:5
msgid "Image:"
msgstr "Slika:"
#: capplets/background/background-properties.glade.h:6
msgid "Pick a color"
msgstr "Izberi barvo"
#: capplets/background/background-properties.glade.h:7
msgid "Scaled (keep aspect ratio)"
msgstr "Raztegnjeno (ohrani razmerja)"
#: capplets/background/background-properties.glade.h:8
msgid "Solid color"
msgstr "Barva polnjenja"
#: capplets/background/background-properties.glade.h:9
msgid "Stretched"
msgstr "Raztegnjeno"
#: capplets/background/background-properties.glade.h:10
msgid "Style:"
msgstr "Slog:"
#: capplets/background/background-properties.glade.h:11
msgid "Tiled"
msgstr "Tlakovano"
#: capplets/background/background-properties.glade.h:12
msgid "Use a picture for the background"
msgstr "Uporabi sliko za ozadje"
#: capplets/background/background-properties.glade.h:13
msgid "Vertical gradient"
msgstr "Navpični preliv"
#: capplets/common/capplet-util.c:239 capplets/common/capplet-util.c:241
msgid "Just apply settings and quit"
msgstr "Le uveljavi nastavitve in končaj"
#: capplets/common/gconf-property-editor.c:145
msgid "Key"
msgstr "Ključ"
#: capplets/common/gconf-property-editor.c:146
msgid "GConf key to which this property editor is attached"
msgstr "Ključ GConf na katerega je pripet urejevalnik te lastnosti"
#: capplets/common/gconf-property-editor.c:152
msgid "Callback"
msgstr "Povratni klic"
#: capplets/common/gconf-property-editor.c:153
msgid "Issue this callback when the value associated with key gets changed"
msgstr ""
"Izvedi ta povratni klic, kadar se spremeni vrednost povezana s tem ključem"
#: capplets/common/gconf-property-editor.c:158
msgid "Change set"
msgstr "Množica sprememb"
#: capplets/common/gconf-property-editor.c:159
msgid ""
"GConf change set containing data to be forwarded to the gconf client on apply"
msgstr ""
"Množica sprememb GConf, ki vsebuje podatke, ki bodo posredovane odjemalcem "
"gconf ob uveljavljanju"
#: capplets/common/gconf-property-editor.c:164
msgid "Conversion to widget callback"
msgstr "Pretvorba v povratni klic gradnika"
#: capplets/common/gconf-property-editor.c:165
msgid ""
"Callback to be issued when data are to be converted from GConf to the widget"
msgstr ""
"Povratni klic, ki se izvede, ko se mora podatke prevesti iz GConfa v gradnik"
#: capplets/common/gconf-property-editor.c:170
msgid "Conversion from widget callback"
msgstr "Pretvorba iz povratnega klica gradnika"
#: capplets/common/gconf-property-editor.c:171
msgid ""
"Callback to be issued when data are to be converted to GConf from the widget"
msgstr ""
"Povratni klic, ki se izvede, ko se mora podatke prevesti iz gradnika v GConf"
#: capplets/common/gconf-property-editor.c:176
msgid "UI Control"
msgstr "Nadzor uporabniškega vmesnika"
#: capplets/common/gconf-property-editor.c:177
msgid "Object that controls the property (normally a widget)"
msgstr "Predmet, ki nadzira lastnosti (običajno gradnik)"
#: capplets/default-applications/default-applications.desktop.in.h:1
msgid "Choose the applications used by default"
msgstr "Spremeni privzet program"
#: capplets/default-applications/default-applications.desktop.in.h:2
msgid "Preferred Applications"
msgstr "Zaželeni programi"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:1
msgid "Acce_pts URLs"
msgstr "Sprejme _URLje"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:2
msgid "Accepts Line _Number"
msgstr "Sprejme številke _vrstic"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:3
msgid "C_ustom Editor:"
msgstr "_Poljuben urejevalnik:"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:4
msgid "C_ustom Help Browser:"
msgstr "_Poljuben brskalnik pomoči:"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:5
msgid "C_ustom Terminal:"
msgstr "_Poljuben terminal:"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:6
msgid "C_ustom Web Browser:"
msgstr "_Poljuben brskalnik:"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:7
msgid "Co_mmand:"
msgstr "_Ukaz:"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:8
msgid "Default Applications"
msgstr "Privzeti programi"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:9
msgid "Default Help Browser"
msgstr "Privzet brskalnik po pomoči"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:10
msgid "Default Terminal"
msgstr "Privzet terminal"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:11
msgid "Default Text Editor"
msgstr "Privzet urejevalnik besedila"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:12
msgid "Default Web Browser"
msgstr "Privzet spletni brskalnik"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:13
msgid "Default Window Manager"
msgstr "Privzet upravljalnik oken"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:14
msgid "E_xec Flag:"
msgstr "P_arameter za zagon:"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:15
msgid "He_lp Browser"
msgstr "Brskalnik po _pomoči"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:16
msgid ""
"Select the window manager you want. You will need to hit apply, wave the "
"magic wand, and do a magic dance for it to work."
msgstr ""
"Izberite upravljalnika oken, ki si ga želite. Morali boste pritisniti "
"uveljavi, zamahniti z čarobno palico in opraviti čarovniški ples, da bi "
"stvar delovala."
#: capplets/default-applications/gnome-default-applications-properties.glade.h:17
msgid "Start in T_erminal"
msgstr "Poženi v t_erminalu"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:18
msgid "Te_rminal"
msgstr "Te_rminal"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:19
msgid "Understands _Netscape Remote Control"
msgstr "Razume oddaljeno kontrolo _Netscape"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:20
msgid "Web _Browser"
msgstr "Spletni _brskalnik"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:21
msgid "_Add..."
msgstr "_Dodaj..."
#: capplets/default-applications/gnome-default-applications-properties.glade.h:22
msgid "_Delete"
msgstr "_Zbriši"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:23
msgid "_Edit..."
msgstr "_Uredi..."
#: capplets/default-applications/gnome-default-applications-properties.glade.h:24
msgid "_Select a Help Browser:"
msgstr "_Izberite brskalnik pomoči:"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:25
msgid "_Select a Terminal:"
msgstr "_Izberite terminal:"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:26
msgid "_Select a Web Browser:"
msgstr "_Izberite spletni brskalnik:"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:27
msgid "_Select an Editor:"
msgstr "_Izberite urejevalnik:"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:28
msgid "_Text Editor"
msgstr "Urejevalnik _besedil"
#: capplets/default-applications/gnome-default-applications-properties.glade.h:29
msgid "_Window Manager"
msgstr "Upravljalnik _oken"
#: capplets/desktop-links/Advanced.directory.in.in.h:1
msgid "Advanced"
msgstr "Napredno"
#: capplets/desktop-links/Advanced.directory.in.in.h:2
msgid "Advanced Settings"
msgstr "Napredne nastavitve"
#: capplets/desktop-links/cd.desktop.in.in.h:1
msgid "CD Properties"
msgstr "Lastnosti CDja"
#: capplets/desktop-links/cd.desktop.in.in.h:2
msgid "Configure handling of CD devices"
msgstr "Nastavi obnašanje naprav CD"
#: capplets/desktop-links/legacy-applications.desktop.in.in.h:1
msgid "Legacy Applications"
msgstr "Starejši programi"
#: capplets/desktop-links/legacy-applications.desktop.in.in.h:2
msgid "Legacy applications settings (grdb)"
msgstr "Nastavitev starejših programov (grdb)"
#: capplets/desktop-links/Sawfish/appearance-properties.desktop.in.h:1
#: control-center/gnomecc.glade.h:1
msgid "Appearance"
msgstr "Videz"
#: capplets/desktop-links/Sawfish/appearance-properties.desktop.in.h:2
msgid "Configure window appearance"
msgstr "Nastavi videz oken"
#: capplets/desktop-links/Sawfish/bindings-properties.desktop.in.h:1
msgid "Configure key shortcuts"
msgstr "Nastavi tipkovnične povezave"
#: capplets/desktop-links/Sawfish/bindings-properties.desktop.in.h:2
msgid "Shortcuts"
msgstr "Bližnjice"
#: capplets/desktop-links/Sawfish/focus-properties.desktop.in.h:1
msgid "Configure window focusing"
msgstr "Nastavi fokusiranje oken"
#: capplets/desktop-links/Sawfish/focus-properties.desktop.in.h:2
msgid "Focus behavior"
msgstr "Obnašanje fokusa"
#: capplets/desktop-links/Sawfish/match-properties.desktop.in.h:1
msgid "Configure window properties"
msgstr "Nastavi lastnosti oken"
#: capplets/desktop-links/Sawfish/match-properties.desktop.in.h:2
msgid "Matched Windows"
msgstr "Ustrezajoča okna"
#: capplets/desktop-links/Sawfish/maximize-properties.desktop.in.h:1
msgid "Configure window minimization and maximization"
msgstr "Nastavi razpenjanje in krčenje oken"
#: capplets/desktop-links/Sawfish/maximize-properties.desktop.in.h:2
msgid "Minimizing and Maximizing"
msgstr "Razpenjanje in krčenje"
#: capplets/desktop-links/Sawfish/meta-properties.desktop.in.h:1
msgid "Configure window manager configuration properties"
msgstr "Nastavi možnosti upravljalnika oken"
#: capplets/desktop-links/Sawfish/meta-properties.desktop.in.h:2
msgid "Meta"
msgstr "Alt"
#: capplets/desktop-links/Sawfish/misc-properties.desktop.in.h:1
msgid "Configure miscellaneous window features"
msgstr "Nastavi razne okenske možnosti"
#: capplets/desktop-links/Sawfish/misc-properties.desktop.in.h:2
msgid "Miscellaneous"
msgstr "Razno"
#: capplets/desktop-links/Sawfish/move-properties.desktop.in.h:1
msgid "Configure window move/resize"
msgstr "Nastavi premikanje in spreminjanje velikosti oken"
#: capplets/desktop-links/Sawfish/move-properties.desktop.in.h:2
msgid "Moving and Resizing"
msgstr "Premikanje in spreminjanje velikosti"
#: capplets/desktop-links/Sawfish/placement-properties.desktop.in.h:1
msgid "Configure window placement"
msgstr "Nastavi položaj okna"
#: capplets/desktop-links/Sawfish/placement-properties.desktop.in.h:2
msgid "Placement"
msgstr "Določanje lege oken"
#: capplets/desktop-links/Sawfish/Sawfish.directory.in.in.h:1
msgid "Control Center Menu"
msgstr "Menu kontrolnega centra"
#: capplets/desktop-links/Sawfish/Sawfish.directory.in.in.h:2
msgid "Sawfish window manager"
msgstr "Sawfish upravljalnik oken"
#: capplets/desktop-links/Sawfish/sound-properties.desktop.in.h:1
msgid "Enable window manager sound events"
msgstr "Vklopi zvočne dogodke upravljalnika oken"
#: capplets/desktop-links/Sawfish/sound-properties.desktop.in.h:2
#: capplets/sound/sound.desktop.in.h:2
msgid "Sound"
msgstr "Zvok"
#: capplets/desktop-links/Sawfish/workspace-properties.desktop.in.h:1
msgid "Configure workspaces"
msgstr "Nastavi delovne površine"
#: capplets/desktop-links/Sawfish/workspace-properties.desktop.in.h:2
msgid "Workspaces"
msgstr "Delovne površine"
#.
#. * Translatable strings file
#. * Add this file to your project's POTFILES.in.
#. * DO NOT compile it as part of your application.
#.
#: capplets/file-types/category-names.h:7
msgid "Documents"
msgstr "Dokumenti"
#: capplets/file-types/category-names.h:8
msgid "Word Processor"
msgstr "Urejevalnik besedila"
#: capplets/file-types/category-names.h:9
msgid "Published Materials"
msgstr "Objavljeni materiali"
#: capplets/file-types/category-names.h:10
msgid "Spreadsheet"
msgstr "Preglednica"
#: capplets/file-types/category-names.h:11
msgid "Presentation"
msgstr "Predstavitev"
#: capplets/file-types/category-names.h:12
msgid "Diagram"
msgstr "Diagram"
#: capplets/file-types/category-names.h:13
msgid "TeX"
msgstr "TeX"
#: capplets/file-types/category-names.h:14
msgid "Vector Graphics"
msgstr "Vektorska grafika"
#: capplets/file-types/category-names.h:15
msgid "World Wide Web"
msgstr "Svetovni splet"
#: capplets/file-types/category-names.h:16
msgid "Plain Text"
msgstr "Navadno besedilo"
#: capplets/file-types/category-names.h:17
msgid "Extended Markup Language (XML)"
msgstr "Razširjen označevalni jezik (XML)"
#: capplets/file-types/category-names.h:18
msgid "Information"
msgstr "Podatki"
#: capplets/file-types/category-names.h:19
msgid "Financial"
msgstr "Finance"
#: capplets/file-types/category-names.h:20
msgid "Calendar"
msgstr "Koledar"
#: capplets/file-types/category-names.h:21
msgid "Contacts"
msgstr "Stiki"
#: capplets/file-types/category-names.h:22
msgid "Packages"
msgstr "Paketi"
#: capplets/file-types/category-names.h:23
msgid "Software Development"
msgstr "Razvoj programja"
#: capplets/file-types/category-names.h:24
msgid "Source Code"
msgstr "Izvorna koda"
#: capplets/file-types/category-names.h:25
#: capplets/file-types/mime-type-info.c:745
msgid "Audio"
msgstr "Zvok"
#: capplets/file-types/category-names.h:26
#: capplets/file-types/mime-type-info.c:741
msgid "Images"
msgstr "Slike"
#: capplets/file-types/category-names.h:27
#: capplets/file-types/mime-type-info.c:743
msgid "Video"
msgstr "Video"
#: capplets/file-types/file-types-capplet.c:212
#: capplets/file-types/file-types-properties.glade.h:8
msgid "Description"
msgstr "Opis"
#: capplets/file-types/file-types-capplet.c:219
msgid "Extensions"
msgstr "Razširitve"
#: capplets/file-types/file-types.desktop.in.h:1
msgid "File Types and Programs"
msgstr "Vrste datotek in programi"
#: capplets/file-types/file-types.desktop.in.h:2
msgid "Specify which programs are used to open or view each file type"
msgstr ""
"Določi kateri programi se uporabljajo za odpiranje ali pogled katerih tipov "
"datotek"
#: capplets/file-types/file-types-properties.glade.h:1
msgid "Actions"
msgstr "Dejanja"
#: capplets/file-types/file-types-properties.glade.h:2
msgid "Add"
msgstr "Dodaj"
#: capplets/file-types/file-types-properties.glade.h:3
msgid "Add file type..."
msgstr "Dodaj vrsto datoteke..."
#: capplets/file-types/file-types-properties.glade.h:4
msgid "Add service..."
msgstr "Dodaj storitev..."
#: capplets/file-types/file-types-properties.glade.h:5
#: capplets/file-types/mime-edit-dialog.c:748
msgid "Category"
msgstr "Kategorija"
#: capplets/file-types/file-types-properties.glade.h:6
msgid "Choose..."
msgstr "Izberi..."
#: capplets/file-types/file-types-properties.glade.h:7
msgid "Default action"
msgstr "Privzeto dejanje"
#: capplets/file-types/file-types-properties.glade.h:9
#: capplets/file-types/mime-edit-dialog.c:167
msgid "Edit file type"
msgstr "Uredi vrsto datoteke"
#: capplets/file-types/file-types-properties.glade.h:10
msgid "Edit..."
msgstr "Uredi..."
#: capplets/file-types/file-types-properties.glade.h:11
msgid "File types and Internet Services"
msgstr "Vrste datotek in internetne storitve"
#: capplets/file-types/file-types-properties.glade.h:12
msgid "Filename extensions"
msgstr "Pripone datotek"
#: capplets/file-types/file-types-properties.glade.h:13
msgid "Look at content"
msgstr "Poglej vsebino"
#: capplets/file-types/file-types-properties.glade.h:14
msgid "MIME Type"
msgstr "Vrsta MIME"
#: capplets/file-types/file-types-properties.glade.h:15
msgid "Name"
msgstr "Ime"
#: capplets/file-types/file-types-properties.glade.h:16
msgid "Needs terminal"
msgstr "Potrebuje terminal"
#: capplets/file-types/file-types-properties.glade.h:17
msgid "Program"
msgstr "Program"
#: capplets/file-types/file-types-properties.glade.h:18
msgid "Program to execute"
msgstr "Program, ki naj se požene"
#: capplets/file-types/file-types-properties.glade.h:19
msgid "Program to run"
msgstr "Program, ki naj se požene"
#: capplets/file-types/file-types-properties.glade.h:20
msgid "Protocol name"
msgstr "Ime protokola"
#: capplets/file-types/file-types-properties.glade.h:21
msgid "Remove"
msgstr "Odstrani"
#: capplets/file-types/file-types-properties.glade.h:22
msgid "Run a program"
msgstr "Poženi program"
#: capplets/file-types/file-types-properties.glade.h:23
msgid "Use category defaults"
msgstr "Uporabi privzete nastavitve kategorije"
#: capplets/file-types/file-types-properties.glade.h:24
msgid "Use parent category defaults"
msgstr "Uporabi privzete nastavitve starševske kategorije"
#: capplets/file-types/file-types-properties.glade.h:25
msgid "Viewing component"
msgstr "Komponenta pogleda"
#: capplets/file-types/mime-category-edit-dialog.c:137
msgid "Edit file category"
msgstr "Uredi kategorijo datoteke"
#: capplets/file-types/mime-category-edit-dialog.c:171
#: capplets/file-types/mime-edit-dialog.c:204
#: capplets/file-types/service-edit-dialog.c:166
#: capplets/file-types/service-edit-dialog.c:167
msgid "Model"
msgstr "Model"
#: capplets/file-types/mime-category-edit-dialog.c:172
msgid "GtkTreeModel that contains the category data"
msgstr "GtkTreeModel, ki vsebuje podatke o kategorijah"
#: capplets/file-types/mime-category-edit-dialog.c:177
msgid "MIME category info"
msgstr "Podatki o kategoriji MIME"
#: capplets/file-types/mime-category-edit-dialog.c:178
msgid "Structure containing information on the MIME category"
msgstr "Struktura, ki vsebuje podatke o kategoriji MIME"
#: capplets/file-types/mime-category-edit-dialog.c:343
#: capplets/file-types/mime-edit-dialog.c:392
#: capplets/file-types/mime-edit-dialog.c:492
#: capplets/file-types/service-edit-dialog.c:351
#: capplets/file-types/service-edit-dialog.c:397
msgid "Custom"
msgstr "Prikrojeno"
#: capplets/file-types/mime-edit-dialog.c:164
msgid "Extension"
msgstr "Pripona"
#: capplets/file-types/mime-edit-dialog.c:205
msgid "Underlying model to notify when Ok is clicked"
msgstr "Model, ki naj se opozori, ko je kliknjen OK"
#: capplets/file-types/mime-edit-dialog.c:212
msgid "MIME type information"
msgstr "Podatki o vrsti MIME"
#: capplets/file-types/mime-edit-dialog.c:213
msgid "Structure with data on the MIME type"
msgstr "Podatki s podatki o vrsti MIME"
#: capplets/file-types/mime-edit-dialog.c:219
msgid "Is add dialog"
msgstr "Je dialog dodajanja"
#: capplets/file-types/mime-edit-dialog.c:220
msgid "True if this dialog is for adding a MIME type"
msgstr "Resnično, če je ta dialog za dodajanje vrst MIME"
#: capplets/file-types/mime-edit-dialog.c:387
#: capplets/file-types/mime-edit-dialog.c:442
msgid "None"
msgstr "Brez"
#: capplets/file-types/mime-edit-dialog.c:673
msgid ""
"Invalid MIME type. Please enter a valid MIME type, or leave the field blank "
"to have one generated for you."
msgstr ""
"Neveljavna vrsta MIME. Prosim, vnesite veljavno vrsto MIME, ali pustite "
"polje prazno, da se bo samodejno ustvarila."
#: capplets/file-types/mime-edit-dialog.c:684
msgid "There already exists a MIME type of that name."
msgstr "Vrsta MIME s takim imenom že obstaja"
#: capplets/file-types/mime-edit-dialog.c:753
msgid "Choose a file category"
msgstr "Izberite kategorijo datotek"
#: capplets/file-types/mime-types-model.c:167
#: capplets/file-types/mime-types-model.c:168
msgid "Model for categories only"
msgstr "Model le za kategorije"
#: capplets/file-types/mime-types-model.c:421
msgid "Internet Services"
msgstr "Internetne storitve"
#: capplets/file-types/service-edit-dialog.c:133
msgid "Edit service information"
msgstr "Uredi podatke o storitvi"
#: capplets/file-types/service-edit-dialog.c:174
msgid "Service info"
msgstr "Podatki o storitvi"
#: capplets/file-types/service-edit-dialog.c:175
msgid "Structure containing service information"
msgstr "Struktura, ki vsebuje podatke o storitvi"
#: capplets/file-types/service-edit-dialog.c:181
msgid "Is add"
msgstr "Je dodaj"
#: capplets/file-types/service-edit-dialog.c:182
msgid "TRUE if this is an add service dialog"
msgstr "RESNIČNO, če je to dialog dodajanja storitve"
#: capplets/file-types/service-edit-dialog.c:489
msgid "Please enter a protocol name."
msgstr "Prosim, vpišite ime protokola."
#: capplets/file-types/service-edit-dialog.c:502
msgid ""
"Invalid protocol name. Please enter a protocol name without any spaces or "
"punctuation."
msgstr ""
"Neveljavno ime protokola. Prosim, vpišite ime protokola brez presledkov ali "
"ločil."
#: capplets/file-types/service-edit-dialog.c:515
msgid "There is already a protocol by that name."
msgstr "Protokol s takim imenom že obstaja."
#: capplets/file-types/service-info.c:44
msgid "Unknown service types"
msgstr "Neznane vrste storitev"
#: capplets/file-types/service-info.c:45
msgid "World wide web"
msgstr "Svetovni splet"
#: capplets/file-types/service-info.c:46
msgid "File transfer protocol"
msgstr "Protokol za prenos datotek"
#: capplets/file-types/service-info.c:47
msgid "Detailed documentation"
msgstr "Podrobna dokumentacija"
#: capplets/file-types/service-info.c:48
msgid "Manual pages"
msgstr "Priročnik"
#: capplets/file-types/service-info.c:49
msgid "Electronic mail transmission"
msgstr "Prenos elektronske pošte"
#: capplets/font/font-properties.glade.h:1
msgid "Font properties"
msgstr "Lastnosti pisave"
#: capplets/font/font-properties.glade.h:2
msgid "Use a custom font."
msgstr "Uporabi poljubno pisavo."
#: capplets/font/font-properties.desktop.in.h:1
msgid "Font"
msgstr "Pisava"
#: capplets/font/font-properties.desktop.in.h:2
msgid "Select which font to use"
msgstr "Izberi pisavo za uporabo"
#: capplets/keyboard/gnome-keyboard-properties.c:315
#: capplets/keyboard/gnome-keyboard-properties.c:317
#: capplets/sound/sound-properties-capplet.c:134
#: capplets/sound/sound-properties-capplet.c:136
msgid ""
"Just apply settings and quit (compatibility only; now handled by daemon)"
msgstr ""
"Le uveljavi nastavitve in končaj (le za kompatibilnost; sedaj stvar "
"obravnava daemon)"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:1
msgid "<i>fast</i>"
msgstr "<i>hitro</i>"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:2
msgid "<i>loud</i>"
msgstr "<i>glasno</i>"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:3
msgid "<i>quiet</i>"
msgstr "<i>tiho</i>"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:4
msgid "<i>slow</i>"
msgstr "<i>počasno</i>"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:5
msgid "Cursor"
msgstr "Kazalec"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:6
msgid "Fast"
msgstr "Hitro"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:7
msgid "Key_press makes sound"
msgstr "_Pritisk tipke sproži zvok"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:8
msgid "Keyboard Bell"
msgstr "Tipkovničin zvonec"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:9
#: capplets/keyboard/keyboard.desktop.in.h:2
msgid "Keyboard Properties"
msgstr "Nastavitve tipkovnice"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:10
msgid "Keyboard _repeats when key is held down"
msgstr "Tipkovnica _ponavlja, ko je tipka pritisnjena"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:11
msgid "Keyboard bell _enabled"
msgstr "_Vključen zvonec tipkovnice"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:12
msgid "Keyboard bell _off"
msgstr "Tipkovnični zvonec je _izključen"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:13
msgid "Keyclick Volume"
msgstr "Glasnost klika tipk"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:14
msgid "Long"
msgstr "Dolgo"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:15
msgid "Medium"
msgstr "Srednje"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:16
msgid "Repeat Rate"
msgstr "Hitrost ponavljanja"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:17
msgid "Repeat s_peed:"
msgstr "Hitrost _ponavljanja:"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:18
msgid "Set the speed the cursor blinks in text fields."
msgstr "Nastavi hitrost utripanja kazalca v poljih besedil."
#: capplets/keyboard/gnome-keyboard-properties.glade.h:19
msgid "Set the volume of the clicking sound made when pressing a key"
msgstr "Nastavi glasnost zvoka klikanja ob pritisku tipke"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:20
msgid "Short"
msgstr "Hitro"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:21
msgid "Slow"
msgstr "Počasi"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:22
msgid ""
"The keyboard bell is the <i>beep</i> sound heard when the system "
"wants to get your attention. You can select a custom sound file to play "
"instead of the traditional beeping noise."
msgstr ""
"Tipkovničin zvonec je zvok <i>bip</i>, ki se sliši, ko sistem "
"želi vašo pozornost. Izberete lahko poljuben zvok, ki naj se zaigra namesto "
"tradicionalnega bipa."
#: capplets/keyboard/gnome-keyboard-properties.glade.h:23
msgid "Very fast"
msgstr "Zelo hitro"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:24
msgid "Very long"
msgstr "Zelo dolg"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:25
msgid "_Blink speed:"
msgstr "_Hitrost utripanja"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:26
msgid "_Cursor blinks in text fields"
msgstr "_Kazalec utripa v poljih besedil"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:27
msgid "_Custom keyboard bell:"
msgstr "_Poljuben tipkovničin zvonec:"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:28
msgid "_Delay before repeating:"
msgstr "_Premor pred ponovitvijo:"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:29
msgid "_Keyboard"
msgstr "_Tipkovnica"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:30
msgid "_Sound"
msgstr "_Zvok"
#: capplets/keyboard/gnome-keyboard-properties.glade.h:31
msgid "_Volume:"
msgstr "_Glasnost:"
#: capplets/keyboard/keyboard.desktop.in.h:1
msgid "Keyboard"
msgstr "Tipkovnica"
#: capplets/mouse/gnome-mouse-properties.c:408
#, c-format
msgid ""
"<b>Unknown Cursor</b>\n"
"%s"
msgstr ""
"<b>Neznan kazalec</b>\n"
"%s"
#: capplets/mouse/gnome-mouse-properties.c:506
msgid ""
"<b>Default Cursor - Current</b>\n"
"The default cursor that ships with X"
msgstr ""
"<b>Privzet kazalec - trenutni</b>\n"
"Privzet kazalec, ki pride z X"
#: capplets/mouse/gnome-mouse-properties.c:509
msgid ""
"<b>Default Cursor</b>\n"
"The default cursor that ships with X"
msgstr ""
"<b>Privzet kazalec</b>\n"
"Privzet kazalec, ki pride z X"
#: capplets/mouse/gnome-mouse-properties.c:527
msgid ""
"<b>White Cursor - Current</b>\n"
"The default cursor inverted"
msgstr ""
"<b>Bel kazalec - trenutni</b>\n"
"Invertiran privzet kazalec"
#: capplets/mouse/gnome-mouse-properties.c:530
msgid ""
"<b>White Cursor</b>\n"
"The default cursor inverted"
msgstr ""
"<b>Bel kazalec</b>\n"
"Invertiran privzet kazalec"
#: capplets/mouse/gnome-mouse-properties.c:548
msgid ""
"<b>Large Cursor - Current</b>\n"
"Large version of normal cursor"
msgstr ""
"<b>Velik kazalec - trenutni</b>\n"
"Velika različica običajnega kazalca"
#: capplets/mouse/gnome-mouse-properties.c:551
msgid ""
"<b>Large Cursor</b>\n"
"Large version of normal cursor"
msgstr ""
"<b>Velik kazalec</b>\n"
"Velika različica običajnega kazalca"
#: capplets/mouse/gnome-mouse-properties.c:569
msgid ""
"<b>Large White Cursor - Current</b>\n"
"Large version of white cursor"
msgstr ""
"<b>Velik bel kazalec - trenutni</b>\n"
"Velika različica belega kazalca"
#: capplets/mouse/gnome-mouse-properties.c:572
msgid ""
"<b>Large White Cursor</b>\n"
"Large version of white cursor"
msgstr ""
"<b>Velik bel kazalec</b>\n"
"Velika različica belega kazalca"
#: capplets/mouse/gnome-mouse-properties.c:704
#: capplets/mouse/gnome-mouse-properties.glade.h:18
#: capplets/mouse/mouse.desktop.in.h:2
msgid "Mouse Properties"
msgstr "Lastnosti miške"
#: capplets/mouse/gnome-mouse-properties.glade.h:1
msgid ""
"<b>Note:</b>\n"
"\t\t\t You will need to logout and log back in for this setting to take "
"effect."
msgstr ""
"<b>Opozorilo:</b>\n"
"\t\t\t Da bi ta nastavitev učinkovala se morate odjaviti in znova "
"prijaviti"
#: capplets/mouse/gnome-mouse-properties.glade.h:3
msgid "<i>Fast</i>"
msgstr "<i>Hitro</i>"
#: capplets/mouse/gnome-mouse-properties.glade.h:4
msgid "<i>High</i>"
msgstr "<i>Visoko</i>"
#: capplets/mouse/gnome-mouse-properties.glade.h:5
msgid "<i>Large</i>"
msgstr "<i>Veliko</i>"
#: capplets/mouse/gnome-mouse-properties.glade.h:6
msgid "<i>Low</i>"
msgstr "<i>Nizko</i>"
#: capplets/mouse/gnome-mouse-properties.glade.h:7
msgid "<i>Slow</i>"
msgstr "<i>Počasno</i>"
#: capplets/mouse/gnome-mouse-properties.glade.h:8
msgid "<i>Small</i>"
msgstr "<i>Malo</i>"
#: capplets/mouse/gnome-mouse-properties.glade.h:9
msgid ""
"Animates a quick marker around the cursor when the Control key has been "
"pressed and released."
msgstr ""
"Animira hitro označbo okoli kazalca, ko je tipka control pritisnjena in "
"spuščena."
#: capplets/mouse/gnome-mouse-properties.glade.h:10
msgid "C_ursors"
msgstr "_Kazalci"
#: capplets/mouse/gnome-mouse-properties.glade.h:11
msgid "Cursor Theme"
msgstr "Teme kazalcev"
#: capplets/mouse/gnome-mouse-properties.glade.h:12
msgid "Double-click Delay"
msgstr "Premor dvoklika"
#: capplets/mouse/gnome-mouse-properties.glade.h:13
msgid "Drag and Drop"
msgstr "Povleci in spusti"
#: capplets/mouse/gnome-mouse-properties.glade.h:14
msgid ""
"Left-handed mouse mode switches the left and right buttons on the mouse."
msgstr "Način levičarske miške zamenja lev in desni gumb miške."
#: capplets/mouse/gnome-mouse-properties.glade.h:15
msgid "Locate Pointer"
msgstr "Najdi kazalec"
#: capplets/mouse/gnome-mouse-properties.glade.h:16
msgid ""
"Maximum time allowed between clicks when double-clicking. Use the box on "
"the right to test."
msgstr ""
"Največji premor dovoljen med klikoma ob dvojnem kliku. Za preizkus "
"uporabite škatlo na desni."
#: capplets/mouse/gnome-mouse-properties.glade.h:17
msgid "Mouse Orientation"
msgstr "Usmerjenost miške"
#: capplets/mouse/gnome-mouse-properties.glade.h:19
msgid "Set the distance you need to move your cursor before dragging an item."
msgstr ""
"Nastavi dolžino za kolikor morate povleči kazalec preden velja za vlečenje "
"predmeta."
#: capplets/mouse/gnome-mouse-properties.glade.h:20
msgid "Set the speed of your pointing device."
msgstr "Nastavi hitrost vašega kazalca"
#: capplets/mouse/gnome-mouse-properties.glade.h:21
msgid "Speed"
msgstr "Hitrost"
#: capplets/mouse/gnome-mouse-properties.glade.h:22
msgid "_Acceleration:"
msgstr "_Pospeševanje:"
#: capplets/mouse/gnome-mouse-properties.glade.h:23
msgid "_Buttons"
msgstr "_Gumbi"
#: capplets/mouse/gnome-mouse-properties.glade.h:24
msgid "_Delay (sec):"
msgstr "_Premor (sek):"
#: capplets/mouse/gnome-mouse-properties.glade.h:25
msgid "_Left-handed mouse"
msgstr "_Levičarska miška"
#: capplets/mouse/gnome-mouse-properties.glade.h:26
msgid "_Motion"
msgstr "_Gibanje"
#: capplets/mouse/gnome-mouse-properties.glade.h:27
msgid "_Sensitivity:"
msgstr "_Občutljivost:"
#: capplets/mouse/gnome-mouse-properties.glade.h:28
msgid "_Show position of cursor when the Control key is pressed"
msgstr "_Ko je pritisnjena tipka control, kaži položaj kazalca"
#: capplets/mouse/gnome-mouse-properties.glade.h:29
msgid "_Threshold:"
msgstr "_Prag:"
#: capplets/mouse/mouse.desktop.in.h:1
msgid "Mouse"
msgstr "Miška"
#: capplets/screensaver/screensaver.desktop.in.h:1
msgid "Configure the settings of the screensaver"
msgstr "Nastavi ohranjevalnik zaslona"
#: capplets/screensaver/screensaver.desktop.in.h:2
msgid "Screensaver"
msgstr "Ohranjevalnik zaslona"
#: capplets/sound/sound.desktop.in.h:1
msgid "Configure GNOME's use of sound"
msgstr "Nastavi uporabo zvoka v GNOMEu"
#: capplets/sound/sound-properties-capplet.c:166
msgid "Sound properties"
msgstr "Lastnosti zvoka"
#: capplets/sound/sound-properties.glade.h:1
msgid "Enable sound server startup"
msgstr "Vključi zagon strežnika za zvok"
#: capplets/sound/sound-properties.glade.h:2
msgid "General"
msgstr "Splošno"
#: capplets/sound/sound-properties.glade.h:3
msgid "Sound Events"
msgstr "Zvočni dogodki"
#: capplets/sound/sound-properties.glade.h:4
msgid "Sounds for events"
msgstr "Zvoki ob dogodkih"
#. just 8 short names that will serve as samples for titles in demo
#: capplets/theme-switcher/control/control.c:19
msgid "Eenie"
msgstr "Am"
#: capplets/theme-switcher/control/control.c:19
msgid "Mynie"
msgstr "Pet"
#: capplets/theme-switcher/control/control.c:19
msgid "Catcha"
msgstr "Vija"
#: capplets/theme-switcher/control/control.c:19
msgid "By Its"
msgstr "Ven"
#: capplets/theme-switcher/control/control.c:20
msgid "Meenie"
msgstr "Bam"
#: capplets/theme-switcher/control/control.c:20
msgid "Moe"
msgstr "Podgan"
#: capplets/theme-switcher/control/control.c:20
msgid "Tiger"
msgstr "Vaja"
#: capplets/theme-switcher/control/control.c:20
msgid "Toe"
msgstr "Greš"
#: capplets/theme-switcher/control/control.c:38
msgid "Selected themes from above will be tested by previewing here."
msgstr "Izbrana tema zgoraj se bo za predogled prikazala tu."
#. column one
#: capplets/theme-switcher/control/control.c:43
msgid "Sample Button"
msgstr "Vzorec gumba"
#: capplets/theme-switcher/control/control.c:47
msgid "Sample Check Button"
msgstr "Vzorec izbirnega gumba"
#: capplets/theme-switcher/control/control.c:53
msgid "Sample Text Entry Field"
msgstr "Vzorec vnosa besedila"
#: capplets/theme-switcher/control/control.c:64
msgid "Submenu"
msgstr "Podmenu"
#: capplets/theme-switcher/control/control.c:69
#: capplets/ui-properties/gnome2-ui-properties.glade.h:2
msgid "Item 1"
msgstr "Predmet 1"
#: capplets/theme-switcher/control/control.c:71
msgid "Another item"
msgstr "Še en predmet"
#: capplets/theme-switcher/control/control.c:75
msgid "Radio Button 1"
msgstr "Radijski gumb 1"
#: capplets/theme-switcher/control/control.c:81
msgid "Radio Button 2"
msgstr "Radijski gumb 2"
#: capplets/theme-switcher/control/control.c:102
msgid "One"
msgstr "Ena"
#: capplets/theme-switcher/control/control.c:108
msgid "Two"
msgstr "Dve"
#: capplets/theme-switcher/gtk-theme-selector.desktop.in.h:1
msgid "Gtk+ Theme Selector"
msgstr "Izbirnik tem Gtk+"
#: capplets/theme-switcher/gtk-theme-selector.desktop.in.h:2
msgid "Select which gtk+ theme to use"
msgstr "Izberi katero gtk+ temo uporabiti"
#: capplets/theme-switcher/gtk-theme-selector.glade.h:1
msgid "Gtk+ Theme"
msgstr "Tema gtk+"
#: capplets/theme-switcher/gtk-theme-selector.glade.h:2
msgid "Install new theme..."
msgstr "Namesti novo temo..."
#: capplets/theme-switcher/main.c:211
msgid "Select a theme to install"
msgstr "Izberite temo za namestitev"
#: capplets/ui-properties/behavior.desktop.in.h:1
msgid "Sets the default behavior of GNOME applications"
msgstr "Nastavi privzeto obnašanje programov GNOME"
#: capplets/ui-properties/behavior.desktop.in.h:2
msgid "Toolbars & Menus"
msgstr "Orodjarne in menuji"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:1
msgid "Icons and Text"
msgstr "Ikone in besedilo"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:3
msgid "Item 2"
msgstr "Predmet 2"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:4
msgid "Item 3"
msgstr "Predmet 3"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:5
msgid "Menu Item 1"
msgstr "Predmet menuja 1"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:6
msgid "Menu Item 2"
msgstr "Predmet menuja 2"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:7
msgid "Menu Item 3"
msgstr "Predmet menuja 3"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:8
msgid "Menu Item 4"
msgstr "Predmet menuja 4"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:9
msgid "Menu Item 5"
msgstr "Predmet menuja 5"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:10
msgid "Menu items have _icons"
msgstr "Menuji imajo ikone"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:11
msgid "Menus"
msgstr "Menuji"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:12
msgid "New File"
msgstr "Nova datoteka"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:13
msgid "Only Icons"
msgstr "Le ikone"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:14
msgid "Only Text"
msgstr "Le besedilo"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:15
msgid "Open File"
msgstr "Odpri datoteko"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:16
msgid "Sample Menubar"
msgstr "Vzorčna menujska vrstica"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:17
msgid "Sample Toolbar"
msgstr "Vzorčna orodjarna"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:18
msgid "Save File"
msgstr "Shrani datoteko"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:19
msgid "Toolbar"
msgstr "Orodjarna"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:20
msgid "Toolbar and Menu Properties"
msgstr "Lastnosti orodjarne in menujev"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:21
msgid "Toolbars can be _detached and moved around"
msgstr "Orodjarne je mogoče _odtrgati in premikati okoli"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:22
msgid "_Menu"
msgstr "_Menu"
#: capplets/ui-properties/gnome2-ui-properties.glade.h:23
msgid "_Toolbars have: "
msgstr "_Orodjarne imajo: "
#: control-center/capplet-dir-view.c:148
msgid "Layout"
msgstr "Postavitev"
#: control-center/capplet-dir-view.c:149
msgid "Layout to use for this view of the capplets"
msgstr "Postavitev, ki naj se uporabi za pogled cappletov"
#: control-center/capplet-dir-view.c:155
msgid "Capplet directory object"
msgstr "Imenik predmeta capplet"
#: control-center/capplet-dir-view.c:156
msgid "Capplet directory that this view is viewing"
msgstr "Imenik capplet, ki ga gleda ta pogled"
#: control-center/capplet-dir-view.c:313 control-center/gnomecc.desktop.in.h:1
msgid "GNOME Control Center"
msgstr "Kontrolni center GNOME"
#: control-center/capplet-dir-view.c:316
msgid "Desktop properties manager."
msgstr "Upravljalnik lastnosti namizja."
#: control-center/capplet-dir-view.c:450
#, c-format
msgid "Gnome Control Center : %s"
msgstr "Kontrolni center Gnome : %s"
#: control-center/capplet-dir-view.c:503
msgid ""
"No help is available/installed. Please make sure you\n"
"have the GNOME User's Guide installed on your system."
msgstr ""
"Pomoč za te nastavitve ni na voljo / ni nameščena. Prosim prepričajte se,\n"
"da imate Uporabniški vodič GNOME nameščen na vašem sistemu."
#: control-center/capplet-dir-view.c:506
msgid "Close"
msgstr "Zapri"
#: control-center/capplet-dir-view-list.c:325
#, c-format
msgid "GNOME Control Center: %s"
msgstr "Kontrolni center GNOME: %s"
#: control-center/gnomecc.desktop.in.h:2
msgid "The GNOME configuration tool"
msgstr "Nastavitveno orodje GNOME-a."
#: control-center/gnomecc.glade.h:2
msgid "Browse with multiple windows"
msgstr "Brskaj z večimi okni"
#: control-center/gnomecc.glade.h:3
msgid "Browse with single window"
msgstr "Brskaj z enim samim oknom"
#: control-center/gnomecc.glade.h:4
msgid "Display control panels as HTML"
msgstr "Kaži kontrolne pulte kot HTML"
#: control-center/gnomecc.glade.h:5
msgid "Display control panels as a set of icons"
msgstr "Kaži kontrolne pulte kot niz ikon"
#: control-center/gnomecc.glade.h:6
msgid "Display control panels as a tree"
msgstr "Kaži kontrolne pulte kot drevo"
#: control-center/gnomecc.glade.h:7
msgid "Launch control panels in separate windows"
msgstr "Poženi kontrolne pulte v ločenih oknih"
#: control-center/gnomecc.glade.h:8
msgid "New-control-center"
msgstr "Nov-kontrolni-center"
#: control-center/gnomecc.glade.h:9
msgid "Put control panels in the control center's window"
msgstr "Postavi kontrolne pulte v okno kontrolnega centra"
#: control-center/main.c:43
msgid "Use shell even if nautilus is running."
msgstr "Uporabi lupino tudi kadar nautilus teče."
#: libbackground/applier.c:235
msgid "Type"
msgstr "Vrsta"
#: libbackground/applier.c:236
msgid ""
"Type of bg_applier: BG_APPLIER_ROOT for root window or BG_APPLIER_PREVIEW "
"for preview"
msgstr ""
"Vrsta bg_applier-ja: BG_APPLIER_ROOT za korensko okno ali BG_APPLIER_PREVIEW "
"za predogled"
#: libbackground/applier.c:395
#, c-format
msgid "Could not load pixbuf \"%s\"; disabling wallpaper."
msgstr "Nisem mogel naložiti slike \"%s\"; tapete izključene."
#: libbackground/applier.c:515
msgid "Disabled"
msgstr "Izključeno"
#: libsounds/sound-view.c:116
msgid "The sound file for this event does not exist."
msgstr "Zvočna datoteka za ta dogodek ne obstaja."
#: libsounds/sound-view.c:118
msgid ""
"The sound file for this event does not exist.\n"
"You may want to install the gnome-audio package\n"
"for a set of default sounds."
msgstr ""
"Zvočna datoteka za ta dogodek ne obstaja.\n"
"Morda bi želeli namestiti gnome-audio paket\n"
"za zbirko privzetih zvokov."
#: libsounds/sound-view.c:209
msgid "Event"
msgstr "Dogodek"
#: libsounds/sound-view.c:216
msgid "File to play"
msgstr "Datoteka za predvajanje"
#: libsounds/sound-view.c:238
msgid "Play"
msgstr "Predvajaj"
#: libsounds/sound-view.c:244
msgid "Select sound file"
msgstr "Izberi zvočno datoteko"
#~ msgid "Auto Preview"
#~ msgstr "Samodejni predogled"
#~ msgid "Available Themes"
#~ msgstr "Teme na voljo"
#~ msgid "Preview"
#~ msgstr "Predogled"
|