From 95bc181c986e91ea14db18eb9f300984e1f6ebdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Sz=C3=BCcs?= <127139797+balazs-szucs@users.noreply.github.com> Date: Sun, 24 Aug 2025 11:10:21 +0200 Subject: Add hu_HU for Hungarian locale (#7560) ## Description of changes Added Hungarian locale files, and corresponding translation For the translation I mainly relied on my native skills, double checked my work using LLMs. Copilot generated summary: This pull request introduces Hungarian language support to the application by adding translations and updating the locale configurations. The most important changes include the addition of Hungarian translations in the `.po` file and registering the new locale in the application's supported locales. ### Hungarian Language Support: * Added Hungarian translations for various UI elements and messages in the `po/hu_HU.UTF-8.po` file. This includes translations for prompts, dialogs, menus, and other interface components. * Updated the supported locales list in `src/os/i18n.zig` to include `hu_HU.UTF-8`, enabling Hungarian as an available language option. ## Picture(s) of the translation ![image](https://github.com/user-attachments/assets/60f47f11-d55e-4408-889b-5b44ecaffc23) --- src/os/i18n.zig | 1 + 1 file changed, 1 insertion(+) (limited to 'src/os') diff --git a/src/os/i18n.zig b/src/os/i18n.zig index 29f7f6bc3..d39976811 100644 --- a/src/os/i18n.zig +++ b/src/os/i18n.zig @@ -49,6 +49,7 @@ pub const locales = [_][:0]const u8{ "ca_ES.UTF-8", "bg_BG.UTF-8", "ga_IE.UTF-8", + "hu_HU.UTF-8", "he_IL.UTF-8", }; -- cgit v1.2.3