mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
fix(mobile): fix translations on search page (#14533)
* Update en-US.json * Update search.page.dart
This commit is contained in:
parent
5e955a1b03
commit
e99edc47b7
2 changed files with 3 additions and 2 deletions
|
@ -482,6 +482,7 @@
|
||||||
"search_page_places": "Places",
|
"search_page_places": "Places",
|
||||||
"search_page_recently_added": "Recently added",
|
"search_page_recently_added": "Recently added",
|
||||||
"search_page_screenshots": "Screenshots",
|
"search_page_screenshots": "Screenshots",
|
||||||
|
"search_page_search_photos_videos": "Search for your photos and videos",
|
||||||
"search_page_selfies": "Selfies",
|
"search_page_selfies": "Selfies",
|
||||||
"search_page_things": "Things",
|
"search_page_things": "Things",
|
||||||
"search_page_videos": "Videos",
|
"search_page_videos": "Videos",
|
||||||
|
@ -653,4 +654,4 @@
|
||||||
"viewer_unstack": "Un-Stack",
|
"viewer_unstack": "Un-Stack",
|
||||||
"wifi_name": "WiFi Name",
|
"wifi_name": "WiFi Name",
|
||||||
"your_wifi_name": "Your WiFi name"
|
"your_wifi_name": "Your WiFi name"
|
||||||
}
|
}
|
||||||
|
|
|
@ -680,7 +680,7 @@ class SearchEmptyContent extends StatelessWidget {
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
Center(
|
Center(
|
||||||
child: Text(
|
child: Text(
|
||||||
"Search for your photos and videos",
|
'search_page_search_photos_videos'.tr(),
|
||||||
style: context.textTheme.labelLarge,
|
style: context.textTheme.labelLarge,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue