bug-fix
Test Suite / backend-pr-quick (push) Has been skipped
Test Suite / quick-import-pr-quick (push) Has been skipped
Test Suite / backend-full (push) Successful in 4m7s
Test Suite / flutter-quality (push) Failing after 57s

This commit is contained in:
Nils-Johan Gynther
2026-05-21 22:36:28 +02:00
parent 8c9da36312
commit 9dd49c5014
9 changed files with 60 additions and 119 deletions
+2 -3
View File
@@ -520,7 +520,6 @@
"profileDeleteConfirmTitle": "Confirm deletion",
"profileDeleteConfirmMessage": "Are you sure you want to delete your profile? All your data will be permanently deleted.",
"profileDeleteAction": "Delete my profile",
"profileDeletedMessage": "Your profile has been deleted."
}
"profileDeletedMessage": "Your profile has been deleted.",
"profileDatabaseDescription": "The database tab covers your main areas for inventory and products."
}
}
@@ -1559,7 +1559,7 @@ abstract class AppLocalizations {
/// No description provided for @adminAiDescription.
///
/// In en, this message translates to:
/// **'Overview of AI features exposed by the backend.'**
/// **'Overview of AI functions exposed by the backend.'**
String get adminAiDescription;
/// No description provided for @adminPagePrefix.
@@ -1844,17 +1844,29 @@ abstract class AppLocalizations {
/// **'Restore'**
String get adminRestoreAction;
/// No description provided for @required.
/// No description provided for @profileDeleteConfirmTitle.
///
/// In en, this message translates to:
/// **'Required'**
String get required;
/// **'Confirm deletion'**
String get profileDeleteConfirmTitle;
/// No description provided for @logoutAction.
/// No description provided for @profileDeleteConfirmMessage.
///
/// In en, this message translates to:
/// **'Log out'**
String get logoutAction;
/// **'Are you sure you want to delete your profile? All your data will be permanently deleted.'**
String get profileDeleteConfirmMessage;
/// No description provided for @profileDeleteAction.
///
/// In en, this message translates to:
/// **'Delete my profile'**
String get profileDeleteAction;
/// No description provided for @profileDeletedMessage.
///
/// In en, this message translates to:
/// **'Your profile has been deleted.'**
String get profileDeletedMessage;
/// No description provided for @profileDatabaseDescription.
///
@@ -815,7 +815,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get adminAiDescription =>
'Overview of AI features exposed by the backend.';
'Overview of AI functions exposed by the backend.';
@override
String get adminPagePrefix => 'Page: ';
@@ -1009,10 +1009,17 @@ class AppLocalizationsEn extends AppLocalizations {
String get adminRestoreAction => 'Restore';
@override
String get required => 'Required';
String get profileDeleteConfirmTitle => 'Confirm deletion';
@override
String get logoutAction => 'Log out';
String get profileDeleteConfirmMessage =>
'Are you sure you want to delete your profile? All your data will be permanently deleted.';
@override
String get profileDeleteAction => 'Delete my profile';
@override
String get profileDeletedMessage => 'Your profile has been deleted.';
@override
String get profileDatabaseDescription =>
@@ -1012,12 +1012,19 @@ class AppLocalizationsSv extends AppLocalizations {
String get adminRestoreAction => 'Återställ';
@override
String get required => 'Obligatoriskt';
String get profileDeleteConfirmTitle => 'Bekräfta radering';
@override
String get logoutAction => 'Logga ut';
String get profileDeleteConfirmMessage =>
'Är du säker på att du vill ta bort din profil? Alla dina data kommer att raderas permanent.';
@override
String get profileDeleteAction => 'Ta bort min profil';
@override
String get profileDeletedMessage => 'Din profil har tagits bort.';
@override
String get profileDatabaseDescription =>
'Databasfliken samlar dina huvudområden för lager och produkter.';
'The database tab covers your main areas for inventory and products.';
}
-1
View File
@@ -1 +0,0 @@
{}