feat(localization): update English and Swedish translations for admin features and profile actions
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 4m10s
Test Suite / flutter-quality (push) Failing after 1m19s

This commit is contained in:
Nils-Johan Gynther
2026-05-21 22:46:33 +02:00
parent 9dd49c5014
commit 30d27d6b8a
6 changed files with 47 additions and 18 deletions
Binary file not shown.
+13 -9
View File
@@ -514,12 +514,16 @@
"adminBulkSetCategory": "Bulk: set category", "adminBulkSetCategory": "Bulk: set category",
"adminRemoveCategory": "Remove category", "adminRemoveCategory": "Remove category",
"adminNoProductsFound": "No products match the filter.", "adminNoProductsFound": "No products match the filter.",
"adminInlineCategory": "Category (inline)", "adminInlineCategory": "Category (inline)",
"adminNoCategory": "No category", "adminNoCategory": "No category",
"adminRestoreAction": "Restore", "adminRestoreAction": "Restore",
"profileDeleteConfirmTitle": "Confirm deletion", "required": "Required",
"profileDeleteConfirmMessage": "Are you sure you want to delete your profile? All your data will be permanently deleted.", "logoutAction": "Log out",
"profileDeleteAction": "Delete my profile", "adminAiDescription": "Overview of AI features exposed by the backend.",
"profileDeletedMessage": "Your profile has been deleted.", "adminPagePrefix": "Page: ",
"profileDatabaseDescription": "The database tab covers your main areas for inventory and products." "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.",
"profileDatabaseDescription": "The database tab covers your main areas for inventory and products."
}
+7 -6
View File
@@ -520,9 +520,10 @@
"required": "Obligatoriskt", "required": "Obligatoriskt",
"logoutAction": "Logga ut", "logoutAction": "Logga ut",
"adminAiDescription": "Översikt över AI-funktioner som backend exponerar.", "adminAiDescription": "Översikt över AI-funktioner som backend exponerar.",
"adminPagePrefix": "Sida: ", "adminPagePrefix": "Sida: ",
"profileDeleteConfirmTitle": "Bekräfta radering", "profileDeleteConfirmTitle": "Bekräfta radering",
"profileDeleteConfirmMessage": "Är du säker på att du vill ta bort din profil? Alla dina data kommer att raderas permanent.", "profileDeleteConfirmMessage": "Är du säker på att du vill ta bort din profil? Alla dina data kommer att raderas permanent.",
"profileDeleteAction": "Ta bort min profil", "profileDeleteAction": "Ta bort min profil",
"profileDeletedMessage": "Din profil har tagits bort." "profileDeletedMessage": "Din profil har tagits bort.",
} "profileDatabaseDescription": "Databasfliken samlar dina huvudområden för lager och produkter."
}
@@ -1559,7 +1559,7 @@ abstract class AppLocalizations {
/// No description provided for @adminAiDescription. /// No description provided for @adminAiDescription.
/// ///
/// In en, this message translates to: /// In en, this message translates to:
/// **'Overview of AI functions exposed by the backend.'** /// **'Overview of AI features exposed by the backend.'**
String get adminAiDescription; String get adminAiDescription;
/// No description provided for @adminPagePrefix. /// No description provided for @adminPagePrefix.
@@ -1844,6 +1844,18 @@ abstract class AppLocalizations {
/// **'Restore'** /// **'Restore'**
String get adminRestoreAction; String get adminRestoreAction;
/// No description provided for @required.
///
/// In en, this message translates to:
/// **'Required'**
String get required;
/// No description provided for @logoutAction.
///
/// In en, this message translates to:
/// **'Log out'**
String get logoutAction;
/// No description provided for @profileDeleteConfirmTitle. /// No description provided for @profileDeleteConfirmTitle.
/// ///
/// In en, this message translates to: /// In en, this message translates to:
@@ -815,7 +815,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override @override
String get adminAiDescription => String get adminAiDescription =>
'Overview of AI functions exposed by the backend.'; 'Overview of AI features exposed by the backend.';
@override @override
String get adminPagePrefix => 'Page: '; String get adminPagePrefix => 'Page: ';
@@ -1008,6 +1008,12 @@ class AppLocalizationsEn extends AppLocalizations {
@override @override
String get adminRestoreAction => 'Restore'; String get adminRestoreAction => 'Restore';
@override
String get required => 'Required';
@override
String get logoutAction => 'Log out';
@override @override
String get profileDeleteConfirmTitle => 'Confirm deletion'; String get profileDeleteConfirmTitle => 'Confirm deletion';
@@ -1011,6 +1011,12 @@ class AppLocalizationsSv extends AppLocalizations {
@override @override
String get adminRestoreAction => 'Återställ'; String get adminRestoreAction => 'Återställ';
@override
String get required => 'Obligatoriskt';
@override
String get logoutAction => 'Logga ut';
@override @override
String get profileDeleteConfirmTitle => 'Bekräfta radering'; String get profileDeleteConfirmTitle => 'Bekräfta radering';
@@ -1026,5 +1032,5 @@ class AppLocalizationsSv extends AppLocalizations {
@override @override
String get profileDatabaseDescription => String get profileDatabaseDescription =>
'The database tab covers your main areas for inventory and products.'; 'Databasfliken samlar dina huvudområden för lager och produkter.';
} }