From 93a6bdb9408a142c69f6dc679fed12356e95c86e Mon Sep 17 00:00:00 2001 From: Schimon Jehuda Date: Tue, 1 Apr 2025 17:41:21 +0300 Subject: [PATCH] Update I18N_langs.h Afd references for locale Heberw. --- i18n/I18N_langs.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/i18n/I18N_langs.h b/i18n/I18N_langs.h index 6426e2ce..3c31072f 100644 --- a/i18n/I18N_langs.h +++ b/i18n/I18N_langs.h @@ -30,6 +30,7 @@ namespace i18n namespace english { std::shared_ptr GetLocale (); } namespace french { std::shared_ptr GetLocale (); } namespace german { std::shared_ptr GetLocale (); } + namespace hebrew { std::shared_ptr GetLocale (); } namespace italian { std::shared_ptr GetLocale (); } namespace polish { std::shared_ptr GetLocale (); } namespace portuguese { std::shared_ptr GetLocale (); } @@ -53,6 +54,7 @@ namespace i18n { "english", {"English", "en", i2p::i18n::english::GetLocale} }, { "french", {"Français", "fr", i2p::i18n::french::GetLocale} }, { "german", {"Deutsch", "de", i2p::i18n::german::GetLocale} }, + { "hebrew", {"עברית", "he", i2p::i18n::hebrew::GetLocale} }, { "italian", {"Italiano", "it", i2p::i18n::italian::GetLocale} }, { "polish", {"Polski", "pl", i2p::i18n::polish::GetLocale} }, { "portuguese", {"Português", "pt", i2p::i18n::portuguese::GetLocale} },