feat: add rows count (broken), fix: bug with low stock items
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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';
|
||||
|
||||
|
||||
@@ -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';
|
||||
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user