feat: add rows count (broken), fix: bug with low stock items

This commit is contained in:
2026-08-02 23:23:28 +02:00
parent f5b2041612
commit 6060ca2713
19 changed files with 373 additions and 41 deletions
+3
View File
@@ -31,6 +31,9 @@
"languageSystem": "System default",
"languageEnglish": "English",
"languageDutch": "Dutch",
"productGridRows": "Product grid rows",
"rowsCount": "{count} rows",
"@rowsCount": {"placeholders": {"count": {"type": "int"}}},
"theme": "Theme",
"system": "System",
"light": "Light",
+12
View File
@@ -278,6 +278,18 @@ abstract class AppLocalizations {
/// **'Dutch'**
String get languageDutch;
/// No description provided for @productGridRows.
///
/// In en, this message translates to:
/// **'Product grid rows'**
String get productGridRows;
/// No description provided for @rowsCount.
///
/// In en, this message translates to:
/// **'{count} rows'**
String rowsCount(int count);
/// No description provided for @theme.
///
/// In en, this message translates to:
+8
View File
@@ -100,6 +100,14 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get languageDutch => 'Dutch';
@override
String get productGridRows => 'Product grid rows';
@override
String rowsCount(int count) {
return '$count rows';
}
@override
String get theme => 'Theme';
+8
View File
@@ -100,6 +100,14 @@ class AppLocalizationsNl extends AppLocalizations {
@override
String get languageDutch => 'Nederlands';
@override
String get productGridRows => 'Rijen in productraster';
@override
String rowsCount(int count) {
return '$count rijen';
}
@override
String get theme => 'Thema';
+3
View File
@@ -31,6 +31,9 @@
"languageSystem": "Systeemstandaard",
"languageEnglish": "Engels",
"languageDutch": "Nederlands",
"productGridRows": "Rijen in productraster",
"rowsCount": "{count} rijen",
"@rowsCount": {"placeholders": {"count": {"type": "int"}}},
"theme": "Thema",
"system": "Systeem",
"light": "Licht",