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 <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2025-04-05 18:52:39 +02:00
parent 80fbe48bb8
commit 395e296ff8
3 changed files with 3 additions and 3 deletions

View File

@ -84,7 +84,7 @@ Ext.define('Proxmox.panel.LDAPInputPanel', {
},
{
xtype: 'proxmoxcheckbox',
fieldLabel: gettext('Default realm'),
fieldLabel: gettext('Default Realm'),
name: 'default',
value: 0,
cbind: {

View File

@ -39,7 +39,7 @@ Ext.define('Proxmox.panel.OpenIDInputPanel', {
},
{
xtype: 'proxmoxcheckbox',
fieldLabel: gettext('Default realm'),
fieldLabel: gettext('Default Realm'),
name: 'default',
value: 0,
cbind: {

View File

@ -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,