feat(mobile): use Weblate for i18n (2) (#17620)

* feat(mobile): use Weblate for i18n (2)

* remove old translation files

* dedup keys

* remove migration report

* chore

* remove localizely.yml
This commit is contained in:
Alex 2025-04-15 10:54:26 -05:00 committed by GitHub
parent 17e720440d
commit b2c903c000
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
156 changed files with 25537 additions and 30968 deletions

View file

@ -96,7 +96,7 @@ class ImmichAppBarDialog extends HookConsumerWidget {
buildSettingButton() {
return buildActionButton(
Icons.settings_outlined,
"profile_drawer_settings",
"settings",
() => context.pushRoute(const SettingsRoute()),
);
}
@ -112,7 +112,7 @@ class ImmichAppBarDialog extends HookConsumerWidget {
buildSignOutButton() {
return buildActionButton(
Icons.logout_rounded,
"profile_drawer_sign_out",
"sign_out",
() async {
if (isLoggingOut.value) {
return;
@ -124,7 +124,7 @@ class ImmichAppBarDialog extends HookConsumerWidget {
return ConfirmDialog(
title: "app_bar_signout_dialog_title",
content: "app_bar_signout_dialog_content",
ok: "app_bar_signout_dialog_ok",
ok: "yes",
onOk: () async {
isLoggingOut.value = true;
await ref
@ -229,7 +229,7 @@ class ImmichAppBarDialog extends HookConsumerWidget {
);
},
child: Text(
"profile_drawer_documentation",
"documentation",
style: context.textTheme.bodySmall,
).tr(),
),

View file

@ -115,7 +115,7 @@ class AppBarServerInfo extends HookConsumerWidget {
child: Padding(
padding: const EdgeInsets.only(left: 10.0),
child: Text(
"server_info_box_server_version".tr(),
"server_version".tr(),
style: TextStyle(
fontSize: titleFontSize,
color: context.textTheme.labelSmall?.color,
@ -218,7 +218,7 @@ class AppBarServerInfo extends HookConsumerWidget {
),
),
Text(
"server_info_box_latest_release".tr(),
"latest_version".tr(),
style: TextStyle(
fontSize: titleFontSize,
color: context.textTheme.labelSmall?.color,