[PR #246] [MERGED] Internationalization (German) of the mobile app. #8526

Closed
opened 2026-02-05 13:48:47 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/246
Author: @matthinc
Created: 6/22/2022
Status: Merged
Merged: 7/7/2022
Merged by: @alextran1502

Base: mainHead: dev/i18n


📝 Commits (10+)

  • 79d7500 Add i18n framework to mobile app and write simple translation generator
  • 8ccd899 Replace all texts in login_form with i18n keys
  • b88dcaf Localization of sharing section
  • 50c0847 Localization of asset viewer section
  • 067c9e3 Use JSON as base translation format
  • ca62000 Add check for missing/unused translation keys
  • 2dd1df8 Add localizely
  • a249e37 Remove i18n directory in favour of localizely
  • 821eca6 Backup Translation
  • f08ec52 More translations

📊 Changes

36 files changed (+601 additions, -213 deletions)

View changed files

localizely.yml (+15 -0)
mobile/assets/i18n/de-DE.json (+98 -0)
mobile/assets/i18n/en-US.json (+98 -0)
📝 mobile/ios/Runner/Info.plist (+6 -0)
📝 mobile/lib/main.dart (+19 -1)
📝 mobile/lib/modules/asset_viewer/ui/exif_bottom_sheet.dart (+8 -7)
📝 mobile/lib/modules/backup/ui/album_info_card.dart (+11 -7)
📝 mobile/lib/modules/backup/ui/backup_info_card.dart (+2 -1)
📝 mobile/lib/modules/backup/views/backup_album_selection_page.dart (+25 -18)
📝 mobile/lib/modules/backup/views/backup_controller_page.dart (+49 -42)
📝 mobile/lib/modules/home/ui/control_bottom_app_bar.dart (+2 -1)
📝 mobile/lib/modules/home/ui/daily_title_text.dart (+2 -1)
📝 mobile/lib/modules/home/ui/delete_diaglog.dart (+7 -7)
📝 mobile/lib/modules/home/ui/monthly_title_text.dart (+2 -1)
📝 mobile/lib/modules/home/ui/profile_drawer.dart (+4 -3)
📝 mobile/lib/modules/login/ui/login_form.dart (+22 -21)
📝 mobile/lib/modules/search/ui/search_bar.dart (+3 -2)
📝 mobile/lib/modules/search/ui/thumbnail_with_info.dart (+1 -1)
📝 mobile/lib/modules/search/views/search_page.dart (+11 -10)
📝 mobile/lib/modules/search/views/search_result_page.dart (+3 -2)

...and 16 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/immich-app/immich/pull/246 **Author:** [@matthinc](https://github.com/matthinc) **Created:** 6/22/2022 **Status:** ✅ Merged **Merged:** 7/7/2022 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `dev/i18n` --- ### 📝 Commits (10+) - [`79d7500`](https://github.com/immich-app/immich/commit/79d7500e5fea3c720b8dd91833ec833efb0cad40) Add i18n framework to mobile app and write simple translation generator - [`8ccd899`](https://github.com/immich-app/immich/commit/8ccd8999bb2ef48981d9ff50382f0616a30d4114) Replace all texts in login_form with i18n keys - [`b88dcaf`](https://github.com/immich-app/immich/commit/b88dcafe7e7a3178f7e6f7ea02c6be8fb4e77367) Localization of sharing section - [`50c0847`](https://github.com/immich-app/immich/commit/50c0847edea493b2e465b5a56673f698f3082d18) Localization of asset viewer section - [`067c9e3`](https://github.com/immich-app/immich/commit/067c9e3f1b08b6ca4177251d5653e186e1f751bc) Use JSON as base translation format - [`ca62000`](https://github.com/immich-app/immich/commit/ca62000fb30990c323a004a0ee85cab27f2b1349) Add check for missing/unused translation keys - [`2dd1df8`](https://github.com/immich-app/immich/commit/2dd1df80c203d68b8d72b2cb9c1ecdb1171d1205) Add localizely - [`a249e37`](https://github.com/immich-app/immich/commit/a249e371b690a6dee1ba5cabc2b347ad222bf7a7) Remove i18n directory in favour of localizely - [`821eca6`](https://github.com/immich-app/immich/commit/821eca66e086bb1a3ff9457b92b178a8fa8898b7) Backup Translation - [`f08ec52`](https://github.com/immich-app/immich/commit/f08ec5294fba43e048e4be3a638f74ad07a87604) More translations ### 📊 Changes **36 files changed** (+601 additions, -213 deletions) <details> <summary>View changed files</summary> ➕ `localizely.yml` (+15 -0) ➕ `mobile/assets/i18n/de-DE.json` (+98 -0) ➕ `mobile/assets/i18n/en-US.json` (+98 -0) 📝 `mobile/ios/Runner/Info.plist` (+6 -0) 📝 `mobile/lib/main.dart` (+19 -1) 📝 `mobile/lib/modules/asset_viewer/ui/exif_bottom_sheet.dart` (+8 -7) 📝 `mobile/lib/modules/backup/ui/album_info_card.dart` (+11 -7) 📝 `mobile/lib/modules/backup/ui/backup_info_card.dart` (+2 -1) 📝 `mobile/lib/modules/backup/views/backup_album_selection_page.dart` (+25 -18) 📝 `mobile/lib/modules/backup/views/backup_controller_page.dart` (+49 -42) 📝 `mobile/lib/modules/home/ui/control_bottom_app_bar.dart` (+2 -1) 📝 `mobile/lib/modules/home/ui/daily_title_text.dart` (+2 -1) 📝 `mobile/lib/modules/home/ui/delete_diaglog.dart` (+7 -7) 📝 `mobile/lib/modules/home/ui/monthly_title_text.dart` (+2 -1) 📝 `mobile/lib/modules/home/ui/profile_drawer.dart` (+4 -3) 📝 `mobile/lib/modules/login/ui/login_form.dart` (+22 -21) 📝 `mobile/lib/modules/search/ui/search_bar.dart` (+3 -2) 📝 `mobile/lib/modules/search/ui/thumbnail_with_info.dart` (+1 -1) 📝 `mobile/lib/modules/search/views/search_page.dart` (+11 -10) 📝 `mobile/lib/modules/search/views/search_result_page.dart` (+3 -2) _...and 16 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 13:48:47 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#8526