Skip to content

Commit d8e10d8

Browse files
authored
feat: implement Produce Sound functionality in Wave Generator (fossasia#3123)
1 parent e16ffea commit d8e10d8

23 files changed

Lines changed: 223 additions & 4 deletions

lib/l10n/app_en.arb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,5 +663,6 @@
663663
"pin_cap_name": "CAP",
664664
"pin_cap_desc": "Capacitance Measurement Pin",
665665
"pin_res_name": "RES",
666-
"pin_res_desc": "Resistance Measurement Pin"
666+
"pin_res_desc": "Resistance Measurement Pin",
667+
"stopSound" : "Stop Sound"
667668
}

lib/l10n/app_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4103,6 +4103,12 @@ abstract class AppLocalizations {
41034103
/// In en, this message translates to:
41044104
/// **'Resistance Measurement Pin'**
41054105
String get pin_res_desc;
4106+
4107+
/// No description provided for @stopSound.
4108+
///
4109+
/// In en, this message translates to:
4110+
/// **'Stop Sound'**
4111+
String get stopSound;
41064112
}
41074113

41084114
class _AppLocalizationsDelegate

lib/l10n/app_localizations_de.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2155,4 +2155,7 @@ class AppLocalizationsDe extends AppLocalizations {
21552155

21562156
@override
21572157
String get pin_res_desc => 'Resistance Measurement Pin';
2158+
2159+
@override
2160+
String get stopSound => 'Stop Sound';
21582161
}

lib/l10n/app_localizations_en.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2155,4 +2155,7 @@ class AppLocalizationsEn extends AppLocalizations {
21552155

21562156
@override
21572157
String get pin_res_desc => 'Resistance Measurement Pin';
2158+
2159+
@override
2160+
String get stopSound => 'Stop Sound';
21582161
}

lib/l10n/app_localizations_es.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2155,4 +2155,7 @@ class AppLocalizationsEs extends AppLocalizations {
21552155

21562156
@override
21572157
String get pin_res_desc => 'Resistance Measurement Pin';
2158+
2159+
@override
2160+
String get stopSound => 'Stop Sound';
21582161
}

lib/l10n/app_localizations_fr.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2155,4 +2155,7 @@ class AppLocalizationsFr extends AppLocalizations {
21552155

21562156
@override
21572157
String get pin_res_desc => 'Resistance Measurement Pin';
2158+
2159+
@override
2160+
String get stopSound => 'Stop Sound';
21582161
}

lib/l10n/app_localizations_he.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2155,4 +2155,7 @@ class AppLocalizationsHe extends AppLocalizations {
21552155

21562156
@override
21572157
String get pin_res_desc => 'Resistance Measurement Pin';
2158+
2159+
@override
2160+
String get stopSound => 'Stop Sound';
21582161
}

lib/l10n/app_localizations_hi.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2155,4 +2155,7 @@ class AppLocalizationsHi extends AppLocalizations {
21552155

21562156
@override
21572157
String get pin_res_desc => 'Resistance Measurement Pin';
2158+
2159+
@override
2160+
String get stopSound => 'Stop Sound';
21582161
}

lib/l10n/app_localizations_id.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2155,4 +2155,7 @@ class AppLocalizationsId extends AppLocalizations {
21552155

21562156
@override
21572157
String get pin_res_desc => 'Resistance Measurement Pin';
2158+
2159+
@override
2160+
String get stopSound => 'Stop Sound';
21582161
}

lib/l10n/app_localizations_it.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2155,4 +2155,7 @@ class AppLocalizationsIt extends AppLocalizations {
21552155

21562156
@override
21572157
String get pin_res_desc => 'Resistance Measurement Pin';
2158+
2159+
@override
2160+
String get stopSound => 'Stop Sound';
21582161
}

0 commit comments

Comments
 (0)