feat: Implement update checker and dialog for available app updates with localization support

This commit is contained in:
Janez T
2025-10-26 17:47:37 +01:00
parent 0eae963efc
commit 0f9974c1e9
26 changed files with 727 additions and 12 deletions

View File

@@ -3344,6 +3344,36 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Rectangle'**
String get rectangle;
/// Title for update dialog when new version is available
///
/// In en, this message translates to:
/// **'Update Available'**
String get updateAvailable;
/// Label for current app version
///
/// In en, this message translates to:
/// **'Current'**
String get currentVersion;
/// Label for latest available app version
///
/// In en, this message translates to:
/// **'Latest'**
String get latestVersion;
/// Button to download app update
///
/// In en, this message translates to:
/// **'Download'**
String get downloadUpdate;
/// Button to dismiss update dialog
///
/// In en, this message translates to:
/// **'Later'**
String get updateLater;
}
class _AppLocalizationsDelegate