forked from fossasia/pslab-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp_localizations.dart
More file actions
4225 lines (3544 loc) · 123 KB
/
Copy pathapp_localizations.dart
File metadata and controls
4225 lines (3544 loc) · 123 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_de.dart';
import 'app_localizations_en.dart';
import 'app_localizations_es.dart';
import 'app_localizations_fr.dart';
import 'app_localizations_he.dart';
import 'app_localizations_hi.dart';
import 'app_localizations_id.dart';
import 'app_localizations_it.dart';
import 'app_localizations_ja.dart';
import 'app_localizations_ml.dart';
import 'app_localizations_my.dart';
import 'app_localizations_nb.dart';
import 'app_localizations_pt.dart';
import 'app_localizations_ru.dart';
import 'app_localizations_te.dart';
import 'app_localizations_uk.dart';
import 'app_localizations_vi.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('de'),
Locale('en'),
Locale('es'),
Locale('fr'),
Locale('he'),
Locale('hi'),
Locale('id'),
Locale('it'),
Locale('ja'),
Locale('ml'),
Locale('my'),
Locale('nb'),
Locale('pt'),
Locale('pt', 'BR'),
Locale('ru'),
Locale('te'),
Locale('uk'),
Locale('vi'),
Locale('zh'),
Locale.fromSubtags(languageCode: 'zh', scriptCode: 'Hant')
];
/// No description provided for @oscilloscope.
///
/// In en, this message translates to:
/// **'Oscilloscope'**
String get oscilloscope;
/// No description provided for @multimeter.
///
/// In en, this message translates to:
/// **'Multimeter'**
String get multimeter;
/// No description provided for @logicAnalyzer.
///
/// In en, this message translates to:
/// **'Logic Analyzer'**
String get logicAnalyzer;
/// No description provided for @sensors.
///
/// In en, this message translates to:
/// **'Sensors'**
String get sensors;
/// No description provided for @waveGenerator.
///
/// In en, this message translates to:
/// **'Wave Generator'**
String get waveGenerator;
/// No description provided for @powerSource.
///
/// In en, this message translates to:
/// **'Power Source'**
String get powerSource;
/// No description provided for @luxMeter.
///
/// In en, this message translates to:
/// **'Luxmeter'**
String get luxMeter;
/// No description provided for @accelerometer.
///
/// In en, this message translates to:
/// **'Accelerometer'**
String get accelerometer;
/// No description provided for @barometer.
///
/// In en, this message translates to:
/// **'Barometer'**
String get barometer;
/// No description provided for @compass.
///
/// In en, this message translates to:
/// **'Compass'**
String get compass;
/// No description provided for @gyroscope.
///
/// In en, this message translates to:
/// **'Gyroscope'**
String get gyroscope;
/// No description provided for @thermometer.
///
/// In en, this message translates to:
/// **'Thermometer'**
String get thermometer;
/// No description provided for @roboticArm.
///
/// In en, this message translates to:
/// **'Robotic Arm'**
String get roboticArm;
/// No description provided for @gasSensor.
///
/// In en, this message translates to:
/// **'Gas Sensor'**
String get gasSensor;
/// No description provided for @dustSensor.
///
/// In en, this message translates to:
/// **'Dust Sensor'**
String get dustSensor;
/// No description provided for @soundMeter.
///
/// In en, this message translates to:
/// **'Sound Meter'**
String get soundMeter;
/// No description provided for @oscilloscopeDesc.
///
/// In en, this message translates to:
/// **'Allows observation of varying signal voltages'**
String get oscilloscopeDesc;
/// No description provided for @multimeterDesc.
///
/// In en, this message translates to:
/// **'Measure voltage, current, resistance and capacitance'**
String get multimeterDesc;
/// No description provided for @logicAnalyzerDesc.
///
/// In en, this message translates to:
/// **'Captures and displays signals from digital systems'**
String get logicAnalyzerDesc;
/// No description provided for @sensorsDesc.
///
/// In en, this message translates to:
/// **'Allows logging of data returned by sensor connected'**
String get sensorsDesc;
/// No description provided for @waveGeneratorDesc.
///
/// In en, this message translates to:
/// **'Generates arbitrary analog and digital waveforms'**
String get waveGeneratorDesc;
/// No description provided for @powerSourceDesc.
///
/// In en, this message translates to:
/// **'Generates programmable voltage and currents'**
String get powerSourceDesc;
/// No description provided for @luxMeterDesc.
///
/// In en, this message translates to:
/// **'Measures the ambient light intensity'**
String get luxMeterDesc;
/// No description provided for @accelerometerDesc.
///
/// In en, this message translates to:
/// **'Measures the Linear acceleration in XYZ directions'**
String get accelerometerDesc;
/// No description provided for @barometerDesc.
///
/// In en, this message translates to:
/// **'Measures the atmospheric pressure'**
String get barometerDesc;
/// No description provided for @compassDesc.
///
/// In en, this message translates to:
/// **'Three axes magnetometer pointing to magnetic north'**
String get compassDesc;
/// No description provided for @gyroscopeDesc.
///
/// In en, this message translates to:
/// **'Measures rate of rotation about XYZ axis'**
String get gyroscopeDesc;
/// No description provided for @thermometerDesc.
///
/// In en, this message translates to:
/// **'To measure the ambient temperature'**
String get thermometerDesc;
/// No description provided for @roboticArmDesc.
///
/// In en, this message translates to:
/// **'Controls servos of a robotic arm'**
String get roboticArmDesc;
/// No description provided for @gasSensorDesc.
///
/// In en, this message translates to:
/// **'Air quality sensor for detecting a wide range of gases'**
String get gasSensorDesc;
/// No description provided for @dustSensorDesc.
///
/// In en, this message translates to:
/// **'Dust sensor is used to measure air quality in terms of particles per square meter'**
String get dustSensorDesc;
/// No description provided for @soundMeterDesc.
///
/// In en, this message translates to:
/// **'To measure the loudness in the environment in decibel(dB)'**
String get soundMeterDesc;
/// No description provided for @yAxisRange16V.
///
/// In en, this message translates to:
/// **'+/-16V'**
String get yAxisRange16V;
/// No description provided for @yAxisRange8V.
///
/// In en, this message translates to:
/// **'+/-8V'**
String get yAxisRange8V;
/// No description provided for @yAxisRange4V.
///
/// In en, this message translates to:
/// **'+/-4V'**
String get yAxisRange4V;
/// No description provided for @yAxisRange3V.
///
/// In en, this message translates to:
/// **'+/-3V'**
String get yAxisRange3V;
/// No description provided for @yAxisRange2V.
///
/// In en, this message translates to:
/// **'+/-2V'**
String get yAxisRange2V;
/// No description provided for @yAxisRange1_5V.
///
/// In en, this message translates to:
/// **'+/-1.5V'**
String get yAxisRange1_5V;
/// No description provided for @yAxisRange1V.
///
/// In en, this message translates to:
/// **'+/-1V'**
String get yAxisRange1V;
/// No description provided for @yAxisRange500mV.
///
/// In en, this message translates to:
/// **'+/-500mV'**
String get yAxisRange500mV;
/// No description provided for @yAxisRange160V.
///
/// In en, this message translates to:
/// **'+/-160V'**
String get yAxisRange160V;
/// No description provided for @oscilloscopeBulletPoint1.
///
/// In en, this message translates to:
/// **'Oscilloscope in PSLab gives out many of the functionalities of a commercially available Oscilloscope. It has 4-channels with a MIC in, 2 Sine wave generators and 4 PWM square wave generators, can change the timebase, analyses signal and does Sine and Square wave fitting and plots channel to channel voltage.'**
String get oscilloscopeBulletPoint1;
/// No description provided for @oscilloscopeBulletPoint2.
///
/// In en, this message translates to:
/// **'To read from a Sine wave or a square wave, you can connect the Output wave pin and a Channel to the Oscilloscope as follows.'**
String get oscilloscopeBulletPoint2;
/// No description provided for @oscilloscopeBulletPoint3.
///
/// In en, this message translates to:
/// **'Above shown figure has a connection from SQ1 to CH1 and SI1 to CH2.'**
String get oscilloscopeBulletPoint3;
/// No description provided for @oscilloscopeBulletPoint4.
///
/// In en, this message translates to:
/// **'Once you have generated a wave from the Wave Generator instrument connect the relevant pins and observe it from the Oscilloscope by ticking the relevant channel in Channel parameters. If you are using CH1 pin, select CH1 from channel parameters.'**
String get oscilloscopeBulletPoint4;
/// No description provided for @channelParameters.
///
/// In en, this message translates to:
/// **'Channel Parameters'**
String get channelParameters;
/// No description provided for @channelParametersIntro.
///
/// In en, this message translates to:
/// **'From this Setting, you can change the Channel that needs to be osbserved from the plot.'**
String get channelParametersIntro;
/// No description provided for @channelParametersBulletPoint1.
///
/// In en, this message translates to:
/// **'Tick the check boxes to plot the relevant Channel.'**
String get channelParametersBulletPoint1;
/// No description provided for @channelParametersBulletPoint2.
///
/// In en, this message translates to:
/// **'Can change the Y-axis voltage range in the plot using the spinner next to the Channel.'**
String get channelParametersBulletPoint2;
/// No description provided for @channelParametersBulletPoint3.
///
/// In en, this message translates to:
/// **'For the fourth Channel, you can choose either In-built microphone or an external mic. If you are to use an external microphone, the connection is as follows.'**
String get channelParametersBulletPoint3;
/// No description provided for @channelParametersBulletPoint4.
///
/// In en, this message translates to:
/// **'The Positive terminal of the MIC should be connected with the MIC pin and negative terminal should be conneted with the GND pin of PSLab device.'**
String get channelParametersBulletPoint4;
/// No description provided for @timebaseIntro.
///
/// In en, this message translates to:
/// **'This setting gives you the control of the range of Time axis(X-axis).'**
String get timebaseIntro;
/// No description provided for @timebaseBulletPoint1.
///
/// In en, this message translates to:
/// **'The timebase slidder can be used to increase or decrease the signal capturing time. Can change the range from 875.0 micro seconds to 102.4 milli seconds.'**
String get timebaseBulletPoint1;
/// No description provided for @timebaseBulletPoint2.
///
/// In en, this message translates to:
/// **'This will be useful to capture periodic wave signals in the given range for analysis.'**
String get timebaseBulletPoint2;
/// No description provided for @timebaseBulletPoint3.
///
/// In en, this message translates to:
/// **'You can use the trigger to set voltage value, so that when the signal exceeds the given value, plot will halt.'**
String get timebaseBulletPoint3;
/// No description provided for @dataAnalysisBulletPoint1.
///
/// In en, this message translates to:
/// **'Using this Setting, the mathematical function of the analysed signal can be found. Can choose the Wave type from Sine or Square and the Channel that needs to be analyzed.'**
String get dataAnalysisBulletPoint1;
/// No description provided for @dataAnalysisBulletPoint2.
///
/// In en, this message translates to:
/// **'Furthermore, analyzed signal\'s Fourier transform can be observed by checking Fourier Transforms check box.'**
String get dataAnalysisBulletPoint2;
/// No description provided for @xyPlotBulletPoint1.
///
/// In en, this message translates to:
/// **'This is used to plot the Channel to Channel voltage in a X-Y plot having voltage as the unit for the both axes relevant for the corresponding Channels.'**
String get xyPlotBulletPoint1;
/// No description provided for @channel1.
///
/// In en, this message translates to:
/// **'CH1'**
String get channel1;
/// No description provided for @channel2.
///
/// In en, this message translates to:
/// **'CH2'**
String get channel2;
/// No description provided for @channel3.
///
/// In en, this message translates to:
/// **'CH3'**
String get channel3;
/// No description provided for @mic.
///
/// In en, this message translates to:
/// **'MIC'**
String get mic;
/// No description provided for @capacitance.
///
/// In en, this message translates to:
/// **'CAP'**
String get capacitance;
/// No description provided for @resistance.
///
/// In en, this message translates to:
/// **'RES'**
String get resistance;
/// No description provided for @voltageUnit.
///
/// In en, this message translates to:
/// **'VOL'**
String get voltageUnit;
/// No description provided for @multimeterTitle.
///
/// In en, this message translates to:
/// **'Multimeter'**
String get multimeterTitle;
/// No description provided for @defaultValue.
///
/// In en, this message translates to:
/// **'0.00'**
String get defaultValue;
/// No description provided for @unitVolts.
///
/// In en, this message translates to:
/// **'Volts'**
String get unitVolts;
/// No description provided for @knobMarkerCh1.
///
/// In en, this message translates to:
/// **'CH1'**
String get knobMarkerCh1;
/// No description provided for @knobMarkerCap.
///
/// In en, this message translates to:
/// **'CAP'**
String get knobMarkerCap;
/// No description provided for @knobMarkerVol.
///
/// In en, this message translates to:
/// **'VOL'**
String get knobMarkerVol;
/// No description provided for @knobMarkerRes.
///
/// In en, this message translates to:
/// **'RES'**
String get knobMarkerRes;
/// No description provided for @knobMarkerLa1.
///
/// In en, this message translates to:
/// **'LA1'**
String get knobMarkerLa1;
/// No description provided for @knobMarkerLa2.
///
/// In en, this message translates to:
/// **'LA2'**
String get knobMarkerLa2;
/// No description provided for @knobMarkerLa3.
///
/// In en, this message translates to:
/// **'LA3'**
String get knobMarkerLa3;
/// No description provided for @knobMarkerLa4.
///
/// In en, this message translates to:
/// **'LA4'**
String get knobMarkerLa4;
/// No description provided for @knobMarkerCh3.
///
/// In en, this message translates to:
/// **'CH3'**
String get knobMarkerCh3;
/// No description provided for @knobMarkerCh2.
///
/// In en, this message translates to:
/// **'CH2'**
String get knobMarkerCh2;
/// No description provided for @voltage.
///
/// In en, this message translates to:
/// **'Voltage'**
String get voltage;
/// No description provided for @unitHz.
///
/// In en, this message translates to:
/// **'Hz'**
String get unitHz;
/// No description provided for @countPulse.
///
/// In en, this message translates to:
/// **'Count Pulse'**
String get countPulse;
/// No description provided for @measure.
///
/// In en, this message translates to:
/// **'Measure'**
String get measure;
/// No description provided for @connectDevice.
///
/// In en, this message translates to:
/// **'Connect Device'**
String get connectDevice;
/// No description provided for @deviceConnected.
///
/// In en, this message translates to:
/// **'Device Connected Successfully'**
String get deviceConnected;
/// No description provided for @noDeviceFound.
///
/// In en, this message translates to:
/// **'No USB Device Found'**
String get noDeviceFound;
/// No description provided for @stepsToConnectTitle.
///
/// In en, this message translates to:
/// **'Steps to connect the PSLab Device'**
String get stepsToConnectTitle;
/// No description provided for @step1ConnectMicroUsb.
///
/// In en, this message translates to:
/// **'1. Connect a USB cable to PSLab.'**
String get step1ConnectMicroUsb;
/// No description provided for @step2ConnectOtg.
///
/// In en, this message translates to:
/// **'2. Connect the other end of the USB cable to an OTG.'**
String get step2ConnectOtg;
/// No description provided for @step3ConnectPhone.
///
/// In en, this message translates to:
/// **'3. Connect the OTG to the phone.'**
String get step3ConnectPhone;
/// No description provided for @step4ConnectWireless.
///
/// In en, this message translates to:
/// **'4. PSLab can also be connected wirelessly via Wi-Fi if the option is present.'**
String get step4ConnectWireless;
/// No description provided for @wifiConnection.
///
/// In en, this message translates to:
/// **'Connect using Wi-Fi'**
String get wifiConnection;
/// No description provided for @wifi.
///
/// In en, this message translates to:
/// **'Wi-Fi'**
String get wifi;
/// No description provided for @connectingToWifi.
///
/// In en, this message translates to:
/// **'Connecting to PSLab WiFi...'**
String get connectingToWifi;
/// No description provided for @wifiConnectionSuccess.
///
/// In en, this message translates to:
/// **'Successfully connected to PSLab via WiFi'**
String get wifiConnectionSuccess;
/// No description provided for @wifiConnectionFailed.
///
/// In en, this message translates to:
/// **'Failed to connect. Make sure you are connected to PSLab WiFi network.'**
String get wifiConnectionFailed;
/// No description provided for @whatIsPslab.
///
/// In en, this message translates to:
/// **'What is PSLab Device?'**
String get whatIsPslab;
/// No description provided for @pslabUrl.
///
/// In en, this message translates to:
/// **'https://pslab.io'**
String get pslabUrl;
/// No description provided for @logicAnalyzerTitle.
///
/// In en, this message translates to:
/// **'Logic Analyzer'**
String get logicAnalyzerTitle;
/// No description provided for @channelSelection.
///
/// In en, this message translates to:
/// **'Channel Selection'**
String get channelSelection;
/// No description provided for @logicAnalyzerAxisTitle.
///
/// In en, this message translates to:
/// **'Time (µs)'**
String get logicAnalyzerAxisTitle;
/// No description provided for @noChartDataAvailable.
///
/// In en, this message translates to:
/// **'No chart data available'**
String get noChartDataAvailable;
/// No description provided for @noOfChannelsOne.
///
/// In en, this message translates to:
/// **'1'**
String get noOfChannelsOne;
/// No description provided for @noOfChannelsTwo.
///
/// In en, this message translates to:
/// **'2'**
String get noOfChannelsTwo;
/// No description provided for @noOfChannelsThree.
///
/// In en, this message translates to:
/// **'3'**
String get noOfChannelsThree;
/// No description provided for @noOfChannelsFour.
///
/// In en, this message translates to:
/// **'4'**
String get noOfChannelsFour;
/// No description provided for @channelLA1.
///
/// In en, this message translates to:
/// **'LA1'**
String get channelLA1;
/// No description provided for @channelLA2.
///
/// In en, this message translates to:
/// **'LA2'**
String get channelLA2;
/// No description provided for @channelLA3.
///
/// In en, this message translates to:
/// **'LA3'**
String get channelLA3;
/// No description provided for @channelLA4.
///
/// In en, this message translates to:
/// **'LA4'**
String get channelLA4;
/// No description provided for @analysisOptionEveryEdge.
///
/// In en, this message translates to:
/// **'Every Edge'**
String get analysisOptionEveryEdge;
/// No description provided for @analysisOptionEveryFallingEdge.
///
/// In en, this message translates to:
/// **'Every Falling Edge'**
String get analysisOptionEveryFallingEdge;
/// No description provided for @analysisOptionEveryRisingEdge.
///
/// In en, this message translates to:
/// **'Every Rising Edge'**
String get analysisOptionEveryRisingEdge;
/// No description provided for @analysisOptionEveryFourthRisingEdge.
///
/// In en, this message translates to:
/// **'Every Fourth Rising Edge'**
String get analysisOptionEveryFourthRisingEdge;
/// No description provided for @analysisOptionDisabled.
///
/// In en, this message translates to:
/// **'Disabled'**
String get analysisOptionDisabled;
/// No description provided for @logicAnalyzerConfigs.
///
/// In en, this message translates to:
/// **'Logic Analyzer Configurations'**
String get logicAnalyzerConfigs;
/// No description provided for @saving.
///
/// In en, this message translates to:
/// **'Saving...'**
String get saving;
/// No description provided for @powerSourceTitle.
///
/// In en, this message translates to:
/// **'Power Source'**
String get powerSourceTitle;
/// No description provided for @pinPV1.
///
/// In en, this message translates to:
/// **'PV1'**
String get pinPV1;
/// No description provided for @pinPV2.
///
/// In en, this message translates to:
/// **'PV2'**
String get pinPV2;
/// No description provided for @pinPV3.
///
/// In en, this message translates to:
/// **'PV3'**
String get pinPV3;
/// No description provided for @pinPCS.
///
/// In en, this message translates to:
/// **'PCS'**
String get pinPCS;
/// No description provided for @powerSourceIntro.
///
/// In en, this message translates to:
/// **'PSLab device can generate voltages from +5V to -5V at a resolution of 10mV'**
String get powerSourceIntro;
/// No description provided for @powerSourceBulletPoint1.
///
/// In en, this message translates to:
/// **'Connect one wire to PV1 and another wire to GND to generate voltages between +5V to -5V.'**
String get powerSourceBulletPoint1;
/// No description provided for @powerSourceBulletPoint2.
///
/// In en, this message translates to:
/// **'Similarly connect wires between PV2 to generate voltages between +3.3V to -3.3V.'**
String get powerSourceBulletPoint2;
/// No description provided for @powerSourceBulletPoint3.
///
/// In en, this message translates to:
/// **'Use PV3 pin to generate voltages between 0V to +3.3V.'**
String get powerSourceBulletPoint3;
/// No description provided for @powerSourceBulletPoint4.
///
/// In en, this message translates to:
/// **'PCS pin is used to supply a constant current between PCS pin and a GND pin in a range of 3.3mA.'**
String get powerSourceBulletPoint4;
/// No description provided for @powerSourceConfigs.
///
/// In en, this message translates to:
/// **'Power Source Configurations'**
String get powerSourceConfigs;
/// No description provided for @loggingInterval.
///
/// In en, this message translates to:
/// **'Logging Interval'**
String get loggingInterval;
/// No description provided for @loggingIntervalErrorMessage.
///
/// In en, this message translates to:
/// **'Entered logging interval is not within the limits!'**
String get loggingIntervalErrorMessage;
/// No description provided for @powerSourceLoggingIntervalHint.
///
/// In en, this message translates to:
/// **'Please provide time interval at which data will be logged (100 ms to 1000 ms)'**
String get powerSourceLoggingIntervalHint;
/// No description provided for @analog.
///
/// In en, this message translates to:
/// **'Analog'**
String get analog;
/// No description provided for @digital.
///
/// In en, this message translates to:
/// **'Digital'**
String get digital;
/// No description provided for @wave1.
///
/// In en, this message translates to:
/// **'Wave 1'**
String get wave1;
/// No description provided for @wave2.
///
/// In en, this message translates to:
/// **'Wave 2'**
String get wave2;
/// No description provided for @sqr1.
///
/// In en, this message translates to:
/// **'sqr1'**
String get sqr1;
/// No description provided for @sqr2.
///
/// In en, this message translates to:
/// **'sqr2'**
String get sqr2;
/// No description provided for @sqr3.
///
/// In en, this message translates to:
/// **'sqr3'**
String get sqr3;
/// No description provided for @sqr4.
///
/// In en, this message translates to:
/// **'sqr4'**
String get sqr4;
/// No description provided for @freq.
///
/// In en, this message translates to:
/// **'Freq'**
String get freq;
/// No description provided for @phase.
///
/// In en, this message translates to:
/// **'Phase'**
String get phase;
/// No description provided for @duty.
///
/// In en, this message translates to:
/// **'Duty'**
String get duty;
/// No description provided for @produceSound.
///
/// In en, this message translates to:
/// **'Produce Sound'**
String get produceSound;
/// No description provided for @frequency.
///
/// In en, this message translates to:
/// **'Frequency'**
String get frequency;
/// No description provided for @phaseOffset.
///
/// In en, this message translates to:
/// **'Phase Offset'**
String get phaseOffset;
/// No description provided for @unitDeg.
///