all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [PATCH proxmox-yew-comp/widget-toolkit v5 0/6] ui: add Greek, Irish, and Lao translations
@ 2026-07-31  7:06 Maximiliano Sandoval
  2026-07-31  7:06 ` [PATCH proxmox-yew-comp v5 1/6] language map: add Greek as available language Maximiliano Sandoval
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Maximiliano Sandoval @ 2026-07-31  7:06 UTC (permalink / raw)
  To: pve-devel

Differences from v4:
 - Add Lao
 - Use translated languages names

Differences from v3:
 - Use 'Greek' instead of 'Greek (Greece)' in the UI

Differences from v2:
 - Sort el_GR before en

Differences from v1:
 - The patches for extjs and proxmox-i18n are now applied so we only add
   the languages to the UIs now
 - The language code for Greek is now el_GR since thats supported by extjs


proxmox-yew-comp:

Maximiliano Sandoval (3):
  language map: add Greek as available language
  language map: add Irish as available language
  language map: add Lao as available language

 src/lib.rs | 3 +++
 1 file changed, 3 insertions(+)


proxmox-widget-toolkit:

Maximiliano Sandoval (3):
  language map: add Greek as available language
  language map: add Irish as available language
  language map: add Lao as available language

 src/Utils.js | 3 +++
 1 file changed, 3 insertions(+)


Summary over all repositories:
  2 files changed, 6 insertions(+), 0 deletions(-)

-- 
Generated by murpp 0.12.0




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH proxmox-yew-comp v5 1/6] language map: add Greek as available language
  2026-07-31  7:06 [PATCH proxmox-yew-comp/widget-toolkit v5 0/6] ui: add Greek, Irish, and Lao translations Maximiliano Sandoval
@ 2026-07-31  7:06 ` Maximiliano Sandoval
  2026-07-31  7:06 ` [PATCH proxmox-yew-comp v5 2/6] language map: add Irish " Maximiliano Sandoval
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Maximiliano Sandoval @ 2026-07-31  7:06 UTC (permalink / raw)
  To: pve-devel

Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
 src/lib.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/lib.rs b/src/lib.rs
index 79c25bc..e0f6faf 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -302,6 +302,7 @@ pub fn available_language_list() -> Vec<LanguageInfo> {
         LanguageInfo::new("cs", "Czech", gettext_noop("Czech")),
         LanguageInfo::new("da", "Dansk", gettext_noop("Danish")),
         LanguageInfo::new("de", "Deutsch", gettext_noop("German")),
+        LanguageInfo::new("el_GR", "ελληνικά", gettext_noop("Greek")),
         LanguageInfo::new("en", "English", gettext_noop("English")),
         LanguageInfo::new("es", "Español", gettext_noop("Spanish")),
         LanguageInfo::new("eu", "Euskera (Basque)", gettext_noop("Euskera (Basque)")),
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH proxmox-yew-comp v5 2/6] language map: add Irish as available language
  2026-07-31  7:06 [PATCH proxmox-yew-comp/widget-toolkit v5 0/6] ui: add Greek, Irish, and Lao translations Maximiliano Sandoval
  2026-07-31  7:06 ` [PATCH proxmox-yew-comp v5 1/6] language map: add Greek as available language Maximiliano Sandoval
@ 2026-07-31  7:06 ` Maximiliano Sandoval
  2026-07-31  7:06 ` [PATCH proxmox-yew-comp v5 3/6] language map: add Lao " Maximiliano Sandoval
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Maximiliano Sandoval @ 2026-07-31  7:06 UTC (permalink / raw)
  To: pve-devel

Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
 src/lib.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/lib.rs b/src/lib.rs
index e0f6faf..fe07518 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -309,6 +309,7 @@ pub fn available_language_list() -> Vec<LanguageInfo> {
         LanguageInfo::new("fa", "فارسی", gettext_noop("Persian (Farsi)"))
             .direction(TextDirection::Rtl),
         LanguageInfo::new("fr", "Français", gettext_noop("French")),
+        LanguageInfo::new("ga", "Gaeilge", gettext_noop("Irish")),
         LanguageInfo::new("he", "עברית", gettext_noop("Hebrew")).direction(TextDirection::Rtl),
         LanguageInfo::new("hr", "Hrvatski", gettext_noop("Croatian")),
         LanguageInfo::new("it", "Italiano", gettext_noop("Italian")),
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH proxmox-yew-comp v5 3/6] language map: add Lao as available language
  2026-07-31  7:06 [PATCH proxmox-yew-comp/widget-toolkit v5 0/6] ui: add Greek, Irish, and Lao translations Maximiliano Sandoval
  2026-07-31  7:06 ` [PATCH proxmox-yew-comp v5 1/6] language map: add Greek as available language Maximiliano Sandoval
  2026-07-31  7:06 ` [PATCH proxmox-yew-comp v5 2/6] language map: add Irish " Maximiliano Sandoval
@ 2026-07-31  7:06 ` Maximiliano Sandoval
  2026-07-31  7:06 ` [PATCH widget-toolkit v5 4/6] language map: add Greek " Maximiliano Sandoval
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Maximiliano Sandoval @ 2026-07-31  7:06 UTC (permalink / raw)
  To: pve-devel

Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
 src/lib.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/lib.rs b/src/lib.rs
index fe07518..b52e060 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -316,6 +316,7 @@ pub fn available_language_list() -> Vec<LanguageInfo> {
         LanguageInfo::new("ja", "日本語", gettext_noop("Japanese")),
         LanguageInfo::new("ka", "ქართული", gettext_noop("Georgian")),
         LanguageInfo::new("ko", "한국어", gettext_noop("Korean")),
+        LanguageInfo::new("lo", "ພາສາລາວ", gettext_noop("Lao")),
         LanguageInfo::new("nb", "Bokmål", gettext_noop("Norwegian (Bokmal)")),
         LanguageInfo::new("nl", "Nederlands", gettext_noop("Dutch")),
         LanguageInfo::new("nn", "Nynorsk", gettext_noop("Norwegian (Nynorsk)")),
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH widget-toolkit v5 4/6] language map: add Greek as available language
  2026-07-31  7:06 [PATCH proxmox-yew-comp/widget-toolkit v5 0/6] ui: add Greek, Irish, and Lao translations Maximiliano Sandoval
                   ` (2 preceding siblings ...)
  2026-07-31  7:06 ` [PATCH proxmox-yew-comp v5 3/6] language map: add Lao " Maximiliano Sandoval
@ 2026-07-31  7:06 ` Maximiliano Sandoval
  2026-07-31  7:06 ` [PATCH widget-toolkit v5 5/6] language map: add Irish " Maximiliano Sandoval
  2026-07-31  7:06 ` [PATCH widget-toolkit v5 6/6] language map: add Lao " Maximiliano Sandoval
  5 siblings, 0 replies; 7+ messages in thread
From: Maximiliano Sandoval @ 2026-07-31  7:06 UTC (permalink / raw)
  To: pve-devel

Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
 src/Utils.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/Utils.js b/src/Utils.js
index 14a90bf..374a5af 100644
--- a/src/Utils.js
+++ b/src/Utils.js
@@ -69,6 +69,7 @@ Ext.define('Proxmox.Utils', {
             cs: `Czech - ${gettext('Czech')}`,
             da: `Dansk - ${gettext('Danish')}`,
             de: `Deutsch - ${gettext('German')}`,
+            el_GR: `ελληνικά - ${gettext('Greek')}`,
             en: `English - ${gettext('English')}`,
             es: `Español - ${gettext('Spanish')}`,
             eu: `Euskera (Basque) - ${gettext('Euskera (Basque)')}`,
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH widget-toolkit v5 5/6] language map: add Irish as available language
  2026-07-31  7:06 [PATCH proxmox-yew-comp/widget-toolkit v5 0/6] ui: add Greek, Irish, and Lao translations Maximiliano Sandoval
                   ` (3 preceding siblings ...)
  2026-07-31  7:06 ` [PATCH widget-toolkit v5 4/6] language map: add Greek " Maximiliano Sandoval
@ 2026-07-31  7:06 ` Maximiliano Sandoval
  2026-07-31  7:06 ` [PATCH widget-toolkit v5 6/6] language map: add Lao " Maximiliano Sandoval
  5 siblings, 0 replies; 7+ messages in thread
From: Maximiliano Sandoval @ 2026-07-31  7:06 UTC (permalink / raw)
  To: pve-devel

Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
 src/Utils.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/Utils.js b/src/Utils.js
index 374a5af..8f149b1 100644
--- a/src/Utils.js
+++ b/src/Utils.js
@@ -75,6 +75,7 @@ Ext.define('Proxmox.Utils', {
             eu: `Euskera (Basque) - ${gettext('Euskera (Basque)')}`,
             fa: `فارسی - ${gettext('Persian (Farsi)')}`,
             fr: `Français - ${gettext('French')}`,
+            ga: `Gaeilge - ${gettext('Irish')}`,
             hr: `Hrvatski - ${gettext('Croatian')}`,
             he: `עברית - ${gettext('Hebrew')}`,
             it: `Italiano - ${gettext('Italian')}`,
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH widget-toolkit v5 6/6] language map: add Lao as available language
  2026-07-31  7:06 [PATCH proxmox-yew-comp/widget-toolkit v5 0/6] ui: add Greek, Irish, and Lao translations Maximiliano Sandoval
                   ` (4 preceding siblings ...)
  2026-07-31  7:06 ` [PATCH widget-toolkit v5 5/6] language map: add Irish " Maximiliano Sandoval
@ 2026-07-31  7:06 ` Maximiliano Sandoval
  5 siblings, 0 replies; 7+ messages in thread
From: Maximiliano Sandoval @ 2026-07-31  7:06 UTC (permalink / raw)
  To: pve-devel

Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
 src/Utils.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/Utils.js b/src/Utils.js
index 8f149b1..78b1b80 100644
--- a/src/Utils.js
+++ b/src/Utils.js
@@ -82,6 +82,7 @@ Ext.define('Proxmox.Utils', {
             ja: `日本語 - ${gettext('Japanese')}`,
             ka: `ქართული - ${gettext('Georgian')}`,
             ko: `한국어 - ${gettext('Korean')}`,
+            lo: `ພາສາລາວ - ${gettext('Lao')}`,
             nb: `Bokmål - ${gettext('Norwegian (Bokmal)')}`,
             nl: `Nederlands - ${gettext('Dutch')}`,
             nn: `Nynorsk - ${gettext('Norwegian (Nynorsk)')}`,
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2026-07-31  7:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-31  7:06 [PATCH proxmox-yew-comp/widget-toolkit v5 0/6] ui: add Greek, Irish, and Lao translations Maximiliano Sandoval
2026-07-31  7:06 ` [PATCH proxmox-yew-comp v5 1/6] language map: add Greek as available language Maximiliano Sandoval
2026-07-31  7:06 ` [PATCH proxmox-yew-comp v5 2/6] language map: add Irish " Maximiliano Sandoval
2026-07-31  7:06 ` [PATCH proxmox-yew-comp v5 3/6] language map: add Lao " Maximiliano Sandoval
2026-07-31  7:06 ` [PATCH widget-toolkit v5 4/6] language map: add Greek " Maximiliano Sandoval
2026-07-31  7:06 ` [PATCH widget-toolkit v5 5/6] language map: add Irish " Maximiliano Sandoval
2026-07-31  7:06 ` [PATCH widget-toolkit v5 6/6] language map: add Lao " Maximiliano Sandoval

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal