-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathapp_localizations_pl.dart
More file actions
2775 lines (1984 loc) · 70.1 KB
/
app_localizations_pl.dart
File metadata and controls
2775 lines (1984 loc) · 70.1 KB
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
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'app_localizations.dart';
// ignore_for_file: type=lint
/// The translations for Polish (`pl`).
class AppLocalizationsPl extends AppLocalizations {
AppLocalizationsPl([String locale = 'pl']) : super(locale);
@override
String get appTitle => 'MeshCore Open';
@override
String get nav_contacts => 'Kontakty';
@override
String get nav_channels => 'Kanały';
@override
String get nav_map => 'Mapa';
@override
String get common_cancel => 'Anuluj';
@override
String get common_ok => 'OK';
@override
String get common_connect => 'Połącz';
@override
String get common_unknownDevice => 'Nieznane urządzenie';
@override
String get common_save => 'Zapisz';
@override
String get common_delete => 'Usuń';
@override
String get common_close => 'Zamknąć';
@override
String get common_edit => 'Edytuj';
@override
String get common_add => 'Dodaj';
@override
String get common_settings => 'Ustawienia';
@override
String get common_disconnect => 'Odłącz';
@override
String get common_connected => 'Połączono';
@override
String get common_disconnected => 'Odłączony';
@override
String get common_create => 'Utwórz';
@override
String get common_continue => 'Kontynuuj';
@override
String get common_share => 'Udostępnij';
@override
String get common_copy => 'Kopiuj';
@override
String get common_retry => 'Spróbować';
@override
String get common_hide => 'Ukryj';
@override
String get common_remove => 'Usuń';
@override
String get common_enable => 'Włącz';
@override
String get common_disable => 'Wyłączyć';
@override
String get common_reboot => 'Zrestartować';
@override
String get common_loading => 'Ładowanie...';
@override
String get common_notAvailable => '—';
@override
String common_voltageValue(String volts) {
return '$volts V';
}
@override
String common_percentValue(int percent) {
return '$percent%';
}
@override
String get scanner_title => 'MeshCore Open';
@override
String get scanner_scanning => 'Skanowanie urządzeń...';
@override
String get scanner_connecting => 'Łączenie...';
@override
String get scanner_disconnecting => 'Odłączanie...';
@override
String get scanner_notConnected => 'Niepołączony';
@override
String scanner_connectedTo(String deviceName) {
return 'Połączono z $deviceName';
}
@override
String get scanner_searchingDevices => 'Wyszukiwanie urządzeń MeshCore...';
@override
String get scanner_tapToScan =>
'Naciśnij Skan, aby znaleźć urządzenia MeshCore';
@override
String scanner_connectionFailed(String error) {
return 'Połączenie nieudane: $error';
}
@override
String get scanner_stop => 'Zatrzymaj';
@override
String get scanner_scan => 'Przeskanuj';
@override
String get device_quickSwitch => 'Szybka zmiana';
@override
String get device_meshcore => 'MeshCore';
@override
String get settings_title => 'Ustawienia';
@override
String get settings_deviceInfo => 'Informacje o urządzeniu';
@override
String get settings_appSettings => 'Ustawienia aplikacji';
@override
String get settings_appSettingsSubtitle =>
'Powiadomienia, wiadomości i preferencje mapy';
@override
String get settings_nodeSettings => 'Ustawienia węzła';
@override
String get settings_nodeName => 'Nazwa węzła';
@override
String get settings_nodeNameNotSet => 'Nie ustawione';
@override
String get settings_nodeNameHint => 'Wprowadź nazwę węzła';
@override
String get settings_nodeNameUpdated => 'Imię zaktualizowane';
@override
String get settings_radioSettings => 'Ustawienia radia';
@override
String get settings_radioSettingsSubtitle =>
'Częstotliwość, moc, współczynnik rozpraszania';
@override
String get settings_radioSettingsUpdated =>
'Ustawienia radia zostały zaktualizowane';
@override
String get settings_location => 'Lokalizacja';
@override
String get settings_locationSubtitle => 'Koordynaty GPS';
@override
String get settings_locationUpdated => 'Lokalizacja zaktualizowana';
@override
String get settings_locationBothRequired =>
'Wprowadź zarówno szerokość, jak i długość geograficzną.';
@override
String get settings_locationInvalid =>
'Nieprawidłowa szerokość geograficzna lub długość geograficzna.';
@override
String get settings_locationGPSEnable => 'Włącz GPS';
@override
String get settings_locationGPSEnableSubtitle =>
'Włącza automatyczne aktualizowanie pozycji za pomocą GPS.';
@override
String get settings_locationIntervalSec => 'Interwał dla GPS (Sekundy)';
@override
String get settings_locationIntervalInvalid =>
'Interwał musi wynosić co najmniej 60 sekund i mniej niż 86400 sekund.';
@override
String get settings_latitude => 'Szerokość';
@override
String get settings_longitude => 'Długość';
@override
String get settings_privacyMode => 'Tryb Prywatny';
@override
String get settings_privacyModeSubtitle =>
'Ukryj imię/lokalizację w reklamach';
@override
String get settings_privacyModeToggle =>
'Włącz tryb prywatności, aby ukryć swoje imię i lokalizację w reklamach.';
@override
String get settings_privacyModeEnabled => 'Tryb prywatności włączony';
@override
String get settings_privacyModeDisabled => 'Tryb prywatności wyłączony';
@override
String get settings_actions => 'Działania';
@override
String get settings_sendAdvertisement => 'Wyślij Reklamę';
@override
String get settings_sendAdvertisementSubtitle =>
'Obecność transmisji jest teraz';
@override
String get settings_advertisementSent => 'Reklama wysłana';
@override
String get settings_syncTime => 'Czas synchronizacji';
@override
String get settings_syncTimeSubtitle =>
'Ustaw zegar urządzenia na czas telefonu.';
@override
String get settings_timeSynchronized => 'Synchronizacja czasu';
@override
String get settings_refreshContacts => 'Odśwież Kontakty';
@override
String get settings_refreshContactsSubtitle =>
'Odśwież listę kontaktów z urządzenia';
@override
String get settings_rebootDevice => 'Zrestartuj Urządzenie';
@override
String get settings_rebootDeviceSubtitle => 'Zrestartuj urządzenie MeshCore';
@override
String get settings_rebootDeviceConfirm =>
'Czy na pewno chcesz zrestartować urządzenie? Będziesz odłączony.';
@override
String get settings_debug => 'Debug';
@override
String get settings_bleDebugLog => 'Log błędów BLE';
@override
String get settings_bleDebugLogSubtitle =>
'Polecenia BLE, odpowiedzi i surowe dane';
@override
String get settings_appDebugLog => 'Log Wykonywania Aplikacji';
@override
String get settings_appDebugLogSubtitle => 'Komunikaty debugowania aplikacji';
@override
String get settings_about => 'O mnie';
@override
String settings_aboutVersion(String version) {
return 'MeshCore Open v$version';
}
@override
String get settings_aboutLegalese => 'Projekt MeshCore Open Source 2026';
@override
String get settings_aboutDescription =>
'Otwarty kod źródłowy klient Flutter dla urządzeń do sieci mesh LoRa MeshCore.';
@override
String get settings_infoName => 'Imię';
@override
String get settings_infoId => 'ID';
@override
String get settings_infoStatus => 'Status';
@override
String get settings_infoBattery => 'Bateria';
@override
String get settings_infoPublicKey => 'Klucz Publiczny';
@override
String get settings_infoContactsCount => 'Liczba kontaktów';
@override
String get settings_infoChannelCount => 'Liczba kanałów';
@override
String get settings_presets => 'Preset';
@override
String get settings_preset915Mhz => '915 MHz';
@override
String get settings_preset868Mhz => '868 MHz';
@override
String get settings_preset433Mhz => '433 MHz';
@override
String get settings_frequency => 'Częstotliwość (MHz)';
@override
String get settings_frequencyHelper => '300,0 - 2500,0';
@override
String get settings_frequencyInvalid =>
'Nieprawidłowa częstotliwość (300-2500 MHz)';
@override
String get settings_bandwidth => 'Przepustowość';
@override
String get settings_spreadingFactor => 'Rozkład Czynnika';
@override
String get settings_codingRate => 'Stawka Kodowania';
@override
String get settings_txPower => 'TX Moc (dBm)';
@override
String get settings_txPowerHelper => '0 - 22';
@override
String get settings_txPowerInvalid => 'Nieprawidłowa moc TX (0-22 dBm)';
@override
String get settings_longRange => 'Długi zasięg';
@override
String get settings_fastSpeed => 'Szybka prędkość';
@override
String settings_error(String message) {
return 'Błąd: $message';
}
@override
String get appSettings_title => 'Ustawienia aplikacji';
@override
String get appSettings_appearance => 'Wygląd';
@override
String get appSettings_theme => 'Motyw';
@override
String get appSettings_themeSystem => 'Domyślne ustawienia systemu';
@override
String get appSettings_themeLight => 'Jasne';
@override
String get appSettings_themeDark => 'Ciemny';
@override
String get appSettings_language => 'Język';
@override
String get appSettings_languageSystem => 'Domyślny systemowy';
@override
String get appSettings_languageEn => 'English';
@override
String get appSettings_languageFr => 'Français';
@override
String get appSettings_languageEs => 'Español';
@override
String get appSettings_languageDe => 'Deutsch';
@override
String get appSettings_languagePl => 'Polski';
@override
String get appSettings_languageSl => 'Slovenščina';
@override
String get appSettings_languagePt => 'Português';
@override
String get appSettings_languageIt => 'Italiano';
@override
String get appSettings_languageZh => '中文';
@override
String get appSettings_languageSv => 'Svenska';
@override
String get appSettings_languageNl => 'Nederlands';
@override
String get appSettings_languageSk => 'Slovenčina';
@override
String get appSettings_languageBg => 'Български';
@override
String get appSettings_languageRu => 'Rosyjski';
@override
String get appSettings_languageUk => 'Ukraińska';
@override
String get appSettings_notifications => 'Powiadomienia';
@override
String get appSettings_enableNotifications => 'Włącz Powiadomienia';
@override
String get appSettings_enableNotificationsSubtitle =>
'Otrzymuj powiadomienia o wiadomościach i reklamach.';
@override
String get appSettings_notificationPermissionDenied =>
'Odmowa zezwolenia na powiadomienia';
@override
String get appSettings_notificationsEnabled => 'Powiadomienia włączone';
@override
String get appSettings_notificationsDisabled => 'Powiadomienia wyłączone';
@override
String get appSettings_messageNotifications =>
'Powiadomienia o wiadomościach';
@override
String get appSettings_messageNotificationsSubtitle =>
'Pokaż powiadomienie przy otrzymywaniu nowych wiadomości';
@override
String get appSettings_channelMessageNotifications =>
'Powiadomienia o Wiadomościach na Kanałach';
@override
String get appSettings_channelMessageNotificationsSubtitle =>
'Pokaż powiadomienie przy odbieraniu wiadomości z kanału';
@override
String get appSettings_advertisementNotifications =>
'Powiadomienia Reklamowe';
@override
String get appSettings_advertisementNotificationsSubtitle =>
'Wyświetl powiadomienie, gdy zostaną odkryte nowe węzły.';
@override
String get appSettings_messaging => 'Wiadomości';
@override
String get appSettings_clearPathOnMaxRetry =>
'Wyczyść Ścieżkę na Maksymalnej Próbie';
@override
String get appSettings_clearPathOnMaxRetrySubtitle =>
'Resetuj ścieżkę kontaktu po 5 nieudanych próbach wysłania';
@override
String get appSettings_pathsWillBeCleared =>
'Droga będzie wyczyszczona po 5 nieudanych próbach.';
@override
String get appSettings_pathsWillNotBeCleared =>
'Droga nie zostanie automatycznie wyczyszczona.';
@override
String get appSettings_autoRouteRotation => 'Automatyczne Rotowanie Trasy';
@override
String get appSettings_autoRouteRotationSubtitle =>
'Przełączaj się między najlepszymi ścieżkami a trybem zalewowym.';
@override
String get appSettings_autoRouteRotationEnabled =>
'Automatyczne obracanie tras włączone';
@override
String get appSettings_autoRouteRotationDisabled =>
'Automatyczne obracanie tras wyłączone';
@override
String get appSettings_battery => 'Bateria';
@override
String get appSettings_batteryChemistry => 'Chemia Baterii';
@override
String appSettings_batteryChemistryPerDevice(String deviceName) {
return 'Ustawione na urządzenie ($deviceName)';
}
@override
String get appSettings_batteryChemistryConnectFirst =>
'Połącz się z urządzeniem, aby wybrać';
@override
String get appSettings_batteryNone => 'No Battery (External Power)';
@override
String get appSettings_batteryLipo => 'LiPo (3,0-4,2V)';
@override
String get appSettings_batteryLifepo4 => 'LiFePO4 (2,6-3,65 V)';
@override
String get appSettings_batteryLeadAcid => 'Lead Acid (12V)';
@override
String get appSettings_mapDisplay => 'Wyświetlanie mapy';
@override
String get appSettings_showRepeaters => 'Pokaż Powtórniki';
@override
String get appSettings_showRepeatersSubtitle =>
'Wyświetl węzły powtarzające się na mapie';
@override
String get appSettings_showChatNodes => 'Pokaż Węzły Rozmowy';
@override
String get appSettings_showChatNodesSubtitle =>
'Wyświetl węzły czatu na mapie';
@override
String get appSettings_showOtherNodes => 'Pokaż inne węzły';
@override
String get appSettings_showOtherNodesSubtitle =>
'Wyświetl inne typy węzłów na mapie';
@override
String get appSettings_timeFilter => 'Filtrowanie Czasu';
@override
String get appSettings_timeFilterShowAll => 'Pokaż wszystkie węzły';
@override
String appSettings_timeFilterShowLast(int hours) {
return 'Pokaż węzły z ostatnich $hours godzin';
}
@override
String get appSettings_mapTimeFilter => 'Filtrowanie Czasu Mapy';
@override
String get appSettings_showNodesDiscoveredWithin => 'Pokaż węzły odkryte w:';
@override
String get appSettings_allTime => 'Wszystko czasowo';
@override
String get appSettings_lastHour => 'Ostatnia godzina';
@override
String get appSettings_last6Hours => 'Ostatnie 6 godzin';
@override
String get appSettings_last24Hours => 'Ostatnie 24 godziny';
@override
String get appSettings_lastWeek => 'Tydzień temu';
@override
String get appSettings_offlineMapCache => 'Bufor Map Offline';
@override
String get appSettings_noAreaSelected => 'Nie zaznaczono żadnej powierzchni.';
@override
String appSettings_areaSelectedZoom(int minZoom, int maxZoom) {
return 'Wybrany obszar (skala $minZoom-$maxZoom)';
}
@override
String get appSettings_debugCard => 'Debug';
@override
String get appSettings_appDebugLogging => 'Logowanie Debugowania Aplikacji';
@override
String get appSettings_appDebugLoggingSubtitle =>
'Loguj wiadomości debugowania aplikacji w celu rozwiązywania problemów.';
@override
String get appSettings_appDebugLoggingEnabled =>
'Zdebugowanie aplikacji włączone';
@override
String get appSettings_appDebugLoggingDisabled =>
'Zasubskrybowane logi debugowania aplikacji wyłączone.';
@override
String get contacts_title => 'Kontakty';
@override
String get contacts_noContacts => 'Brak jeszcze kontaktów.';
@override
String get contacts_contactsWillAppear =>
'Kontakty będą wyświetlane, gdy urządzenia reklamują się.';
@override
String get contacts_searchContacts => 'Wyszukaj kontakty...';
@override
String get contacts_noUnreadContacts => 'Brak nieprzeczytanych kontaktów';
@override
String get contacts_noContactsFound =>
'Brak znalezionych kontaktów ani grup.';
@override
String get contacts_deleteContact => 'Usuń Kontakt';
@override
String contacts_removeConfirm(String contactName) {
return 'Usuń $contactName z kontaktów?';
}
@override
String get contacts_manageRepeater => 'Zarządzaj Powtórzami';
@override
String get contacts_manageRoom => 'Zarządzaj Serwerem Pokoju';
@override
String get contacts_roomLogin => 'Logowanie do pokoju';
@override
String get contacts_openChat => 'Otwórz czat';
@override
String get contacts_editGroup => 'Edytuj Grupę';
@override
String get contacts_deleteGroup => 'Usuń Grupę';
@override
String contacts_deleteGroupConfirm(String groupName) {
return 'Usuń \"$groupName\"?';
}
@override
String get contacts_newGroup => 'Nowa Grupa';
@override
String get contacts_groupName => 'Nazwa grupy';
@override
String get contacts_groupNameRequired => 'Nazwa grupy jest wymagana';
@override
String contacts_groupAlreadyExists(String name) {
return 'Grupa \"$name\" już istnieje';
}
@override
String get contacts_filterContacts => 'Filtruj kontakty...';
@override
String get contacts_noContactsMatchFilter =>
'Brak pasujących kontaktów do Twojego filtra';
@override
String get contacts_noMembers => 'Brak członków';
@override
String get contacts_lastSeenNow => 'Ostatnie połączenie';
@override
String contacts_lastSeenMinsAgo(int minutes) {
return 'Ostatnie połączenie $minutes min temu';
}
@override
String get contacts_lastSeenHourAgo => 'Ostatni raz widziany 1 godzinę temu';
@override
String contacts_lastSeenHoursAgo(int hours) {
return 'Ostatnie połączenie $hours godzin temu';
}
@override
String get contacts_lastSeenDayAgo => 'Ostatni raz widziany 1 dzień temu';
@override
String contacts_lastSeenDaysAgo(int days) {
return 'Ostatnie połączenie $days dni temu';
}
@override
String get channels_title => 'Kanały';
@override
String get channels_noChannelsConfigured => 'Brak skonfigurowanych kanałów';
@override
String get channels_addPublicChannel => 'Dodaj kanał publiczny';
@override
String get channels_searchChannels => 'Wyszukaj kanały...';
@override
String get channels_noChannelsFound => 'Brak znalezionych kanałów';
@override
String channels_channelIndex(int index) {
return 'Kanał $index';
}
@override
String get channels_hashtagChannel => 'Kanał z hashtagami';
@override
String get channels_public => 'Publiczny';
@override
String get channels_private => 'Prywatne';
@override
String get channels_publicChannel => 'Kanał publiczny';
@override
String get channels_privateChannel => 'Prywatny kanał';
@override
String get channels_editChannel => 'Edytuj kanał';
@override
String get channels_deleteChannel => 'Usuń kanał';
@override
String channels_deleteChannelConfirm(String name) {
return 'Usuń \"$name\"? Nie można tego cofnąć.';
}
@override
String channels_channelDeleted(String name) {
return 'Kanał \"$name\" usunięto';
}
@override
String get channels_addChannel => 'Dodaj Kanał';
@override
String get channels_channelIndexLabel => 'Indeks kanału';
@override
String get channels_channelName => 'Nazwa kanału';
@override
String get channels_usePublicChannel => 'Użyj kanału publicznego';
@override
String get channels_standardPublicPsk => 'Standard public PSK';
@override
String get channels_pskHex => 'PSK (Hex)';
@override
String get channels_generateRandomPsk => 'Wygeneruj losowy klucz PSK';
@override
String get channels_enterChannelName => 'Proszę podać nazwę kanału.';
@override
String get channels_pskMustBe32Hex => 'PSK musi mieć 32 znaki szesnastkowe.';
@override
String channels_channelAdded(String name) {
return 'Kanał \"$name\" dodany';
}
@override
String channels_editChannelTitle(int index) {
return 'Edytuj Kanał $index';
}
@override
String get channels_smazCompression => 'Kompresja SMAZ';
@override
String channels_channelUpdated(String name) {
return 'Kanał \"$name\" został zaktualizowany';
}
@override
String get channels_publicChannelAdded => 'Kanał publiczny dodany';
@override
String get channels_sortBy => 'Sortuj po';
@override
String get channels_sortManual => 'Ręczna';
@override
String get channels_sortAZ => 'A-Z';
@override
String get channels_sortLatestMessages => 'Najnowsze wiadomości';
@override
String get channels_sortUnread => 'Niezgłoszone';
@override
String get channels_createPrivateChannel => 'Utwórz Prywatny Kanał';
@override
String get channels_createPrivateChannelDesc =>
'Zabezpieczone kluczem szyfrowym.';
@override
String get channels_joinPrivateChannel => 'Dołącz do Prywatnego Kanału';
@override
String get channels_joinPrivateChannelDesc => 'Ręcznie wprowadź klucz tajny.';
@override
String get channels_joinPublicChannel => 'Dołącz do kanału publicznego.';
@override
String get channels_joinPublicChannelDesc =>
'Każdy może dołączyć do tego kanału.';
@override
String get channels_joinHashtagChannel =>
'Dołącz do kanału oznaczanego hashtagiem';
@override
String get channels_joinHashtagChannelDesc =>
'Każdy może dołączyć do kanałów z hashtagami.';
@override
String get channels_scanQrCode => 'Skanuj kod QR';
@override
String get channels_scanQrCodeComingSoon => 'Wkrótce';
@override
String get channels_enterHashtag => 'Wprowadź hashtag';
@override
String get channels_hashtagHint => 'np. #zespół';
@override
String get chat_noMessages => 'Brak jeszcze wiadomości';
@override
String get chat_sendMessageToStart => 'Wyślij wiadomość, aby rozpocząć.';
@override
String get chat_originalMessageNotFound =>
'Błąd: Nie znaleziono oryginalnego komunikatu';
@override
String chat_replyingTo(String name) {
return 'Odpowiadanie na $name';
}
@override
String chat_replyTo(String name) {
return 'Odpowiedz $name';
}
@override
String get chat_location => 'Lokalizacja';
@override
String chat_sendMessageTo(String contactName) {
return 'Wyślij wiadomość do $contactName';
}
@override
String get chat_typeMessage => 'Wpisz wiadomość...';
@override
String chat_messageTooLong(int maxBytes) {
return 'Wiadomość jest za długa (maksymalnie $maxBytes bajtów).';
}
@override
String get chat_messageCopied => 'Wiadomość skopiowana';
@override
String get chat_messageDeleted => 'Wiadomość usunięta';
@override
String get chat_retryingMessage => 'Próba ponowienia';
@override
String chat_retryCount(int current, int max) {
return 'Spróbuj $current/$max';
}
@override
String get chat_sendGif => 'Wyślij GIF';
@override
String get chat_reply => 'Odpowiedz';
@override
String get chat_addReaction => 'Dodaj Reakcję';
@override
String get chat_me => 'Ja';
@override
String get emojiCategorySmileys => 'Emoji';
@override
String get emojiCategoryGestures => 'Gestikulacje';
@override
String get emojiCategoryHearts => 'Serce';
@override
String get emojiCategoryObjects => 'Obiekty';
@override
String get gifPicker_title => 'Wybierz GIF';
@override
String get gifPicker_searchHint => 'Wyszukaj GIF-y...';
@override
String get gifPicker_poweredBy => 'Zasilane przez GIPHY';
@override
String get gifPicker_noGifsFound => 'Nie znaleziono GIF-ów';
@override
String get gifPicker_failedLoad => 'Nie udało się załadować GIF-ów';
@override
String get gifPicker_failedSearch => 'Nie udało się znaleźć GIF-ów';
@override
String get gifPicker_noInternet => 'Brak połączenia internetowego';
@override
String get debugLog_appTitle => 'Log Wykonywania Aplikacji';
@override
String get debugLog_bleTitle => 'Log błędów BLE';