~ubuntu-branches/ubuntu/raring/kde-l10n-ga/raring-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
1205
1206
# Irish translation of kstyle_config
# Copyright (C) 2009 This_file_is_part_of_KDE
# This file is distributed under the same license as the kstyle_config package.
# Kevin Scannell <kscanne@gmail.com>, 2009.
msgid ""
msgstr ""
"Project-Id-Version: kdebase/kstyle_config.po\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2013-05-22 04:55+0000\n"
"PO-Revision-Date: 2007-08-22 12:11-0500\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
"Language: ga\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? "
"3 : 4\n"

msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Kevin Scannell"

msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "kscanne@gmail.com"

#: oxygen/config/main.cpp:38 oxygen/config/oxygenconfigdialog.cpp:56
#: oxygen/config/oxygenconfigdialog.cpp:169
msgid "Oxygen Settings"
msgstr "Socruithe Oxygen"

#: oxygen/config/main.cpp:40
msgid "Oxygen expert configuration tool"
msgstr "Uirlis chumraíochta Oxygen do shaineolaithe"

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

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

#: oxygen/config/oxygenanimationconfigwidget.cpp:50
msgid "Focus, mouseover and widget state transition"
msgstr ""

#: oxygen/config/oxygenanimationconfigwidget.cpp:51
msgid ""
"Configure widgets' focus and mouseover highlight animation, as well as "
"widget enabled/disabled state transition"
msgstr ""

#: oxygen/config/oxygenanimationconfigwidget.cpp:54
msgid "Toolbar highlight"
msgstr "Aibhsiú an bharra uirlisí"

#: oxygen/config/oxygenanimationconfigwidget.cpp:55
msgid "Configure toolbars' mouseover highlight animation"
msgstr ""

#: oxygen/config/oxygenanimationconfigwidget.cpp:59
msgid "Menu bar highlight"
msgstr "Aibhsiú barra roghchláir"

#: oxygen/config/oxygenanimationconfigwidget.cpp:60
msgid "Configure menu bars' mouseover highlight animation"
msgstr ""

#: oxygen/config/oxygenanimationconfigwidget.cpp:63
msgid "Menu highlight"
msgstr "Aibhsiú roghchlár"

#: oxygen/config/oxygenanimationconfigwidget.cpp:64
msgid "Configure menus' mouseover highlight animation"
msgstr ""

#: oxygen/config/oxygenanimationconfigwidget.cpp:67
msgid "Progress bar animation"
msgstr "Beochan an bharra dul chun cinn"

#: oxygen/config/oxygenanimationconfigwidget.cpp:68
msgid "Configure progress bars' steps animation"
msgstr ""

#: oxygen/config/oxygenanimationconfigwidget.cpp:71
msgid "Tab transitions"
msgstr "Trasdulta cluaisíní"

#: oxygen/config/oxygenanimationconfigwidget.cpp:71
msgid "Configure fading transition between tabs"
msgstr ""

#: oxygen/config/oxygenanimationconfigwidget.cpp:74
msgid "Label transitions"
msgstr "Trasdulta lipéad"

#: oxygen/config/oxygenanimationconfigwidget.cpp:74
msgid "Configure fading transition when a label's text is changed"
msgstr ""

#: oxygen/config/oxygenanimationconfigwidget.cpp:77
msgid "Text editor transitions"
msgstr "Trasdulta eagarthóra téacs"

#: oxygen/config/oxygenanimationconfigwidget.cpp:77
msgid "Configure fading transition when an editor's text is changed"
msgstr ""

#: oxygen/config/oxygenanimationconfigwidget.cpp:80
msgid "Combo box transitions"
msgstr "Trasdulta boscaí teaglama"

#: oxygen/config/oxygenanimationconfigwidget.cpp:80
msgid ""
"Configure fading transition when a combo box's selected choice is changed"
msgstr ""

#: oxygen/config/oxygenanimationconfigwidget.cpp:90
msgid "Busy indicator steps"
msgstr ""

#: oxygen/config/oxygenanimationconfigwidget.cpp:91
msgid "Configure progress bars' busy indicator animation"
msgstr ""

#: oxygen/config/oxygenconfigdialog.cpp:72
msgid "Widget Style"
msgstr "Stíl na nGiuirléidí"

#: oxygen/config/oxygenconfigdialog.cpp:73
msgid "Modify the appearance of widgets"
msgstr "Athraigh an dealramh atá ar ghiuirléidí"

#: oxygen/config/oxygenconfigdialog.cpp:91
msgid "Window Decorations"
msgstr "Maisiúcháin Fhuinneog"

#: oxygen/config/oxygenconfigdialog.cpp:92
msgid "Modify the appearance of window decorations"
msgstr "Athraigh na maisiúcháin fhuinneog"

#: oxygen/config/oxygenconfigdialog.cpp:202
#: oxygen/config/oxygenconfigdialog.cpp:212
msgid "Unable to find oxygen style configuration plugin"
msgstr "Ní féidir breiseán cumraíochta stíl Oxygen a aimsiú"

#: oxygen/config/oxygenconfigdialog.cpp:248
#: oxygen/config/oxygenconfigdialog.cpp:258
msgid "Unable to find oxygen decoration configuration plugin"
msgstr ""

#: oxygen/config/oxygenstyleconfig.cpp:188
msgid "Hide Advanced Configuration Options"
msgstr ""

#: oxygen/config/oxygenstyleconfig.cpp:188
msgid "Show Advanced Configuration Options"
msgstr ""

#: oxygen/config/oxygenstyleconfig.cpp:206
msgid "Animations"
msgstr "Íomhánna Beo"

#. 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 "Fráma"

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

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

#. i18n: ectx: property (text), item, widget (KComboBox, typeComboBox)
#: oxygen/config/ui/oxygenfollowmouseanimationconfigbox.ui:51
msgid "Follow Mouse"
msgstr "Lean an Luch"

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

#. 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 ""

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

#. i18n: ectx: attribute (title), widget (QWidget, tab_1)
#: oxygen/config/ui/oxygenstyleconfig.ui:45
msgid "General"
msgstr "Ginearálta"

#. i18n: ectx: property (text), widget (QCheckBox, _toolBarDrawItemSeparator)
#: oxygen/config/ui/oxygenstyleconfig.ui:51
msgid "Draw toolbar item separators"
msgstr "Dear deighilteoirí sa bharra uirlisí idir míreanna"

#. i18n: ectx: property (text), widget (QCheckBox, _checkDrawX)
#: oxygen/config/ui/oxygenstyleconfig.ui:58
msgid "Use 'X' in checkboxes instead of check"
msgstr "Úsáid 'X' i dticbhoscaí in ionad tic"

#. i18n: ectx: property (text), widget (QCheckBox, _splitterProxyEnabled)
#: oxygen/config/ui/oxygenstyleconfig.ui:65
msgid "Enable extended resize handles"
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, _cacheEnabled)
#: oxygen/config/ui/oxygenstyleconfig.ui:72
msgid "Enable pixmap cache"
msgstr ""

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

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: oxygen/config/ui/oxygenstyleconfig.ui:94
msgid "Windows' drag mode:"
msgstr "Mód tarraingthe fuinneog::"

#. i18n: ectx: property (text), item, widget (KComboBox, _windowDragMode)
#: oxygen/config/ui/oxygenstyleconfig.ui:108
msgid "Drag windows from titlebar only"
msgstr "Tarraing fuinneoga ón bharra teidil amháin"

#. i18n: ectx: property (text), item, widget (KComboBox, _windowDragMode)
#: oxygen/config/ui/oxygenstyleconfig.ui:113
msgid "Drag windows from titlebar, menubar and toolbars"
msgstr ""
"Tarraing fuinneoga ón bharra teidil, ón bharra roghchlár, agus ó bharraí "
"uirlisí"

#. i18n: ectx: property (text), item, widget (KComboBox, _windowDragMode)
#: oxygen/config/ui/oxygenstyleconfig.ui:118
msgid "Drag windows from all empty areas"
msgstr "Tarraing fuinneoga ó gach limistéar folamh"

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

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

#. i18n: ectx: property (text), item, widget (KComboBox, _mnemonicsMode)
#: oxygen/config/ui/oxygenstyleconfig.ui:152
msgid "Show Keyboard Accelerators When Needed"
msgstr ""

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

#. i18n: ectx: property (text), widget (QCheckBox, _useWMMoveResize)
#: oxygen/config/ui/oxygenstyleconfig.ui:167
msgid "Use window manager to perform windows' drag"
msgstr "Úsáid bainisteoir na bhfuinneog chun fuinneoga a tharraingt"

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

#. i18n: ectx: property (text), widget (QCheckBox, _viewDrawFocusIndicator)
#: oxygen/config/ui/oxygenstyleconfig.ui:194
msgid "Draw focus indicator"
msgstr "Dear táscaire fócais"

#. i18n: ectx: property (text), widget (QCheckBox, _viewDrawTreeBranchLines)
#: oxygen/config/ui/oxygenstyleconfig.ui:201
msgid "Draw tree branch lines"
msgstr "Dear craobhlínte crainn"

#. i18n: ectx: property (text), widget (QCheckBox, _viewDrawTriangularExpander)
#: oxygen/config/ui/oxygenstyleconfig.ui:208
msgid "Use triangle tree expander instead of +/-"
msgstr "Úsáid triantán in ionad +/- chun an crann a leathnú"

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: oxygen/config/ui/oxygenstyleconfig.ui:237
msgid "Triangle size:"
msgstr "Méid an triantáin:"

#. i18n: ectx: property (text), item, widget (KComboBox, _viewTriangularExpanderSize)
#: oxygen/config/ui/oxygenstyleconfig.ui:248
msgctxt "triangle size"
msgid "Tiny"
msgstr "An-bheag"

#. i18n: ectx: property (text), item, widget (KComboBox, _viewTriangularExpanderSize)
#: oxygen/config/ui/oxygenstyleconfig.ui:253
msgctxt "triangle size"
msgid "Small"
msgstr "Beag"

#. i18n: ectx: property (text), item, widget (KComboBox, _viewTriangularExpanderSize)
#: oxygen/config/ui/oxygenstyleconfig.ui:258
msgctxt "triangle size"
msgid "Normal"
msgstr "Gnách"

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

#. 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 "Singil"

#. 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 "Simplí"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: oxygen/config/ui/oxygenstyleconfig.ui:329
msgid "Inactive tabs style:"
msgstr "Stíl cluaisíní neamhghníomhacha:"

#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#: oxygen/config/ui/oxygenstyleconfig.ui:337
msgid "Scrollbars"
msgstr "Scrollbharraí"

#. i18n: ectx: property (text), widget (QLabel, label)
#: oxygen/config/ui/oxygenstyleconfig.ui:345
msgid "Scrollbar width:"
msgstr "Leithead an scrollbharra"

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

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

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

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

#. 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 "Cnaipe amháin"

#. 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 "Dhá chnaipe"

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

#. i18n: ectx: attribute (title), widget (QWidget, tab_5)
#: oxygen/config/ui/oxygenstyleconfig.ui:500
msgid "Menu Highlight"
msgstr "Aibhsiú Roghchlár"

#. i18n: ectx: property (text), widget (QRadioButton, _menuHighlightDark)
#: oxygen/config/ui/oxygenstyleconfig.ui:506
msgid "Use dark color"
msgstr "Úsáid dath dorcha"

#. i18n: ectx: property (text), widget (QRadioButton, _menuHighlightStrong)
#: oxygen/config/ui/oxygenstyleconfig.ui:513
msgid "Use selection color (plain)"
msgstr "Úsáid dath roghnúcháin (simplí)"

#. i18n: ectx: property (text), widget (QRadioButton, _menuHighlightSubtle)
#: oxygen/config/ui/oxygenstyleconfig.ui:520
msgid "Use selection color (subtle)"
msgstr "Úsáid dath roghnúcháin (caol)"

#: oxygen/demo/main.cpp:41 oxygen/demo/oxygendemodialog.cpp:57
#: oxygen/demo/oxygendemodialog.cpp:198
msgid "Oxygen Demo"
msgstr "Taispeántas Oxygen"

#: oxygen/demo/main.cpp:43
msgid "Oxygen style demonstration"
msgstr "Taispeántas stíl Oxygen"

#. 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 "Gnách"

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

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

#: oxygen/demo/oxygenbuttondemowidget.cpp:60
#: oxygen/demo/oxygenbuttondemowidget.cpp:79
#: oxygen/demo/oxygenbuttondemowidget.cpp:251
#: oxygen/demo/oxygenbuttondemowidget.cpp:261
msgid "Save"
msgstr "Sábháil"

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

#: oxygen/demo/oxygendemodialog.cpp:69
msgid "Enabled"
msgstr "Cumasaithe"

#: oxygen/demo/oxygendemodialog.cpp:74
msgid "Right to left layout"
msgstr "Leagan amach deas-go-clé"

#: oxygen/demo/oxygendemodialog.cpp:92
msgid "Input Widgets"
msgstr "Giuirléidí Ionchurtha"

#: oxygen/demo/oxygendemodialog.cpp:94
msgid "Shows the appearance of text input widgets"
msgstr "Taispeánann sé dealreamh atá ar ghiuirléidí ionchurtha"

#: oxygen/demo/oxygendemodialog.cpp:102
msgid "Tab Widgets"
msgstr "Giuirléidí Cluaisín"

#: oxygen/demo/oxygendemodialog.cpp:104
msgid "Shows the appearance of tab widgets"
msgstr "Taispeánann sé dealramh atá ar ghiuirléidí cluaisín"

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

#: oxygen/demo/oxygendemodialog.cpp:114
msgid "Shows the appearance of buttons"
msgstr "Taispeáin cuma na gcnaipí"

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

#: oxygen/demo/oxygendemodialog.cpp:124
msgid "Shows the appearance of lists, trees and tables"
msgstr "Taispeánann sé an dealramh atá ar liostaí, ar chrainn, agus ar tháblaí"

#: oxygen/demo/oxygendemodialog.cpp:133
msgid "Frames"
msgstr "Frámaí"

#: oxygen/demo/oxygendemodialog.cpp:135
msgid "Shows the appearance of various framed widgets"
msgstr "Taispeánann sé dealramh atá ar ghiuirléidí éagsúla frámaithe"

#: oxygen/demo/oxygendemodialog.cpp:153
msgid "Sliders"
msgstr "Barraí Sleamhnáin"

#: oxygen/demo/oxygendemodialog.cpp:155
msgid "Shows the appearance of sliders, progress bars and scrollbars"
msgstr ""
"Taispeánann sé an dealramh atá ar shleamhnáin, ar bharraí dul chun cinn, "
"agus ar scrollbharraí"

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

#: oxygen/demo/oxygendemodialog.cpp:166
msgid "Emulates user interaction with widgets for benchmarking"
msgstr ""

#: oxygen/demo/oxygeninputdemowidget.cpp:39
msgid "Example text"
msgstr "Téacs samplach"

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

#: oxygen/demo/oxygenmdidemowidget.cpp:52
msgid "Tile"
msgstr "Tíligh"

#: oxygen/demo/oxygenmdidemowidget.cpp:55
msgid "Cascade"
msgstr "Cascáidigh"

#: oxygen/demo/oxygenmdidemowidget.cpp:58
msgid "Select Next Window"
msgstr "Roghnaigh an Chéad Fhuinneog Eile"

#: oxygen/demo/oxygenmdidemowidget.cpp:62
msgid "Select Previous Window"
msgstr "Roghnaigh an Fhuinneog Roimhe Seo"

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

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

#. 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 ""

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

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

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

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

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

#. i18n: ectx: property (text), widget (QCheckBox, checkBox_2)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:35
msgid "Partial"
msgstr "Neamhiomlán"

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

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:73
msgid "Radiobuttons"
msgstr "Cnaipí raidió"

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

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

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

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:126
msgid "Pushbuttons"
msgstr "Brúchnaipí"

#. i18n: ectx: property (text), widget (QLabel, label_7)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:132
msgid "Text only:"
msgstr "Téacs amháin:"

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

#. 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 ""

#. i18n: ectx: property (toolTip), widget (KComboBox, kcombobox)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:162
msgid "This is a normal, text only combo box"
msgstr ""

#. i18n: ectx: property (text), item, widget (KComboBox, kcombobox)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:169
msgid "Small"
msgstr "Beag"

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

#. i18n: ectx: property (text), widget (QLabel, label_8)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:200
msgid "Text and icon:"
msgstr "Téacs agus deilbhín:"

#. i18n: ectx: property (toolTip), widget (KPushButton, pushButton_3)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:210
msgid "This is a normal, text and icon button"
msgstr ""

#. 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 ""

#. i18n: ectx: property (text), widget (QCheckBox, flatButtonCheckBox)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:230
msgid "Use flat buttons"
msgstr "Úsáid cnaipí maola"

#. 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 ""

#. i18n: ectx: property (toolTip), widget (QToolButton, toolButton)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:244
msgid "This is a normal, text only tool button"
msgstr ""

#. 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 ""

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:267
msgid "Toolbuttons"
msgstr "Cnaipí uirlise"

#. 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 "Maol"

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

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

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

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

#. 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 "Ionad an téacs:"

#. 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 "Deilbhíní Amháin"

#. 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 "Téacs Amháin"

#. 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 "Téacs Taobh Leis na Deilbhíní"

#. i18n: ectx: property (text), item, widget (KComboBox, textPosition)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:449
msgid "Text Under Icons"
msgstr "Téacs Faoi na Deilbhíní"

#. i18n: ectx: property (text), widget (QLabel, label_12)
#: oxygen/demo/ui/oxygenbuttondemowidget.ui:470
msgid "Icon size:"
msgstr "Méid na ndeilbhíní:"

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

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

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

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

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

#. i18n: ectx: property (text), item, widget (KComboBox, directionComboBox)
#: oxygen/demo/ui/oxygenframedemowidget.ui:33
msgid "Left to Right"
msgstr "Clé-go-Deas"

#. i18n: ectx: property (text), item, widget (KComboBox, directionComboBox)
#: oxygen/demo/ui/oxygenframedemowidget.ui:38
msgid "Right to Left"
msgstr "Deas-go-Clé"

#. i18n: ectx: property (text), item, widget (KComboBox, directionComboBox)
#: oxygen/demo/ui/oxygenframedemowidget.ui:43
msgid "Top to Bottom"
msgstr "Barr go Bun"

#. i18n: ectx: property (text), item, widget (KComboBox, directionComboBox)
#: oxygen/demo/ui/oxygenframedemowidget.ui:48
msgid "Bottom to Top"
msgstr "Bun go Barr"

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

#. 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 "Maol"

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

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

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

#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: oxygen/demo/ui/oxygenframedemowidget.ui:168
msgid "Tab Widget"
msgstr "Giuirléid Chluaisín"

#. i18n: ectx: property (text), widget (QLabel, label)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:20
msgid "Single line text editor:"
msgstr "Eagarthóir téacs líne amháin:"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:56
msgid "Password editor:"
msgstr "Eagarthóir focal faire:"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:79
msgid "Editable combobox"
msgstr "Bosca teaglama ineagarthóireachta"

#. i18n: ectx: property (text), item, widget (KComboBox, kcombobox)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:96
msgid "First item"
msgstr "An chéad mhír"

#. i18n: ectx: property (text), item, widget (KComboBox, kcombobox)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:101
msgid "Second item"
msgstr "An dara mír"

#. i18n: ectx: property (text), item, widget (KComboBox, kcombobox)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:106
msgid "Third item"
msgstr "An tríú mír"

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

#. i18n: ectx: property (text), widget (QLabel, label_5)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:140
msgid "Multi-line text editor:"
msgstr "Eagarthóir téacs il-líne:"

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

#. i18n: ectx: property (text), widget (QCheckBox, flatCheckBox)
#: oxygen/demo/ui/oxygeninputdemowidget.ui:157
msgid "Use flat widgets"
msgstr "Úsáid giuirléidí maola"

#. 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 "An Chéad Mhír"

#. 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 "An Dara Mír"

#. 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 "An Tríú Mír"

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

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

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:58
msgid "Third Description"
msgstr "An Tríú Cur Síos"

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:62
msgid "Third Subitem"
msgstr "An Tríú Fomhír"

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

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:74
msgid "Second Description"
msgstr "An Dara Cur Síos"

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:78
msgid "Second Subitem"
msgstr "An Dara Fomhír"

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

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:86
msgid "First Subitem"
msgstr "An Chéad Fhomhír"

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

#. i18n: ectx: property (text), item, widget (QTreeWidget, treeWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:98
msgid "First Description"
msgstr "An Chéad Chur Síos"

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

#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:113
msgid "First Row"
msgstr "An Chéad Ró"

#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:118
msgid "Third Row"
msgstr "An Tríú Ró"

#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:123
msgid "First Column"
msgstr "An Chéad Cholún"

#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:128
msgid "Second Column"
msgstr "An Dara Colún"

#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#: oxygen/demo/ui/oxygenlistdemowidget.ui:133
msgid "Third Column"
msgstr "An Tríú Colún"

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

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

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

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

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

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

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

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

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

#. i18n: ectx: property (windowTitle), widget (QWidget, Editors)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:33
msgid "Editors"
msgstr "Eagarthóirí"

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

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

#. i18n: ectx: attribute (label), widget (QWidget, page)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:84
msgid "First Page"
msgstr "An Chéad Leathanach"

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

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:104
msgid "First Label"
msgstr "An Chéad Lipéad"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:111
msgid "Second Label"
msgstr "An Dara Lipéad"

#. i18n: ectx: attribute (label), widget (QWidget, page_3)
#: oxygen/demo/ui/oxygenmdidemowidget.ui:140
msgid "Third Page"
msgstr "An Tríú Leathanach"

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

#. 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 "Gafa"

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

#. i18n: ectx: property (text), widget (QLabel, label)
#: oxygen/demo/ui/oxygentabdemowidget.ui:19
msgid "Tab position:"
msgstr "Ionad an chluaisín:"

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

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

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

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

#. i18n: ectx: property (text), widget (QCheckBox, documentModeCheckBox)
#: oxygen/demo/ui/oxygentabdemowidget.ui:103
msgid "Document mode"
msgstr "Mód cáipéise"

#. i18n: ectx: property (text), widget (QCheckBox, cornerWidgetsCheckBox)
#: oxygen/demo/ui/oxygentabdemowidget.ui:110
msgid "Show Corner Buttons"
msgstr "Taispeáin Cnaipí Cúinne"

#. i18n: ectx: property (text), widget (QCheckBox, tabBarVisibilityCheckBox)
#: oxygen/demo/ui/oxygentabdemowidget.ui:117
msgid "Hide tabbar"
msgstr "Folaigh barra na gcluaisíní"

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

#~ msgid "Use wider lines"
#~ msgstr "Úsáid línte níos leithne"

#~ msgid "Animate progress bars"
#~ msgstr "Beoigh na barraí dul chun cinn"

#~ msgid "Web style plugin"
#~ msgstr "Breiseán stíle Gréasáin"

#~ msgid "modified"
#~ msgstr "athraithe"

#~ msgid "oxygen-settings - information"
#~ msgstr "oxygen-settings - eolas"

#~ msgid "CheckBox"
#~ msgstr "Ticbhosca"

#~ msgid "Duration (ms):"
#~ msgstr "Fad ama (ms):"

#~ msgid "Animate tab transitions"
#~ msgstr "Beoigh gluaiseacht cluaisíní"

#~ msgid "Draw scrollbar bevel"
#~ msgstr "Dear beibheal scrollbharra"

#~ msgid "Colorful hovered scrollbars"
#~ msgstr "Scrollbharraí ildathacha ainlithe"

#~ msgid "Plain"
#~ msgstr "Simplí"

#~ msgid "Width:"
#~ msgstr "Leithead:"

#~ msgid "Draw toolbar separator"
#~ msgstr "Dear deighilteoir sa bharra uirlisí"

#~ msgid "Highlight focused text input fields"
#~ msgstr "Aibhsigh réimsí ionchurtha ina bhfuil an fócas"

#~ msgid "Custom text input highlight color:"
#~ msgstr "Dath saincheaptha aibhsithe do théacs ionchurtha:"

#~ msgid "Custom checkmark color:"
#~ msgstr "Dath saincheaptha ticeanna:"