From 395e296ff8585ea5590af9d3a49a42336ad02d08 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 5 Apr 2025 18:52:39 +0200 Subject: [PATCH] authentication realms: consistently use title case Use title-case like _every_ other property of those edit windows already does. This was visually quite noticeable for the more complex ones (OIDC or LDAP), which have a few labels with a spaces. Fixes: 0f8d38b ("fix #5379: window: AuthEdit{LDAP, OpenId}: add 'Default realm' checkbox") Signed-off-by: Thomas Lamprecht --- src/window/AuthEditLDAP.js | 2 +- src/window/AuthEditOpenId.js | 2 +- src/window/AuthEditSimple.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/window/AuthEditLDAP.js b/src/window/AuthEditLDAP.js index a2c96b0..7debc22 100644 --- a/src/window/AuthEditLDAP.js +++ b/src/window/AuthEditLDAP.js @@ -84,7 +84,7 @@ Ext.define('Proxmox.panel.LDAPInputPanel', { }, { xtype: 'proxmoxcheckbox', - fieldLabel: gettext('Default realm'), + fieldLabel: gettext('Default Realm'), name: 'default', value: 0, cbind: { diff --git a/src/window/AuthEditOpenId.js b/src/window/AuthEditOpenId.js index ed0a6dc..ff89614 100644 --- a/src/window/AuthEditOpenId.js +++ b/src/window/AuthEditOpenId.js @@ -39,7 +39,7 @@ Ext.define('Proxmox.panel.OpenIDInputPanel', { }, { xtype: 'proxmoxcheckbox', - fieldLabel: gettext('Default realm'), + fieldLabel: gettext('Default Realm'), name: 'default', value: 0, cbind: { diff --git a/src/window/AuthEditSimple.js b/src/window/AuthEditSimple.js index dd09919..965b491 100644 --- a/src/window/AuthEditSimple.js +++ b/src/window/AuthEditSimple.js @@ -16,7 +16,7 @@ Ext.define('Proxmox.panel.SimpleRealmInputPanel', { }, { xtype: 'proxmoxcheckbox', - fieldLabel: gettext('Default realm'), + fieldLabel: gettext('Default Realm'), name: 'default', value: 0, deleteEmpty: true,