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
|
# Polish translation of manpages
# This file is distributed under the same license as the manpages-l10n package.
# Copyright © of this file:
# Przemek Borys <pborys@dione.ids.pl>, 1998.
# Andrzej Krzysztofowicz <ankry@green.mf.pg.gda.pl>, 2001.
# Robert Luberda <robert@debian.org>, 2017.
# Michał Kułach <michal.kulach@gmail.com>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: manpages-pl\n"
"POT-Creation-Date: 2024-02-15 18:02+0100\n"
"PO-Revision-Date: 2024-04-29 20:35+0200\n"
"Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n"
"Language-Team: Polish <manpages-pl-list@lists.sourceforge.net>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\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"
"X-Generator: Lokalize 22.12.3\n"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "KEYMAPS"
msgstr "KEYMAPS"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "24 April 1998"
msgstr "24 kwietnia 1998"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "kbd"
msgstr "kbd"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NAME"
msgstr "NAZWA"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "keymaps - keyboard table descriptions for loadkeys and dumpkeys"
msgstr "keymaps - opisy tablic klawiaturowych dla loadkeys i dumpkeys"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "DESCRIPTION"
msgstr "OPIS"
#. type: IX
#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
#, no-wrap
msgid "keymaps"
msgstr "keymaps"
#. type: IX
#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
#, no-wrap
msgid "\\fLkeymaps\\fR \\(em keyboard table descriptions for loadkeys and dumpkeys"
msgstr "\\fLkeymaps \fR \\(em opisy tablic klawiaturowych dla loadkeys i dumpkeys"
#. type: IX
#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
#, no-wrap
msgid "loadkeys"
msgstr "loadkeys"
#. type: IX
#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
#, no-wrap
msgid "keyboard table descriptions"
msgstr "opisy tablic klawiaturowych"
#. type: IX
#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
#, no-wrap
msgid "\\fLloadkeys\\fR"
msgstr "\\fLloadkeys\\fR"
#. type: IX
#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
#, no-wrap
msgid "dumpkeys"
msgstr "dumpkeys"
#. type: IX
#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
#, no-wrap
msgid "\\fLdumpkeys\\fR"
msgstr "\\fLdumpkeys\\fR"
#. type: IX
#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
#, no-wrap
msgid "keyboard"
msgstr "klawiatura"
#. type: IX
#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
#, no-wrap
msgid "table descriptions for loadkeys and dumpkeys"
msgstr "opisy tablic klawiaturowych dla loadkeys i dumpkeys"
#. type: IX
#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
#, no-wrap
msgid "table descriptions for \\fLloadkeys\\fR and \\fLdumpkeys\\fR"
msgstr "opisy tablic dla \\fLloadkeys\\fR i \\fLdumpkeys\\fR"
#. type: IX
#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
#, no-wrap
msgid "translation tables"
msgstr "tablice translacji"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"These files are used by B<loadkeys>(1) to modify the translation tables "
"used by the kernel keyboard driver and generated by B<dumpkeys>(1) from "
"those translation tables."
msgstr ""
"Pliki te są używane przez B<loadkeys>(1) do modyfikowania tablic translacji "
"używanych przez sterownik klawiatury. Pliki te mogą być generowane na "
"podstawie tablic translacji przez program B<dumpkeys>(1)."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The format of these files is vaguely similar to the one accepted by "
"B<xmodmap>(1). The file consists of charset or key or string definition "
"lines interspersed with comments."
msgstr ""
"Format plików jest dość podobny do formatu B<xmodmap>(1). Plik składa się z "
"linii charsetu, definicji klawiszy lub napisów, przeplecionych komentarzami."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Comments are introduced with B<!> or B<#> characters and continue to the end "
"of the line. Anything following one of these characters on that line is "
"ignored. Note that comments need not begin from column one as with "
"B<xmodmap>(1)."
msgstr ""
"Komentarze rozpoczynają się od znaków B<!> lub B<#> i trwają do końca linii. "
"Wszystko, co występuje po tych znakach, ignorowane. Proszę zauważyć, że "
"komentarze nie muszą zaczynać się w pierwszej kolumnie jak w B<xmodmap>(1)."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The syntax of keymap files is line oriented; a complete definition must fit "
"on a single logical line. Logical lines can, however, be split into multiple "
"physical lines by ending each subline with the backslash character (\\e)."
msgstr ""
"Składnia tablicy klawiszy jest zorientowana liniowo; cała definicja musi "
"zmieścić się w pojedynczej linii logicznej. Jednak linie logiczne mogą "
"dzielić się na wiele linii fizycznych dzięki zastosowaniu znaku odwrotnego "
"ukośnika (\\e)."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "INCLUDE FILES"
msgstr "PLIKI WŁĄCZANE"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "A keymap can include other keymaps using the syntax"
msgstr ""
"Tablica klawiaturowa może włączać do siebie inne tablice klawiaturowe przy "
"użyciu składni"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "include \"pathname\""
msgstr "include \"ścieżkadopliku\""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "CHARSET DEFINITIONS"
msgstr "DEFINICJE CHARSETÓW"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "A character set definition line is of the form:"
msgstr "Linia definiująca zestaw znaków (charset) ma postać:"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "charset \"iso-8859-x\"\n"
msgstr "charset \"iso-8859-x\"\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"It defines how following keysyms are to be interpreted. For example, in "
"iso-8859-1 the symbol mu (or micro) has code 0265, while in iso-8859-7 the "
"letter mu has code 0354."
msgstr ""
"Definiuje ona, w jaki sposób interpretować następujące po niej symbole akcji "
"klawiaturowych (keysym). Na przykład w iso-8859-1 symbol mu (lub micro) ma "
"kod 0265, podczas gdy w iso-8859-7 litera mu ma kod 0354."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "COMPLETE KEYCODE DEFINITIONS"
msgstr "PEŁNE DEFINICJE KODÓW KLAWISZY"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Each complete key definition line is of the form:"
msgstr "Pełna linii definicji kodów klawisza ma postać:"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<keycode>I< keynumber >B<=>I< keysym keysym keysym>...\n"
msgstr "B<keycode>I< keynumber >B<=>I< keysym keysym keysym>...\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"I<keynumber> is the internal identification number of the key, roughly "
"equivalent to the scan code of it. I<keynumber> can be given in decimal, "
"octal or hexadecimal notation. Octal is denoted by a leading zero and "
"hexadecimal by the prefix B<0x.>"
msgstr ""
"I<keynumber> jest wewnętrznym numerem identyfikującym klawisz, na ogół "
"odpowiadającym jego kodowi scancode. I<keynumber> może zostać podany w "
"postaci dziesiętnej, ósemkowej lub szesnastkowej. Postać ósemkowa jest "
"poprzedzona zerem, a szesnastkowa prefiksem B<0x>."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Each of the I<keysyms> represent keyboard actions, of which up to 256 can be "
"bound to a single key. The actions available include outputting character "
"codes or character sequences, switching consoles or keymaps, booting the "
"machine etc. (The complete list can be obtained from B<dumpkeys>(1) by "
"saying B<dumpkeys -l> \\&.)"
msgstr ""
"Każdy z symboli I<keysym> reprezentuje akcję klawiaturową. Do pojedynczego "
"klawisza można podwiązać do 256 takich akcji. Dostępne akcje zawierają kody "
"znaków lub ciągi znaków, przełączanie konsol lub tablic klawiaturowych, "
"restartowanie maszyny, itd. (pełną listę można uzyskać z B<dumpkeys>(1) "
"przez wydanie polecenia B<dumpkeys -l>)."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-tumbleweed
msgid ""
"Each I<keysym> may be prefixed by a '+' (plus sign), in which case this "
"keysym is treated as a \"letter\" and therefore affected by the \"CapsLock\" "
"the same way as by \"Shift\" (to be correct, the CapsLock inverts the Shift "
"state). The ASCII letters ('a'-'z' and 'A'-'Z') are made CapsLock'able by "
"default. If Shift+CapsLock should not produce a lower case symbol, put "
"lines like"
msgstr ""
"Każdy z symboli I<keysym> może zostać poprzedzony znakiem |\"+\" (plus). W "
"tym wypadku keysym jest traktowany jako \"litera\", i na jego wartość "
"\"CapsLock\" wpływa w ten sam sposób jak \"Shift\" (dokładniej, CapsLock "
"odwraca stan Shift). Znaki ASCII (\"a\"-\"z\" i \"A\"-\"Z\") są domyślnie "
"CapsLock-owalne. Jeśli Shift+CapsLock nie powinny produkować \"małych\" "
"liter, należy użyć linii o następującej semantyce"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<keycode 30 = +a A>\n"
msgstr "B<keycode 30 = +a A>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "in the map file."
msgstr "w pliku z tablicą."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Which of the actions bound to a given key is taken when it is pressed "
"depends on what modifiers are in effect at that moment. The keyboard driver "
"supports 9 modifiers. These modifiers are labeled (completely arbitrarily) "
"Shift, AltGr, Control, Alt, ShiftL, ShiftR, CtrlL, CtrlR and CapsShift. "
"Each of these modifiers has an associated weight of power of two according "
"to the following table:"
msgstr ""
"To, która z akcji dla danego klawisza jest wybierana podczas jego "
"wciśnięcia, zależy od modyfikatorów, które są aktywne w danej chwili. "
"Sterownik klawiatury wspiera 9 modyfikatorów. Modyfikatory te są oznaczone "
"(zdecydowanie arbitralnie) jako Shift, AltGr, Control, Alt, ShiftL, ShiftR, "
"CtrlL, CtrlR oraz CapsShift. Z każdym z tych modyfikatorów związana jest "
"waga będąca potęgą dwójki, według następującej tabeli:"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "I<modifier>"
msgstr "I<modyfikator>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<weight>"
msgstr "I<waga>"
#. type: ta
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "T 24R"
msgstr "T 24R"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Shift\t1"
msgstr "Shift\t1"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "AltGr\t2"
msgstr "AltGr\t2"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Control\t4"
msgstr "Control\t4"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Alt\t8"
msgstr "Alt\t8"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "ShiftL\t16"
msgstr "ShiftL\t16"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "ShiftR\t32"
msgstr "ShiftR\t32"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "CtrlL\t64"
msgstr "CtrlL\t64"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "CtrlR\t128"
msgstr "CtrlR\t128"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "CapsShift\t256"
msgstr "CapsShift\t256"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The effective action of a key is found out by adding up the weights of all "
"the modifiers in effect. By default, no modifiers are in effect, so action "
"number zero, i.e. the one in the first column in a key definition line, is "
"taken when the key is pressed or released. When e.g. Shift and Alt modifiers "
"are in effect, action number nine (from the 10th column) is the effective "
"one."
msgstr ""
"Efektywna akcja klawisza jest znajdywana przez dodawanie wag wszystkich "
"modyfikatorów. Domyślnie żaden z nich nie jest używany, więc podczas "
"naciskania lub zwalniania klawisza pobierana jest akcja numer zero, czyli ta "
"w pierwszej kolumnie linii definicji klawisza. Gdy użyto na przykład "
"klawiszy Shift+Alt, użyta zostaje akcja numer 9 (z 10 kolumny)."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Changing the state of what modifiers are in effect can be achieved by "
"binding appropriate key actions to desired keys. For example, binding the "
"symbol Shift to a key sets the Shift modifier in effect when that key is "
"pressed and cancels the effect of that modifier when the key is released. "
"Binding AltGr_Lock to a key sets AltGr in effect when the key is pressed and "
"cancels the effect when the key is pressed again. (By default Shift, AltGr, "
"Control and Alt are bound to the keys that bear a similar label; AltGr may "
"denote the right Alt key.)"
msgstr ""
"Zmiana stanu używanych modyfikatorów może być osiągnięta przez powiązanie "
"odpowiednich akcji klawiszowych z odpowiednimi klawiszami. Na przykład "
"przypisanie symbolu Shift do klawisza ustawia modyfikator Shift podczas "
"naciskania tego klawisza i unieważnia działanie tego modyfikatora podczas "
"zwolnienia klawisza. Przypisanie AltGr_Lock do klawisza ustawia AltGr po "
"naciśnięciu tego klawisza, a anuluje po ponownym jego naciśnięciu. "
"(Domyślnie, Shift, AltGr, Control i Alt są przypisane do klawiszy, które "
"mają podobne oznaczenia; AltGr może oznaczać prawy klawisz Alt)."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Note that you should be very careful when binding the modifier keys, "
"otherwise you can end up with an unusable keyboard mapping. If you for "
"example define a key to have Control in its first column and leave the rest "
"of the columns to be VoidSymbols, you're in trouble. This is because "
"pressing the key puts Control modifier in effect and the following actions "
"are looked up from the fifth column (see the table above). So, when you "
"release the key, the action from the fifth column is taken. It has "
"VoidSymbol in it, so nothing happens. This means that the Control modifier "
"is still in effect, although you have released the key. Re-pressing and "
"releasing the key has no effect. To avoid this, you should always define all "
"the columns to have the same modifier symbol. There is a handy short-hand "
"notation for this, see below."
msgstr ""
"Należy zauważyć, że powinno się zachować daleko posuniętą ostrożność podczas "
"przypisywania modyfikatorów do klawiszy. W przeciwnym wypadku może się to "
"skończyć nieużywalną tablicą klawiaturową. Jeśli na przykład zdefiniuje się "
"klawisz jako Control w pierwszej kolumnie a zostawi resztę kolumn jako puste "
"symbole (VoidSymbols), pojawi się problem. Problem wystąpi dlatego, że "
"naciśnięcie klawisza włącza modyfikator Control, a następne akcje będą "
"pobierane z piątej kolumny (zobacz tabelę powyżej). Tak więc, jeśli klawisz "
"zostanie zwolniony, pobierana będzie akcja z piątej kolumny. Jest ona pustym "
"symbolem, więc nic się nie dzieje. Oznacza to, że modyfikator Control jest "
"wciąż aktywny, chociaż klawisz został puszczony. Ponowne naciskanie i "
"zwalnianie klawisza nie daje żadnych rezultatów. Aby temu zapobiec, należy "
"zawsze definiować wszystkie kolumny tak, aby miały ten sam symbol "
"modyfikujący. Istnieje do tego poręczna skrótowa notacja, o której niżej."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"I<keysyms> can be given in decimal, octal, hexadecimal, unicode or symbolic "
"notation. The numeric notations use the same format as with I<keynumber>. "
"Unicode notation is \"U+\" followed by four hexadecimal digits. The "
"symbolic notation resembles that used by B<xmodmap>(1). Notable differences "
"are the number symbols. The numeric symbols '0', ..., '9' of B<xmodmap>(1) "
"are replaced with the corresponding words 'zero', 'one', ... 'nine' to avoid "
"confusion with the numeric notation."
msgstr ""
"Symbole I<keysym> mogą być podawane w notacji dziesiętnej, ósemkowej, "
"szesnastkowej lub symbolicznej. Numeryczne notacje używają tego samego "
"formatu co I<keynumber>. Notacja unikodowa składa się z \"U+\", po którym "
"występują cyfry szesnastkowe. Notacja symboliczna jest podobna do tej z "
"B<xmodmap>(1). Zauważalne różnice występują dla symboli numerycznych. "
"Symbole \"0\", ..., \"9\" w B<xmodmap>(1) są zamieniane na odpowiadające "
"słowa \"zero\", \"one\", ..., \"nine\", aby zapobiec niejednoznacznościom z "
"notacją numeryczną."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"It should be noted that using numeric notation for the I<keysyms> is highly "
"unportable as the key action numbers may vary from one kernel version to "
"another and the use of numeric notations is thus strongly discouraged. They "
"are intended to be used only when you know there is a supported keyboard "
"action in your kernel for which your current version of B<loadkeys>(1) has "
"no symbolic name."
msgstr ""
"Powinno się zaznaczyć, że używanie notacji numerycznej dla symboli I<keysym> "
"jest wybitnie nieprzenośne, jako że numery akcji klawiszy mogą się różnić z "
"jednej wersji jądra na drugą, z czego wynika powyższe. Notacja ta może być "
"używana tylko jeśli wiadomo, że istnieje określona akcja klawiaturowa w "
"używanym jądrze, dla której bieżąca wersja B<loadkeys>(1) nie ma nazwy "
"symbolicznej."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"There is a number of short-hand notations to add readability and reduce "
"typing work and the probability of typing-errors."
msgstr ""
"Jest wiele notacji skrótowych, poprawiających czytelność, a redukujących "
"pracochłonność i prawdopodobieństwo błędów przy wpisywaniu."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "First of all, you can give a map specification line, of the form"
msgstr "Przede wszystkim można podać linię specyfikacji tablicy w postaci"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "keymaps 0-2,4-5,8,12\n"
msgstr "keymaps 0-2,4-5,8,12\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"to indicate that the lines of the keymap will not specify all 256 columns, "
"but only the indicated ones. (In the example: only the plain, Shift, AltGr, "
"Control, Control+Shift, Alt and Control+Alt maps, that is, 7 columns instead "
"of 256.) When no such line is given, the keymaps 0-M will be defined, where "
"M+1 is the maximum number of entries found in any definition line."
msgstr ""
"aby wskazać, że te linie tablicy klawiaturowej nie będą wyszczególniały "
"wszystkich 256 kolumn, lecz tylko jedną ze wskazanych. (Na przykład sam "
"Shift, AltGr, Control, Control+Shift, Alt i Control+Alt, czyli 7 zamiast 256 "
"kolumn). Jeśli nie poda się takiej linii, zdefiniowane będą tablice "
"klawiaturowe 0-M, gdzie M+1 to maksymalna liczba wpisów w jakiejkolwiek "
"linii definicyjnej."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Next, you can leave off any trailing VoidSymbol entries from a key "
"definition line. VoidSymbol denotes a keyboard action which produces no "
"output and has no other effects either. For example, to define key number 30 "
"to output 'a' unshifted, 'A' when pressed with Shift and do nothing when "
"pressed with AltGr or other modifiers, you can write"
msgstr ""
"Następnie można porzucić wszelkie końcowe wpisy pustych symboli z definicji "
"klawisza. Pusty symbol oznacza akcję klawiaturową, która nie powoduje "
"efektu. Na przykład, aby zdefiniować klawisz numer 30 do wyprowadzania 'a' "
"bez shiftu i 'A' z shiftem, niczego zaś przy wciśniętym AltGr i innych "
"modyfikatorach, można napisać"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "keycode 30 = a\tA\n"
msgstr "keycode 30 = a\tA\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "instead of the more verbose"
msgstr "zamiast bardziej \"gadatliwego\""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"keycode 30 = a\tA\tVoidSymbol\tVoidSymbol \\e\n"
"\t\tVoidSymbol VoidSymbol VoidSymbol ...\n"
msgstr ""
"keycode 30 = a\tA\tVoidSymbol\tVoidSymbol \\e\n"
"\t\tVoidSymbol VoidSymbol VoidSymbol ...\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"For added convenience, you can usually get off with still more terse "
"definitions. If you enter a key definition line with only and exactly one "
"action code after the equals sign, it has a special meaning. If the code "
"(numeric or symbolic) is not an ASCII letter, it means the code is "
"implicitly replicated through all columns being defined. If, on the other "
"hand, the action code is an ASCII character in the range 'a', ..., 'z' or "
"'A', ..., 'Z' in the ASCII collating sequence, the following definitions are "
"made for the different modifier combinations, provided these are actually "
"being defined. (The table lists the two possible cases: either the single "
"action code is a lower case letter, denoted by 'x' or an upper case letter, "
"denoted by 'Y'.)"
msgstr ""
"Jako dodatkowe udogodnienie, zwykle możnz używać jeszcze innych definicji. "
"Jeśli wprowadzona zostanie linia definicji klawisza z tylko jednym kodem "
"akcji po znaku równości, to ma to specjalne znaczenie. Jeśli kod (numeryczny "
"lub symboliczny) nie jest literą ASCII, znaczy to, że kod jest w drodze "
"wyjątku powielany na wszystkie zdefiniowane kolumny. Jeśli, z drugiej "
"strony, kod jest znakiem ASCII w zakresie 'a', ..., 'z' lub 'A', ..., 'Z', "
"to tworzone są następujące definicje dla różnych kombinacji modyfikatorów. "
"(Tabela pokazuje dwa możliwe przypadki: zarówno z pojedynczym kodem akcji "
"dla małej litery, oznaczonej przez 'x', jak i dla dużej litery, oznaczonej "
"przez 'Y'.)"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<symbol>"
msgstr "I<symbol>"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "none"
msgstr "B<none>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "x\t\t\tY"
msgstr "x\t\t\tY"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Shift"
msgstr "Shift"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "X\t\t\ty"
msgstr "X\t\t\ty"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "AltGr"
msgstr "AltGr"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Shift+AltGr"
msgstr "Shift+AltGr"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Control"
msgstr "Control"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Control_x\t\tControl_y"
msgstr "Control_x\t\tControl_y"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Shift+Control"
msgstr "Shift+Control"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "AltGr+Control"
msgstr "AltGr+Control"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Shift+AltGr+Control"
msgstr "Shift+AltGr+Control"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Alt"
msgstr "Alt"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Meta_x\t\tMeta_Y"
msgstr "Meta_x\t\tMeta_Y"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Shift+Alt"
msgstr "Shift+Alt"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Meta_X\t\tMeta_y"
msgstr "Meta_X\t\tMeta_y"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "AltGr+Alt"
msgstr "AltGr+Alt"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Shift+AltGr+Alt"
msgstr "Shift+AltGr+Alt"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Control+Alt"
msgstr "Control+Alt"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Meta_Control_x\tMeta_Control_y"
msgstr "Meta_Control_x\tMeta_Control_y"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Shift+Control+Alt"
msgstr "Shift+Control+Alt"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "AltGr+Control+Alt"
msgstr "AltGr+Control+Alt"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Shift+AltGr+Control+Alt"
msgstr "Shift+AltGr+Control+Alt"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SINGLE MODIFIER DEFINITIONS"
msgstr "DEFINICJE POJEDYNCZYCH MODYFIKATORÓW"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"All the previous forms of key definition lines always define all the M+1 "
"possible modifier combinations being defined, whether the line actually "
"contains that many action codes or not. There is, however, a variation of "
"the definition syntax for defining only single actions to a particular "
"modifier combination of a key. This is especially useful, if you load a "
"keymap which doesn't match your needs in only some modifier combinations, "
"like AltGr+function keys. You can then make a small local file redefining "
"only those modifier combinations and loading it after the main file. The "
"syntax of this form is:"
msgstr ""
"Wszystkie poprzednie postacie linii definicji klawiszy zawsze definiowały "
"wszystkie M+1 możliwych kombinacji modyfikatorów, niezależnie od tego, czy "
"taką ilość rzeczywistych kodów akcji, czy nie. Istnieje jednak wariant "
"składni definicji służący do definiowania pojedynczych akcji dla konkretnej "
"kombinacji modyfikatorów klawisza. Jest to szczególnie przydatne, jeśli "
"ładowana jest tablica klawiaturową, która nie odpowiada potrzebom jedynie "
"przy niektórych kombinacjach modyfikatorów, jak np. AltGr+klawisze "
"funkcyjne. Można wówczas utworzyć mały lokalny plik przedefiniowujący tylko "
"te kombinacje modyfikatorów i ładować go po załadowaniu pliku głównego. "
"Składnia tego formatu jest następująca:"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"{B< plain >| E<lt>modifier sequenceE<gt> } B<keycode> I<keynumber> B<=> "
"I<keysym>"
msgstr ""
"{B< plain >| E<lt>ciąg modyfikatorówE<gt> } B<keycode> I<keynumber> B<=> "
"I<keysym>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ", e.g.,"
msgstr "n.p.,"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"plain keycode 14 = BackSpace\n"
"control alt keycode 83 = Boot\n"
"alt keycode 105 = Decr_Console\n"
"alt keycode 106 = Incr_Console\n"
msgstr ""
"plain keycode 14 = BackSpace\n"
"control alt keycode 83 = Boot\n"
"alt keycode 105 = Decr_Console\n"
"alt keycode 106 = Incr_Console\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Using \"plain\" will define only the base entry of a key (i.e. the one with "
"no modifiers in effect) without affecting the bindings of other modifier "
"combinations of that key."
msgstr ""
"Użycie \"plain\" zdefiniuje tylko podstawowy wpis klawisza (np. ten, przy "
"którym nie są włączone żadne modyfikatory), bez dotykania powiązań innych "
"kombinacji tego klawisza."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "STRING DEFINITIONS"
msgstr "DEFINICJE ŁAŃCUCHÓW"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"In addition to comments and key definition lines, a keymap can contain "
"string definitions. These are used to define what each function key action "
"code sends. The syntax of string definitions is:"
msgstr ""
"Oprócz komentarzy i linii definicji klawiszy, pliki tablic klawiaturowych "
"mogą zawierać definicje napisów. Są one używane do definiowania kodów akcji "
"wysyłanych przez poszczególne klawisze funkcyjne. Składnia definicji napisu "
"to:"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<string> I<keysym> B<=> B<\">I<text>B<\">"
msgstr "B<łańcuch> I<keysym> B<=> B<\">I<tekst>B<\">"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"I<text> can contain literal characters, octal character codes in the format "
"of backslash followed by up to three octal digits, and the three escape "
"sequences B<\\en>, B<\\e\\e>, and B<\\e\">, for newline, backslash and "
"quote, respectively."
msgstr ""
"I<tekst> może zawierać literalne znaki, kody ósemkowe w formacie odwrotnego "
"ukośnika, za którym występuje do trzech cyfr ósemkowych, a także trzy "
"sekwencje eskejpowe B<\\en>, B<\\e\\e>, i B<\\e\">, odpowiednio, dla nowej "
"linii, odwrotnego ukośnika i cytatu."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "COMPOSE DEFINITIONS"
msgstr "DEFINICJE ZŁOŻONE"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Then there may also be compose definitions. They have syntax"
msgstr "Mogą również występować definicje złożone. Mają one składnię"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<compose '>I<char>B<' '>I<char>B<' to '>I<char>B<'>"
msgstr "B<compose '>I<znak>B<' '>I<znak>B<' to '>I<znak>B<'>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"and describe how two bytes are combined to form a third one (when a dead "
"accent or compose key is used). This is used to get accented letters and "
"the like on a standard keyboard."
msgstr ""
"i opisują, w jaki sposób dwa bajty są połączone, tworząc trzeci (gdy jest "
"używany samodzielny akcent lub klawisz kombinowany). Wykorzystuje się to do "
"liter akcentowanych i podobnych znaków na standardowej klawiaturze."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "ABBREVIATIONS"
msgstr "SKRÓTY"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Various abbreviations can be used with kbd-0.96 and later."
msgstr "Z kbd-0.96 i późniejszymi można używać różnych skrótów."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<strings as usual>"
msgstr "B<strings as usual>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Defines the usual values of the strings (but not the keys they are bound to)."
msgstr ""
"Definiuje zwykłe wartości dla łańcuchów (ale nie dla klawiszy, do których są "
"one przypisane."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<compose as usual for \"iso-8859-1\">"
msgstr "B<compose as usual for \"iso-8859-1\">"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Defines the usual compose combinations."
msgstr "Definiuje zwykłe kombinacje złożone."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"To find out what I<keysyms> there are available for use in keymaps, use the "
"command"
msgstr ""
"Aby znaleźć, które symbole I<keysym> są dostępne do użytku w tablicach "
"klawiaturowych, należy użyć polecenia"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<dumpkeys --long-info>\n"
msgstr "B<dumpkeys --long-info>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Unfortunately, there is currently no description of what each symbol does. "
"It has to be guessed from the name or figured out from the kernel sources."
msgstr ""
"Niestety, obecnie nie ma opisu, co który symbol robi. Trzeba to zgadywać z "
"nazwy, wydedukowanej ze źródeł jądra."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "EXAMPLES"
msgstr "PRZYKŁADY"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"(Be careful to use a keymaps line, like the first line of `dumpkeys`, or "
"\"keymaps 0-15\" or so.)"
msgstr ""
"(Trzeba uważać, by użyć linii \"keymaps\", takiej jak \"keymaps 0-15\" albo "
"pierwsza linia w `dumpkeys` itp.)"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The following entry exchanges the left Control key and the Caps Lock key on "
"the keyboard:"
msgstr "Następujący wpis zamienia lewy klawisz Control i CapsLock:"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"keycode 58 = Control\n"
"keycode 29 = Caps_Lock\n"
msgstr ""
"keycode 58 = Control\n"
"keycode 29 = Caps_Lock\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Key number 58 is normally the Caps Lock key, and key number 29 is normally "
"the Control key."
msgstr ""
"Klawisz o numerze 58 jest normalnie Caps Lockiem, a klawisz numer 29 jest "
"zwykle klawiszem Control."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The following entry sets the Shift and Caps Lock keys to behave more nicely, "
"like in older typewriters. That is, pressing Caps Lock key once or more sets "
"the keyboard in CapsLock state and pressing either of the Shift keys "
"releases it."
msgstr ""
"Następujący wpis ustawia milsze zachowanie klawiszy Shift i Caps Lock, jak w "
"starych maszynach do pisania. To znaczy, wciśnięcie klawiszu Caps Lock "
"jeden, lub więcej razy, włącza klawiaturę w stan CapsLock, a wciśnięcie "
"dowolnego z Shiftów wyłącza go."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"keycode 42 = Uncaps_Shift\n"
"keycode 54 = Uncaps_Shift\n"
"keycode 58 = Caps_On\n"
msgstr ""
"keycode 42 = Uncaps_Shift\n"
"keycode 54 = Uncaps_Shift\n"
"keycode 58 = Caps_On\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The following entry sets the layout of the edit pad in the enhanced keyboard "
"to be more like that in the VT200 series terminals:"
msgstr ""
"Następujący wpis ustawia układ bloku edycyjnego na rozszerzonych "
"klawiaturach, aby były bardziej podobne do terminali serii VT200:"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"keycode 102 = Insert\n"
"keycode 104 = Remove\n"
"keycode 107 = Prior\n"
"shift keycode 107 = Scroll_Backward\n"
"keycode 110 = Find\n"
"keycode 111 = Select\n"
"control alt keycode 111 = Boot\n"
"control altgr keycode 111 = Boot\n"
msgstr ""
"keycode 102 = Insert\n"
"keycode 104 = Remove\n"
"keycode 107 = Prior\n"
"shift keycode 107 = Scroll_Backward\n"
"keycode 110 = Find\n"
"keycode 111 = Select\n"
"control alt keycode 111 = Boot\n"
"control altgr keycode 111 = Boot\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Here's an example to bind the string \"du\\endf\\en\" to the key AltGr-D. We "
"use the \"spare\" action code F100 not normally bound to any key."
msgstr ""
"Oto przykład na przypisanie napisu \"du\\endf\\en\" do klawisza AltGr-D. "
"Używamy \"wolnego\" kodu akcji F100, nie przypisywanego normalnie do żadnego "
"klawisza."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"altgr keycode 32 = F100\n"
"string F100 = \"du\\endf\\en\"\n"
msgstr ""
"altgr keycode 32 = F100\n"
"string F100 = \"du\\endf\\en\"\n"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SEE ALSO"
msgstr "ZOBACZ TAKŻE"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<loadkeys>(1), B<dumpkeys>(1), B<showkey>(1), B<xmodmap>(1)"
msgstr "B<loadkeys>(1), B<dumpkeys>(1), B<showkey>(1), B<xmodmap>(1)"
#. type: Plain text
#: opensuse-leap-15-6
msgid ""
"Each I<keysym> may be prefixed by a '+' (plus sign), in wich case this "
"keysym is treated as a \"letter\" and therefore affected by the \"CapsLock\" "
"the same way as by \"Shift\" (to be correct, the CapsLock inverts the Shift "
"state). The ASCII letters ('a'-'z' and 'A'-'Z') are made CapsLock'able by "
"default. If Shift+CapsLock should not produce a lower case symbol, put "
"lines like"
msgstr ""
"Każdy z symboli I<keysym> może zostać poprzedzony znakiem |\"+\" (plus). W "
"tym wypadku keysym jest traktowany jako \"litera\", i na jego wartość "
"\"CapsLock\" wpływa w ten sam sposób jak \"Shift\" (dokładniej, CapsLock "
"odwraca stan Shift). Znaki ASCII (\"a\"-\"z\" i \"A\"-\"Z\") są domyślnie "
"CapsLock-owalne. Jeśli Shift+CapsLock nie powinny produkować \"małych\" "
"liter, należy użyć linii o następującej semantyce"
|