feat(recording): add safety limits and adaptive headers
Build & Deploy Pluriwave / Análisis de código (push) Successful in 23s
Build & Deploy Pluriwave / Build APK + AAB release (push) Successful in 1m37s

This commit is contained in:
2026-05-22 15:24:14 +02:00
parent 2320dbdc5f
commit 8190c4ab8d
34 changed files with 1445 additions and 459 deletions
+30 -3
View File
@@ -80,7 +80,7 @@ class AppLocalizationsIt extends AppLocalizations {
@override
String get languageSectionDescription =>
'Scegli la lingua di visualizzazione dell?app.';
'Choose how the app language is displayed.';
@override
String get languageSystemDefault => 'Sistema';
@@ -271,7 +271,7 @@ class AppLocalizationsIt extends AppLocalizations {
String get backupImportSubtitle => 'Restore from a backup file';
@override
String get backupShareSubject => 'PluriWave ? backup';
String get backupShareSubject => 'PluriWave backup';
@override
String backupShareText(Object date) {
@@ -319,11 +319,38 @@ class AppLocalizationsIt extends AppLocalizations {
String get backgroundAudioSubtitle => 'Continues when the screen turns off';
@override
String get dash => '?';
String get dash => '';
@override
String get cancelAction => 'Annulla';
@override
String get equalizerTitle => 'Equalizer';
@override
String get recordingsOpenFolder => 'Open folder';
@override
String recordingsOpenFolderError(Object error) {
return 'Could not open the folder: $error';
}
@override
String get recordingsMaxSizeTitle => 'Maximum recording size';
@override
String recordingsMaxSizeSubtitle(int size) {
return 'Current limit: $size MB';
}
@override
String get recordingsMaxSizeDialogTitle => 'Maximum size per recording';
@override
String get recordingsMaxSizeMbLabel => 'Maximum megabytes';
@override
String recordingsMaxSizeSaved(int size) {
return 'Recording limit updated to $size MB';
}
}