translation keys

This commit is contained in:
mmomjian 2025-04-22 12:16:00 -04:00
parent 085f39dea6
commit a2c0ecfc2a
3 changed files with 6 additions and 4 deletions

View File

@ -1429,8 +1429,10 @@
"recent": "Recent", "recent": "Recent",
"recent-albums": "Recent albums", "recent-albums": "Recent albums",
"recent_searches": "Recent searches", "recent_searches": "Recent searches",
"recently_added": "Recently taken", "recently_added": "Recently added",
"recently_added_page_title": "Recently Taken", "recently_added_page_title": "Recently Added",
"recently_taken": "Recently taken",
"recently_taken_page_title": "Recently Taken",
"refresh": "Refresh", "refresh": "Refresh",
"refresh_encoded_videos": "Refresh encoded videos", "refresh_encoded_videos": "Refresh encoded videos",
"refresh_faces": "Refresh faces", "refresh_faces": "Refresh faces",

View File

@ -16,7 +16,7 @@ class RecentlyAddedPage extends HookConsumerWidget {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: const Text('recently_added_page_title').tr(), title: const Text('recently_taken_page_title').tr(),
leading: IconButton( leading: IconButton(
onPressed: () => context.maybePop(), onPressed: () => context.maybePop(),
icon: const Icon(Icons.arrow_back_ios_rounded), icon: const Icon(Icons.arrow_back_ios_rounded),

View File

@ -843,7 +843,7 @@ class QuickLinkList extends StatelessWidget {
physics: const NeverScrollableScrollPhysics(), physics: const NeverScrollableScrollPhysics(),
children: [ children: [
QuickLink( QuickLink(
title: 'recently_added'.tr(), title: 'recently_taken'.tr(),
icon: Icons.schedule_outlined, icon: Icons.schedule_outlined,
isTop: true, isTop: true,
onTap: () => context.pushRoute(const RecentlyAddedRoute()), onTap: () => context.pushRoute(const RecentlyAddedRoute()),