~ubuntu-branches/ubuntu/saucy/kde-l10n-bs/saucy-proposed

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
# translation of kstyle_config.po to bosanski
# Chusslove Illich <caslav.ilic@gmx.net>, 2005, 2007, 2009, 2010.
# Dalibor Djuric <dalibor.djuric@mozilla-srbija.org>, 2009.
# Dalibor Djuric <daliborddjuric@gmail.com>, 2010.
# KDE 4 <megaribi@epn.ba>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: kstyle_config\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2013-05-21 01:53+0000\n"
"PO-Revision-Date: 2012-12-19 01:19+0000\n"
"Last-Translator: Samir Ribić <Unknown>\n"
"Language-Team: bosanski <bs@li.org>\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-12-21 01:39+0000\n"
"X-Generator: Launchpad (build 16378)\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"
"X-Environment: kde\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"

msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Samir Ribić"

msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "samir.ribic@etf.unsa.ba"

#: oxygen/config/main.cpp:38 oxygen/config/oxygenconfigdialog.cpp:56
#: oxygen/config/oxygenconfigdialog.cpp:158
msgid "Oxygen Settings"
msgstr "Postavke Kiseonika"

#: oxygen/config/main.cpp:40
msgid "Oxygen expert configuration tool"
msgstr "Alatka za znalačko podešavanje Kiseonika"

#: oxygen/config/main.cpp:42 oxygen/demo/main.cpp:45
msgid "(c) 2010, Hugo Pereira Da Costa"
msgstr "© 2010, Igo Pereira da Kosta"

#: oxygen/config/main.cpp:44 oxygen/demo/main.cpp:47
msgid "Hugo Pereira Da Costa"
msgstr "Igo Pereira da Kosta"

# >> @title
#: oxygen/config/oxygenanimationconfigwidget.cpp:50
msgid "Focus, mouseover and widget state transition"
msgstr "Fokus, prelazak mišem i prelazi stanja grafičke kontrole"

# rewrite-msgid: /highlight//
# >> @info
#: oxygen/config/oxygenanimationconfigwidget.cpp:51
msgid ""
"Configure widgets' focus and mouseover highlight animation, as well as "
"widget enabled/disabled state transition"
msgstr ""
"Podesite animacije fokusiranja i prelaska mišem preko grafičke kontrole, kao "
"i prelaze grafičke kontrole u stanja uključenog i isključenog."

# >> @title
#: oxygen/config/oxygenanimationconfigwidget.cpp:54
msgid "Toolbar highlight"
msgstr "Isticanje trake alatki"

# rewrite-msgid: /highlight//
# >> @info
#: oxygen/config/oxygenanimationconfigwidget.cpp:55
msgid "Configure toolbars' mouseover highlight animation"
msgstr "Podesite animaciju prelaska mišem preko trake alatki."

# >> @title
#: oxygen/config/oxygenanimationconfigwidget.cpp:59
msgid "Menu bar highlight"
msgstr "Isticanje trake menija"

# rewrite-msgid: /highlight//
# >> @info
#: oxygen/config/oxygenanimationconfigwidget.cpp:60
msgid "Configure menu bars' mouseover highlight animation"
msgstr "Podesite animaciju prelaska mišem preko trake menija."

# >> @title
#: oxygen/config/oxygenanimationconfigwidget.cpp:63
msgid "Menu highlight"
msgstr "Isticanje menija"

# rewrite-msgid: /highlight//
# >> @info
#: oxygen/config/oxygenanimationconfigwidget.cpp:64
msgid "Configure menus' mouseover highlight animation"
msgstr "Podesite animaciju prelaska mišem preko menija."

# >> @title
#: oxygen/config/oxygenanimationconfigwidget.cpp:67
msgid "Progress bar animation"
msgstr "Animacija trake napretka"

# >> @info
#: oxygen/config/oxygenanimationconfigwidget.cpp:68
msgid "Configure progress bars' steps animation"
msgstr "Podesite animaciju koraka u traci napretka."

# >> @title
#: oxygen/config/oxygenanimationconfigwidget.cpp:71
msgid "Tab transitions"
msgstr "Prelazi jezičaka"

# >> @info
#: oxygen/config/oxygenanimationconfigwidget.cpp:71
msgid "Configure fading transition between tabs"
msgstr "Podesite prijelazno pretapanje između jezičaka."

# >> @title
#: oxygen/config/oxygenanimationconfigwidget.cpp:74
msgid "Label transitions"
msgstr "Prelazi etiketa"

# >> @info
#: oxygen/config/oxygenanimationconfigwidget.cpp:74
msgid "Configure fading transition when a label's text is changed"
msgstr "Podesite prijelazno pretapanje kada se promijeni tekst etikete."

# >> @title
#: oxygen/config/oxygenanimationconfigwidget.cpp:77
msgid "Text editor transitions"
msgstr "Prelazi u uređivaču teksta"

# >> @info
#: oxygen/config/oxygenanimationconfigwidget.cpp:77
msgid "Configure fading transition when an editor's text is changed"
msgstr "Podesite prijelazno pretapanje kada se izmjeni tekst u uređivaču."

# >> @title
#: oxygen/config/oxygenanimationconfigwidget.cpp:80
msgid "Combo box transitions"
msgstr "Prelazi padajućeg spiska"

# >> @info
#: oxygen/config/oxygenanimationconfigwidget.cpp:80
msgid ""
"Configure fading transition when a combo box's selected choice is changed"
msgstr ""
"Podesite prijelazno pretapanje kada se promijeni izbor u padajućem spisku."

# >> @title
#: oxygen/config/oxygenanimationconfigwidget.cpp:90
msgid "Busy indicator steps"
msgstr "Koraci pokazatelja zauzetosti"

# >> @info
#: oxygen/config/oxygenanimationconfigwidget.cpp:91
msgid "Configure progress bars' busy indicator animation"
msgstr "Podesite animaciju pokazatelja zauzetosti u traci napretka."

# >> @title
#: oxygen/config/oxygenconfigdialog.cpp:72
msgid "Widget Style"
msgstr "Stil grafičke kontrole"

# >> @info
#: oxygen/config/oxygenconfigdialog.cpp:73
msgid "Modify the appearance of widgets"
msgstr "Izmijenite izgled grafičke kontrole."

# >> @title
#: oxygen/config/oxygenconfigdialog.cpp:91
msgid "Window Decorations"
msgstr "Dekoracije prozora"

# >> @info
#: oxygen/config/oxygenconfigdialog.cpp:92
msgid "Modify the appearance of window decorations"
msgstr "Izmijenite izgled dekoracija prozora."

#: oxygen/config/oxygenconfigdialog.cpp:191
#: oxygen/config/oxygenconfigdialog.cpp:201
msgid "Unable to find oxygen style configuration plugin"
msgstr "Ne mogu da nađem priključak za podešavanje stila Kiseonika."

#: oxygen/config/oxygenconfigdialog.cpp:237
#: oxygen/config/oxygenconfigdialog.cpp:247
msgid "Unable to find oxygen decoration configuration plugin"
msgstr "Ne mogu da nađem priključak za podešavanje dekoracije Kiseonika."

#: oxygen/config/oxygenstyleconfig.cpp:187
msgid "Hide Advanced Configuration Options"
msgstr "Sakrij opcije za naprednu konfiguraciju"

#: oxygen/config/oxygenstyleconfig.cpp:187
msgid "Show Advanced Configuration Options"
msgstr "Prikaži opcije za naprednu konfiguraciju"

#: oxygen/config/oxygenstyleconfig.cpp:205
msgid "Animations"
msgstr "Animacije"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (windowTitle), widget (QFrame, FollowMouseAnimationConfigBox)
#: oxygen/config/ui/oxygenfollowmouseanimationconfigbox.ui:20
#: oxygen/demo/ui/oxygenframedemowidget.ui:111
msgid "Frame"
msgstr "Okvir"

#. i18n: ectx: property (text), widget (QLabel, label)
#: oxygen/config/ui/oxygenfollowmouseanimationconfigbox.ui:32
msgid "Animation type:"
msgstr "Tip animacije:"

#. i18n: ectx: property (text), item, widget (KComboBox, typeComboBox)
#: oxygen/config/ui/oxygenfollowmouseanimationconfigbox.ui:46
msgid "Fade"
msgstr "pretapanje"

#. i18n: ectx: property (text), item, widget (KComboBox, typeComboBox)
#: oxygen/config/ui/oxygenfollowmouseanimationconfigbox.ui:51
msgid "Follow Mouse"
msgstr "praćenje miša"

#. i18n: ectx: property (text), widget (QLabel, durationLabel)
#: oxygen/config/ui/oxygenfollowmouseanimationconfigbox.ui:59
msgid "Fade duration:"
msgstr "Trajanje pretapanja:"

#. i18n: ectx: property (suffix), widget (KIntSpinBox, durationSpinBox)
#. i18n: ectx: property (suffix), widget (KIntSpinBox, followMouseDurationSpinBox)
#: oxygen/config/ui/oxygenfollowmouseanimationconfigbox.ui:72
#: oxygen/config/ui/oxygenfollowmouseanimationconfigbox.ui:101
msgid "ms"
msgstr "ms"

#. i18n: ectx: property (text), widget (QLabel, followMouseDurationLabel)
#: oxygen/config/ui/oxygenfollowmouseanimationconfigbox.ui:88
msgid "Follow mouse duration:"
msgstr "Trajanje praćenja miša:"

#. i18n: ectx: property (windowTitle), widget (QWidget, OxygenStyleConfig)
#: oxygen/config/ui/oxygenstyleconfig.ui:26
msgid "Dialog"
msgstr "Dijalog"

#. i18n: ectx: attribute (title), widget (QWidget, tab_1)
#: oxygen/config/ui/oxygenstyleconfig.ui:45
msgid "General"
msgstr "Opšte"

#. i18n: ectx: property (text), widget (QCheckBox, _toolBarDrawItemSeparator)
#: oxygen/config/ui/oxygenstyleconfig.ui:51
msgid "Draw toolbar item separators"
msgstr "Razdvajači stavki na traci alatki"

#. i18n: ectx: property (text), widget (QCheckBox, _checkDrawX)
#: oxygen/config/ui/oxygenstyleconfig.ui:58
msgid "Use 'X' in checkboxes instead of check"
msgstr "Putače u kućicama umjesto štikli"

#. i18n: ectx: property (text), widget (QCheckBox, _splitterProxyEnabled)
#: oxygen/config/ui/oxygenstyleconfig.ui:65
msgid "Enable extended resize handles"
msgstr "Omogući proširene tučke za promjenu širine"

#. i18n: ectx: property (text), widget (QCheckBox, _cacheEnabled)
#: oxygen/config/ui/oxygenstyleconfig.ui:72
msgid "Enable pixmap cache"
msgstr "Omogući keš za sličice"

#. i18n: ectx: property (text), widget (QCheckBox, _animationsEnabled)
#: oxygen/config/ui/oxygenstyleconfig.ui:79
msgid "Enable animations"
msgstr "Uključi animacije"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: oxygen/config/ui/oxygenstyleconfig.ui:94
msgid "Windows' drag mode:"
msgstr "Režim prevlačenja prozora:"

#. i18n: ectx: property (text), item, widget (KComboBox, _windowDragMode)
#: oxygen/config/ui/oxygenstyleconfig.ui:108
msgid "Drag windows from titlebar only"
msgstr "samo preko naslovne trake"

#. i18n: ectx: property (text), item, widget (KComboBox, _windowDragMode)
#: oxygen/config/ui/oxygenstyleconfig.ui:113
msgid "Drag windows from titlebar, menubar and toolbars"
msgstr "preko naslovne trake, trake menija i alatki"

#. i18n: ectx: property (text), item, widget (KComboBox, _windowDragMode)
#: oxygen/config/ui/oxygenstyleconfig.ui:118
msgid "Drag windows from all empty areas"
msgstr "preko svih praznih područja"

#. i18n: ectx: property (text), widget (QLabel, _mnemonicsLabel)
#: oxygen/config/ui/oxygenstyleconfig.ui:126
msgid "Keyboard accelerators visibility:"
msgstr "Vidljivost akceleratora tastature:"

#. i18n: ectx: property (text), item, widget (KComboBox, _mnemonicsMode)
#: oxygen/config/ui/oxygenstyleconfig.ui:147
msgid "Always Hide Keyboard Accelerators"
msgstr "Uvijek sakrij akceleratore tastature"

#. i18n: ectx: property (text), item, widget (KComboBox, _mnemonicsMode)
#: oxygen/config/ui/oxygenstyleconfig.ui:152
msgid "Show Keyboard Accelerators When Needed"
msgstr "Prikaži akceleratore tastature kada je potrebno"

#. i18n: ectx: property (text), item, widget (KComboBox, _mnemonicsMode)
#: oxygen/config/ui/oxygenstyleconfig.ui:157
msgid "Always Show Keyboard Accelerators"
msgstr "Uvijek prikaži akceleratore tastature"

#. i18n: ectx: property (text), widget (QCheckBox, _useWMMoveResize)
#: oxygen/config/ui/oxygenstyleconfig.ui:167
msgid "Use window manager to perform windows' drag"
msgstr "Koristi menadžer prozora za izvođenje prevlačenja"

#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#: oxygen/config/ui/oxygenstyleconfig.ui:188
msgid "Views"
msgstr "Prikazi"

#. i18n: ectx: property (text), widget (QCheckBox, _viewDrawFocusIndicator)
#: oxygen/config/ui/oxygenstyleconfig.ui:194
msgid "Draw focus indicator"
msgstr "Pokazatelj fokusa"

# skip-rule: linije
#. i18n: ectx: property (text), widget (QCheckBox, _viewDrawTreeBranchLines)
#: oxygen/config/ui/oxygenstyleconfig.ui:201
msgid "Draw tree branch lines"
msgstr "Linije grane stabla"

#. i18n: ectx: property (text), widget (QCheckBox, _viewDrawTriangularExpander)
#: oxygen/config/ui/oxygenstyleconfig.ui:208
msgid "Use triangle tree expander instead of +/-"
msgstr "Trougao kao proširivač stabla umjesto plus‑minusa"

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: oxygen/config/ui/oxygenstyleconfig.ui:237
msgid "Triangle size:"
msgstr "Veličina trougla:"

# >> @item:inlistbox Triangle size:
#. i18n: ectx: property (text), item, widget (KComboBox, _viewTriangularExpanderSize)
#: oxygen/config/ui/oxygenstyleconfig.ui:248
#, fuzzy
msgctxt "triangle size"
msgid "Tiny"
msgstr "sićušan"

# >> @item:inlistbox Triangle size:
#. i18n: ectx: property (text), item, widget (KComboBox, _viewTriangularExpanderSize)
#: oxygen/config/ui/oxygenstyleconfig.ui:253
#, fuzzy
msgctxt "triangle size"
msgid "Small"
msgstr "mali"

# >! Contexts.
#. i18n: ectx: property (text), item, widget (KComboBox, _viewTriangularExpanderSize)
#: oxygen/config/ui/oxygenstyleconfig.ui:258
#, fuzzy
msgctxt "triangle size"
msgid "Normal"
msgstr "Normalno"

#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#: oxygen/config/ui/oxygenstyleconfig.ui:296
msgid "Tabs"
msgstr "Kartice"

#. i18n: ectx: property (text), widget (QRadioButton, _tabStyleSingle)
#: oxygen/config/ui/oxygenstyleconfig.ui:315
msgctxt "Renders each inactive tab in a tabbar as separate darker slab"
msgid "Single"
msgstr "Izdvojeni"

#. i18n: ectx: property (text), widget (QRadioButton, _tabStylePlain)
#: oxygen/config/ui/oxygenstyleconfig.ui:322
msgctxt "Renders inactive tabs in a tabbar as a unique darker slab"
msgid "Plain"
msgstr "Obični"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: oxygen/config/ui/oxygenstyleconfig.ui:329
msgid "Inactive tabs style:"
msgstr "Stil neaktivnih kartica:"

#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#: oxygen/config/ui/oxygenstyleconfig.ui:337
msgid "Scrollbars"
msgstr "Klizačke trake"

#. i18n: ectx: property (text), widget (QLabel, label)
#: oxygen/config/ui/oxygenstyleconfig.ui:345
msgid "Scrollbar width:"
msgstr "Širina klizne trake"

#. i18n: ectx: property (suffix), widget (KIntSpinBox, _scrollBarWidth)
#: oxygen/config/ui/oxygenstyleconfig.ui:383
msgid "px"
msgstr "px"

#. i18n: ectx: property (text), widget (QLabel, label_5)
#: oxygen/config/ui/oxygenstyleconfig.ui:413
msgid "Top arrow button type:"
msgstr "Vrsta dugmeta s strelicom na vrh:"

#. i18n: ectx: property (text), widget (QLabel, label_6)
#: oxygen/config/ui/oxygenstyleconfig.ui:423
msgid "Bottom arrow button type:"
msgstr "Vrsta dugmeta s strelicom na dno:"

#. i18n: ectx: property (text), item, widget (KComboBox, _scrollBarSubLineButtons)
#: oxygen/config/ui/oxygenstyleconfig.ui:434
msgid "No buttons"
msgstr "Bez dugmadi"

#. i18n: ectx: property (text), item, widget (KComboBox, _scrollBarSubLineButtons)
#. i18n: ectx: property (text), item, widget (KComboBox, _scrollBarAddLineButtons)
#: oxygen/config/ui/oxygenstyleconfig.ui:439
#: oxygen/config/ui/oxygenstyleconfig.ui:471
msgid "One button"
msgstr "Jedno dugme"

#. i18n: ectx: property (text), item, widget (KComboBox, _scrollBarSubLineButtons)
#. i18n: ectx: property (text), item, widget (KComboBox, _scrollBarAddLineButtons)
#: oxygen/config/ui/oxygenstyleconfig.ui:444
#: oxygen/config/ui/oxygenstyleconfig.ui:476
msgid "Two buttons"
msgstr "Dva dugmeta"

#. i18n: ectx: property (text), item, widget (KComboBox, _scrollBarAddLineButtons)
#: oxygen/config/ui/oxygenstyleconfig.ui:466
msgid "No button"
msgstr "Nema dugmeta"

#. i18n: ectx: attribute (title), widget (QWidget, tab_5)
#: oxygen/config/ui/oxygenstyleconfig.ui:500
msgid "Menu Highlight"
msgstr "Isticanje menija"

#. i18n: ectx: property (text), widget (QRadioButton, _menuHighlightDark)
#: oxygen/config/ui/oxygenstyleconfig.ui:506
msgid "Use dark color"
msgstr "Prema tamnoj boji"

#. i18n: ectx: property (text), widget (QRadioButton, _menuHighlightStrong)
#: oxygen/config/ui/oxygenstyleconfig.ui:513
msgid "Use selection color (plain)"
msgstr "Prema boji izbora (obično)"

#. i18n: ectx: property (text), widget (QRadioButton, _menuHighlightSubtle)
#: oxygen/config/ui/oxygenstyleconfig.ui:520
msgid "Use selection color (subtle)"
msgstr "Prema boji izbora (fino)"

#: oxygen/demo/main.cpp:41 oxygen/demo/oxygendemodialog.cpp:57
#: oxygen/demo/oxygendemodialog.cpp:198
msgid "Oxygen Demo"
msgstr "Demonstracija Kiseonika"

#: oxygen/demo/main.cpp:43
msgid "Oxygen style demonstration"
msgstr "Demonstracija stila Kiseonika"

# >! Contexts.
#. i18n: ectx: property (text), widget (KPushButton, pushButton)
#. i18n: ectx: property (text), widget (KPushButton, pushButton_2)
#. i18n: ectx: property (text), item, widget (KComboBox, kcombobox)
#. i18n: ectx: property (text), widget (KPushButton, pushButton_3)
#. i18n: ectx: property (text), widget (KPushButton, pushButton_4)
#. i18n: ectx: property (text), widget (QToolButton, toolButton)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_2)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_3)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_4)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_5)
#: oxygen/demo/oxygenbuttondemowidget.cpp:57
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:145
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:155
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:174
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:213
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:223
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:247
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:257
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:285
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:295
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:305
msgid "Normal"
msgstr "Normalno"

#: oxygen/demo/oxygenbuttondemowidget.cpp:58
#: oxygen/demo/oxygenbuttondemowidget.cpp:77
#: oxygen/demo/oxygenbuttondemowidget.cpp:249
#: oxygen/demo/oxygenbuttondemowidget.cpp:259
msgid "New"
msgstr "Novo"

#: oxygen/demo/oxygenbuttondemowidget.cpp:59
#: oxygen/demo/oxygenbuttondemowidget.cpp:78
#: oxygen/demo/oxygenbuttondemowidget.cpp:250
#: oxygen/demo/oxygenbuttondemowidget.cpp:260
msgid "Open"
msgstr "Otvori"

#: oxygen/demo/oxygenbuttondemowidget.cpp:60
#: oxygen/demo/oxygenbuttondemowidget.cpp:79
#: oxygen/demo/oxygenbuttondemowidget.cpp:251
#: oxygen/demo/oxygenbuttondemowidget.cpp:261
msgid "Save"
msgstr "Snimi"

#: oxygen/demo/oxygenbuttondemowidget.cpp:80
msgid "Toggle authentication"
msgstr "Preklopi autentifikaciju"

#: oxygen/demo/oxygendemodialog.cpp:69
msgid "Enabled"
msgstr "Uključeno"

#: oxygen/demo/oxygendemodialog.cpp:74
msgid "Right to left layout"
msgstr "Raspored zdesna ulijevo"

#: oxygen/demo/oxygendemodialog.cpp:92
msgid "Input Widgets"
msgstr "Grafičke kontrole unosa"

#: oxygen/demo/oxygendemodialog.cpp:94
msgid "Shows the appearance of text input widgets"
msgstr "Pokazuje izgled grafičke kontrole za unos teksta."

#: oxygen/demo/oxygendemodialog.cpp:102
msgid "Tab Widgets"
msgstr "Grafičke kontrole jezičaka"

#: oxygen/demo/oxygendemodialog.cpp:104
msgid "Shows the appearance of tab widgets"
msgstr "Pokazuje izgled grafičke kontrole jezičaka."

#: oxygen/demo/oxygendemodialog.cpp:112
msgid "Buttons"
msgstr "Dugmad"

#: oxygen/demo/oxygendemodialog.cpp:114
msgid "Shows the appearance of buttons"
msgstr "Pokazuje izgled dugmadi."

#: oxygen/demo/oxygendemodialog.cpp:122
msgid "Lists"
msgstr "Spiskovi"

#: oxygen/demo/oxygendemodialog.cpp:124
msgid "Shows the appearance of lists, trees and tables"
msgstr "Pokazuje izgled spiskova, stabala i tabela."

#: oxygen/demo/oxygendemodialog.cpp:133
msgid "Frames"
msgstr "Okviri"

#: oxygen/demo/oxygendemodialog.cpp:135
msgid "Shows the appearance of various framed widgets"
msgstr "Pokazuje izgled grafičke kontrole okvira."

#: oxygen/demo/oxygendemodialog.cpp:153
msgid "Sliders"
msgstr "Klizači"

#: oxygen/demo/oxygendemodialog.cpp:155
msgid "Shows the appearance of sliders, progress bars and scrollbars"
msgstr "Pokazuje izgled klizača, traka napretka i klizačkih traka."

#: oxygen/demo/oxygendemodialog.cpp:164
msgid "Benchmark"
msgstr "Mjerilo"

#: oxygen/demo/oxygendemodialog.cpp:166
msgid "Emulates user interaction with widgets for benchmarking"
msgstr "Emulira interakciju korisnika sa dodacima za benčmarking"

#: oxygen/demo/oxygeninputdemowidget.cpp:39
msgid "Example text"
msgstr "Primjer teksta"

#: oxygen/demo/oxygeninputdemowidget.cpp:40
msgid "password"
msgstr "lozinka"

#: oxygen/demo/oxygenmdidemowidget.cpp:51
msgid "Tile"
msgstr "Popločaj"

#: oxygen/demo/oxygenmdidemowidget.cpp:54
msgid "Cascade"
msgstr "Naslaži"

#: oxygen/demo/oxygenmdidemowidget.cpp:58
msgid "Select Next Window"
msgstr "Na sljedeći prozor"

#: oxygen/demo/oxygenmdidemowidget.cpp:62
msgid "Select Previous Window"
msgstr "Na prethodni prozor"

#: oxygen/demo/oxygensimulator.h:91
msgid "This is a sample text"
msgstr "Ovo je uzorak tekst"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: oxygen/demo/ui/oxygenbenchmarkwidget.ui:20
msgid "Modules"
msgstr "Moduli"

#. i18n: ectx: property (text), widget (QLabel, label)
#: oxygen/demo/ui/oxygenbenchmarkwidget.ui:26
msgid "Select below the modules for which you want to run the simulation:"
msgstr "Izaberite ispod module za koje želite da pokrenete simulaciju:"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: oxygen/demo/ui/oxygenbenchmarkwidget.ui:39
msgid "Options"
msgstr "Opcije"

#. i18n: ectx: property (text), widget (QCheckBox, grabMouseCheckBox)
#: oxygen/demo/ui/oxygenbenchmarkwidget.ui:45
msgid "Grab mouse"
msgstr "Hvatanje miša"

#. i18n: ectx: property (text), widget (KPushButton, runButton)
#: oxygen/demo/ui/oxygenbenchmarkwidget.ui:86
msgid "Run Simulation"
msgstr "Pokreni simulaciju"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:20
msgid "Checkboxes"
msgstr "Kućice"

#. i18n: ectx: property (text), widget (QCheckBox, checkBox)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:28
msgid "Off"
msgstr "Isključena"

#. i18n: ectx: property (text), widget (QCheckBox, checkBox_2)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:35
msgid "Partial"
msgstr "Djelimična"

#. i18n: ectx: property (text), widget (QCheckBox, checkBox_3)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:45
msgid "On"
msgstr "Uključena"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:73
msgid "Radiobuttons"
msgstr "Radio dugmad"

#. i18n: ectx: property (text), widget (QRadioButton, radioButton)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:84
msgid "First Choice"
msgstr "Prvi izbor"

#. i18n: ectx: property (text), widget (QRadioButton, radioButton_2)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:94
msgid "Second Choice"
msgstr "Drugi izbor"

#. i18n: ectx: property (text), widget (QRadioButton, radioButton_3)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:101
msgid "Third Choice"
msgstr "Treći izbor"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:126
msgid "Pushbuttons"
msgstr "Dugmad radnji"

#. i18n: ectx: property (text), widget (QLabel, label_7)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:132
msgid "Text only:"
msgstr "Samo tekst:"

#. i18n: ectx: property (toolTip), widget (KPushButton, pushButton)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:142
msgid "This is a normal, text only button"
msgstr "Ovo je normalno dugme samo s tekstom"

#. i18n: ectx: property (toolTip), widget (KPushButton, pushButton_2)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:152
msgid "This is a normal, text only button with menu"
msgstr "Ovo je normalno dugme samo s tekstom i menijem"

#. i18n: ectx: property (toolTip), widget (KComboBox, kcombobox)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:162
msgid "This is a normal, text only combo box"
msgstr "Ovo je normalna kombinovana lista samo s tekstom"

# >> @item:inlistbox Triangle size:
#. i18n: ectx: property (text), item, widget (KComboBox, kcombobox)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:169
msgid "Small"
msgstr "mali"

#. i18n: ectx: property (text), item, widget (KComboBox, kcombobox)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:179
msgid "Large"
msgstr "veliki"

#. i18n: ectx: property (text), widget (QLabel, label_8)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:200
msgid "Text and icon:"
msgstr "Tekst i ikona:"

#. i18n: ectx: property (toolTip), widget (KPushButton, pushButton_3)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:210
msgid "This is a normal, text and icon button"
msgstr "Ovo je normalno dugme s tekstom i ikonom"

#. i18n: ectx: property (toolTip), widget (KPushButton, pushButton_4)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:220
msgid "This is a normal, text and icon button with menu"
msgstr "Ovo je normalno dugme s tekstom i ikonom s menijem"

#. i18n: ectx: property (text), widget (QCheckBox, flatButtonCheckBox)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:230
msgid "Use flat buttons"
msgstr "Pljosnata dugmad"

#. i18n: ectx: property (toolTip), widget (KComboBox, kcombobox_2)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:237
msgid "This is a normal, text and icon combo box"
msgstr "normalna kombinovana lista s tekstom i ikonom"

#. i18n: ectx: property (toolTip), widget (QToolButton, toolButton)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:244
msgid "This is a normal, text only tool button"
msgstr "Ovo je normalno alatno dugme samo s tekstom"

#. i18n: ectx: property (toolTip), widget (QToolButton, toolButton_2)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:254
msgid "This is a normal, text and icon tool button"
msgstr "Ovo je normalno alatno dugme s tekstom  i ikonom"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:267
msgid "Toolbuttons"
msgstr "Dugmad na traci alatki"

#. i18n: ectx: property (text), widget (QToolButton, toolButton_6)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_7)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_8)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:335
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:348
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:361
msgid "Flat"
msgstr "Pljosnato"

#. i18n: ectx: property (text), widget (QToolButton, toolButton_9)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:374
msgid "Up Arrow"
msgstr "Strelica gore"

#. i18n: ectx: property (text), widget (QToolButton, toolButton_10)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:384
msgid "Down Arrow"
msgstr "Strelica dolje"

#. i18n: ectx: property (text), widget (QToolButton, toolButton_11)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:397
msgid "Left Arrow"
msgstr "Strelica lijevo"

#. i18n: ectx: property (text), widget (QToolButton, toolButton_12)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:407
msgid "Right Arrow"
msgstr "Strelica desno"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, label_11)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:420
#: oxygen/demo/ui/oxygentabdemowidget.ui:69
msgid "Text position:"
msgstr "Položaj teksta:"

#. i18n: ectx: property (text), item, widget (KComboBox, textPositionComboBox)
#. i18n: ectx: property (text), item, widget (KComboBox, textPosition)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:434
#: oxygen/demo/ui/oxygentabdemowidget.ui:83
msgid "Icons Only"
msgstr "samo ikone"

#. i18n: ectx: property (text), item, widget (KComboBox, textPositionComboBox)
#. i18n: ectx: property (text), item, widget (KComboBox, textPosition)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:439
#: oxygen/demo/ui/oxygentabdemowidget.ui:88
msgid "Text Only"
msgstr "samo tekst"

#. i18n: ectx: property (text), item, widget (KComboBox, textPositionComboBox)
#. i18n: ectx: property (text), item, widget (KComboBox, textPosition)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:444
#: oxygen/demo/ui/oxygentabdemowidget.ui:93
msgid "Text Alongside Icons"
msgstr "tekst pored ikona"

#. i18n: ectx: property (text), item, widget (KComboBox, textPosition)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:449
msgid "Text Under Icons"
msgstr "tekst ispod ikona"

#. i18n: ectx: property (text), widget (QLabel, label_12)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:470
msgid "Icon size:"
msgstr "Veličina ikona:"

#. i18n: ectx: property (text), item, widget (KComboBox, iconSize)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:484
msgid "Small (16x16)"
msgstr "male (16×16)"

#. i18n: ectx: property (text), item, widget (KComboBox, iconSize)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:489
msgid "Medium (22x22)"
msgstr "srednje (22×22)"

#. i18n: ectx: property (text), item, widget (KComboBox, iconSize)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:494
msgid "Large (32x32)"
msgstr "velike (32×32)"

#. i18n: ectx: property (text), item, widget (KComboBox, iconSize)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:499
msgid "Huge (48x48)"
msgstr "Ogromne (48×48)"

#. i18n: ectx: property (text), widget (QLabel, label)
#: oxygen/demo/ui/oxygenframedemowidget.ui:19
msgid "Layout direction:"
msgstr "Smijer rasporeda:"

# >> @item:inlistbox Layout Direction:
#. i18n: ectx: property (text), item, widget (KComboBox, directionComboBox)
#: oxygen/demo/ui/oxygenframedemowidget.ui:33
msgid "Left to Right"
msgstr "slijeva udesno"

# >> @item:inlistbox Layout Direction:
#. i18n: ectx: property (text), item, widget (KComboBox, directionComboBox)
#: oxygen/demo/ui/oxygenframedemowidget.ui:38
msgid "Right to Left"
msgstr "zdesna ulijevo"

# >> @item:inlistbox Layout Direction:
#. i18n: ectx: property (text), item, widget (KComboBox, directionComboBox)
#: oxygen/demo/ui/oxygenframedemowidget.ui:43
msgid "Top to Bottom"
msgstr "odozgo nadolje"

# >> @item:inlistbox Layout Direction:
#. i18n: ectx: property (text), item, widget (KComboBox, directionComboBox)
#: oxygen/demo/ui/oxygenframedemowidget.ui:48
msgid "Bottom to Top"
msgstr "odozdo nagore"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: oxygen/demo/ui/oxygenframedemowidget.ui:73
msgid "GroupBox"
msgstr "Grupa"

#. i18n: ectx: property (text), widget (QCheckBox, flatGroupBoxCheckBox)
#: oxygen/demo/ui/oxygenframedemowidget.ui:79
msgctxt "Flat group box. No frame is actually drawn"
msgid "Flat"
msgstr "Ravno"

#. i18n: ectx: property (text), widget (QRadioButton, raisedFrameRadioButton)
#: oxygen/demo/ui/oxygenframedemowidget.ui:121
msgid "Raised"
msgstr "Izdignuto"

#. i18n: ectx: property (text), widget (QRadioButton, plainFrameRadioButton)
#: oxygen/demo/ui/oxygenframedemowidget.ui:134
msgctxt "Flat frame. No frame is actually drawn."
msgid "Flat"
msgstr "Ravno"

#. i18n: ectx: property (text), widget (QRadioButton, sunkenFrameRadioButton)
#: oxygen/demo/ui/oxygenframedemowidget.ui:141
msgid "Sunken"
msgstr "Utisnuto"

#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: oxygen/demo/ui/oxygenframedemowidget.ui:168
msgid "Tab Widget"
msgstr "Grafička kontrola jezička"

#. i18n: ectx: property (text), widget (QLabel, label)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:20
msgid "Single line text editor:"
msgstr "Jednoredni uređivač teksta:"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:56
msgid "Password editor:"
msgstr "Uređivač lozinke:"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:79
msgid "Editable combobox"
msgstr "Uredivi padajući spiskovi"

#. i18n: ectx: property (text), item, widget (KComboBox, kcombobox)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:96
msgid "First item"
msgstr "prva stavka"

#. i18n: ectx: property (text), item, widget (KComboBox, kcombobox)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:101
msgid "Second item"
msgstr "druga stavka"

#. i18n: ectx: property (text), item, widget (KComboBox, kcombobox)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:106
msgid "Third item"
msgstr "treća stavka"

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:114
msgid "Spinbox:"
msgstr "Brojčanik:"

#. i18n: ectx: property (text), widget (QLabel, label_5)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:140
msgid "Multi-line text editor:"
msgstr "Višeredni uređivač teksta:"

#. i18n: ectx: property (text), widget (QCheckBox, wrapCheckBox)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:150
msgid "Wrap words"
msgstr "Prelom redova"

#. i18n: ectx: property (text), widget (QCheckBox, flatCheckBox)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:157
msgid "Use flat widgets"
msgstr "Pljosnate grafičke kontrole"

#. i18n: ectx: property (text), item, widget (QListWidget, listWidget)
#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:25
#: oxygen/demo/ui/oxygenlistdemowidget.ui:95
msgid "First Item"
msgstr "prva stavka"

#. i18n: ectx: property (text), item, widget (QListWidget, listWidget)
#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:30
#: oxygen/demo/ui/oxygenlistdemowidget.ui:71
msgid "Second Item"
msgstr "druga stavka"

#. i18n: ectx: property (text), item, widget (QListWidget, listWidget)
#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:35
#: oxygen/demo/ui/oxygenlistdemowidget.ui:55
msgid "Third Item"
msgstr "treća stavka"

#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:45
msgid "Title"
msgstr "naslov"

#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:50
msgid "Description"
msgstr "opis"

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:58
msgid "Third Description"
msgstr "treći opis"

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:62
msgid "Third Subitem"
msgstr "treća podstavka"

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:65
msgid "Third Subitem Description"
msgstr "opis treće podstavke"

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:74
msgid "Second Description"
msgstr "drugi opis"

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:78
msgid "Second Subitem"
msgstr "druga podstavka"

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:81
msgid "Second Subitem Description"
msgstr "opis druge podstavke"

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:86
msgid "First Subitem"
msgstr "prva podstavka"

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:89
msgid "First Subitem Description"
msgstr "opis prve podstavke"

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:98
msgid "First Description"
msgstr "prvi opis"

#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:108
msgid "New Row"
msgstr "nova vrsta"

#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:113
msgid "First Row"
msgstr "prva vrsta"

#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:118
msgid "Third Row"
msgstr "treća vrsta"

#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:123
msgid "First Column"
msgstr "prva kolona"

#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:128
msgid "Second Column"
msgstr "druga kolona"

#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:133
msgid "Third Column"
msgstr "treća kolona"

#. i18n: ectx: property (text), item, widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:138
msgid "Top-left"
msgstr "gore lijevo"

#. i18n: ectx: property (text), item, widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:143
msgid "Top"
msgstr "gore"

#. i18n: ectx: property (text), item, widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:148
msgid "Top-right"
msgstr "gore desno"

#. i18n: ectx: property (text), item, widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:153
msgid "Left "
msgstr "lijevo "

#. i18n: ectx: property (text), item, widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:158
msgid "Center"
msgstr "sredina"

#. i18n: ectx: property (text), item, widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:163
msgid "Right"
msgstr "desno"

#. i18n: ectx: property (text), item, widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:168
msgid "Bottom-left"
msgstr "dolje lijevo"

#. i18n: ectx: property (text), item, widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:173
msgid "Bottom"
msgstr "dolje"

#. i18n: ectx: property (text), item, widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:178
msgid "Bottom-right"
msgstr "dolje desno"

#. i18n: ectx: property (windowTitle), widget (QWidget, Editors)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:33
msgid "Editors"
msgstr "Uređivači"

#. i18n: ectx: property (text), widget (QLabel, label)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:39
msgid "Title:"
msgstr "Naslov:"

#. i18n: ectx: property (windowTitle), widget (QWidget, Toolbox)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:66
msgid "Toolbox"
msgstr "Alatnica"

#. i18n: ectx: attribute (label), widget (QWidget, page)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:84
msgid "First Page"
msgstr "Prva stranica"

#. i18n: ectx: attribute (label), widget (QWidget, page_2)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:98
msgid "Second Page"
msgstr "Druga stranica"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:104
msgid "First Label"
msgstr "Prva oznaka"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:111
msgid "Second Label"
msgstr "Druga oznaka"

#. i18n: ectx: attribute (label), widget (QWidget, page_3)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:140
msgid "Third Page"
msgstr "Treća stranica"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: oxygen/demo/ui/oxygensliderdemowidget.ui:20
msgid "Horizontal"
msgstr "Vodoravno"

#. i18n: ectx: property (text), widget (QCheckBox, checkBox)
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_2)
#: oxygen/demo/ui/oxygensliderdemowidget.ui:49
#: oxygen/demo/ui/oxygensliderdemowidget.ui:66
msgid "Busy"
msgstr "Zauzet"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: oxygen/demo/ui/oxygensliderdemowidget.ui:121
msgid "Vertical"
msgstr "Uspravno"

#. i18n: ectx: property (text), widget (QLabel, label)
#: oxygen/demo/ui/oxygentabdemowidget.ui:19
msgid "Tab position:"
msgstr "Položaj kartice:"

#. i18n: ectx: property (text), item, widget (KComboBox, tabPositionComboBox)
#: oxygen/demo/ui/oxygentabdemowidget.ui:33
msgid "North"
msgstr "sjever"

#. i18n: ectx: property (text), item, widget (KComboBox, tabPositionComboBox)
#: oxygen/demo/ui/oxygentabdemowidget.ui:38
msgid "South"
msgstr "jug"

#. i18n: ectx: property (text), item, widget (KComboBox, tabPositionComboBox)
#: oxygen/demo/ui/oxygentabdemowidget.ui:43
msgid "West"
msgstr "zapad"

#. i18n: ectx: property (text), item, widget (KComboBox, tabPositionComboBox)
#: oxygen/demo/ui/oxygentabdemowidget.ui:48
msgid "East"
msgstr "istok"

#. i18n: ectx: property (text), widget (QCheckBox, documentModeCheckBox)
#: oxygen/demo/ui/oxygentabdemowidget.ui:103
msgid "Document mode"
msgstr "Režim dokumenta"

#. i18n: ectx: property (text), widget (QCheckBox, cornerWidgetsCheckBox)
#: oxygen/demo/ui/oxygentabdemowidget.ui:110
msgid "Show Corner Buttons"
msgstr "Prikaži dugmad uglova"

#. i18n: ectx: property (text), widget (QCheckBox, tabBarVisibilityCheckBox)
#: oxygen/demo/ui/oxygentabdemowidget.ui:117
msgid "Hide tabbar"
msgstr "Sakrij traku jezičaka"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: oxygen/demo/ui/oxygentabdemowidget.ui:124
msgid "Preview"
msgstr "Pregled"