Generic fixes (#1291)

* - Update Camera purpose string for iOS
- Fix address field not passing the correct currency to address book

* Enhance file loading in exception handler

* Fix translation consistency [skip ci]
This commit is contained in:
Omar Hatem 2024-02-06 22:44:21 +02:00 committed by GitHub
parent 3945a3d7b4
commit d0b51cebe3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
30 changed files with 192 additions and 47 deletions

View file

@ -30,8 +30,10 @@ void main(List<String> args) async {
missingDefaults[key] = arbObj[key] as String;
});
if (missingDefaults.isNotEmpty)
if (missingDefaults.isNotEmpty) {
await appendTranslations(lang, missingDefaults);
alphabetizeArbFile(fileName);
}
}
}
}