internationlization wip

This commit is contained in:
2025-07-06 20:59:57 +02:00
parent 75b443758a
commit 45cdb253e4
3 changed files with 8 additions and 4 deletions

View File

@@ -636,7 +636,7 @@ class _MyHomePageState extends State<ListItemMenu> {
if (showInputSearch)
_buildSearchField(
controller: inputItem,
labelText: 'Search by item',
labelText: loc?.search_item ?? "Search by item",
onChanged: (value) {
_fetchCount = 0;
if (value.isNotEmpty) {
@@ -682,7 +682,7 @@ class _MyHomePageState extends State<ListItemMenu> {
if ((showDateFields) && (showInputTag))
_buildSearchField(
controller: inputTags,
labelText: 'Search by tags',
labelText: loc?.search_tag ?? "Search by tags",
onChanged: (value) {
_fetchCount = 0;
if (value.isNotEmpty) {