-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathapp_localizations.dart
More file actions
4945 lines (4141 loc) · 146 KB
/
app_localizations.dart
File metadata and controls
4945 lines (4141 loc) · 146 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
import 'dart:async';
import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:intl/intl.dart' as intl;
import 'app_localizations_bg.dart';
import 'app_localizations_de.dart';
import 'app_localizations_en.dart';
import 'app_localizations_es.dart';
import 'app_localizations_fr.dart';
import 'app_localizations_it.dart';
import 'app_localizations_nl.dart';
import 'app_localizations_pl.dart';
import 'app_localizations_pt.dart';
import 'app_localizations_ru.dart';
import 'app_localizations_sk.dart';
import 'app_localizations_sl.dart';
import 'app_localizations_sv.dart';
import 'app_localizations_uk.dart';
import 'app_localizations_zh.dart';
// ignore_for_file: type=lint
/// Callers can lookup localized strings with an instance of AppLocalizations
/// returned by `AppLocalizations.of(context)`.
///
/// Applications need to include `AppLocalizations.delegate()` in their app's
/// `localizationDelegates` list, and the locales they support in the app's
/// `supportedLocales` list. For example:
///
/// ```dart
/// import 'l10n/app_localizations.dart';
///
/// return MaterialApp(
/// localizationsDelegates: AppLocalizations.localizationsDelegates,
/// supportedLocales: AppLocalizations.supportedLocales,
/// home: MyApplicationHome(),
/// );
/// ```
///
/// ## Update pubspec.yaml
///
/// Please make sure to update your pubspec.yaml to include the following
/// packages:
///
/// ```yaml
/// dependencies:
/// # Internationalization support.
/// flutter_localizations:
/// sdk: flutter
/// intl: any # Use the pinned version from flutter_localizations
///
/// # Rest of dependencies
/// ```
///
/// ## iOS Applications
///
/// iOS applications define key application metadata, including supported
/// locales, in an Info.plist file that is built into the application bundle.
/// To configure the locales supported by your app, you’ll need to edit this
/// file.
///
/// First, open your project’s ios/Runner.xcworkspace Xcode workspace file.
/// Then, in the Project Navigator, open the Info.plist file under the Runner
/// project’s Runner folder.
///
/// Next, select the Information Property List item, select Add Item from the
/// Editor menu, then select Localizations from the pop-up menu.
///
/// Select and expand the newly-created Localizations item then, for each
/// locale your application supports, add a new item and select the locale
/// you wish to add from the pop-up menu in the Value field. This list should
/// be consistent with the languages listed in the AppLocalizations.supportedLocales
/// property.
abstract class AppLocalizations {
AppLocalizations(String locale)
: localeName = intl.Intl.canonicalizedLocale(locale.toString());
final String localeName;
static AppLocalizations of(BuildContext context) {
return Localizations.of<AppLocalizations>(context, AppLocalizations)!;
}
static const LocalizationsDelegate<AppLocalizations> delegate =
_AppLocalizationsDelegate();
/// A list of this localizations delegate along with the default localizations
/// delegates.
///
/// Returns a list of localizations delegates containing this delegate along with
/// GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate,
/// and GlobalWidgetsLocalizations.delegate.
///
/// Additional delegates can be added by appending to this list in
/// MaterialApp. This list does not have to be used at all if a custom list
/// of delegates is preferred or required.
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates =
<LocalizationsDelegate<dynamic>>[
delegate,
GlobalMaterialLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
];
/// A list of this localizations delegate's supported locales.
static const List<Locale> supportedLocales = <Locale>[
Locale('bg'),
Locale('de'),
Locale('en'),
Locale('es'),
Locale('fr'),
Locale('it'),
Locale('nl'),
Locale('pl'),
Locale('pt'),
Locale('ru'),
Locale('sk'),
Locale('sl'),
Locale('sv'),
Locale('uk'),
Locale('zh'),
];
/// No description provided for @appTitle.
///
/// In en, this message translates to:
/// **'MeshCore Open'**
String get appTitle;
/// No description provided for @nav_contacts.
///
/// In en, this message translates to:
/// **'Contacts'**
String get nav_contacts;
/// No description provided for @nav_channels.
///
/// In en, this message translates to:
/// **'Channels'**
String get nav_channels;
/// No description provided for @nav_map.
///
/// In en, this message translates to:
/// **'Map'**
String get nav_map;
/// No description provided for @common_cancel.
///
/// In en, this message translates to:
/// **'Cancel'**
String get common_cancel;
/// No description provided for @common_ok.
///
/// In en, this message translates to:
/// **'OK'**
String get common_ok;
/// No description provided for @common_connect.
///
/// In en, this message translates to:
/// **'Connect'**
String get common_connect;
/// No description provided for @common_unknownDevice.
///
/// In en, this message translates to:
/// **'Unknown Device'**
String get common_unknownDevice;
/// No description provided for @common_save.
///
/// In en, this message translates to:
/// **'Save'**
String get common_save;
/// No description provided for @common_delete.
///
/// In en, this message translates to:
/// **'Delete'**
String get common_delete;
/// No description provided for @common_close.
///
/// In en, this message translates to:
/// **'Close'**
String get common_close;
/// No description provided for @common_edit.
///
/// In en, this message translates to:
/// **'Edit'**
String get common_edit;
/// No description provided for @common_add.
///
/// In en, this message translates to:
/// **'Add'**
String get common_add;
/// No description provided for @common_settings.
///
/// In en, this message translates to:
/// **'Settings'**
String get common_settings;
/// No description provided for @common_disconnect.
///
/// In en, this message translates to:
/// **'Disconnect'**
String get common_disconnect;
/// No description provided for @common_connected.
///
/// In en, this message translates to:
/// **'Connected'**
String get common_connected;
/// No description provided for @common_disconnected.
///
/// In en, this message translates to:
/// **'Disconnected'**
String get common_disconnected;
/// No description provided for @common_create.
///
/// In en, this message translates to:
/// **'Create'**
String get common_create;
/// No description provided for @common_continue.
///
/// In en, this message translates to:
/// **'Continue'**
String get common_continue;
/// No description provided for @common_share.
///
/// In en, this message translates to:
/// **'Share'**
String get common_share;
/// No description provided for @common_copy.
///
/// In en, this message translates to:
/// **'Copy'**
String get common_copy;
/// No description provided for @common_retry.
///
/// In en, this message translates to:
/// **'Retry'**
String get common_retry;
/// No description provided for @common_hide.
///
/// In en, this message translates to:
/// **'Hide'**
String get common_hide;
/// No description provided for @common_remove.
///
/// In en, this message translates to:
/// **'Remove'**
String get common_remove;
/// No description provided for @common_enable.
///
/// In en, this message translates to:
/// **'Enable'**
String get common_enable;
/// No description provided for @common_disable.
///
/// In en, this message translates to:
/// **'Disable'**
String get common_disable;
/// No description provided for @common_reboot.
///
/// In en, this message translates to:
/// **'Reboot'**
String get common_reboot;
/// No description provided for @common_loading.
///
/// In en, this message translates to:
/// **'Loading...'**
String get common_loading;
/// No description provided for @common_notAvailable.
///
/// In en, this message translates to:
/// **'—'**
String get common_notAvailable;
/// No description provided for @common_voltageValue.
///
/// In en, this message translates to:
/// **'{volts} V'**
String common_voltageValue(String volts);
/// No description provided for @common_percentValue.
///
/// In en, this message translates to:
/// **'{percent}%'**
String common_percentValue(int percent);
/// No description provided for @scanner_title.
///
/// In en, this message translates to:
/// **'MeshCore Open'**
String get scanner_title;
/// No description provided for @scanner_scanning.
///
/// In en, this message translates to:
/// **'Scanning for devices...'**
String get scanner_scanning;
/// No description provided for @scanner_connecting.
///
/// In en, this message translates to:
/// **'Connecting...'**
String get scanner_connecting;
/// No description provided for @scanner_disconnecting.
///
/// In en, this message translates to:
/// **'Disconnecting...'**
String get scanner_disconnecting;
/// No description provided for @scanner_notConnected.
///
/// In en, this message translates to:
/// **'Not connected'**
String get scanner_notConnected;
/// No description provided for @scanner_connectedTo.
///
/// In en, this message translates to:
/// **'Connected to {deviceName}'**
String scanner_connectedTo(String deviceName);
/// No description provided for @scanner_searchingDevices.
///
/// In en, this message translates to:
/// **'Searching for MeshCore devices...'**
String get scanner_searchingDevices;
/// No description provided for @scanner_tapToScan.
///
/// In en, this message translates to:
/// **'Tap Scan to find MeshCore devices'**
String get scanner_tapToScan;
/// No description provided for @scanner_connectionFailed.
///
/// In en, this message translates to:
/// **'Connection failed: {error}'**
String scanner_connectionFailed(String error);
/// No description provided for @scanner_stop.
///
/// In en, this message translates to:
/// **'Stop'**
String get scanner_stop;
/// No description provided for @scanner_scan.
///
/// In en, this message translates to:
/// **'Scan'**
String get scanner_scan;
/// No description provided for @device_quickSwitch.
///
/// In en, this message translates to:
/// **'Quick switch'**
String get device_quickSwitch;
/// No description provided for @device_meshcore.
///
/// In en, this message translates to:
/// **'MeshCore'**
String get device_meshcore;
/// No description provided for @settings_title.
///
/// In en, this message translates to:
/// **'Settings'**
String get settings_title;
/// No description provided for @settings_deviceInfo.
///
/// In en, this message translates to:
/// **'Device Info'**
String get settings_deviceInfo;
/// No description provided for @settings_appSettings.
///
/// In en, this message translates to:
/// **'App Settings'**
String get settings_appSettings;
/// No description provided for @settings_appSettingsSubtitle.
///
/// In en, this message translates to:
/// **'Notifications, messaging, and map preferences'**
String get settings_appSettingsSubtitle;
/// No description provided for @settings_nodeSettings.
///
/// In en, this message translates to:
/// **'Node Settings'**
String get settings_nodeSettings;
/// No description provided for @settings_nodeName.
///
/// In en, this message translates to:
/// **'Node Name'**
String get settings_nodeName;
/// No description provided for @settings_nodeNameNotSet.
///
/// In en, this message translates to:
/// **'Not set'**
String get settings_nodeNameNotSet;
/// No description provided for @settings_nodeNameHint.
///
/// In en, this message translates to:
/// **'Enter node name'**
String get settings_nodeNameHint;
/// No description provided for @settings_nodeNameUpdated.
///
/// In en, this message translates to:
/// **'Name updated'**
String get settings_nodeNameUpdated;
/// No description provided for @settings_radioSettings.
///
/// In en, this message translates to:
/// **'Radio Settings'**
String get settings_radioSettings;
/// No description provided for @settings_radioSettingsSubtitle.
///
/// In en, this message translates to:
/// **'Frequency, power, spreading factor'**
String get settings_radioSettingsSubtitle;
/// No description provided for @settings_radioSettingsUpdated.
///
/// In en, this message translates to:
/// **'Radio settings updated'**
String get settings_radioSettingsUpdated;
/// No description provided for @settings_location.
///
/// In en, this message translates to:
/// **'Location'**
String get settings_location;
/// No description provided for @settings_locationSubtitle.
///
/// In en, this message translates to:
/// **'GPS coordinates'**
String get settings_locationSubtitle;
/// No description provided for @settings_locationUpdated.
///
/// In en, this message translates to:
/// **'Location and GPS settings updated'**
String get settings_locationUpdated;
/// No description provided for @settings_locationBothRequired.
///
/// In en, this message translates to:
/// **'Enter both latitude and longitude.'**
String get settings_locationBothRequired;
/// No description provided for @settings_locationInvalid.
///
/// In en, this message translates to:
/// **'Invalid latitude or longitude.'**
String get settings_locationInvalid;
/// No description provided for @settings_locationGPSEnable.
///
/// In en, this message translates to:
/// **'GPS Enable'**
String get settings_locationGPSEnable;
/// No description provided for @settings_locationGPSEnableSubtitle.
///
/// In en, this message translates to:
/// **'Enables GPS to automatically update location.'**
String get settings_locationGPSEnableSubtitle;
/// No description provided for @settings_locationIntervalSec.
///
/// In en, this message translates to:
/// **'Interval for GPS (Seconds)'**
String get settings_locationIntervalSec;
/// No description provided for @settings_locationIntervalInvalid.
///
/// In en, this message translates to:
/// **'Interval must be at least 60 seconds, and less than 86400 seconds.'**
String get settings_locationIntervalInvalid;
/// No description provided for @settings_latitude.
///
/// In en, this message translates to:
/// **'Latitude'**
String get settings_latitude;
/// No description provided for @settings_longitude.
///
/// In en, this message translates to:
/// **'Longitude'**
String get settings_longitude;
/// No description provided for @settings_privacyMode.
///
/// In en, this message translates to:
/// **'Privacy Mode'**
String get settings_privacyMode;
/// No description provided for @settings_privacyModeSubtitle.
///
/// In en, this message translates to:
/// **'Hide name/location in advertisements'**
String get settings_privacyModeSubtitle;
/// No description provided for @settings_privacyModeToggle.
///
/// In en, this message translates to:
/// **'Toggle privacy mode to hide your name and location in advertisements.'**
String get settings_privacyModeToggle;
/// No description provided for @settings_privacyModeEnabled.
///
/// In en, this message translates to:
/// **'Privacy mode enabled'**
String get settings_privacyModeEnabled;
/// No description provided for @settings_privacyModeDisabled.
///
/// In en, this message translates to:
/// **'Privacy mode disabled'**
String get settings_privacyModeDisabled;
/// No description provided for @settings_actions.
///
/// In en, this message translates to:
/// **'Actions'**
String get settings_actions;
/// No description provided for @settings_sendAdvertisement.
///
/// In en, this message translates to:
/// **'Send Advertisement'**
String get settings_sendAdvertisement;
/// No description provided for @settings_sendAdvertisementSubtitle.
///
/// In en, this message translates to:
/// **'Broadcast presence now'**
String get settings_sendAdvertisementSubtitle;
/// No description provided for @settings_advertisementSent.
///
/// In en, this message translates to:
/// **'Advertisement sent'**
String get settings_advertisementSent;
/// No description provided for @settings_syncTime.
///
/// In en, this message translates to:
/// **'Sync Time'**
String get settings_syncTime;
/// No description provided for @settings_syncTimeSubtitle.
///
/// In en, this message translates to:
/// **'Set device clock to phone time'**
String get settings_syncTimeSubtitle;
/// No description provided for @settings_timeSynchronized.
///
/// In en, this message translates to:
/// **'Time synchronized'**
String get settings_timeSynchronized;
/// No description provided for @settings_refreshContacts.
///
/// In en, this message translates to:
/// **'Refresh Contacts'**
String get settings_refreshContacts;
/// No description provided for @settings_refreshContactsSubtitle.
///
/// In en, this message translates to:
/// **'Reload contact list from device'**
String get settings_refreshContactsSubtitle;
/// No description provided for @settings_rebootDevice.
///
/// In en, this message translates to:
/// **'Reboot Device'**
String get settings_rebootDevice;
/// No description provided for @settings_rebootDeviceSubtitle.
///
/// In en, this message translates to:
/// **'Restart the MeshCore device'**
String get settings_rebootDeviceSubtitle;
/// No description provided for @settings_rebootDeviceConfirm.
///
/// In en, this message translates to:
/// **'Are you sure you want to reboot the device? You will be disconnected.'**
String get settings_rebootDeviceConfirm;
/// No description provided for @settings_debug.
///
/// In en, this message translates to:
/// **'Debug'**
String get settings_debug;
/// No description provided for @settings_bleDebugLog.
///
/// In en, this message translates to:
/// **'BLE Debug Log'**
String get settings_bleDebugLog;
/// No description provided for @settings_bleDebugLogSubtitle.
///
/// In en, this message translates to:
/// **'BLE commands, responses, and raw data'**
String get settings_bleDebugLogSubtitle;
/// No description provided for @settings_appDebugLog.
///
/// In en, this message translates to:
/// **'App Debug Log'**
String get settings_appDebugLog;
/// No description provided for @settings_appDebugLogSubtitle.
///
/// In en, this message translates to:
/// **'Application debug messages'**
String get settings_appDebugLogSubtitle;
/// No description provided for @settings_about.
///
/// In en, this message translates to:
/// **'About'**
String get settings_about;
/// No description provided for @settings_aboutVersion.
///
/// In en, this message translates to:
/// **'MeshCore Open v{version}'**
String settings_aboutVersion(String version);
/// No description provided for @settings_aboutLegalese.
///
/// In en, this message translates to:
/// **'2026 MeshCore Open Source Project'**
String get settings_aboutLegalese;
/// No description provided for @settings_aboutDescription.
///
/// In en, this message translates to:
/// **'An open-source Flutter client for MeshCore LoRa mesh networking devices.'**
String get settings_aboutDescription;
/// No description provided for @settings_infoName.
///
/// In en, this message translates to:
/// **'Name'**
String get settings_infoName;
/// No description provided for @settings_infoId.
///
/// In en, this message translates to:
/// **'ID'**
String get settings_infoId;
/// No description provided for @settings_infoStatus.
///
/// In en, this message translates to:
/// **'Status'**
String get settings_infoStatus;
/// No description provided for @settings_infoBattery.
///
/// In en, this message translates to:
/// **'Battery'**
String get settings_infoBattery;
/// No description provided for @settings_infoPublicKey.
///
/// In en, this message translates to:
/// **'Public Key'**
String get settings_infoPublicKey;
/// No description provided for @settings_infoContactsCount.
///
/// In en, this message translates to:
/// **'Contacts Count'**
String get settings_infoContactsCount;
/// No description provided for @settings_infoChannelCount.
///
/// In en, this message translates to:
/// **'Channel Count'**
String get settings_infoChannelCount;
/// No description provided for @settings_presets.
///
/// In en, this message translates to:
/// **'Presets'**
String get settings_presets;
/// No description provided for @settings_preset915Mhz.
///
/// In en, this message translates to:
/// **'915 MHz'**
String get settings_preset915Mhz;
/// No description provided for @settings_preset868Mhz.
///
/// In en, this message translates to:
/// **'868 MHz'**
String get settings_preset868Mhz;
/// No description provided for @settings_preset433Mhz.
///
/// In en, this message translates to:
/// **'433 MHz'**
String get settings_preset433Mhz;
/// No description provided for @settings_frequency.
///
/// In en, this message translates to:
/// **'Frequency (MHz)'**
String get settings_frequency;
/// No description provided for @settings_frequencyHelper.
///
/// In en, this message translates to:
/// **'300.0 - 2500.0'**
String get settings_frequencyHelper;
/// No description provided for @settings_frequencyInvalid.
///
/// In en, this message translates to:
/// **'Invalid frequency (300-2500 MHz)'**
String get settings_frequencyInvalid;
/// No description provided for @settings_bandwidth.
///
/// In en, this message translates to:
/// **'Bandwidth'**
String get settings_bandwidth;
/// No description provided for @settings_spreadingFactor.
///
/// In en, this message translates to:
/// **'Spreading Factor'**
String get settings_spreadingFactor;
/// No description provided for @settings_codingRate.
///
/// In en, this message translates to:
/// **'Coding Rate'**
String get settings_codingRate;
/// No description provided for @settings_txPower.
///
/// In en, this message translates to:
/// **'TX Power (dBm)'**
String get settings_txPower;
/// No description provided for @settings_txPowerHelper.
///
/// In en, this message translates to:
/// **'0 - 22'**
String get settings_txPowerHelper;
/// No description provided for @settings_txPowerInvalid.
///
/// In en, this message translates to:
/// **'Invalid TX power (0-22 dBm)'**
String get settings_txPowerInvalid;
/// No description provided for @settings_longRange.
///
/// In en, this message translates to:
/// **'Long Range'**
String get settings_longRange;
/// No description provided for @settings_fastSpeed.
///
/// In en, this message translates to:
/// **'Fast Speed'**
String get settings_fastSpeed;
/// No description provided for @settings_error.
///
/// In en, this message translates to:
/// **'Error: {message}'**
String settings_error(String message);
/// No description provided for @appSettings_title.
///
/// In en, this message translates to:
/// **'App Settings'**
String get appSettings_title;
/// No description provided for @appSettings_appearance.
///
/// In en, this message translates to:
/// **'Appearance'**
String get appSettings_appearance;
/// No description provided for @appSettings_theme.
///
/// In en, this message translates to:
/// **'Theme'**
String get appSettings_theme;
/// No description provided for @appSettings_themeSystem.
///
/// In en, this message translates to:
/// **'System default'**
String get appSettings_themeSystem;
/// No description provided for @appSettings_themeLight.
///
/// In en, this message translates to:
/// **'Light'**
String get appSettings_themeLight;
/// No description provided for @appSettings_themeDark.
///
/// In en, this message translates to:
/// **'Dark'**
String get appSettings_themeDark;
/// No description provided for @appSettings_language.
///
/// In en, this message translates to:
/// **'Language'**
String get appSettings_language;
/// No description provided for @appSettings_languageSystem.
///
/// In en, this message translates to:
/// **'System default'**
String get appSettings_languageSystem;
/// No description provided for @appSettings_languageEn.
///
/// In en, this message translates to:
/// **'English'**
String get appSettings_languageEn;
/// No description provided for @appSettings_languageFr.
///
/// In en, this message translates to:
/// **'Français'**
String get appSettings_languageFr;
/// No description provided for @appSettings_languageEs.
///
/// In en, this message translates to:
/// **'Español'**
String get appSettings_languageEs;
/// No description provided for @appSettings_languageDe.
///
/// In en, this message translates to:
/// **'Deutsch'**
String get appSettings_languageDe;
/// No description provided for @appSettings_languagePl.
///
/// In en, this message translates to:
/// **'Polski'**
String get appSettings_languagePl;
/// No description provided for @appSettings_languageSl.
///
/// In en, this message translates to:
/// **'Slovenščina'**
String get appSettings_languageSl;
/// No description provided for @appSettings_languagePt.
///
/// In en, this message translates to:
/// **'Português'**
String get appSettings_languagePt;
/// No description provided for @appSettings_languageIt.
///
/// In en, this message translates to:
/// **'Italiano'**
String get appSettings_languageIt;
/// No description provided for @appSettings_languageZh.
///
/// In en, this message translates to:
/// **'中文'**
String get appSettings_languageZh;
/// No description provided for @appSettings_languageSv.
///
/// In en, this message translates to:
/// **'Svenska'**
String get appSettings_languageSv;
/// No description provided for @appSettings_languageNl.
///
/// In en, this message translates to:
/// **'Nederlands'**
String get appSettings_languageNl;
/// No description provided for @appSettings_languageSk.
///
/// In en, this message translates to:
/// **'Slovenčina'**
String get appSettings_languageSk;
/// No description provided for @appSettings_languageBg.
///
/// In en, this message translates to:
/// **'Български'**
String get appSettings_languageBg;
/// No description provided for @appSettings_languageRu.
///
/// In en, this message translates to:
/// **'Русский'**
String get appSettings_languageRu;
/// No description provided for @appSettings_languageUk.
///
/// In en, this message translates to:
/// **'Українська'**
String get appSettings_languageUk;
/// No description provided for @appSettings_notifications.
///
/// In en, this message translates to:
/// **'Notifications'**
String get appSettings_notifications;
/// No description provided for @appSettings_enableNotifications.
///
/// In en, this message translates to:
/// **'Enable Notifications'**
String get appSettings_enableNotifications;
/// No description provided for @appSettings_enableNotificationsSubtitle.
///
/// In en, this message translates to:
/// **'Receive notifications for messages and adverts'**
String get appSettings_enableNotificationsSubtitle;
/// No description provided for @appSettings_notificationPermissionDenied.
///
/// In en, this message translates to:
/// **'Notification permission denied'**
String get appSettings_notificationPermissionDenied;
/// No description provided for @appSettings_notificationsEnabled.
///
/// In en, this message translates to:
/// **'Notifications enabled'**
String get appSettings_notificationsEnabled;
/// No description provided for @appSettings_notificationsDisabled.
///
/// In en, this message translates to:
/// **'Notifications disabled'**
String get appSettings_notificationsDisabled;
/// No description provided for @appSettings_messageNotifications.
///
/// In en, this message translates to:
/// **'Message Notifications'**