File: pl.po

package info (click to toggle)
ddccontrol-db 20250504-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,820 kB
  • sloc: xml: 5,949; sh: 119; makefile: 32; sed: 16; perl: 12
file content (1011 lines) | stat: -rw-r--r-- 18,276 bytes parent folder | download | duplicates (3)
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
# Polish translations for DDC/CI control tool database package.
# Copyright (C) 2005 Oleg I. Vdovikin and Nicolas Boichat
# This file is distributed under the same license as the DDC/CI control tool database package.
# Radek Marcinkowski <radek@cbk.waw.pl>, 2005.
# Jakub Bogusz <qboosh@pld-linux.org>, 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: ddccontrol-db 20060730\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-10-14 14:23+0800\n"
"PO-Revision-Date: 2006-10-14 14:25+0730\n"
"Last-Translator: Nicolas Boichat <nicolas@boichat.ch>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"

#: ../db/options.xml.h:3
#, c-format
msgid "Color settings"
msgstr "Ustawienia kolorw"

#: ../db/options.xml.h:4
#, c-format
msgid "Brightness and Contrast"
msgstr "Jasno i kontrast"

#: ../db/options.xml.h:5
#, c-format
msgid "Brightness"
msgstr "Jasno"

#: ../db/options.xml.h:6
#, c-format
msgid "Contrast"
msgstr "Kontrast"

#: ../db/options.xml.h:7
#, c-format
msgid "Magic Bright Mode"
msgstr "Tryb Magic Bright"

#: ../db/options.xml.h:8
#, c-format
msgid "Text"
msgstr "Tekst"

#: ../db/options.xml.h:9
#, c-format
msgid "Internet"
msgstr "Internet"

#: ../db/options.xml.h:10
#, c-format
msgid "Game"
msgstr "Gra"

#: ../db/options.xml.h:11
#, c-format
msgid "Sport"
msgstr "Sport"

#: ../db/options.xml.h:12
#, c-format
msgid "Entertain"
msgstr "Rozrywka"

#: ../db/options.xml.h:13 ../db/options.xml.h:59
#, c-format
msgid "Custom"
msgstr "Wasny"

#: ../db/options.xml.h:14
#, c-format
msgid "Super Bright Mode"
msgstr "Tryb Super Bright"

#: ../db/options.xml.h:15
#, c-format
msgid "One"
msgstr "Jeden"

#: ../db/options.xml.h:16
#, c-format
msgid "Two"
msgstr "Dwa"

#: ../db/options.xml.h:17
#, c-format
msgid "Three"
msgstr "Trzy"

#: ../db/options.xml.h:18
#, c-format
msgid "Auto Level (Needs a blank line to work)"
msgstr "Automatyczny poziom (wymaga pustej linii do dziaania)"

#: ../db/options.xml.h:19
#, c-format
msgid "Backlight"
msgstr "Podwietlenie"

#: ../db/options.xml.h:20
#, c-format
msgid "ECO Mode"
msgstr "Tryb ECO"

#: ../db/options.xml.h:21
#, c-format
msgid "High"
msgstr "Due"

#: ../db/options.xml.h:22
#, c-format
msgid "Middle"
msgstr "rednie"

#: ../db/options.xml.h:23
#, c-format
msgid "Low"
msgstr "Mae"

#: ../db/options.xml.h:24
#, c-format
msgid "Auto"
msgstr "Automatyczne"

#: ../db/options.xml.h:25 ../db/options.xml.h:26
#, c-format
msgid "Gamma"
msgstr "Gamma"

#: ../db/options.xml.h:27
#, c-format
msgid "-0.5"
msgstr "-0.5"

#: ../db/options.xml.h:28
#, c-format
msgid "-0.3"
msgstr "-0.3"

#: ../db/options.xml.h:29
#, c-format
msgid "-0.2"
msgstr "-0.2"

#: ../db/options.xml.h:30
#, c-format
msgid "-0.1"
msgstr "-0.1"

#: ../db/options.xml.h:31
#, c-format
msgid "0"
msgstr "0"

#: ../db/options.xml.h:32
#, c-format
msgid "+0.1"
msgstr "+0.1"

#: ../db/options.xml.h:33
#, c-format
msgid "+0.2"
msgstr "+0.2"

#: ../db/options.xml.h:34
#, c-format
msgid "+0.3"
msgstr "+0.3"

#: ../db/options.xml.h:35
#, c-format
msgid "+0.4"
msgstr "+0.4"

#: ../db/options.xml.h:36
#, c-format
msgid "+0.5"
msgstr "+0.5"

#: ../db/options.xml.h:37
#, c-format
msgid "+0.6"
msgstr "+0.6"

#: ../db/options.xml.h:38
#, c-format
msgid "+0.7"
msgstr "+0.7"

#: ../db/options.xml.h:39
#, c-format
msgid "+0.9"
msgstr "+0.9"

#: ../db/options.xml.h:40
#, c-format
msgid "1.8"
msgstr "1.8"

#: ../db/options.xml.h:41
#, c-format
msgid "2.0"
msgstr "2.0"

#: ../db/options.xml.h:42
#, c-format
msgid "2.2"
msgstr "2.2"

#: ../db/options.xml.h:43
#, c-format
msgid "2.4"
msgstr "2.4"

#: ../db/options.xml.h:44
#, c-format
msgid "2.6"
msgstr "2.6"

#: ../db/options.xml.h:45
#, c-format
msgid "Color maximum level"
msgstr "Maksymalny poziom koloru"

#: ../db/options.xml.h:46
#, c-format
msgid "Red maximum level"
msgstr "Maksymalny poziom czerwonego"

#: ../db/options.xml.h:47
#, c-format
msgid "Green maximum level"
msgstr "Maksymalny poziom zielonego"

#: ../db/options.xml.h:48
#, c-format
msgid "Blue maximum level"
msgstr "Maksymalny poziom niebieskiego"

#: ../db/options.xml.h:49
#, c-format
msgid "Color minimum level"
msgstr "Minimalny poziom koloru"

#: ../db/options.xml.h:50
#, c-format
msgid "Red minimum level"
msgstr "Minimalny poziom czerwonego"

#: ../db/options.xml.h:51
#, c-format
msgid "Green minimum level"
msgstr "Minimalny poziom zielonego"

#: ../db/options.xml.h:52
#, c-format
msgid "Blue minimum level"
msgstr "Minimalny poziom niebieskiego"

#: ../db/options.xml.h:53
#, c-format
msgid "Various color settings"
msgstr "Ustawienia kolorw"

#: ../db/options.xml.h:54
#, c-format
msgid "Hue"
msgstr "odcie"

#: ../db/options.xml.h:55
#, c-format
msgid "Saturation"
msgstr "nasycenie"

#: ../db/options.xml.h:56
#, c-format
msgid "Color curve adjust"
msgstr "Krzywa dopasowanie kolorw"

#: ../db/options.xml.h:57
#, c-format
msgid "Color Preset"
msgstr "Ustawienie kolorw"

#: ../db/options.xml.h:58 ../db/options.xml.h:165
#, c-format
msgid "Normal"
msgstr "Normalny"

#: ../db/options.xml.h:60
#, c-format
msgid "Warm"
msgstr "Ciepy"

#: ../db/options.xml.h:61
#, c-format
msgid "Cool"
msgstr "Zimny"

#: ../db/options.xml.h:62
#, c-format
msgid "Warm1"
msgstr "Ciepy1"

#: ../db/options.xml.h:63
#, c-format
msgid "Warm2"
msgstr "Ciepy2"

#: ../db/options.xml.h:64
#, c-format
msgid "Cool1"
msgstr "Zimny1"

#: ../db/options.xml.h:65
#, c-format
msgid "Cool2"
msgstr "Zimny2"

#: ../db/options.xml.h:66
#, c-format
msgid "Cool3"
msgstr "Zimny3"

#: ../db/options.xml.h:67
#, c-format
msgid "Cool4"
msgstr "Zimny4"

#: ../db/options.xml.h:68
#, c-format
msgid "Cool5"
msgstr "Zimny5"

#: ../db/options.xml.h:69
#, c-format
msgid "Cool6"
msgstr "Zimny6"

#: ../db/options.xml.h:70
#, c-format
msgid "Cool7"
msgstr "Zimny7"

#: ../db/options.xml.h:71
#, c-format
msgid "sRGB"
msgstr "sRGB"

#: ../db/options.xml.h:72
#, c-format
msgid "4000K"
msgstr "4000K"

#: ../db/options.xml.h:73
#, c-format
msgid "5000K"
msgstr "5000K"

#: ../db/options.xml.h:74
#, c-format
msgid "6500K"
msgstr "6500K"

#: ../db/options.xml.h:75
#, c-format
msgid "7500K"
msgstr "7500K"

#: ../db/options.xml.h:76
#, c-format
msgid "8200K"
msgstr "8200K"

#: ../db/options.xml.h:77
#, c-format
msgid "9300K"
msgstr "9300K"

#: ../db/options.xml.h:78
#, c-format
msgid "10000K"
msgstr "10000K"

#: ../db/options.xml.h:79
#, c-format
msgid "11500K"
msgstr "11500K"

#: ../db/options.xml.h:80
#, c-format
msgid "Native"
msgstr "Naturalny"

#: ../db/options.xml.h:81
#, c-format
msgid "User"
msgstr "Uytkownik"

#: ../db/options.xml.h:82
#, c-format
msgid "User 1"
msgstr "Uytkownik 1"

#: ../db/options.xml.h:83
#, c-format
msgid "User 2"
msgstr "Uytkownik 2"

#: ../db/options.xml.h:84
#, c-format
msgid "User 3"
msgstr "Uytkownik 3"

#: ../db/options.xml.h:85
#, c-format
msgid "User 4"
msgstr "Uytkownik 4"

#: ../db/options.xml.h:86 ../db/options.xml.h:212
#, c-format
msgid "MagicColor"
msgstr "MagicColor"

#: ../db/options.xml.h:87 ../db/options.xml.h:195 ../db/options.xml.h:207
#: ../db/options.xml.h:217
#, c-format
msgid "Off"
msgstr "Wyczony"

#: ../db/options.xml.h:88
#, c-format
msgid "Demo"
msgstr "Demo"

#: ../db/options.xml.h:89
#, c-format
msgid "Full"
msgstr "Peny"

#: ../db/options.xml.h:90
#, c-format
msgid "Intelligent"
msgstr "Inteligentny"

#: ../db/options.xml.h:91
#, c-format
msgid "Color temperature"
msgstr "Temperatura kolorw"

#: ../db/options.xml.h:92
#, c-format
msgid "Position and size"
msgstr "Rozmiar i pooenie"

#: ../db/options.xml.h:93
#, c-format
msgid "Position"
msgstr "Pooenie"

#: ../db/options.xml.h:94
#, c-format
msgid "Horizontal Position"
msgstr "Pooenie w poziomie"

#: ../db/options.xml.h:95
#, c-format
msgid "Vertical Position"
msgstr "Pooenie w pionie"

#: ../db/options.xml.h:96
#, c-format
msgid "Size"
msgstr "Rozmiar"

#: ../db/options.xml.h:97
#, c-format
msgid "Horizontal Size"
msgstr "Rozmiar w poziomie"

#: ../db/options.xml.h:98
#, c-format
msgid "Vertical Size"
msgstr "Rozmiar w pionie"

#: ../db/options.xml.h:99
#, c-format
msgid "Automatic adjustments"
msgstr "Dostosowanie automatyczne"

#: ../db/options.xml.h:100
#, c-format
msgid "Auto Size Center"
msgstr "Automatyczne centrowanie"

#: ../db/options.xml.h:101 ../db/options.xml.h:172 ../db/options.xml.h:176
#, c-format
msgid "Enable"
msgstr "Wcz"

#: ../db/options.xml.h:102 ../db/options.xml.h:171 ../db/options.xml.h:175
#, c-format
msgid "Disable"
msgstr "Wycz"

#: ../db/options.xml.h:103
#, c-format
msgid "Automatically adjust"
msgstr "Dostosowany automatycznie "

#: ../db/options.xml.h:104
#, c-format
msgid "H/V Position"
msgstr "Pooenie H/V"

#: ../db/options.xml.h:105
#, c-format
msgid "Clock and clock phase"
msgstr "Zegar i faza zegara"

#: ../db/options.xml.h:106
#, c-format
msgid "H/V Position (fast mode)"
msgstr "Pooenie H/V (tryb szybki)"

#: ../db/options.xml.h:107
#, c-format
msgid "Geometry"
msgstr "Geometria"

#: ../db/options.xml.h:108
#, c-format
msgid "Pincushion"
msgstr "Poduszka"

#: ../db/options.xml.h:109
#, c-format
msgid "Horizontal Pincushion"
msgstr "Poduszka Pozioma"

#: ../db/options.xml.h:110
#, c-format
msgid "Horizontal Pincushion Balance"
msgstr "Balans poduszki poziomej"

#: ../db/options.xml.h:111
#, c-format
msgid "Vertical Pincushion"
msgstr "Poduszka pionowa"

#: ../db/options.xml.h:112
#, c-format
msgid "Vertical Pincushion Balance"
msgstr "Balans poduszki pionowej"

#: ../db/options.xml.h:113
#, c-format
msgid "Center Pincushion"
msgstr "Poduszka rodkowa"

#: ../db/options.xml.h:114
#, c-format
msgid "Linearity"
msgstr "Liniowo"

#: ../db/options.xml.h:115
#, c-format
msgid "Horizontal Linearity"
msgstr "Liniow pozioma"

#: ../db/options.xml.h:116
#, c-format
msgid "Horizontal Linearity Balance"
msgstr "Balans liniowoci poziomej"

#: ../db/options.xml.h:117
#, c-format
msgid "Vertical Linearity"
msgstr "Liniowo pionowa"

#: ../db/options.xml.h:118
#, c-format
msgid "Vertical Linearity Balance"
msgstr "Balans liniowoci pionowej"

#: ../db/options.xml.h:119
#, c-format
msgid "Misconvergence"
msgstr "Rozbieno"

#: ../db/options.xml.h:120
#, c-format
msgid "Horizontal Misconvergence"
msgstr "Pozioma rozbieno"

#: ../db/options.xml.h:121
#, c-format
msgid "Vertical Misconvergence"
msgstr "Pionowa rozbieno"

#: ../db/options.xml.h:122
#, c-format
msgid "General distortion"
msgstr "Znieksztacenia oglne"

#: ../db/options.xml.h:123
#, c-format
msgid "Parallelogram Distortion (Key Balance)"
msgstr "Znieksztacenie rwnolegobokowe (Key Balance)"

#: ../db/options.xml.h:124
#, c-format
msgid "Trapezoidal Distortion (Key)"
msgstr "Znieksztacenia trapezowe"

#: ../db/options.xml.h:125
#, c-format
msgid "Corners distortion"
msgstr "Znieksztacenia naronikw"

#: ../db/options.xml.h:126
#, c-format
msgid "Top Corner Distortion Control"
msgstr "Parametr znieksztacenia grnego rogu"

#: ../db/options.xml.h:127
#, c-format
msgid "Top Corner Distortion Balance"
msgstr "Balans znieksztacenia grnego rogu"

#: ../db/options.xml.h:128
#, c-format
msgid "Bottom Corner Distortion Control"
msgstr "Parametr znieksztacenia dolnego rogu"

#: ../db/options.xml.h:129
#, c-format
msgid "Bottom Corner Distortion Balance"
msgstr "Balans znieksztacenia dolnego rogu"

#: ../db/options.xml.h:130
#, c-format
msgid "Rotation"
msgstr "Obrt"

#: ../db/options.xml.h:131
#, c-format
msgid "Rotation (Tilt)"
msgstr "Obrt (odchylenie)"

#: ../db/options.xml.h:132
#, c-format
msgid "Screen purity"
msgstr "Czysto obrazu"

#: ../db/options.xml.h:133
#, c-format
msgid "Moire"
msgstr "Moire"

#: ../db/options.xml.h:134
#, c-format
msgid "Horizontal Moire"
msgstr "Moire (pionowo)"

#: ../db/options.xml.h:135
#, c-format
msgid "Vertical Moire"
msgstr "Moire (poziomo)"

#: ../db/options.xml.h:136
#, c-format
msgid "Image setup"
msgstr "Ustawienie obrazu"

#: ../db/options.xml.h:137
#, c-format
msgid "Focus"
msgstr "Ogniskowanie"

#: ../db/options.xml.h:138
#, c-format
msgid "Image Lock Coarse (Clock)"
msgstr "Zgrubna blokada obrazu (zegar)"

#: ../db/options.xml.h:139
#, c-format
msgid "Image Lock Fine (Clock Phase)"
msgstr "Dokadna blokada obrazu (faza zegara)"

#: ../db/options.xml.h:140
#, c-format
msgid "Corners purity"
msgstr "Czysto rogw"

#: ../db/options.xml.h:141
#, c-format
msgid "Top left screen purity"
msgstr "Czysto obrazu: grny lewy"

#: ../db/options.xml.h:142
#, c-format
msgid "Top right screen purity"
msgstr "Czysto obrazu: grny prawy"

#: ../db/options.xml.h:143
#, c-format
msgid "Bottom left screen purity"
msgstr "Czysto obrazu: dolny lewy"

#: ../db/options.xml.h:144
#, c-format
msgid "Bottom right screen purity"
msgstr "Czysto obrazu: dolny prawy"

#: ../db/options.xml.h:145
#, c-format
msgid "Various"
msgstr "Rne"

#: ../db/options.xml.h:146
#, c-format
msgid "Landing Adjust (RGB alignment)"
msgstr "Regulacja ldowania (wyrwnanie RGB)"

#: ../db/options.xml.h:147
#, c-format
msgid "Sharpness"
msgstr "Ostro"

#: ../db/options.xml.h:148
#, c-format
msgid "Others"
msgstr "Inne"

#: ../db/options.xml.h:149
#, c-format
msgid "Restore defaults"
msgstr "Ustawienia domylne"

#: ../db/options.xml.h:150
#, c-format
msgid "Restore Factory Defaults"
msgstr "Domylne ustawienia producenta"

#: ../db/options.xml.h:151
#, c-format
msgid "Restore Brightness and Contrast"
msgstr "Przywr jasno i kontrast"

#: ../db/options.xml.h:152
#, c-format
msgid "Restore Factory Default Geometry"
msgstr "Przywr ustawienia producenta: geometria"

#: ../db/options.xml.h:153
#, c-format
msgid "Restore Factory Default Color"
msgstr "Przywr ustawienia producenta: kolor"

#: ../db/options.xml.h:154
#, c-format
msgid "Restore Factory Default Position"
msgstr "Przywr ustawienia producenta: pooenie"

#: ../db/options.xml.h:155
#, c-format
msgid "Restore Factory Default Size"
msgstr "Przywr ustawienia producenta: rozmiar"

#: ../db/options.xml.h:156
#, c-format
msgid "Restore Factory Default Size and Position"
msgstr "Przywr ustawienia producenta: pooenie i rozmiar"

#: ../db/options.xml.h:157
#, c-format
msgid "Settings"
msgstr "Ustawienia"

#: ../db/options.xml.h:158
#, c-format
msgid "Save Current Settings"
msgstr "Zachowaj biece ustawienia"

#: ../db/options.xml.h:159
#, c-format
msgid "Restore Factory Settings"
msgstr "Przywr ustawienia producenta"

#: ../db/options.xml.h:160
#, c-format
msgid "Audio"
msgstr "Dwik"

#: ../db/options.xml.h:161
#, c-format
msgid "Audio Speaker Volume Adjust"
msgstr "Gono dwiku"

#: ../db/options.xml.h:162
#, c-format
msgid "Audio Microphone Volume Adjust"
msgstr "Czuo mikrofonu"

#: ../db/options.xml.h:163 ../db/options.xml.h:164
#, c-format
msgid "Mute"
msgstr "Wycisz"

#: ../db/options.xml.h:166 ../db/options.xml.h:167
#, c-format
msgid "Degauss"
msgstr "Degauss"

#: ../db/options.xml.h:168
#, c-format
msgid "New Control Value"
msgstr "Nowa warto kontrolna"

#: ../db/options.xml.h:169
#, c-format
msgid "OSD"
msgstr "OSD (menu ekranowe)"

#: ../db/options.xml.h:170
#, c-format
msgid "On Screen Display"
msgstr "Menu ekranowe"

#: ../db/options.xml.h:173
#, c-format
msgid "Enable only brightness/contrast settings"
msgstr "Wcz tylko regulacje jasno/kontrast"

#: ../db/options.xml.h:174
#, c-format
msgid "On Screen Display (Samsung)"
msgstr "Menu ekranowe (Samsung)"

#: ../db/options.xml.h:177
#, c-format
msgid "OSD Orientation"
msgstr "Orientacja menu ekranowego (OSD)"

#: ../db/options.xml.h:178
#, c-format
msgid "Landscape"
msgstr "Poziomo"

#: ../db/options.xml.h:179
#, c-format
msgid "Portrait"
msgstr "Pionowo"

#: ../db/options.xml.h:180
#, c-format
msgid "Language select"
msgstr "Wybr jzyka"

#: ../db/options.xml.h:181
#, c-format
msgid "English"
msgstr "Angielski"

#: ../db/options.xml.h:182
#, c-format
msgid "French"
msgstr "Francuski"

#: ../db/options.xml.h:183
#, c-format
msgid "German"
msgstr "Niemiecki"

#: ../db/options.xml.h:184
#, c-format
msgid "Italian"
msgstr "Woski"

#: ../db/options.xml.h:185
#, c-format
msgid "Russian"
msgstr "Rosyjski"

#: ../db/options.xml.h:186
#, c-format
msgid "Spanish"
msgstr "Hiszpaski"

#: ../db/options.xml.h:187
#, c-format
msgid "Swedish"
msgstr "Szwedzki"

#: ../db/options.xml.h:188
#, c-format
msgid "Chinese"
msgstr "Chiski"

#: ../db/options.xml.h:189
#, c-format
msgid "Dutch"
msgstr "Holenderski"

#: ../db/options.xml.h:190
#, c-format
msgid "Japanese"
msgstr "Japoski"

#: ../db/options.xml.h:191
#, c-format
msgid "Input settings"
msgstr "Ustawienia wejcia"

#: ../db/options.xml.h:192
#, c-format
msgid "Input level Select"
msgstr "Poziom sygnau"

#: ../db/options.xml.h:193
#, c-format
msgid "Display Resolution Notifier"
msgstr "Powiadomienie o rozdzielczoci"

#: ../db/options.xml.h:194 ../db/options.xml.h:204 ../db/options.xml.h:208
#: ../db/options.xml.h:218
#, c-format
msgid "On"
msgstr "Wcz"

#: ../db/options.xml.h:196 ../db/options.xml.h:214
#, c-format
msgid "Input Source Select"
msgstr "Wybierz rdo sygnau"

#: ../db/options.xml.h:197
#, c-format
msgid "Analog"
msgstr "Analogowe"

#: ../db/options.xml.h:198
#, c-format
msgid "Digital"
msgstr "Cyfrowe"

#: ../db/options.xml.h:199
#, c-format
msgid "Autoselect Input Source"
msgstr "Wybr rda wejcia"

#: ../db/options.xml.h:200
#, c-format
msgid "Automatic"
msgstr "Automatyczny"

#: ../db/options.xml.h:201
#, c-format
msgid "Manual"
msgstr "Rczny"

#: ../db/options.xml.h:202 ../db/options.xml.h:206
#, c-format
msgid "Power control"
msgstr "Zarzdzanie zasilaniem"

#: ../db/options.xml.h:203
#, c-format
msgid "DPMS Control"
msgstr "Zarzdzanie DPMS"

#: ../db/options.xml.h:205
#, c-format
msgid "Standby"
msgstr "Stan czuwania"

#: ../db/options.xml.h:209
#, c-format
msgid "Buttons and leds"
msgstr ""

#: ../db/options.xml.h:210
#, fuzzy, c-format
msgid "Custom key"
msgstr "Wasny"

#: ../db/options.xml.h:211
#, fuzzy, c-format
msgid "MagicBright"
msgstr "Tryb Magic Bright"

#: ../db/options.xml.h:213
#, fuzzy, c-format
msgid "Automatic setup"
msgstr "Automatyczny"

#: ../db/options.xml.h:215
#, fuzzy, c-format
msgid "Color Tone"
msgstr "Ustawienie kolorw"

#: ../db/options.xml.h:216
#, c-format
msgid "Power LED"
msgstr ""