2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-12 18:25:26 +00:00

Update string translations

This commit is contained in:
Oliver
2021-06-29 22:35:00 +10:00
parent b741e0100b
commit 7c44d212d5
3 changed files with 9 additions and 8 deletions

View File

@ -141,7 +141,7 @@ class _StockItemDisplayState extends RefreshableState<StockDetailWidget> {
void _stockUpdateMessage(bool result) {
if (result) {
showSnackIcon("Stock item updated", success: true);
showSnackIcon(L10().stockItemUpdated, success: true);
}
}
@ -258,7 +258,7 @@ class _StockItemDisplayState extends RefreshableState<StockDetailWidget> {
refresh();
if (result) {
showSnackIcon("Stock item transferred", success: true);
showSnackIcon(L10().stockItemTransferred, success: true);
}
}
@ -287,7 +287,7 @@ class _StockItemDisplayState extends RefreshableState<StockDetailWidget> {
controller: _selectedController,
autofocus: true,
decoration: InputDecoration(
hintText: "Search for location",
hintText: L10().searchLocation,
border: OutlineInputBorder()
)
),