Skip to content

Commit 45e000e

Browse files
committed
remove duplicates
1 parent 32d70d4 commit 45e000e

16 files changed

+288
-325
lines changed

lib/l10n/app_en.arb

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,6 @@
374374
"accelerometerError" : "Accelerometer error:",
375375
"compassTitle": "Compass",
376376
"parallelToGround": "Select axes parallel to ground",
377-
"sharingMessage": "Sharing PSLab Data",
378-
"delete": "Delete",
379377
"thermometerTitle" : "Thermometer",
380378
"thermometerIntro" : "Thermometer instrument is used to measure ambient temprature. It can be measured using inbuilt ambient temprature sensor or through SHT21.",
381379
"celsius": "°C",
@@ -385,43 +383,8 @@
385383
"sharingMessage" : "Sharing PSLab Data",
386384
"delete" : "Delete",
387385
"deleteHint": "Are you sure you want to delete this file?",
388-
"deleteFile" : "Delete File",
389-
"deleteAllData" : "Delete All Data",
390-
"deleteCautionMessage" : "Are you sure you want to delete all logged data for this instrument?",
391-
"deleteAll" : "Delete All",
392-
"noLoggedData" : "No logged data found.",
393-
"importLog" : "Import Log",
394-
"failedToSave" : "Failed to save file. No data was recorded.",
395-
"fileSaved" : "File saved",
396-
"save" : "Save",
397-
"enterFileName" : "Enter filename (leave empty for auto-generated name)",
398-
"fileName" : "Filename",
399-
"saveRecording" : "Save Recording",
400-
"recordingStarted" : "Recording started",
401-
"noValidData" : "No valid data to display.",
402-
"csvPickingError" : "Error picking or reading CSV file",
403-
"csvReadingError" : "Error reading CSV from file",
404-
"sharingError" : "Error sharing file",
405-
"csvGettingError" : "Error getting saved files",
406-
"unsupportedPlatform" : "Unsupported platform",
407-
"noDataRecorded" : "No data recorded to save for",
408-
"csvFileSaved" : "CSV file saved at",
409-
"csvSavingError" : "Error saving CSV file",
410-
"csvDeletingError" : "Error deleting file",
411-
"fileDeleted" : "File deleted",
412-
"soundmeterConfig" : "Soundmeter Configurations",
413-
"barometerConfig" : "Barometer Configurations",
414-
"baroUpdatePeriodHint" : "Please provide time interval at which data will be updated (100 ms to 2000 ms)",
415-
"barometerHighLimitHint" : "Please provide the maximum limit of lux value to be recorded (0 atm to 1.10 atm)",
416-
"gyroscopeConfigurations" : "Gyroscope Configurations",
417-
"gyroscopeHighLimitHint" : "Please provide the maximum limit of lux value to be recorded (0 rad/s to 1000 rad/s)",
418-
"accelerometerConfigurations" : "Accelerometer Configurations",
419-
"accelerometerUpdatePeriodHint" : "Please provide time interval at which data will be updated",
420-
"accelerometerHighLimitHint" : "Please provide the maximum limit of lux value to be recorded",
421386
"soundmeterSnackBarMessage" : "Unable to access sound sensor",
422387
"dangerous" : "Dangerous",
423-
"roboticArmIntro": "• A robotic arm is a programmable mechanical device that mimics the movement of a human arm.\n• It uses servo motors to control its motion, and these motors are operated using PWM signals.\n• The PSLab provides four PWM square wave generators (SQ1, SQ2, SQ3, SQ4), allowing control of up to four servo motors and enabling a robotic arm with up to four degrees of freedom.",
424-
"roboticArmConnection": "• In the above figure, SQ1 is connected to the signal pin of the first servo motor. The servo's GND pin is connected to both the PSLab’s GND and the external power supply GND, while the VCC pin is connected to the external power supply VCC.\n• Similarly, connect the remaining servos to SQ2, SQ3, and SQ4 along with their respective GND and power supply connections.\n• Once connected, each servo can be controlled using either circular sliders for manual control or a timeline-based sequence for automated movement.",
425388
"documentationLink" : "https://docs.pslab.io/",
426389
"documentationError" : "Could not open the documentation link",
427390
"deleteFile": "Delete File",

lib/l10n/app_localizations.dart

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -2370,18 +2370,6 @@ abstract class AppLocalizations {
23702370
/// **'Select axes parallel to ground'**
23712371
String get parallelToGround;
23722372

2373-
/// No description provided for @sharingMessage.
2374-
///
2375-
/// In en, this message translates to:
2376-
/// **'Sharing PSLab Data'**
2377-
String get sharingMessage;
2378-
2379-
/// No description provided for @delete.
2380-
///
2381-
/// In en, this message translates to:
2382-
/// **'Delete'**
2383-
String get delete;
2384-
23852373
/// No description provided for @thermometerTitle.
23862374
///
23872375
/// In en, this message translates to:
@@ -2418,12 +2406,48 @@ abstract class AppLocalizations {
24182406
/// **'Ambient temperature sensor is not available on this device'**
24192407
String get temperatureSensorUnavailableMessage;
24202408

2409+
/// No description provided for @sharingMessage.
2410+
///
2411+
/// In en, this message translates to:
2412+
/// **'Sharing PSLab Data'**
2413+
String get sharingMessage;
2414+
2415+
/// No description provided for @delete.
2416+
///
2417+
/// In en, this message translates to:
2418+
/// **'Delete'**
2419+
String get delete;
2420+
24212421
/// No description provided for @deleteHint.
24222422
///
24232423
/// In en, this message translates to:
24242424
/// **'Are you sure you want to delete this file?'**
24252425
String get deleteHint;
24262426

2427+
/// No description provided for @soundmeterSnackBarMessage.
2428+
///
2429+
/// In en, this message translates to:
2430+
/// **'Unable to access sound sensor'**
2431+
String get soundmeterSnackBarMessage;
2432+
2433+
/// No description provided for @dangerous.
2434+
///
2435+
/// In en, this message translates to:
2436+
/// **'Dangerous'**
2437+
String get dangerous;
2438+
2439+
/// No description provided for @documentationLink.
2440+
///
2441+
/// In en, this message translates to:
2442+
/// **'https://docs.pslab.io/'**
2443+
String get documentationLink;
2444+
2445+
/// No description provided for @documentationError.
2446+
///
2447+
/// In en, this message translates to:
2448+
/// **'Could not open the documentation link'**
2449+
String get documentationError;
2450+
24272451
/// No description provided for @deleteFile.
24282452
///
24292453
/// In en, this message translates to:
@@ -2622,18 +2646,6 @@ abstract class AppLocalizations {
26222646
/// **'Please provide the maximum limit of lux value to be recorded'**
26232647
String get accelerometerHighLimitHint;
26242648

2625-
/// No description provided for @soundmeterSnackBarMessage.
2626-
///
2627-
/// In en, this message translates to:
2628-
/// **'Unable to access sound sensor'**
2629-
String get soundmeterSnackBarMessage;
2630-
2631-
/// No description provided for @dangerous.
2632-
///
2633-
/// In en, this message translates to:
2634-
/// **'Dangerous'**
2635-
String get dangerous;
2636-
26372649
/// No description provided for @roboticArmIntro.
26382650
///
26392651
/// In en, this message translates to:
@@ -2646,18 +2658,6 @@ abstract class AppLocalizations {
26462658
/// **'• In the above figure, SQ1 is connected to the signal pin of the first servo motor. The servo\'s GND pin is connected to both the PSLab’s GND and the external power supply GND, while the VCC pin is connected to the external power supply VCC.\n• Similarly, connect the remaining servos to SQ2, SQ3, and SQ4 along with their respective GND and power supply connections.\n• Once connected, each servo can be controlled using either circular sliders for manual control or a timeline-based sequence for automated movement.'**
26472659
String get roboticArmConnection;
26482660

2649-
/// No description provided for @documentationLink.
2650-
///
2651-
/// In en, this message translates to:
2652-
/// **'https://docs.pslab.io/'**
2653-
String get documentationLink;
2654-
2655-
/// No description provided for @documentationError.
2656-
///
2657-
/// In en, this message translates to:
2658-
/// **'Could not open the documentation link'**
2659-
String get documentationError;
2660-
26612661
/// No description provided for @autoscan.
26622662
///
26632663
/// In en, this message translates to:

lib/l10n/app_localizations_de.dart

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1222,12 +1222,6 @@ class AppLocalizationsDe extends AppLocalizations {
12221222
@override
12231223
String get parallelToGround => 'Select axes parallel to ground';
12241224

1225-
@override
1226-
String get sharingMessage => 'Sharing PSLab Data';
1227-
1228-
@override
1229-
String get delete => 'Delete';
1230-
12311225
@override
12321226
String get thermometerTitle => 'Thermometer';
12331227

@@ -1249,9 +1243,27 @@ class AppLocalizationsDe extends AppLocalizations {
12491243
String get temperatureSensorUnavailableMessage =>
12501244
'Ambient temperature sensor is not available on this device';
12511245

1246+
@override
1247+
String get sharingMessage => 'Sharing PSLab Data';
1248+
1249+
@override
1250+
String get delete => 'Delete';
1251+
12521252
@override
12531253
String get deleteHint => 'Are you sure you want to delete this file?';
12541254

1255+
@override
1256+
String get soundmeterSnackBarMessage => 'Unable to access sound sensor';
1257+
1258+
@override
1259+
String get dangerous => 'Dangerous';
1260+
1261+
@override
1262+
String get documentationLink => 'https://docs.pslab.io/';
1263+
1264+
@override
1265+
String get documentationError => 'Could not open the documentation link';
1266+
12551267
@override
12561268
String get deleteFile => 'Delete File';
12571269

@@ -1358,12 +1370,6 @@ class AppLocalizationsDe extends AppLocalizations {
13581370
String get accelerometerHighLimitHint =>
13591371
'Please provide the maximum limit of lux value to be recorded';
13601372

1361-
@override
1362-
String get soundmeterSnackBarMessage => 'Unable to access sound sensor';
1363-
1364-
@override
1365-
String get dangerous => 'Dangerous';
1366-
13671373
@override
13681374
String get roboticArmIntro =>
13691375
'• A robotic arm is a programmable mechanical device that mimics the movement of a human arm.\n• It uses servo motors to control its motion, and these motors are operated using PWM signals.\n• The PSLab provides four PWM square wave generators (SQ1, SQ2, SQ3, SQ4), allowing control of up to four servo motors and enabling a robotic arm with up to four degrees of freedom.';
@@ -1372,12 +1378,6 @@ class AppLocalizationsDe extends AppLocalizations {
13721378
String get roboticArmConnection =>
13731379
'• In the above figure, SQ1 is connected to the signal pin of the first servo motor. The servo\'s GND pin is connected to both the PSLab’s GND and the external power supply GND, while the VCC pin is connected to the external power supply VCC.\n• Similarly, connect the remaining servos to SQ2, SQ3, and SQ4 along with their respective GND and power supply connections.\n• Once connected, each servo can be controlled using either circular sliders for manual control or a timeline-based sequence for automated movement.';
13741380

1375-
@override
1376-
String get documentationLink => 'https://docs.pslab.io/';
1377-
1378-
@override
1379-
String get documentationError => 'Could not open the documentation link';
1380-
13811381
@override
13821382
String get autoscan => 'Autoscan';
13831383

lib/l10n/app_localizations_en.dart

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1222,12 +1222,6 @@ class AppLocalizationsEn extends AppLocalizations {
12221222
@override
12231223
String get parallelToGround => 'Select axes parallel to ground';
12241224

1225-
@override
1226-
String get sharingMessage => 'Sharing PSLab Data';
1227-
1228-
@override
1229-
String get delete => 'Delete';
1230-
12311225
@override
12321226
String get thermometerTitle => 'Thermometer';
12331227

@@ -1249,9 +1243,27 @@ class AppLocalizationsEn extends AppLocalizations {
12491243
String get temperatureSensorUnavailableMessage =>
12501244
'Ambient temperature sensor is not available on this device';
12511245

1246+
@override
1247+
String get sharingMessage => 'Sharing PSLab Data';
1248+
1249+
@override
1250+
String get delete => 'Delete';
1251+
12521252
@override
12531253
String get deleteHint => 'Are you sure you want to delete this file?';
12541254

1255+
@override
1256+
String get soundmeterSnackBarMessage => 'Unable to access sound sensor';
1257+
1258+
@override
1259+
String get dangerous => 'Dangerous';
1260+
1261+
@override
1262+
String get documentationLink => 'https://docs.pslab.io/';
1263+
1264+
@override
1265+
String get documentationError => 'Could not open the documentation link';
1266+
12551267
@override
12561268
String get deleteFile => 'Delete File';
12571269

@@ -1358,12 +1370,6 @@ class AppLocalizationsEn extends AppLocalizations {
13581370
String get accelerometerHighLimitHint =>
13591371
'Please provide the maximum limit of lux value to be recorded';
13601372

1361-
@override
1362-
String get soundmeterSnackBarMessage => 'Unable to access sound sensor';
1363-
1364-
@override
1365-
String get dangerous => 'Dangerous';
1366-
13671373
@override
13681374
String get roboticArmIntro =>
13691375
'• A robotic arm is a programmable mechanical device that mimics the movement of a human arm.\n• It uses servo motors to control its motion, and these motors are operated using PWM signals.\n• The PSLab provides four PWM square wave generators (SQ1, SQ2, SQ3, SQ4), allowing control of up to four servo motors and enabling a robotic arm with up to four degrees of freedom.';
@@ -1372,12 +1378,6 @@ class AppLocalizationsEn extends AppLocalizations {
13721378
String get roboticArmConnection =>
13731379
'• In the above figure, SQ1 is connected to the signal pin of the first servo motor. The servo\'s GND pin is connected to both the PSLab’s GND and the external power supply GND, while the VCC pin is connected to the external power supply VCC.\n• Similarly, connect the remaining servos to SQ2, SQ3, and SQ4 along with their respective GND and power supply connections.\n• Once connected, each servo can be controlled using either circular sliders for manual control or a timeline-based sequence for automated movement.';
13741380

1375-
@override
1376-
String get documentationLink => 'https://docs.pslab.io/';
1377-
1378-
@override
1379-
String get documentationError => 'Could not open the documentation link';
1380-
13811381
@override
13821382
String get autoscan => 'Autoscan';
13831383

lib/l10n/app_localizations_es.dart

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1222,12 +1222,6 @@ class AppLocalizationsEs extends AppLocalizations {
12221222
@override
12231223
String get parallelToGround => 'Select axes parallel to ground';
12241224

1225-
@override
1226-
String get sharingMessage => 'Sharing PSLab Data';
1227-
1228-
@override
1229-
String get delete => 'Delete';
1230-
12311225
@override
12321226
String get thermometerTitle => 'Thermometer';
12331227

@@ -1249,9 +1243,27 @@ class AppLocalizationsEs extends AppLocalizations {
12491243
String get temperatureSensorUnavailableMessage =>
12501244
'Ambient temperature sensor is not available on this device';
12511245

1246+
@override
1247+
String get sharingMessage => 'Sharing PSLab Data';
1248+
1249+
@override
1250+
String get delete => 'Delete';
1251+
12521252
@override
12531253
String get deleteHint => 'Are you sure you want to delete this file?';
12541254

1255+
@override
1256+
String get soundmeterSnackBarMessage => 'Unable to access sound sensor';
1257+
1258+
@override
1259+
String get dangerous => 'Dangerous';
1260+
1261+
@override
1262+
String get documentationLink => 'https://docs.pslab.io/';
1263+
1264+
@override
1265+
String get documentationError => 'Could not open the documentation link';
1266+
12551267
@override
12561268
String get deleteFile => 'Delete File';
12571269

@@ -1358,12 +1370,6 @@ class AppLocalizationsEs extends AppLocalizations {
13581370
String get accelerometerHighLimitHint =>
13591371
'Please provide the maximum limit of lux value to be recorded';
13601372

1361-
@override
1362-
String get soundmeterSnackBarMessage => 'Unable to access sound sensor';
1363-
1364-
@override
1365-
String get dangerous => 'Dangerous';
1366-
13671373
@override
13681374
String get roboticArmIntro =>
13691375
'• A robotic arm is a programmable mechanical device that mimics the movement of a human arm.\n• It uses servo motors to control its motion, and these motors are operated using PWM signals.\n• The PSLab provides four PWM square wave generators (SQ1, SQ2, SQ3, SQ4), allowing control of up to four servo motors and enabling a robotic arm with up to four degrees of freedom.';
@@ -1372,12 +1378,6 @@ class AppLocalizationsEs extends AppLocalizations {
13721378
String get roboticArmConnection =>
13731379
'• In the above figure, SQ1 is connected to the signal pin of the first servo motor. The servo\'s GND pin is connected to both the PSLab’s GND and the external power supply GND, while the VCC pin is connected to the external power supply VCC.\n• Similarly, connect the remaining servos to SQ2, SQ3, and SQ4 along with their respective GND and power supply connections.\n• Once connected, each servo can be controlled using either circular sliders for manual control or a timeline-based sequence for automated movement.';
13741380

1375-
@override
1376-
String get documentationLink => 'https://docs.pslab.io/';
1377-
1378-
@override
1379-
String get documentationError => 'Could not open the documentation link';
1380-
13811381
@override
13821382
String get autoscan => 'Autoscan';
13831383

0 commit comments

Comments
 (0)