diff --git a/.changeset/large-clouds-talk.md b/.changeset/large-clouds-talk.md deleted file mode 100644 index 2211e4abee638..0000000000000 --- a/.changeset/large-clouds-talk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@rocket.chat/meteor': major ---- - -Removes unused Accounts_OAuth_Custom_Button_Label_Color and Accounts_OAuth_Custom_Button_Color settings and translations diff --git a/apps/meteor/app/api/server/v1/settings.ts b/apps/meteor/app/api/server/v1/settings.ts index b91fc8d4b5766..8adeb14e96baa 100644 --- a/apps/meteor/app/api/server/v1/settings.ts +++ b/apps/meteor/app/api/server/v1/settings.ts @@ -93,6 +93,8 @@ API.v1.addRoute( (service as OAuthConfiguration).clientId || (service as TwitterOAuthConfiguration).consumerKey, buttonLabelText: service.buttonLabelText || '', + buttonColor: service.buttonColor || '', + buttonLabelColor: service.buttonLabelColor || '', custom: false, }; }), diff --git a/apps/meteor/app/apple/server/appleOauthRegisterService.ts b/apps/meteor/app/apple/server/appleOauthRegisterService.ts index 002aa6c9fa4fd..b9558fa701f77 100644 --- a/apps/meteor/app/apple/server/appleOauthRegisterService.ts +++ b/apps/meteor/app/apple/server/appleOauthRegisterService.ts @@ -71,6 +71,8 @@ settings.watchMultiple( enabled: settings.get('Accounts_OAuth_Apple'), loginStyle: 'popup', clientId: clientId as string, + buttonColor: '#000', + buttonLabelColor: '#FFF', }, }, ); diff --git a/apps/meteor/app/dolphin/server/lib.ts b/apps/meteor/app/dolphin/server/lib.ts index a284d58bf1a2e..65a8ca6d2dacf 100644 --- a/apps/meteor/app/dolphin/server/lib.ts +++ b/apps/meteor/app/dolphin/server/lib.ts @@ -39,6 +39,8 @@ Meteor.startup(async () => { if (settings.get('Accounts_OAuth_Dolphin_URL')) { const data = { buttonLabelText: settings.get('Accounts_OAuth_Dolphin_button_label_text'), + buttonColor: settings.get('Accounts_OAuth_Dolphin_button_color'), + buttonLabelColor: settings.get('Accounts_OAuth_Dolphin_button_label_color'), clientId: settings.get('Accounts_OAuth_Dolphin_id'), secret: settings.get('Accounts_OAuth_Dolphin_secret'), serverURL: settings.get('Accounts_OAuth_Dolphin_URL'), diff --git a/apps/meteor/app/lib/server/methods/removeOAuthService.ts b/apps/meteor/app/lib/server/methods/removeOAuthService.ts index 27992807e7f28..fee2caa911d22 100644 --- a/apps/meteor/app/lib/server/methods/removeOAuthService.ts +++ b/apps/meteor/app/lib/server/methods/removeOAuthService.ts @@ -46,6 +46,8 @@ Meteor.methods({ `Accounts_OAuth_Custom-${name}-id`, `Accounts_OAuth_Custom-${name}-secret`, `Accounts_OAuth_Custom-${name}-button_label_text`, + `Accounts_OAuth_Custom-${name}-button_label_color`, + `Accounts_OAuth_Custom-${name}-button_color`, `Accounts_OAuth_Custom-${name}-login_style`, `Accounts_OAuth_Custom-${name}-key_field`, `Accounts_OAuth_Custom-${name}-username_field`, diff --git a/apps/meteor/app/meteor-accounts-saml/server/lib/settings.ts b/apps/meteor/app/meteor-accounts-saml/server/lib/settings.ts index ca48773b89d6b..bb95672603377 100644 --- a/apps/meteor/app/meteor-accounts-saml/server/lib/settings.ts +++ b/apps/meteor/app/meteor-accounts-saml/server/lib/settings.ts @@ -25,6 +25,8 @@ import { const getSamlConfigs = function (service: string): SAMLConfiguration { const configs: SAMLConfiguration = { buttonLabelText: settings.get(`${service}_button_label_text`), + buttonLabelColor: settings.get(`${service}_button_label_color`), + buttonColor: settings.get(`${service}_button_color`), clientConfig: { provider: settings.get(`${service}_provider`), }, @@ -225,6 +227,14 @@ export const addSettings = async function (name: string): Promise { type: 'string', i18nLabel: 'Accounts_OAuth_Custom_Button_Label_Text', }); + await this.add(`SAML_Custom_${name}_button_label_color`, '#FFFFFF', { + type: 'string', + i18nLabel: 'Accounts_OAuth_Custom_Button_Label_Color', + }); + await this.add(`SAML_Custom_${name}_button_color`, '#1d74f5', { + type: 'string', + i18nLabel: 'Accounts_OAuth_Custom_Button_Color', + }); }); await this.section('SAML_Section_3_Behavior', async function () { diff --git a/apps/meteor/definition/externals/service-configuration.d.ts b/apps/meteor/definition/externals/service-configuration.d.ts index 6f8f3ce2b705e..bdea46eedab2d 100644 --- a/apps/meteor/definition/externals/service-configuration.d.ts +++ b/apps/meteor/definition/externals/service-configuration.d.ts @@ -5,6 +5,8 @@ declare module 'meteor/service-configuration' { service: string; buttonLabelText?: string; + buttonLabelColor?: string; + buttonColor?: string; clientConfig: unknown; clientId?: string; diff --git a/apps/meteor/server/lib/cas/updateCasService.ts b/apps/meteor/server/lib/cas/updateCasService.ts index 4fbaca17f8ad0..5583eda22f83a 100644 --- a/apps/meteor/server/lib/cas/updateCasService.ts +++ b/apps/meteor/server/lib/cas/updateCasService.ts @@ -12,6 +12,8 @@ export async function updateCasServices(): Promise { login_url: settings.get('CAS_login_url'), // Rocketchat Visuals buttonLabelText: settings.get('CAS_button_label_text'), + buttonLabelColor: settings.get('CAS_button_label_color'), + buttonColor: settings.get('CAS_button_color'), width: settings.get('CAS_popup_width'), height: settings.get('CAS_popup_height'), autoclose: settings.get('CAS_autoclose'), diff --git a/apps/meteor/server/lib/oauth/addOAuthService.ts b/apps/meteor/server/lib/oauth/addOAuthService.ts index 0fd52b5173c7d..2a49a23a1f4e1 100644 --- a/apps/meteor/server/lib/oauth/addOAuthService.ts +++ b/apps/meteor/server/lib/oauth/addOAuthService.ts @@ -112,6 +112,20 @@ export async function addOAuthService(name: string, values: { [k: string]: strin i18nLabel: 'Accounts_OAuth_Custom_Button_Label_Text', persistent: true, }); + await settingsRegistry.add(`Accounts_OAuth_Custom-${name}-button_label_color`, values.buttonLabelColor || '#FFFFFF', { + type: 'string', + group: 'OAuth', + section: `Custom OAuth: ${name}`, + i18nLabel: 'Accounts_OAuth_Custom_Button_Label_Color', + persistent: true, + }); + await settingsRegistry.add(`Accounts_OAuth_Custom-${name}-button_color`, values.buttonColor || '#1d74f5', { + type: 'string', + group: 'OAuth', + section: `Custom OAuth: ${name}`, + i18nLabel: 'Accounts_OAuth_Custom_Button_Color', + persistent: true, + }); await settingsRegistry.add(`Accounts_OAuth_Custom-${name}-key_field`, values.keyField || 'username', { type: 'select', group: 'OAuth', diff --git a/apps/meteor/server/lib/oauth/initCustomOAuthServices.ts b/apps/meteor/server/lib/oauth/initCustomOAuthServices.ts index d52fceb1d0da7..3c909f6bc1f12 100644 --- a/apps/meteor/server/lib/oauth/initCustomOAuthServices.ts +++ b/apps/meteor/server/lib/oauth/initCustomOAuthServices.ts @@ -27,7 +27,9 @@ export async function initCustomOAuthServices(): Promise { scope: process.env[`${serviceKey}_scope`], accessTokenParam: process.env[`${serviceKey}_access_token_param`], buttonLabelText: process.env[`${serviceKey}_button_label_text`], + buttonLabelColor: process.env[`${serviceKey}_button_label_color`], loginStyle: process.env[`${serviceKey}_login_style`], + buttonColor: process.env[`${serviceKey}_button_color`], tokenSentVia: process.env[`${serviceKey}_token_sent_via`], identityTokenSentVia: process.env[`${serviceKey}_identity_token_sent_via`], keyField: process.env[`${serviceKey}_key_field`], diff --git a/apps/meteor/server/lib/oauth/updateOAuthServices.ts b/apps/meteor/server/lib/oauth/updateOAuthServices.ts index fcba6cab4b71b..f1df9fbb7aa95 100644 --- a/apps/meteor/server/lib/oauth/updateOAuthServices.ts +++ b/apps/meteor/server/lib/oauth/updateOAuthServices.ts @@ -47,7 +47,9 @@ export async function updateOAuthServices(): Promise { data.scope = settings.get(`${key}-scope`); data.accessTokenParam = settings.get(`${key}-access_token_param`); data.buttonLabelText = settings.get(`${key}-button_label_text`); + data.buttonLabelColor = settings.get(`${key}-button_label_color`); data.loginStyle = settings.get(`${key}-login_style`); + data.buttonColor = settings.get(`${key}-button_color`); data.tokenSentVia = settings.get(`${key}-token_sent_via`); data.identityTokenSentVia = settings.get(`${key}-identity_token_sent_via`); data.keyField = settings.get(`${key}-key_field`); @@ -110,6 +112,8 @@ export async function updateOAuthServices(): Promise { if (serviceName === 'Nextcloud') { data.buttonLabelText = settings.get('Accounts_OAuth_Nextcloud_button_label_text'); + data.buttonLabelColor = settings.get('Accounts_OAuth_Nextcloud_button_label_color'); + data.buttonColor = settings.get('Accounts_OAuth_Nextcloud_button_color'); } await LoginServiceConfiguration.createOrUpdateService(serviceKey, data); diff --git a/apps/meteor/server/settings/cas.ts b/apps/meteor/server/settings/cas.ts index 65d6a439f43b1..48a13d8cbd9c2 100644 --- a/apps/meteor/server/settings/cas.ts +++ b/apps/meteor/server/settings/cas.ts @@ -33,6 +33,8 @@ export const createCasSettings = () => await this.add('CAS_popup_width', 810, { type: 'int', group: 'CAS', public: true }); await this.add('CAS_popup_height', 610, { type: 'int', group: 'CAS', public: true }); await this.add('CAS_button_label_text', 'CAS', { type: 'string', group: 'CAS' }); + await this.add('CAS_button_label_color', '#FFFFFF', { type: 'color', group: 'CAS' }); + await this.add('CAS_button_color', '#1d74f5', { type: 'color', group: 'CAS' }); await this.add('CAS_autoclose', true, { type: 'boolean', group: 'CAS' }); }); }); diff --git a/apps/meteor/server/settings/oauth.ts b/apps/meteor/server/settings/oauth.ts index 4d4950be35255..c67286771a0a6 100644 --- a/apps/meteor/server/settings/oauth.ts +++ b/apps/meteor/server/settings/oauth.ts @@ -110,6 +110,18 @@ export const createOauthSettings = () => i18nLabel: 'Accounts_OAuth_Custom_Button_Label_Text', persistent: true, }); + await this.add('Accounts_OAuth_Nextcloud_button_label_color', '#ffffff', { + type: 'string', + public: true, + i18nLabel: 'Accounts_OAuth_Custom_Button_Label_Color', + persistent: true, + }); + await this.add('Accounts_OAuth_Nextcloud_button_color', '#0082c9', { + type: 'string', + public: true, + i18nLabel: 'Accounts_OAuth_Custom_Button_Color', + persistent: true, + }); }); await this.section('Tokenpass', async function () { @@ -257,6 +269,16 @@ export const createOauthSettings = () => i18nLabel: 'Accounts_OAuth_Custom_Button_Label_Text', persistent: true, }); + await this.add('Accounts_OAuth_Dolphin_button_label_color', '#FFFFFF', { + type: 'string', + i18nLabel: 'Accounts_OAuth_Custom_Button_Label_Color', + persistent: true, + }); + await this.add('Accounts_OAuth_Dolphin_button_color', '#1d74f5', { + type: 'string', + i18nLabel: 'Accounts_OAuth_Custom_Button_Color', + persistent: true, + }); }); await this.section('Facebook', async function () { const enableQuery = { diff --git a/apps/meteor/server/startup/migrations/index.ts b/apps/meteor/server/startup/migrations/index.ts index c77d750b25c44..6bbe89a1726bd 100644 --- a/apps/meteor/server/startup/migrations/index.ts +++ b/apps/meteor/server/startup/migrations/index.ts @@ -46,6 +46,5 @@ import './v310'; import './v311'; import './v312'; import './v313'; -import './v314'; export * from './xrun'; diff --git a/apps/meteor/server/startup/migrations/v314.ts b/apps/meteor/server/startup/migrations/v314.ts deleted file mode 100644 index ed3d0a8b8d4b9..0000000000000 --- a/apps/meteor/server/startup/migrations/v314.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Settings } from '@rocket.chat/models'; - -import { addMigration } from '../../lib/migrations'; - -// Removes deprecated Show Message In Main Thread preference -addMigration({ - version: 314, - async up() { - const customOauthServicesButtonColors = await Settings.find( - { _id: /Accounts_OAuth_.+button.+color$/ }, - { projection: { _id: 1 } }, - ).toArray(); - - for await (const setting of customOauthServicesButtonColors) { - await Settings.removeById(setting._id); - } - }, -}); diff --git a/packages/core-typings/src/ILoginServiceConfiguration.ts b/packages/core-typings/src/ILoginServiceConfiguration.ts index 4aba4d8980a45..1874eea5d8bd4 100644 --- a/packages/core-typings/src/ILoginServiceConfiguration.ts +++ b/packages/core-typings/src/ILoginServiceConfiguration.ts @@ -14,7 +14,9 @@ export type OAuthConfiguration = { scope: string; accessTokenParam: string; buttonLabelText: string; + buttonLabelColor: string; loginStyle: '' | 'redirect' | 'popup'; + buttonColor: string; tokenSentVia: 'header' | 'payload'; identityTokenSentVia: 'default' | 'header' | 'payload'; keyField: 'username' | 'email'; @@ -53,6 +55,8 @@ export type CASConfiguration = { base_url: string; login_url: string; buttonLabelText: string; + buttonLabelColor: string; + buttonColor: string; width: number; height: number; autoclose: boolean; @@ -60,6 +64,8 @@ export type CASConfiguration = { export type SAMLConfiguration = { buttonLabelText: string; + buttonLabelColor: string; + buttonColor: string; clientConfig: { provider?: string; }; diff --git a/packages/i18n/src/locales/af.i18n.json b/packages/i18n/src/locales/af.i18n.json index 6b52e1a8af91d..484d1ff2cc58e 100644 --- a/packages/i18n/src/locales/af.i18n.json +++ b/packages/i18n/src/locales/af.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Inloggen Expiration in Days", "Accounts_ManuallyApproveNewUsers": "Handmatig nuwe gebruikers goedkeur", "Accounts_OAuth_Custom_Authorize_Path": "Gee pad toe", + "Accounts_OAuth_Custom_Button_Color": "Knoppie Kleur", + "Accounts_OAuth_Custom_Button_Label_Color": "Knoppie Tekst Kleur", "Accounts_OAuth_Custom_Button_Label_Text": "Knoppie teks", "Accounts_OAuth_Custom_Enable": "in staat te stel", "Accounts_OAuth_Custom_id": "id", @@ -407,6 +409,8 @@ "CAS_autoclose": "Autoclose Inloggen Popup", "CAS_base_url": "SSO-basis-URL", "CAS_base_url_Description": "Die basis-URL van u eksterne SSO-diens, byvoorbeeld: https: //sso.example.undef/sso/", + "CAS_button_color": "Login Button Agtergrond Kleur", + "CAS_button_label_color": "Intekenknoppie Teks Kleur", "CAS_button_label_text": "Inlogknoppie", "CAS_enabled": "enabled", "CAS_Login_Layout": "CAS Login Layout", @@ -2754,4 +2758,4 @@ "registration.component.form.sendConfirmationEmail": "Stuur bevestiging e-pos", "Enterprise": "onderneming", "UpgradeToGetMore_engagement-dashboard_Title": "Analytics" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/ar.i18n.json b/packages/i18n/src/locales/ar.i18n.json index 4fe9cd1c25752..5d49eefc16ff3 100644 --- a/packages/i18n/src/locales/ar.i18n.json +++ b/packages/i18n/src/locales/ar.i18n.json @@ -96,6 +96,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "اسم المؤشر للرمز المميز للوصول", "Accounts_OAuth_Custom_Authorize_Path": "مسار التخويل", "Accounts_OAuth_Custom_Avatar_Field": "حقل الصورة الرمزية", + "Accounts_OAuth_Custom_Button_Color": "لون الزر", + "Accounts_OAuth_Custom_Button_Label_Color": "لون نَص الزر", "Accounts_OAuth_Custom_Button_Label_Text": "نَص الزر", "Accounts_OAuth_Custom_Channel_Admin": "خريطة مجموعة بيانات المستخدم", "Accounts_OAuth_Custom_Channel_Map": "خريطة Channel لمجموعة OAuth", @@ -741,6 +743,8 @@ "CAS_autoclose": "نافذة منبثقة لتسجيل الدخول التلقائي", "CAS_base_url": "عنوان URL الأساسي الخاص بـ SSO", "CAS_base_url_Description": "عنوان URL الأساسي لخدمة SSO الخارجية، مثل: https://sso.example.undef/sso/‎", + "CAS_button_color": "لون خلفية زر تسجيل الدخول", + "CAS_button_label_color": "لون نص زر تسجيل الدخول", "CAS_button_label_text": "تسمية زر تسجيل الدخول", "CAS_Creation_User_Enabled": "السماح بإنشاء مستخدم", "CAS_Creation_User_Enabled_Description": "السماح بإنشاء مستخدم CAS من البيانات المقدمة من تذكرة CAS.", diff --git a/packages/i18n/src/locales/az.i18n.json b/packages/i18n/src/locales/az.i18n.json index 8d51a4a1c5527..c956a418e5ff5 100644 --- a/packages/i18n/src/locales/az.i18n.json +++ b/packages/i18n/src/locales/az.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Günlərdən keçmə müddəti", "Accounts_ManuallyApproveNewUsers": "Əl ilə yeni istifadəçilər təsdiqləyin", "Accounts_OAuth_Custom_Authorize_Path": "Yola icazə verin", + "Accounts_OAuth_Custom_Button_Color": "Button Rəng", + "Accounts_OAuth_Custom_Button_Label_Color": "Button Mətn Rəngi", "Accounts_OAuth_Custom_Button_Label_Text": "Düymə mətni", "Accounts_OAuth_Custom_Enable": "Enable", "Accounts_OAuth_Custom_id": "Id", @@ -407,6 +409,8 @@ "CAS_autoclose": "Autoclose Giriş Popup", "CAS_base_url": "SSO Base URL", "CAS_base_url_Description": "Xarici SSO xidmətinizin əsas URL-si: https: //sso.example.undef/sso/", + "CAS_button_color": "Giriş Düyməsini Arxa Rəng", + "CAS_button_label_color": "Giriş Düğmə Mətn Rəngi", "CAS_button_label_text": "Giriş Düğmesi Etiketi", "CAS_enabled": "Etkin", "CAS_Login_Layout": "CAS Giriş Düzeni", @@ -2754,4 +2758,4 @@ "registration.component.form.sendConfirmationEmail": "Təsdiq e-poçt göndər", "Enterprise": "Müəssisə", "UpgradeToGetMore_engagement-dashboard_Title": "Analytics" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/be-BY.i18n.json b/packages/i18n/src/locales/be-BY.i18n.json index 6dd5dd1800e5e..abb3ddecb80bb 100644 --- a/packages/i18n/src/locales/be-BY.i18n.json +++ b/packages/i18n/src/locales/be-BY.i18n.json @@ -77,6 +77,8 @@ "Accounts_ManuallyApproveNewUsers": "Пацвярджаць новых карыстальнікаў ўручную", "Accounts_OAuth_Apple": "Увайдзі праз Apple", "Accounts_OAuth_Custom_Authorize_Path": "Шлях да аўтарызацыі", + "Accounts_OAuth_Custom_Button_Color": "Колер кнопкі", + "Accounts_OAuth_Custom_Button_Label_Color": "Колер тэкста кнопкі", "Accounts_OAuth_Custom_Button_Label_Text": "Тэкст кнопкі", "Accounts_OAuth_Custom_Enable": "Ўключыць", "Accounts_OAuth_Custom_id": "Ідэнтыфікатар", @@ -423,6 +425,8 @@ "CAS_autoclose": "Autoclose Увайсці Popup", "CAS_base_url": "URL SSO Base", "CAS_base_url_Description": "Базавы URL вашай знешняй службы адзінага ўваходу напрыклад: https: //sso.example.undef/sso/", + "CAS_button_color": "Увайсці Кнопка Колер фону", + "CAS_button_label_color": "Увайсці Кнопка Колер тэксту", "CAS_button_label_text": "Увайсці Кнопка Цэтлік", "CAS_enabled": "Уключана", "CAS_Login_Layout": "CAS Увайсці Кампаноўка", @@ -2772,4 +2776,4 @@ "registration.component.form.sendConfirmationEmail": "Адправіць па электроннай пошце пацвярджэнне", "Enterprise": "прадпрыемства", "UpgradeToGetMore_engagement-dashboard_Title": "аналітыка" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/bg.i18n.json b/packages/i18n/src/locales/bg.i18n.json index 7d4426012d96d..e0c1e62c6f05f 100644 --- a/packages/i18n/src/locales/bg.i18n.json +++ b/packages/i18n/src/locales/bg.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Изтичане на влизането в дни", "Accounts_ManuallyApproveNewUsers": "Ръчно одобрете новите потребители", "Accounts_OAuth_Custom_Authorize_Path": "Упълномощаване на пътя", + "Accounts_OAuth_Custom_Button_Color": "цвят на бутона", + "Accounts_OAuth_Custom_Button_Label_Color": "Цвят на текста на бутона", "Accounts_OAuth_Custom_Button_Label_Text": "Текст на бутона", "Accounts_OAuth_Custom_Enable": "Позволи", "Accounts_OAuth_Custom_id": "Id", @@ -407,6 +409,8 @@ "CAS_autoclose": "Автоматично влизане в изскачащи прозорци", "CAS_base_url": "Основен URL адрес на SSO", "CAS_base_url_Description": "Основният URL адрес на външната ви SSO услуга, например: https: //sso.example.undef/sso/", + "CAS_button_color": "Цвят на фона на бутона за вход", + "CAS_button_label_color": "Бутон за въвеждане на текст", "CAS_button_label_text": "Етикет за бутон за вход", "CAS_enabled": "Enabled", "CAS_Login_Layout": "Разпределение на CAS", @@ -2747,4 +2751,4 @@ "registration.component.form.sendConfirmationEmail": "Изпратете имейл за потвърждение", "Enterprise": "начинание", "UpgradeToGetMore_engagement-dashboard_Title": "анализ" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/bs.i18n.json b/packages/i18n/src/locales/bs.i18n.json index 932b080f4135c..03c230496a438 100644 --- a/packages/i18n/src/locales/bs.i18n.json +++ b/packages/i18n/src/locales/bs.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Istek prijave u danima", "Accounts_ManuallyApproveNewUsers": "Ručno odobri nove korisnike", "Accounts_OAuth_Custom_Authorize_Path": "Autorizacijski put", + "Accounts_OAuth_Custom_Button_Color": "Boja Gumba", + "Accounts_OAuth_Custom_Button_Label_Color": "Boja teksta u gumbu", "Accounts_OAuth_Custom_Button_Label_Text": "Tekst Gumba", "Accounts_OAuth_Custom_Enable": "Omogući", "Accounts_OAuth_Custom_id": "Id", @@ -407,6 +409,8 @@ "CAS_autoclose": "Automatski zatvori prijavni prozor", "CAS_base_url": "SSO osnovni URL", "CAS_base_url_Description": "Osnovni URL vaše vanjske SSO usluge, npr. Https: //sso.example.undef/sso/", + "CAS_button_color": "Pozadinska boja gumba za prijavu", + "CAS_button_label_color": "Boja teksta gumba za prijavu", "CAS_button_label_text": "Oznaka gumba za prijavu", "CAS_enabled": "Omogućeno", "CAS_Login_Layout": "CAS Login Layout", @@ -2744,4 +2748,4 @@ "registration.component.form.sendConfirmationEmail": "Pošalji potvrdni email", "Enterprise": "Poduzeće", "UpgradeToGetMore_engagement-dashboard_Title": "Analitika" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/ca.i18n.json b/packages/i18n/src/locales/ca.i18n.json index eec2952974d77..c124c6fc4247d 100644 --- a/packages/i18n/src/locales/ca.i18n.json +++ b/packages/i18n/src/locales/ca.i18n.json @@ -96,6 +96,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Nom de paràmetre per al token d'accés", "Accounts_OAuth_Custom_Authorize_Path": "Ruta d'autorització", "Accounts_OAuth_Custom_Avatar_Field": "Camp Avatar", + "Accounts_OAuth_Custom_Button_Color": "Color del botó", + "Accounts_OAuth_Custom_Button_Label_Color": "Color del text del botó", "Accounts_OAuth_Custom_Button_Label_Text": "Text del botó", "Accounts_OAuth_Custom_Channel_Admin": "Mapa de grup de dades d'usuari", "Accounts_OAuth_Custom_Channel_Map": "Mapa Channel de grup OAuth", @@ -733,6 +735,8 @@ "CAS_autoclose": "Finestra emergent de tancament automàtic de sessió", "CAS_base_url": "URL base de SSO", "CAS_base_url_Description": "Adreça URL base del servei extern SSO. Ex: `https://sso.example.undef/sso/`", + "CAS_button_color": "Color de fons del botó d'inici de sessió", + "CAS_button_label_color": "Color de text del botó d'inici de sessió", "CAS_button_label_text": "Etiqueta del botó d'inici de sessió", "CAS_Creation_User_Enabled": "Permetre crear usuaris", "CAS_Creation_User_Enabled_Description": "Permetre crear usuaris CAS a partir de les dades proporcionades pel tiquet CAS.", diff --git a/packages/i18n/src/locales/cs.i18n.json b/packages/i18n/src/locales/cs.i18n.json index 455d492839be7..8cb9cc35128cd 100644 --- a/packages/i18n/src/locales/cs.i18n.json +++ b/packages/i18n/src/locales/cs.i18n.json @@ -91,6 +91,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Param název přístupového tokenu", "Accounts_OAuth_Custom_Authorize_Path": "Cesta k autorizaci", "Accounts_OAuth_Custom_Avatar_Field": "Pole avataru", + "Accounts_OAuth_Custom_Button_Color": "Barva tlačítka", + "Accounts_OAuth_Custom_Button_Label_Color": "Barva textu tlačítka", "Accounts_OAuth_Custom_Button_Label_Text": "Text tlačítka", "Accounts_OAuth_Custom_Channel_Admin": "Mapa skupin uživatelských dat", "Accounts_OAuth_Custom_Email_Field": "Pole emailu", @@ -609,6 +611,8 @@ "CAS_autoclose": "Automaticky zavřít přihlašovací popup", "CAS_base_url": "SSO URL", "CAS_base_url_Description": "Adresa vaší externí SSO služby např: https://sso.priklad.cz/sso/", + "CAS_button_color": "Barva pozadí tlačítka přihlásit", + "CAS_button_label_color": "Barva textu tlačítka přihlásit", "CAS_button_label_text": "Text tlačítka přihlásit", "CAS_enabled": "Povoleno", "CAS_Login_Layout": "Rozložení CAS přihlášení", @@ -3966,4 +3970,4 @@ "Enterprise": "Korporace", "UpgradeToGetMore_engagement-dashboard_Title": "Analytika", "UpgradeToGetMore_auditing_Title": "Audit zpráv" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/cy.i18n.json b/packages/i18n/src/locales/cy.i18n.json index 4b505b823121c..b07027243130b 100644 --- a/packages/i18n/src/locales/cy.i18n.json +++ b/packages/i18n/src/locales/cy.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Mewngofnodi Mewngofnodi mewn Dyddiau", "Accounts_ManuallyApproveNewUsers": "Cymeradwyo Defnyddwyr Newydd â llaw", "Accounts_OAuth_Custom_Authorize_Path": "Llwybr Awdurdodi", + "Accounts_OAuth_Custom_Button_Color": "Lliw Button", + "Accounts_OAuth_Custom_Button_Label_Color": "Lliw Testun Button", "Accounts_OAuth_Custom_Button_Label_Text": "Testun Button", "Accounts_OAuth_Custom_Enable": "Galluogi", "Accounts_OAuth_Custom_id": "Id", @@ -407,6 +409,8 @@ "CAS_autoclose": "Autoclose Mewngofnodi Popup", "CAS_base_url": "URL Sylfaen SSO", "CAS_base_url_Description": "URL sylfaenol eich gwasanaeth SSO allanol e.e.: https: //sso.example.undef/sso/", + "CAS_button_color": "Botwm Mewngofnodi Lliw Cefndir", + "CAS_button_label_color": "Botwm Mewngofnodi Lliw Testun", "CAS_button_label_text": "Label Botwm Mewngofnodi", "CAS_enabled": "Wedi'i alluogi", "CAS_Login_Layout": "Cynllun Mewngofnodi CAS", @@ -2746,4 +2750,4 @@ "registration.component.form.sendConfirmationEmail": "Anfon ebost cadarnhad", "Enterprise": "Menter", "UpgradeToGetMore_engagement-dashboard_Title": "Dadansoddiadau" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/da.i18n.json b/packages/i18n/src/locales/da.i18n.json index 7abd35f1ceb5e..48b5fdf0f69e5 100644 --- a/packages/i18n/src/locales/da.i18n.json +++ b/packages/i18n/src/locales/da.i18n.json @@ -121,6 +121,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Parameternavn for adgangs-token", "Accounts_OAuth_Custom_Authorize_Path": "Autorisationssti", "Accounts_OAuth_Custom_Avatar_Field": "Avatar felt", + "Accounts_OAuth_Custom_Button_Color": "Farve på knap", + "Accounts_OAuth_Custom_Button_Label_Color": "Tekstfarve på knap", "Accounts_OAuth_Custom_Button_Label_Text": "Tekst på knap", "Accounts_OAuth_Custom_Channel_Admin": "Brugerdata-gruppeoversigt", "Accounts_OAuth_Custom_Email_Field": "Felt til e-mail", @@ -682,6 +684,8 @@ "CAS_autoclose": "Autoclose login popup", "CAS_base_url": "SSO Base-URL", "CAS_base_url_Description": "Base-adressen til din eksterne SSO-tjeneste fx: https: //sso.example.undef/sso/", + "CAS_button_color": "Login-knap's baggrundsfarve", + "CAS_button_label_color": "Login-knap's tekstfarve", "CAS_button_label_text": "Login-knap's tekst", "CAS_Creation_User_Enabled": "Tillad oprettelse af brugere", "CAS_Creation_User_Enabled_Description": "Tillad oprettelse af CAS-bruger ud fra data leveret af en CAS-ticket.", @@ -4081,4 +4085,4 @@ "Enterprise": "Firma", "UpgradeToGetMore_engagement-dashboard_Title": "Analyse", "UpgradeToGetMore_auditing_Title": "Meddelelsesovervågning" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/de-AT.i18n.json b/packages/i18n/src/locales/de-AT.i18n.json index 5ee7f2debdff1..e70a6ade27d67 100644 --- a/packages/i18n/src/locales/de-AT.i18n.json +++ b/packages/i18n/src/locales/de-AT.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Ablauffrist der Anmeldung", "Accounts_ManuallyApproveNewUsers": "Neue Benutzer manuell aktivieren", "Accounts_OAuth_Custom_Authorize_Path": "Autorisierungspfad", + "Accounts_OAuth_Custom_Button_Color": "Buttonfarbe", + "Accounts_OAuth_Custom_Button_Label_Color": "Farbe des Buttontexts", "Accounts_OAuth_Custom_Button_Label_Text": "Text des Buttons", "Accounts_OAuth_Custom_Enable": "Aktivieren", "Accounts_OAuth_Custom_id": "ID", @@ -407,6 +409,8 @@ "CAS_autoclose": "Autoclose Login Popup", "CAS_base_url": "SSO-Basis-URL", "CAS_base_url_Description": "Die Basis-URL Ihres externen SSO-Diensts, z. B .: https: //sso.example.undef/sso/", + "CAS_button_color": "Login Button Hintergrundfarbe", + "CAS_button_label_color": "Login Button Textfarbe", "CAS_button_label_text": "Anmelden-Button-Label", "CAS_enabled": "aktiviert", "CAS_Login_Layout": "CAS Login Layout", @@ -2754,4 +2758,4 @@ "registration.component.form.sendConfirmationEmail": "Bestätigungsmail versenden", "Enterprise": "Unternehmen", "UpgradeToGetMore_engagement-dashboard_Title": "Analytics" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/de-IN.i18n.json b/packages/i18n/src/locales/de-IN.i18n.json index eceafba03c4f6..3ab7a222d068c 100644 --- a/packages/i18n/src/locales/de-IN.i18n.json +++ b/packages/i18n/src/locales/de-IN.i18n.json @@ -80,6 +80,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Param Name für Access token", "Accounts_OAuth_Custom_Authorize_Path": "Autorisierungspfad", "Accounts_OAuth_Custom_Avatar_Field": "Avatarfeld", + "Accounts_OAuth_Custom_Button_Color": "Buttonfarbe", + "Accounts_OAuth_Custom_Button_Label_Color": "Farbe des Buttontexts", "Accounts_OAuth_Custom_Button_Label_Text": "Text des Buttons", "Accounts_OAuth_Custom_Enable": "Aktivieren", "Accounts_OAuth_Custom_id": "ID", @@ -469,6 +471,8 @@ "CAS_autoclose": "Login-Popup automatisch schließen", "CAS_base_url": "SSO-Base-URL", "CAS_base_url_Description": "Basis-URL des externen Singe Sign On Services e.g: `https://sso.example.undef/sso/`", + "CAS_button_color": "Hintergrundfarbe des Login-Buttons", + "CAS_button_label_color": "Farbe des Login-Button-Texts", "CAS_button_label_text": "Text des Login-Buttons", "CAS_enabled": "Aktiviert", "CAS_Login_Layout": "CAS-Login-Layout", diff --git a/packages/i18n/src/locales/de.i18n.json b/packages/i18n/src/locales/de.i18n.json index 1a30be6734005..3fe08dbce3d36 100644 --- a/packages/i18n/src/locales/de.i18n.json +++ b/packages/i18n/src/locales/de.i18n.json @@ -116,6 +116,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Param Name für Access token", "Accounts_OAuth_Custom_Authorize_Path": "Autorisierungspfad", "Accounts_OAuth_Custom_Avatar_Field": "Avatarfeld", + "Accounts_OAuth_Custom_Button_Color": "Buttonfarbe", + "Accounts_OAuth_Custom_Button_Label_Color": "Farbe des Buttontexts", "Accounts_OAuth_Custom_Button_Label_Text": "Text des Buttons", "Accounts_OAuth_Custom_Channel_Admin": "Benutzerdatengruppenzuordnung", "Accounts_OAuth_Custom_Channel_Map": "OAuth Gruppe Channel-Zuordnung", @@ -845,6 +847,8 @@ "CAS_autoclose": "Anmelde-Popup automatisch schließen", "CAS_base_url": "SSO-Base-URL", "CAS_base_url_Description": "Basis-URL des externen Singe Sign On Services e.g: `https://sso.example.undef/sso/`", + "CAS_button_color": "Hintergrundfarbe des Anmeldungs-Buttons", + "CAS_button_label_color": "Farbe des Anmeldungs-Button-Texts", "CAS_button_label_text": "Text des Anmeldungs-Buttons", "CAS_Creation_User_Enabled": "Benutzererstellung zulassen", "CAS_Creation_User_Enabled_Description": "Das Anlegen von CAS-Benutzern anhand der vom CAS-Ticket bereitgestellten Daten erlauben.", diff --git a/packages/i18n/src/locales/el.i18n.json b/packages/i18n/src/locales/el.i18n.json index 1a18ba5e13c22..ecabeeaf31ae2 100644 --- a/packages/i18n/src/locales/el.i18n.json +++ b/packages/i18n/src/locales/el.i18n.json @@ -77,6 +77,8 @@ "Accounts_LoginExpiration": "Λήξη Σύνδεσης σε Ημέρες", "Accounts_ManuallyApproveNewUsers": "Χειροκίνητη Έγκριση Νέων Χρηστών", "Accounts_OAuth_Custom_Authorize_Path": "Εξουσιοδότηση διαδρομής", + "Accounts_OAuth_Custom_Button_Color": "Χρώμα Κουμπιού", + "Accounts_OAuth_Custom_Button_Label_Color": "Χρώμα Κειμένου Κουμπιού", "Accounts_OAuth_Custom_Button_Label_Text": "Κείμενο Κουμπιού", "Accounts_OAuth_Custom_Enable": "Ενεργοποίηση", "Accounts_OAuth_Custom_id": "Αναγνωριστικό", @@ -413,6 +415,8 @@ "CAS_autoclose": "Αυτόματο Κλείσιμο Αναδυόμενου Παραθύρου Σύνδεσης", "CAS_base_url": "Βασική διεύθυνση URL SSO", "CAS_base_url_Description": "Η βασική διεύθυνση URL της εξωτερικής υπηρεσίας SSO σας, π.χ .: https: //sso.example.undef/sso/", + "CAS_button_color": "Χρώμα Παρασκηνίου για το Κουμπί Σύνδεσης", + "CAS_button_label_color": "Χρώμα Κειμένου για το Κουμπί Σύνδεσης", "CAS_button_label_text": "Ετικέτα Κουμπιού Συνδεσης", "CAS_enabled": "Ενεργοποιημένο", "CAS_Login_Layout": "Διάταξη Σύνδεσης CAS", @@ -2761,4 +2765,4 @@ "registration.component.form.sendConfirmationEmail": "Αποστολή email επιβεβαίωσης", "Enterprise": "Επιχείρηση", "UpgradeToGetMore_engagement-dashboard_Title": "Αναλυτικά στοιχεία" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/en.i18n.json b/packages/i18n/src/locales/en.i18n.json index 747f504a4d447..5abf0d8a69b23 100644 --- a/packages/i18n/src/locales/en.i18n.json +++ b/packages/i18n/src/locales/en.i18n.json @@ -140,6 +140,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Param Name for access token", "Accounts_OAuth_Custom_Authorize_Path": "Authorize Path", "Accounts_OAuth_Custom_Avatar_Field": "Avatar field", + "Accounts_OAuth_Custom_Button_Color": "Button Color", + "Accounts_OAuth_Custom_Button_Label_Color": "Button Text Color", "Accounts_OAuth_Custom_Button_Label_Text": "Button Text", "Accounts_OAuth_Custom_Channel_Admin": "User Data Group Map", "Accounts_OAuth_Custom_Channel_Map": "OAuth Group Channel Map", @@ -945,6 +947,8 @@ "CAS_autoclose": "Autoclose Login Popup", "CAS_base_url": "SSO Base URL", "CAS_base_url_Description": "The base URL of your external SSO service e.g: `https://sso.example.undef/sso/`", + "CAS_button_color": "Login Button Background Color", + "CAS_button_label_color": "Login Button Text Color", "CAS_button_label_text": "Login Button Label", "CAS_Creation_User_Enabled": "Allow user creation", "CAS_Creation_User_Enabled_Description": "Allow CAS User creation from data provided by the CAS ticket.", diff --git a/packages/i18n/src/locales/eo.i18n.json b/packages/i18n/src/locales/eo.i18n.json index c1c3083780f7e..6340ba5044951 100644 --- a/packages/i18n/src/locales/eo.i18n.json +++ b/packages/i18n/src/locales/eo.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Salutnomo Finiĝo en Tagoj", "Accounts_ManuallyApproveNewUsers": "Mane Aprezu Novajn Uzantojn", "Accounts_OAuth_Custom_Authorize_Path": "Rajtigu Vojon", + "Accounts_OAuth_Custom_Button_Color": "Butono Koloro", + "Accounts_OAuth_Custom_Button_Label_Color": "Butono Teksto Koloro", "Accounts_OAuth_Custom_Button_Label_Text": "Butono Teksto", "Accounts_OAuth_Custom_Enable": "Ebligu", "Accounts_OAuth_Custom_id": "Id", @@ -407,6 +409,8 @@ "CAS_autoclose": "Autoclose Ensaluti Popup", "CAS_base_url": "SSO Baza URL", "CAS_base_url_Description": "La baza URL de via ekstera SSO-servo, ekzemple: https: //sso.example.undef/sso/", + "CAS_button_color": "Salutnomo Butono Fona Koloro", + "CAS_button_label_color": "Salutnomo Butono Teksto Koloro", "CAS_button_label_text": "Salutnomo Butono", "CAS_enabled": "Enabled", "CAS_Login_Layout": "CAS Ensaluta Aranĝo", @@ -2755,4 +2759,4 @@ "registration.component.form.sendConfirmationEmail": "Sendu konfirman retpoŝton", "Enterprise": "Entrepreno", "UpgradeToGetMore_engagement-dashboard_Title": "Analitiko" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/es.i18n.json b/packages/i18n/src/locales/es.i18n.json index 452be628d0cd9..7b8bcb68c0858 100644 --- a/packages/i18n/src/locales/es.i18n.json +++ b/packages/i18n/src/locales/es.i18n.json @@ -115,6 +115,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Nombre de parámetro para el token de acceso", "Accounts_OAuth_Custom_Authorize_Path": "Ruta de autorización ", "Accounts_OAuth_Custom_Avatar_Field": "Campo de avatar", + "Accounts_OAuth_Custom_Button_Color": "Color del botón", + "Accounts_OAuth_Custom_Button_Label_Color": "Color de texto del botón ", "Accounts_OAuth_Custom_Button_Label_Text": "Texto del botón ", "Accounts_OAuth_Custom_Channel_Admin": "Asignación de grupos de datos de usuario", "Accounts_OAuth_Custom_Channel_Map": "Asignación de Channel del grupo OAuth", @@ -747,6 +749,8 @@ "CAS_autoclose": "Ventana emergente de cierre automático de sesión", "CAS_base_url": "URL base de SSO", "CAS_base_url_Description": "URL base de su servicio de SSO externo; por ejemplo, `https://sso.example.undef/sso/`", + "CAS_button_color": "Color de fondo del botón de inicio de sesión", + "CAS_button_label_color": "Color de texto del botón de inicio de sesión", "CAS_button_label_text": "Etiqueta del botón de inicio de sesión", "CAS_Creation_User_Enabled": "Permitir creación de usuarios", "CAS_Creation_User_Enabled_Description": "Permitir creación de usuarios CAS a partir de los datos proporcionados por el ticket CAS.", diff --git a/packages/i18n/src/locales/fa.i18n.json b/packages/i18n/src/locales/fa.i18n.json index 9df160030e1d9..f8b7b62f536b3 100644 --- a/packages/i18n/src/locales/fa.i18n.json +++ b/packages/i18n/src/locales/fa.i18n.json @@ -84,6 +84,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "نام پارمتر برای دسترسی به توکن", "Accounts_OAuth_Custom_Authorize_Path": "مسیر احراز هویت", "Accounts_OAuth_Custom_Avatar_Field": "گزینه تصویر", + "Accounts_OAuth_Custom_Button_Color": "رنگ دکمه", + "Accounts_OAuth_Custom_Button_Label_Color": "رنگ متن دکمه", "Accounts_OAuth_Custom_Button_Label_Text": "متن دکمه", "Accounts_OAuth_Custom_Enable": "فعال", "Accounts_OAuth_Custom_id": "شناسه", @@ -533,6 +535,8 @@ "CAS_autoclose": "خودکار پنجره ورود به سیستم", "CAS_base_url": "URL پایه SSO", "CAS_base_url_Description": "آدرس پایه سرویس SSO خارجی شما به عنوان مثال: https: //sso.example.undef/sso/", + "CAS_button_color": "دکمه ورود رنگ پس زمینه", + "CAS_button_label_color": "دکمه ورود رنگ متن", "CAS_button_label_text": "برچسب دکمه ورود", "CAS_enabled": "فعال", "CAS_Login_Layout": "طرح ورود به سیستم CAS", @@ -3103,4 +3107,4 @@ "RegisterWorkspace_Features_Omnichannel_Title": "کانال همه‌کاره", "Enterprise": "شرکت، پروژه", "UpgradeToGetMore_engagement-dashboard_Title": "تجزیه و تحلیل ترافیک" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/fi.i18n.json b/packages/i18n/src/locales/fi.i18n.json index 08383fa092217..001d1617ebe2b 100644 --- a/packages/i18n/src/locales/fi.i18n.json +++ b/packages/i18n/src/locales/fi.i18n.json @@ -116,6 +116,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Käyttöoikeustietueen parametrin nimi", "Accounts_OAuth_Custom_Authorize_Path": "Valtuuta polku", "Accounts_OAuth_Custom_Avatar_Field": "Avatar-kenttä", + "Accounts_OAuth_Custom_Button_Color": "Painikkeen väri", + "Accounts_OAuth_Custom_Button_Label_Color": "Painiketekstin väri", "Accounts_OAuth_Custom_Button_Label_Text": "Painiketeksti", "Accounts_OAuth_Custom_Channel_Admin": "Käyttäjätietoryhmän määritys", "Accounts_OAuth_Custom_Channel_Map": "OAuth-ryhmän kanavamääritys", @@ -861,6 +863,8 @@ "CAS_autoclose": "Sulje kirjautumisikkuna automaattisesti", "CAS_base_url": "SSO:n perus-URL-osoite", "CAS_base_url_Description": "Ulkoisen SSO-palvelun perus-URL-osoite, kuten `https://sso.example.undef/sso/`", + "CAS_button_color": "Kirjautumispainikkeen taustaväri", + "CAS_button_label_color": "Kirjautumispainikkeen tekstin väri", "CAS_button_label_text": "Kirjautumispainikkeen nimi", "CAS_Creation_User_Enabled": "Salli käyttäjän luonti", "CAS_Creation_User_Enabled_Description": "Salli CAS-käyttäjän luonti CAS-pyynnöstä saaduilla tiedoilla.", diff --git a/packages/i18n/src/locales/fr.i18n.json b/packages/i18n/src/locales/fr.i18n.json index 529e8c3d6a6ba..0d9665febbcb0 100644 --- a/packages/i18n/src/locales/fr.i18n.json +++ b/packages/i18n/src/locales/fr.i18n.json @@ -96,6 +96,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Nom de paramètre pour le jeton d'accès", "Accounts_OAuth_Custom_Authorize_Path": "Chemin d'autorisation", "Accounts_OAuth_Custom_Avatar_Field": "Champ d'avatar", + "Accounts_OAuth_Custom_Button_Color": "Couleur du bouton", + "Accounts_OAuth_Custom_Button_Label_Color": "Couleur du texte du bouton", "Accounts_OAuth_Custom_Button_Label_Text": "Texte du bouton", "Accounts_OAuth_Custom_Channel_Admin": "Mappage de groupes de données utilisateur", "Accounts_OAuth_Custom_Channel_Map": "Mappage de canaux de groupe OAuth", @@ -742,6 +744,8 @@ "CAS_autoclose": "Fermer automatiquement la fenêtre contextuelle de connexion", "CAS_base_url": "URL de base SSO", "CAS_base_url_Description": "URL de base pour votre service SSO externe, par exemple : `https://sso.example.undef/sso/`", + "CAS_button_color": "Bouton de connexion, couleur de fond", + "CAS_button_label_color": "Bouton de connexion, couleur du texte", "CAS_button_label_text": "Bouton de connexion, étiquette", "CAS_Creation_User_Enabled": "Autoriser la création d'utilisateurs", "CAS_Creation_User_Enabled_Description": "Autoriser la création d'utilisateurs CAS à partir des données fournies dans le ticket CAS.", diff --git a/packages/i18n/src/locales/gl.i18n.json b/packages/i18n/src/locales/gl.i18n.json index 20e54e8c5d10e..7b8890955a731 100644 --- a/packages/i18n/src/locales/gl.i18n.json +++ b/packages/i18n/src/locales/gl.i18n.json @@ -75,6 +75,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Nome do parámetro para o token de acceso", "Accounts_OAuth_Custom_Authorize_Path": "Ruta de autorización", "Accounts_OAuth_Custom_Avatar_Field": "Campo de avatar", + "Accounts_OAuth_Custom_Button_Color": "Cor do botón", + "Accounts_OAuth_Custom_Button_Label_Color": "Cor do texto do botón", "Accounts_OAuth_Custom_Button_Label_Text": "Texto do botón", "Accounts_OAuth_Custom_Email_Field": "Campo de correo electrónico", "Accounts_OAuth_Custom_Enable": "Activar", @@ -389,4 +391,4 @@ "Awaiting_confirmation": "Agardando confirmación", "RegisterWorkspace_Features_MobileNotifications_Title": "Notificacións push móbiles", "cloud.RegisterWorkspace_Setup_Terms_Privacy": "Acepto os <1>Termos e condicións e a <3>Política de privacidade" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/he.i18n.json b/packages/i18n/src/locales/he.i18n.json index 157e4727a0637..7cdc81b3ec1cd 100644 --- a/packages/i18n/src/locales/he.i18n.json +++ b/packages/i18n/src/locales/he.i18n.json @@ -50,6 +50,8 @@ "Accounts_LoginExpiration": "תפוגת כניסת ימים", "Accounts_ManuallyApproveNewUsers": "אשר משתמשים חדשים ידנית", "Accounts_OAuth_Custom_Authorize_Path": "נתיב אימות", + "Accounts_OAuth_Custom_Button_Color": "צבע הכפתור", + "Accounts_OAuth_Custom_Button_Label_Color": "צבע טקסט הכפתור", "Accounts_OAuth_Custom_Button_Label_Text": "טקסט הכפתור", "Accounts_OAuth_Custom_Enable": "הפעלה", "Accounts_OAuth_Custom_id": "מזהה ייחודי", @@ -1545,4 +1547,4 @@ "registration.component.form.confirmPassword": "אמת את הסיסמה שלך", "registration.component.form.sendConfirmationEmail": "שליחת דוא״ל אימות", "UpgradeToGetMore_engagement-dashboard_Title": "סטטיסטיקה" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/hi-IN.i18n.json b/packages/i18n/src/locales/hi-IN.i18n.json index d3ff9c28bed28..a1380493fe0cd 100644 --- a/packages/i18n/src/locales/hi-IN.i18n.json +++ b/packages/i18n/src/locales/hi-IN.i18n.json @@ -129,6 +129,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "एक्सेस टोकन के लिए परम नाम", "Accounts_OAuth_Custom_Authorize_Path": "पथ अधिकृत करें", "Accounts_OAuth_Custom_Avatar_Field": "अवतार क्षेत्र", + "Accounts_OAuth_Custom_Button_Color": "बटन का रंग", + "Accounts_OAuth_Custom_Button_Label_Color": "बटन टेक्स्ट का रंग", "Accounts_OAuth_Custom_Button_Label_Text": "बटन टेक्स्ट", "Accounts_OAuth_Custom_Channel_Admin": "उपयोगकर्ता डेटा समूह मानचित्र", "Accounts_OAuth_Custom_Channel_Map": "OAuth समूह चैनल मानचित्र", @@ -897,6 +899,8 @@ "CAS_autoclose": "लॉगिन पॉपअप स्वतः बंद करें", "CAS_base_url": "एसएसओ बेस यूआरएल", "CAS_base_url_Description": "आपकी बाहरी SSO सेवा का आधार URL जैसे: `https://sso.example.undef/sso/`", + "CAS_button_color": "लॉगिन बटन पृष्ठभूमि रंग", + "CAS_button_label_color": "लॉगिन बटन टेक्स्ट का रंग", "CAS_button_label_text": "लॉगिन बटन लेबल", "CAS_Creation_User_Enabled": "उपयोगकर्ता निर्माण की अनुमति दें", "CAS_Creation_User_Enabled_Description": "CAS टिकट द्वारा उपलब्ध कराए गए डेटा से CAS उपयोगकर्ता निर्माण की अनुमति दें।", diff --git a/packages/i18n/src/locales/hi.i18n.json b/packages/i18n/src/locales/hi.i18n.json index 4e8310563dba7..30d5e3e246d82 100644 --- a/packages/i18n/src/locales/hi.i18n.json +++ b/packages/i18n/src/locales/hi.i18n.json @@ -77,6 +77,8 @@ "Accounts_LoginExpiration": "दिन में प्रवेश की समाप्ति", "Accounts_ManuallyApproveNewUsers": "नए उपयोगकर्ताओं को मैन्युअल रूप से अनुमोदित करें", "Accounts_OAuth_Custom_Authorize_Path": "पथ अधिकृत करें", + "Accounts_OAuth_Custom_Button_Color": "बटन का रंग", + "Accounts_OAuth_Custom_Button_Label_Color": "बटन टेक्स्ट का रंग", "Accounts_OAuth_Custom_Button_Label_Text": "बटन टेक्स्ट", "Accounts_OAuth_Custom_Enable": "सक्षम करें", "Accounts_OAuth_Custom_id": "Id", @@ -212,4 +214,4 @@ "We_are_offline_Sorry_for_the_inconvenience": "हम ऑफ़लाइन हैं। असुविधा के लिए खेद है।", "Yes": "हाँ", "You": "आप" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/hr.i18n.json b/packages/i18n/src/locales/hr.i18n.json index 8ccd00ddf1401..ef6cf511ee7a8 100644 --- a/packages/i18n/src/locales/hr.i18n.json +++ b/packages/i18n/src/locales/hr.i18n.json @@ -78,6 +78,8 @@ "Accounts_LoginExpiration": "Istek prijave u danima", "Accounts_ManuallyApproveNewUsers": "Ručno odobri nove korisnike", "Accounts_OAuth_Custom_Authorize_Path": "Autorizacijski put", + "Accounts_OAuth_Custom_Button_Color": "Boja Gumba", + "Accounts_OAuth_Custom_Button_Label_Color": "Boja teksta u gumbu", "Accounts_OAuth_Custom_Button_Label_Text": "Tekst Gumba", "Accounts_OAuth_Custom_Enable": "Omogući", "Accounts_OAuth_Custom_id": "Id", @@ -464,6 +466,8 @@ "CAS_autoclose": "Automatski zatvori prijavni prozor", "CAS_base_url": "SSO osnovni URL", "CAS_base_url_Description": "Osnovni URL vaše vanjske SSO usluge, npr. Https: //sso.example.undef/sso/", + "CAS_button_color": "Pozadinska boja gumba za prijavu", + "CAS_button_label_color": "Boja teksta gumba za prijavu", "CAS_button_label_text": "Oznaka gumba za prijavu", "CAS_enabled": "Omogućeno", "CAS_Login_Layout": "CAS Login Layout", @@ -2888,4 +2892,4 @@ "registration.component.form.sendConfirmationEmail": "Pošalji potvrdni email", "Enterprise": "Poduzeće", "UpgradeToGetMore_engagement-dashboard_Title": "Analitika" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/hu.i18n.json b/packages/i18n/src/locales/hu.i18n.json index b9db6fbebe76a..9727daa29c776 100644 --- a/packages/i18n/src/locales/hu.i18n.json +++ b/packages/i18n/src/locales/hu.i18n.json @@ -114,6 +114,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Paraméter neve a hozzáférési tokennél", "Accounts_OAuth_Custom_Authorize_Path": "Útvonal engedélyezése", "Accounts_OAuth_Custom_Avatar_Field": "Profilkép mező", + "Accounts_OAuth_Custom_Button_Color": "Gomb színe", + "Accounts_OAuth_Custom_Button_Label_Color": "Gomb szövegének színe", "Accounts_OAuth_Custom_Button_Label_Text": "Gomb szövege", "Accounts_OAuth_Custom_Channel_Admin": "Felhasználói adatok csoportleképezése", "Accounts_OAuth_Custom_Channel_Map": "OAuth-csoport csatornaleképezése", @@ -825,6 +827,8 @@ "CAS_autoclose": "Bejelentkezési felugró ablak automatikus bezárása", "CAS_base_url": "SSO alap URL", "CAS_base_url_Description": "A külső SSO-szolgáltatás alap URL-je, például: `https://sso.example.undef/sso/`", + "CAS_button_color": "Bejelentkezési gomb háttérszíne", + "CAS_button_label_color": "Bejelentkezési gomb szövegszíne", "CAS_button_label_text": "Bejelentkezési gomb felirata", "CAS_Creation_User_Enabled": "Felhasználó létrehozásának engedélyezése", "CAS_Creation_User_Enabled_Description": "CAS-felhasználó létrehozásának engedélyezése a CAS-jegy által szolgáltatott adatokból.", diff --git a/packages/i18n/src/locales/id.i18n.json b/packages/i18n/src/locales/id.i18n.json index 40140136b68bd..5e29925ead23d 100644 --- a/packages/i18n/src/locales/id.i18n.json +++ b/packages/i18n/src/locales/id.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Kadaluarsa Login di Days", "Accounts_ManuallyApproveNewUsers": "Persetujuan User Baru secara Manual", "Accounts_OAuth_Custom_Authorize_Path": "Otorisasi Path", + "Accounts_OAuth_Custom_Button_Color": "Warna Button", + "Accounts_OAuth_Custom_Button_Label_Color": "Warna Button Teks", "Accounts_OAuth_Custom_Button_Label_Text": "Button Teks", "Accounts_OAuth_Custom_Enable": "Hidupkan", "Accounts_OAuth_Custom_id": "Id", @@ -407,6 +409,8 @@ "CAS_autoclose": "Autoclose Login Popup", "CAS_base_url": "URL Dasar SSO", "CAS_base_url_Description": "URL dasar layanan SSO eksternal Anda misalnya: https: //sso.example.undef/sso/", + "CAS_button_color": "Tombol Masuk Warna Latar Belakang", + "CAS_button_label_color": "Tombol Masuk Warna Teks", "CAS_button_label_text": "Tombol Masuk Label", "CAS_enabled": "Diaktifkan", "CAS_Login_Layout": "Tata Letak Login CAS", @@ -2762,4 +2766,4 @@ "registration.component.form.sendConfirmationEmail": "Kirim email konfirmasi", "Enterprise": "Perusahaan", "UpgradeToGetMore_engagement-dashboard_Title": "Analytics" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/it.i18n.json b/packages/i18n/src/locales/it.i18n.json index 08b0297e98984..e049bb8b6aa0b 100644 --- a/packages/i18n/src/locales/it.i18n.json +++ b/packages/i18n/src/locales/it.i18n.json @@ -127,6 +127,8 @@ "Accounts_ManuallyApproveNewUsers": "Approva manualmente i nuovi utenti", "Accounts_OAuth_Apple": "Accedi con Apple", "Accounts_OAuth_Custom_Authorize_Path": "Percorso di autorizzazione", + "Accounts_OAuth_Custom_Button_Color": "Colore pulsante", + "Accounts_OAuth_Custom_Button_Label_Color": "Colore testo pulsante", "Accounts_OAuth_Custom_Button_Label_Text": "Testo pulsante", "Accounts_OAuth_Custom_Enable": "Abilita", "Accounts_OAuth_Custom_id": "Id", @@ -576,6 +578,8 @@ "CAS_autoclose": "Chiudi automaticamente il popup di login", "CAS_base_url": "SSO Base URL", "CAS_base_url_Description": "La base URL del tuo servizio esterno SSO es: `https://sso.example.undef/sso/`", + "CAS_button_color": "Colore di sfondo del pulsante di login", + "CAS_button_label_color": "Colore del testo del pulsante di login", "CAS_button_label_text": "Etichetta del pulsante di login", "CAS_enabled": "Abilitato", "CAS_Login_Layout": "CAS Login Layout", @@ -3395,4 +3399,4 @@ "UpgradeToGetMore_custom-roles_Title": "Ruoli personalizzati", "Video_call_manager": "Gestore di videochiamate", "Sync_license_update_Callout_Title": "Stiamo aggiornando la vostra licenza" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/ja.i18n.json b/packages/i18n/src/locales/ja.i18n.json index a73a3b6a9799a..03c16d68eb65b 100644 --- a/packages/i18n/src/locales/ja.i18n.json +++ b/packages/i18n/src/locales/ja.i18n.json @@ -96,6 +96,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "アクセストークンのパラメーター名", "Accounts_OAuth_Custom_Authorize_Path": "パスの認証", "Accounts_OAuth_Custom_Avatar_Field": "アバターのフィールド", + "Accounts_OAuth_Custom_Button_Color": "ボタンの色", + "Accounts_OAuth_Custom_Button_Label_Color": "ボタン文字色", "Accounts_OAuth_Custom_Button_Label_Text": "ボタンテキスト", "Accounts_OAuth_Custom_Channel_Admin": "ユーザーデータグループマップ", "Accounts_OAuth_Custom_Channel_Map": "OAuthグループChannelマップ", @@ -726,6 +728,8 @@ "CAS_autoclose": "ログインポップアップの自動クローズ", "CAS_base_url": "SSOベースURL", "CAS_base_url_Description": "外部SSOサービスのベースURL(例:https://sso.example.undef/sso/)", + "CAS_button_color": "ログインボタンの背景色", + "CAS_button_label_color": "ログインボタンの文字色", "CAS_button_label_text": "ログインボタンのラベル", "CAS_Creation_User_Enabled": "ユーザーの作成を許可", "CAS_Creation_User_Enabled_Description": "CASチケットで提供されたデータからCASユーザーの作成を許可します。", diff --git a/packages/i18n/src/locales/ka-GE.i18n.json b/packages/i18n/src/locales/ka-GE.i18n.json index 0c773f808cdba..cf231b838dcec 100644 --- a/packages/i18n/src/locales/ka-GE.i18n.json +++ b/packages/i18n/src/locales/ka-GE.i18n.json @@ -89,6 +89,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "პარამეტრის სახელი წვდომის თოკენისთვის", "Accounts_OAuth_Custom_Authorize_Path": "ავტორიზაციის მისამართი", "Accounts_OAuth_Custom_Avatar_Field": "ავატარის ველი", + "Accounts_OAuth_Custom_Button_Color": "ღილაკი ფერი", + "Accounts_OAuth_Custom_Button_Label_Color": "ღილაკის ტექსტის ფერი", "Accounts_OAuth_Custom_Button_Label_Text": "ღილაკის ტექსტი", "Accounts_OAuth_Custom_Channel_Admin": "მომხმარებელთა მონაცემთა ჯგუფის რუკა", "Accounts_OAuth_Custom_Email_Field": "ელ.ფოსტა", @@ -558,6 +560,8 @@ "CAS_autoclose": "ავტორიზაციის ფანჟრის ავტომატური დახურვა", "CAS_base_url": "SSO ბაზის URL", "CAS_base_url_Description": "თქვენი გარე SSO სერვისის ძირითადი URL მაგალითად: https: //sso.example.undef/sso/", + "CAS_button_color": "შესვლის ღილაკი ფონის ფერი", + "CAS_button_label_color": "შესვლის ღილაკი ტექსტის ფერი", "CAS_button_label_text": "შესვლის ღილაკის ტექსტი", "CAS_enabled": "ჩართული", "CAS_Login_Layout": "CAS ავტორიზაციის განლაგება", @@ -3667,4 +3671,4 @@ "onboarding.form.registerOfflineForm.title": "ხელით დარეგისტრირება", "UpgradeToGetMore_engagement-dashboard_Title": "ანალიტიკა", "UpgradeToGetMore_auditing_Title": "შეტყობინებების შემოწმება" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/km.i18n.json b/packages/i18n/src/locales/km.i18n.json index 433c81132749d..77815b2a8e492 100644 --- a/packages/i18n/src/locales/km.i18n.json +++ b/packages/i18n/src/locales/km.i18n.json @@ -88,6 +88,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "ឈ្មោះប៉ារ៉ាសម្រាប់និមិត្តសញ្ញាចូលប្រើ។", "Accounts_OAuth_Custom_Authorize_Path": "ទីតាំងផ្ទៀតផ្ទាត់", "Accounts_OAuth_Custom_Avatar_Field": "វាល Avatar ។", + "Accounts_OAuth_Custom_Button_Color": "ពណ៌ប៊ូតុង", + "Accounts_OAuth_Custom_Button_Label_Color": "ពណ៌អត្ថបទប៊ូតុង", "Accounts_OAuth_Custom_Button_Label_Text": "អត្ថបទ​ប៊ូតុង", "Accounts_OAuth_Custom_Enable": "អនុញ្ញាត", "Accounts_OAuth_Custom_id": "លេខសម្គាល់", @@ -524,6 +526,8 @@ "CAS_autoclose": "ចូលស្វ័យប្រវត្តិការចូលលេចឡើង", "CAS_base_url": "URL មូលដ្ឋានរបស់ SSO", "CAS_base_url_Description": "URL មូលដ្ឋាននៃសេវាកម្ម SSO ខាងក្រៅរបស់អ្នកឧ។ https: //sso.example.undef/sso/", + "CAS_button_color": "ពណ៌ផ្ទៃខាងក្រោយចូលចូល", + "CAS_button_label_color": "ផ្ទាំងចូលប៊ូតុងពណ៌អត្ថបទ", "CAS_button_label_text": "ស្លាកប៊ូតុងចូល", "CAS_enabled": "បានបើក", "CAS_Login_Layout": "ប្លង់ចូល CAS", @@ -3112,4 +3116,4 @@ "Enterprise": "សហគ្រាស", "UpgradeToGetMore_engagement-dashboard_Title": "វិភាគ", "UpgradeToGetMore_auditing_Title": "សវនកម្មសារ" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/ko.i18n.json b/packages/i18n/src/locales/ko.i18n.json index 2a0b3e0acaa72..8ad8378ebd4b8 100644 --- a/packages/i18n/src/locales/ko.i18n.json +++ b/packages/i18n/src/locales/ko.i18n.json @@ -94,6 +94,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "액세스 토큰의 매개 변수명", "Accounts_OAuth_Custom_Authorize_Path": "Authorize 경로", "Accounts_OAuth_Custom_Avatar_Field": "아바타 필드", + "Accounts_OAuth_Custom_Button_Color": "버튼 색", + "Accounts_OAuth_Custom_Button_Label_Color": "버튼 텍스트 색", "Accounts_OAuth_Custom_Button_Label_Text": "버튼 텍스트", "Accounts_OAuth_Custom_Channel_Admin": "사용자 데이터 그룹 배치", "Accounts_OAuth_Custom_Channel_Map": "OAuth 그룹 Channel 맵", @@ -646,6 +648,8 @@ "CAS_autoclose": "로그인 팝업 자동으로 닫기", "CAS_base_url": "SSO Base URL", "CAS_base_url_Description": "외부 SSO 서비스에 대한 base URL. 예: `https://sso.example.undef/sso/`", + "CAS_button_color": "로그인 버튼 배경 색상", + "CAS_button_label_color": "로그인 버튼 텍스트 색상", "CAS_button_label_text": "로그인 버튼 레이블", "CAS_enabled": "활성화 됨", "CAS_Login_Layout": "CAS 로그인 Layout", @@ -4024,4 +4028,4 @@ "Enterprise": "기업", "UpgradeToGetMore_engagement-dashboard_Title": "분석(에널리틱스)", "UpgradeToGetMore_auditing_Title": "메시지 감사" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/ku.i18n.json b/packages/i18n/src/locales/ku.i18n.json index 3de7be2116040..3a135c886c9c7 100644 --- a/packages/i18n/src/locales/ku.i18n.json +++ b/packages/i18n/src/locales/ku.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Expiration Login li Rojan", "Accounts_ManuallyApproveNewUsers": "Bi destan Approve Users New", "Accounts_OAuth_Custom_Authorize_Path": "authorize Path", + "Accounts_OAuth_Custom_Button_Color": "rengê bişkoka", + "Accounts_OAuth_Custom_Button_Label_Color": "Rengê bişkoka Nivîsar di", "Accounts_OAuth_Custom_Button_Label_Text": "Button Nivîsar di", "Accounts_OAuth_Custom_Enable": "Bikêrkirin", "Accounts_OAuth_Custom_id": "Id", @@ -406,6 +408,8 @@ "CAS_autoclose": "Pergala Autoclose Têketin", "CAS_base_url": "URL ya SSO", "CAS_base_url_Description": "URL ya bingehîn ya SSO ya derve ye: https: //sso.example.undef/sso/", + "CAS_button_color": "Rengdêr Bibe Bikin Bikin", + "CAS_button_label_color": "Şîfreya Login Login Text", "CAS_button_label_text": "Label Login Login", "CAS_enabled": "Vekirî", "CAS_Login_Layout": "CAS Têketinê Têketinê", @@ -2744,4 +2748,4 @@ "registration.component.form.sendConfirmationEmail": "ئیمەیڵی پشتڕاستکردنەوە بنێرە", "Enterprise": "Enterprise", "UpgradeToGetMore_engagement-dashboard_Title": "analytics" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/lo.i18n.json b/packages/i18n/src/locales/lo.i18n.json index b4052970c7739..ad1721739c251 100644 --- a/packages/i18n/src/locales/lo.i18n.json +++ b/packages/i18n/src/locales/lo.i18n.json @@ -81,6 +81,8 @@ "Accounts_LoginExpiration": "ຫມົດອາຍຸເຂົ້າສູ່ລະບົບໃນວັນ", "Accounts_ManuallyApproveNewUsers": "ອະນຸມັດການສະມາຊິກໃຫມ່ດ້ວຍຕົນເອງ", "Accounts_OAuth_Custom_Authorize_Path": "ອະນຸຍາດໃຫ້ເສັ້ນທາງກ້າວສູ່", + "Accounts_OAuth_Custom_Button_Color": "ປຸ່ມສີ", + "Accounts_OAuth_Custom_Button_Label_Color": "ປຸ່ມສີຂໍ້ຄວາມ", "Accounts_OAuth_Custom_Button_Label_Text": "ປຸ່ມຂໍ້ຄວາມ", "Accounts_OAuth_Custom_Enable": "ເຮັດໃຫ້ສາມາດ", "Accounts_OAuth_Custom_id": "Id", @@ -423,6 +425,8 @@ "CAS_autoclose": "Autoclose Login Popup", "CAS_base_url": "SSO ຖານ URL", "CAS_base_url_Description": "URL ຖານຂອງບໍລິການ SSO ພາຍນອກຂອງທ່ານເຊັ່ນ: https: //ssoexample.undef/sso/", + "CAS_button_color": "ເຂົ້າສູ່ລະບົບປຸ່ມສີພື້ນຫລັງ", + "CAS_button_label_color": "ປຸ່ມເຂົ້າສູ່ລະບົບປຸ່ມສີຂຽວ", "CAS_button_label_text": "Login Button Label", "CAS_enabled": "Enabled", "CAS_Login_Layout": "CAS Login Layout", @@ -2791,4 +2795,4 @@ "registration.component.form.sendConfirmationEmail": "ສົ່ງອີເມວການຢືນຢັນ", "Enterprise": "Enterprise", "UpgradeToGetMore_engagement-dashboard_Title": "ການວິເຄາະ" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/lt.i18n.json b/packages/i18n/src/locales/lt.i18n.json index c454d6b3f883c..16a99624534e3 100644 --- a/packages/i18n/src/locales/lt.i18n.json +++ b/packages/i18n/src/locales/lt.i18n.json @@ -90,6 +90,8 @@ "Accounts_OAuth_Apple": "Prisijunkite su \"Apple", "Accounts_OAuth_Custom_Authorize_Path": "Leisti kelią", "Accounts_OAuth_Custom_Avatar_Field": "Avataro laukas", + "Accounts_OAuth_Custom_Button_Color": "Mygtuko spalva", + "Accounts_OAuth_Custom_Button_Label_Color": "Mygtuko teksto spalva", "Accounts_OAuth_Custom_Button_Label_Text": "Mygtuko tekstas", "Accounts_OAuth_Custom_Email_Field": "El. pašto laukas", "Accounts_OAuth_Custom_Enable": "Įgalinti", @@ -462,6 +464,8 @@ "CAS_autoclose": "Autoclose Login popup", "CAS_base_url": "SSO bazinis URL", "CAS_base_url_Description": "Jūsų išorės SSO bazės URL, pvz .: https: //sso.example.undef/sso/", + "CAS_button_color": "Prisijungimo mygtukas fono spalva", + "CAS_button_label_color": "Prisijungti mygtukas Teksto spalva", "CAS_button_label_text": "Prisijungimo mygtuko etiketė", "CAS_enabled": "Įjungtas", "CAS_Login_Layout": "CAS prisijungimo išdėstymas", @@ -2809,4 +2813,4 @@ "registration.component.form.sendConfirmationEmail": "Siųsti patvirtinimo el. Laišką", "Enterprise": "Įmonė", "UpgradeToGetMore_engagement-dashboard_Title": "\"Analytics\"" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/lv.i18n.json b/packages/i18n/src/locales/lv.i18n.json index 21a829482cc9d..f316ee4f18ff2 100644 --- a/packages/i18n/src/locales/lv.i18n.json +++ b/packages/i18n/src/locales/lv.i18n.json @@ -75,6 +75,8 @@ "Accounts_LoginExpiration": "Pieteikšanās termiņš dienās", "Accounts_ManuallyApproveNewUsers": "Manuāli apstiprināt jaunus lietotājus", "Accounts_OAuth_Custom_Authorize_Path": "Atļaut ceļu", + "Accounts_OAuth_Custom_Button_Color": "Pogas krāsa", + "Accounts_OAuth_Custom_Button_Label_Color": "Pogas teksta krāsa", "Accounts_OAuth_Custom_Button_Label_Text": "Pogas teksts", "Accounts_OAuth_Custom_Enable": "Iespējot", "Accounts_OAuth_Custom_id": "Id", @@ -416,6 +418,8 @@ "CAS_autoclose": "Automātiski aizvērt pieteikšanās uznirstošo logu", "CAS_base_url": "SSO pamata URL", "CAS_base_url_Description": "Jūsu ārējā SSO pakalpojuma bāzes URL, piem.: https: //sso.example.undef/sso/", + "CAS_button_color": "Pieteikšanās pogas fona krāsa", + "CAS_button_label_color": "Pieteikšanās pogas teksta krāsa", "CAS_button_label_text": "Pieteikšanās pogas marķējums", "CAS_enabled": "Iespējots", "CAS_Login_Layout": "CAS pieteikšanās izkārtojums", @@ -2750,4 +2754,4 @@ "registration.component.form.sendConfirmationEmail": "Nosūtīt apstiprinājuma e-pastu", "Enterprise": "Uzņēmums", "UpgradeToGetMore_engagement-dashboard_Title": "Analītika" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/mn.i18n.json b/packages/i18n/src/locales/mn.i18n.json index e5da2737eda6e..aad1cb2b8829b 100644 --- a/packages/i18n/src/locales/mn.i18n.json +++ b/packages/i18n/src/locales/mn.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Өдөрт нэвтрэх хугацаа дуусна", "Accounts_ManuallyApproveNewUsers": "Шинэ хэрэглэгчийг гараар зөвшөөрөх", "Accounts_OAuth_Custom_Authorize_Path": "Path-ыг зөвшөөрөх", + "Accounts_OAuth_Custom_Button_Color": "Товч Өнгө", + "Accounts_OAuth_Custom_Button_Label_Color": "Button Текст Өнгө", "Accounts_OAuth_Custom_Button_Label_Text": "Товчлуурын текст", "Accounts_OAuth_Custom_Enable": "Бататгах", "Accounts_OAuth_Custom_id": "Id", @@ -406,6 +408,8 @@ "CAS_autoclose": "Autoclose Login Login", "CAS_base_url": "SSO үндсэн URL", "CAS_base_url_Description": "Таны гадаад SSO үйлчилгээний үндсэн URL жишээ нь: https: //sso.example.undef/sso/", + "CAS_button_color": "Нэвтрэх Түлхүүр үгний өнгө", + "CAS_button_label_color": "Нэвтрэх товч Текст Өнгө", "CAS_button_label_text": "Нэвтрэх товчны шошго", "CAS_enabled": "Идэвхжүүлсэн", "CAS_Login_Layout": "CAS нэвтрэх бичлэг", @@ -2743,4 +2747,4 @@ "registration.component.form.sendConfirmationEmail": "Баталгаажуулах имэйл илгээх", "Enterprise": "Аж ахуйн нэгж", "UpgradeToGetMore_engagement-dashboard_Title": "Аналитик" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/ms-MY.i18n.json b/packages/i18n/src/locales/ms-MY.i18n.json index 9774a11fbc9ca..b62ff81cae20d 100644 --- a/packages/i18n/src/locales/ms-MY.i18n.json +++ b/packages/i18n/src/locales/ms-MY.i18n.json @@ -70,6 +70,8 @@ "Accounts_LoginExpiration": "Tamat Tempoh Masuk dalam Days", "Accounts_ManuallyApproveNewUsers": "Secara manual meluluskan pengguna baru", "Accounts_OAuth_Custom_Authorize_Path": "Authorize Path", + "Accounts_OAuth_Custom_Button_Color": "Butang Warna", + "Accounts_OAuth_Custom_Button_Label_Color": "Butang Teks Berwarna", "Accounts_OAuth_Custom_Button_Label_Text": "Butang Teks", "Accounts_OAuth_Custom_Enable": "Aktifkan", "Accounts_OAuth_Custom_id": "Id", @@ -406,6 +408,8 @@ "CAS_autoclose": "Autoclose Login Popup", "CAS_base_url": "URL Asas SSO", "CAS_base_url_Description": "URL asas perkhidmatan SSO luaran anda misalnya: https: //sso.example.undef/sso/", + "CAS_button_color": "Log Masuk Warna Latar Belakang", + "CAS_button_label_color": "Log masuk Warna Teks Butang", "CAS_button_label_text": "Label Button Masuk", "CAS_enabled": "Dihidupkan", "CAS_Login_Layout": "Tata Masuk Masuk CAS", @@ -2758,4 +2762,4 @@ "registration.component.form.sendConfirmationEmail": "Hantar e-mel pengesahan", "Enterprise": "Enterprise", "UpgradeToGetMore_engagement-dashboard_Title": "Analisis" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/nl.i18n.json b/packages/i18n/src/locales/nl.i18n.json index 36a73a1957b38..6781da3d4a2ab 100644 --- a/packages/i18n/src/locales/nl.i18n.json +++ b/packages/i18n/src/locales/nl.i18n.json @@ -96,6 +96,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Parameternaam voor toegangstoken", "Accounts_OAuth_Custom_Authorize_Path": "Machtigen Locatie", "Accounts_OAuth_Custom_Avatar_Field": "Avatarveld", + "Accounts_OAuth_Custom_Button_Color": "Knop kleur", + "Accounts_OAuth_Custom_Button_Label_Color": "Knop Tekst Kleur", "Accounts_OAuth_Custom_Button_Label_Text": "Knop Tekst", "Accounts_OAuth_Custom_Channel_Admin": "User Data Group Map", "Accounts_OAuth_Custom_Channel_Map": "OAuth Groep Channel Karrt", @@ -734,6 +736,8 @@ "CAS_autoclose": "Inlogpop-up automatisch sluiten", "CAS_base_url": "SSO-basis-URL", "CAS_base_url_Description": "De basis-URL van uw externe SSO-service, bijvoorbeeld: `https://sso.example.undef/sso/`", + "CAS_button_color": "Achtergrondkleur inlogknop", + "CAS_button_label_color": "Tekstkleur inlogknop", "CAS_button_label_text": "Label inlogknop", "CAS_Creation_User_Enabled": "Aanmaak van gebruikers toestaan", "CAS_Creation_User_Enabled_Description": "Sta het maken van CAS-gebruikers toe op basis van gegevens die verstrekt zijn door het CAS-ticket.", diff --git a/packages/i18n/src/locales/nn.i18n.json b/packages/i18n/src/locales/nn.i18n.json index c742c890a470f..ddcba4eb3d009 100644 --- a/packages/i18n/src/locales/nn.i18n.json +++ b/packages/i18n/src/locales/nn.i18n.json @@ -135,6 +135,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Parameternavn for \"access token\"", "Accounts_OAuth_Custom_Authorize_Path": "Godkjenn sti", "Accounts_OAuth_Custom_Avatar_Field": "Avatarfelt", + "Accounts_OAuth_Custom_Button_Color": "Knappfarge", + "Accounts_OAuth_Custom_Button_Label_Color": "Knapptekstfarge", "Accounts_OAuth_Custom_Button_Label_Text": "Knapptekst", "Accounts_OAuth_Custom_Channel_Admin": "Brukerdatagruppekart", "Accounts_OAuth_Custom_Channel_Map": "OAuth gruppe Channel tildeling", @@ -854,6 +856,8 @@ "CAS_autoclose": "Autoclose Login Popup", "CAS_base_url": "SSO Base URL", "CAS_base_url_Description": "URLen til din eksterne SSO-tjeneste, for eksempel: https: //sso.example.undef/sso/", + "CAS_button_color": "Innloggingsknapp Bakgrunnsfarge", + "CAS_button_label_color": "Innloggingsknapp Tekstfarge", "CAS_button_label_text": "Innloggingsknappetikett", "CAS_enabled": "aktivert", "CAS_Login_Layout": "CAS-innloggingslayout", diff --git a/packages/i18n/src/locales/no.i18n.json b/packages/i18n/src/locales/no.i18n.json index 2cba71198d453..4186115e9c352 100644 --- a/packages/i18n/src/locales/no.i18n.json +++ b/packages/i18n/src/locales/no.i18n.json @@ -135,6 +135,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Parameternavn for \"access token\"", "Accounts_OAuth_Custom_Authorize_Path": "Godkjenn sti", "Accounts_OAuth_Custom_Avatar_Field": "Avatarfelt", + "Accounts_OAuth_Custom_Button_Color": "Knappfarge", + "Accounts_OAuth_Custom_Button_Label_Color": "Knapptekstfarge", "Accounts_OAuth_Custom_Button_Label_Text": "Knapptekst", "Accounts_OAuth_Custom_Channel_Admin": "Brukerdatagruppekart", "Accounts_OAuth_Custom_Channel_Map": "OAuth gruppe Channel tildeling", @@ -854,6 +856,8 @@ "CAS_autoclose": "Autoclose Login Popup", "CAS_base_url": "SSO Base URL", "CAS_base_url_Description": "URLen til din eksterne SSO-tjeneste, for eksempel: https: //sso.example.undef/sso/", + "CAS_button_color": "Innloggingsknapp Bakgrunnsfarge", + "CAS_button_label_color": "Innloggingsknapp Tekstfarge", "CAS_button_label_text": "Innloggingsknappetikett", "CAS_enabled": "aktivert", "CAS_Login_Layout": "CAS-innloggingslayout", diff --git a/packages/i18n/src/locales/pl.i18n.json b/packages/i18n/src/locales/pl.i18n.json index 400bc8a23a3db..2fbf024c4b5f8 100644 --- a/packages/i18n/src/locales/pl.i18n.json +++ b/packages/i18n/src/locales/pl.i18n.json @@ -141,6 +141,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Nazwa parametru dla tokena dostępu", "Accounts_OAuth_Custom_Authorize_Path": "Ścieżka autoryzacji", "Accounts_OAuth_Custom_Avatar_Field": "Pole awatara", + "Accounts_OAuth_Custom_Button_Color": "Kolor przycisku", + "Accounts_OAuth_Custom_Button_Label_Color": "Kolor tekstu przycisku", "Accounts_OAuth_Custom_Button_Label_Text": "Tekst przycisku", "Accounts_OAuth_Custom_Channel_Admin": "Mapa grupy danych użytkownika", "Accounts_OAuth_Custom_Channel_Map": "Mapowanie OAuth Group Channel", @@ -856,6 +858,8 @@ "CAS_autoclose": "Automatycznie zamykaj okienko logowania", "CAS_base_url": "Podstawowy adres URL SSO", "CAS_base_url_Description": "Podstawowy adres URL zewnętrznej usługi SSO, np.: `https://sso.example.undef/sso/`", + "CAS_button_color": "Kolor tła przycisku logowania", + "CAS_button_label_color": "Kolor tekstu przycisku logowania", "CAS_button_label_text": "Etykieta przycisku logowania", "CAS_Creation_User_Enabled": "Zezwalaj na tworzenie użytkowników", "CAS_Creation_User_Enabled_Description": "Zezwalaj na tworzenie użytkowników CAS na podstawie danych dostarczonych przez zgłoszenie CAS.", diff --git a/packages/i18n/src/locales/pt-BR.i18n.json b/packages/i18n/src/locales/pt-BR.i18n.json index d1464dac6ba03..e0f71c0ff44c6 100644 --- a/packages/i18n/src/locales/pt-BR.i18n.json +++ b/packages/i18n/src/locales/pt-BR.i18n.json @@ -117,6 +117,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Nome do parâmetro para token de acesso", "Accounts_OAuth_Custom_Authorize_Path": "Path de autorização", "Accounts_OAuth_Custom_Avatar_Field": "Campo do avatar", + "Accounts_OAuth_Custom_Button_Color": "Cor do botão", + "Accounts_OAuth_Custom_Button_Label_Color": "Cor do texto do botão", "Accounts_OAuth_Custom_Button_Label_Text": "Texto do botão", "Accounts_OAuth_Custom_Channel_Admin": "Mapa do grupo de dados do usuário", "Accounts_OAuth_Custom_Channel_Map": "Mapa do canal do grupo OAuth", @@ -784,6 +786,8 @@ "CAS_autoclose": "Fechar a janela de login automaticamente", "CAS_base_url": "URL Base SSO", "CAS_base_url_Description": "O URL base do seu serviço SSO externo, por exemplo: https: //sso.example.undef/sso/", + "CAS_button_color": "Cor de fundo do botão de login", + "CAS_button_label_color": "Cor de texto do botão de login", "CAS_button_label_text": "Nome do botão de login", "CAS_Creation_User_Enabled": "Permite criação de usuário", "CAS_Creation_User_Enabled_Description": "Permite criação de usuário CAS a partir dos dados fornecidos pelo ticket CAS.", @@ -5052,4 +5056,4 @@ "Enterprise": "Enterprise", "UpgradeToGetMore_engagement-dashboard_Title": "Analytics", "UpgradeToGetMore_auditing_Title": "Auditoria de mensagem" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/pt.i18n.json b/packages/i18n/src/locales/pt.i18n.json index b7c60bac8f9f4..bd3c2dda458ca 100644 --- a/packages/i18n/src/locales/pt.i18n.json +++ b/packages/i18n/src/locales/pt.i18n.json @@ -90,6 +90,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Nome do parâmetro para token de acesso", "Accounts_OAuth_Custom_Authorize_Path": "Caminho da autorização", "Accounts_OAuth_Custom_Avatar_Field": "Campo de Avatar", + "Accounts_OAuth_Custom_Button_Color": "Cor do botão", + "Accounts_OAuth_Custom_Button_Label_Color": "Cor do texto do botão", "Accounts_OAuth_Custom_Button_Label_Text": "Texto do botão", "Accounts_OAuth_Custom_Enable": "Activar", "Accounts_OAuth_Custom_id": "Id", @@ -513,6 +515,8 @@ "CAS_autoclose": "Saída Automática do registo", "CAS_base_url": "URL Base SSO", "CAS_base_url_Description": "O URL base do seu serviço SSO externo, por exemplo: https: //sso.example.undef/sso/", + "CAS_button_color": "Cor de fundo do botão de login", + "CAS_button_label_color": "Cor de texto do botão de login", "CAS_button_label_text": "Nome do botão de registo", "CAS_enabled": "Habilitado", "CAS_Login_Layout": "CAS Login Layout", @@ -3172,4 +3176,4 @@ "registration.component.form.sendConfirmationEmail": "Enviar email de confirmação", "Enterprise": "Empreendimento", "UpgradeToGetMore_engagement-dashboard_Title": "Analytics" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/ro.i18n.json b/packages/i18n/src/locales/ro.i18n.json index 91292eb1f44ee..41bb29ed88286 100644 --- a/packages/i18n/src/locales/ro.i18n.json +++ b/packages/i18n/src/locales/ro.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Autentificarea expiră (în zile)", "Accounts_ManuallyApproveNewUsers": "Aprobarea manuală a noilor utilizatori", "Accounts_OAuth_Custom_Authorize_Path": "Authorize Path", + "Accounts_OAuth_Custom_Button_Color": "Culoare buton", + "Accounts_OAuth_Custom_Button_Label_Color": "Culoare buton text", "Accounts_OAuth_Custom_Button_Label_Text": "Text buton", "Accounts_OAuth_Custom_Enable": "Activează", "Accounts_OAuth_Custom_id": "Id-ul", @@ -407,6 +409,8 @@ "CAS_autoclose": "Autoclose Login Popup", "CAS_base_url": "SSO URL de bază", "CAS_base_url_Description": "Adresa URL de bază a serviciului SSO extern, de exemplu: https: //sso.example.undef/sso/", + "CAS_button_color": "Culoarea de fundal a butonului de conectare", + "CAS_button_label_color": "Butonul Culoare text de conectare", "CAS_button_label_text": "Etichetă pentru butonul de conectare", "CAS_enabled": "Activat", "CAS_Login_Layout": "CAS Login Layout", @@ -2748,4 +2752,4 @@ "registration.component.form.sendConfirmationEmail": "Trimite email de confirmare", "Enterprise": "Afacere", "UpgradeToGetMore_engagement-dashboard_Title": "Analytics" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/ru.i18n.json b/packages/i18n/src/locales/ru.i18n.json index d425326a00b1f..76e84acd36a4c 100644 --- a/packages/i18n/src/locales/ru.i18n.json +++ b/packages/i18n/src/locales/ru.i18n.json @@ -117,6 +117,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Имя параметра для токена доступа", "Accounts_OAuth_Custom_Authorize_Path": "Путь к авторизации", "Accounts_OAuth_Custom_Avatar_Field": "Аватар", + "Accounts_OAuth_Custom_Button_Color": "Цвет кнопки", + "Accounts_OAuth_Custom_Button_Label_Color": "Цвет текста кнопки", "Accounts_OAuth_Custom_Button_Label_Text": "Текст кнопки", "Accounts_OAuth_Custom_Channel_Admin": "Карта группы пользовательских данных", "Accounts_OAuth_Custom_Channel_Map": "Сопоставление групп и каналов OAuth", @@ -846,6 +848,8 @@ "CAS_autoclose": "Автозакрытие всплывающего окна авторизации", "CAS_base_url": "SSO базовый URL", "CAS_base_url_Description": "Базовый URL вашего внешнего сервиса SSO. Например: `https://sso.example.undef/sso/`", + "CAS_button_color": "Цвет фона кнопки входа", + "CAS_button_label_color": "Цвет текста кнопки входа", "CAS_button_label_text": "Текст кнопки входа", "CAS_Creation_User_Enabled": "Разрешить создание пользователя", "CAS_Creation_User_Enabled_Description": "Разрешить создание пользователя CAS из данных, предоставленных билетом CAS.", @@ -5085,4 +5089,4 @@ "Enterprise": "Корпорация", "UpgradeToGetMore_engagement-dashboard_Title": "Аналитика", "UpgradeToGetMore_auditing_Title": "Аудит сообщений" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/se.i18n.json b/packages/i18n/src/locales/se.i18n.json index 93f70c85a8a65..a0cd0cda6f989 100644 --- a/packages/i18n/src/locales/se.i18n.json +++ b/packages/i18n/src/locales/se.i18n.json @@ -142,6 +142,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Param Name for access token", "Accounts_OAuth_Custom_Authorize_Path": "Authorize Path", "Accounts_OAuth_Custom_Avatar_Field": "Avatar field", + "Accounts_OAuth_Custom_Button_Color": "Button Color", + "Accounts_OAuth_Custom_Button_Label_Color": "Button Text Color", "Accounts_OAuth_Custom_Button_Label_Text": "Button Text", "Accounts_OAuth_Custom_Channel_Admin": "User Data Group Map", "Accounts_OAuth_Custom_Channel_Map": "OAuth Group Channel Map", @@ -945,6 +947,8 @@ "CAS_autoclose": "Autoclose Login Popup", "CAS_base_url": "SSO Base URL", "CAS_base_url_Description": "The base URL of your external SSO service e.g: `https://sso.example.undef/sso/`", + "CAS_button_color": "Login Button Background Color", + "CAS_button_label_color": "Login Button Text Color", "CAS_button_label_text": "Login Button Label", "CAS_Creation_User_Enabled": "Allow user creation", "CAS_Creation_User_Enabled_Description": "Allow CAS User creation from data provided by the CAS ticket.", diff --git a/packages/i18n/src/locales/sk-SK.i18n.json b/packages/i18n/src/locales/sk-SK.i18n.json index 32108e468698d..fe53212bc8e08 100644 --- a/packages/i18n/src/locales/sk-SK.i18n.json +++ b/packages/i18n/src/locales/sk-SK.i18n.json @@ -73,6 +73,8 @@ "Accounts_LoginExpiration": "Dĺžka platnosti prihlásenia v dňoch", "Accounts_ManuallyApproveNewUsers": "Ručne schváľte nových používateľov", "Accounts_OAuth_Custom_Authorize_Path": "Povoliť cestu", + "Accounts_OAuth_Custom_Button_Color": "Farba tlačidla", + "Accounts_OAuth_Custom_Button_Label_Color": "Farba textu tlačidla", "Accounts_OAuth_Custom_Button_Label_Text": "Text tlačidla", "Accounts_OAuth_Custom_Enable": "Povoliť", "Accounts_OAuth_Custom_id": "ID", @@ -413,6 +415,8 @@ "CAS_autoclose": "Vyskakovacie okno automatického zatvorenia", "CAS_base_url": "Základná adresa URL pre SSO", "CAS_base_url_Description": "Základná adresa URL vašej externej služby SSO, napr .: `https://sso.example.undef/sso/`", + "CAS_button_color": "Farba pozadia prihlasovacieho tlačidla", + "CAS_button_label_color": "Farba textu prihlasovacieho tlačidla", "CAS_button_label_text": "Označenie prihlasovacieho tlačidla", "CAS_enabled": "Povolený", "CAS_Login_Layout": "Rozloženie prihlasovania CAS", @@ -2760,4 +2764,4 @@ "registration.component.form.sendConfirmationEmail": "Pošlite potvrdzovací e-mail", "Enterprise": "podnik", "UpgradeToGetMore_engagement-dashboard_Title": "Analytika" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/sl-SI.i18n.json b/packages/i18n/src/locales/sl-SI.i18n.json index 0051e8239706f..46710fdd45fa8 100644 --- a/packages/i18n/src/locales/sl-SI.i18n.json +++ b/packages/i18n/src/locales/sl-SI.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Prijava bo potekla v nekaj dneh", "Accounts_ManuallyApproveNewUsers": "Ročno potrdi nove uporabnike", "Accounts_OAuth_Custom_Authorize_Path": "Dovoli pot", + "Accounts_OAuth_Custom_Button_Color": "Barva gumba", + "Accounts_OAuth_Custom_Button_Label_Color": "Barva gumba za besedilo", "Accounts_OAuth_Custom_Button_Label_Text": "Gumb za besedilo", "Accounts_OAuth_Custom_Enable": "Omogoči", "Accounts_OAuth_Custom_id": "Id", @@ -405,6 +407,8 @@ "CAS_autoclose": "Samodejno zapri pojavno okno za vpis", "CAS_base_url": "SSO osnovni URL", "CAS_base_url_Description": "Osnovni URL vaše zunanje storitve SSO npr.: `https://sso.example.undef/sso/`", + "CAS_button_color": "Barva ozadja gumba za prijavo", + "CAS_button_label_color": "Barva besedila gumba za prijavo", "CAS_button_label_text": "Oznaka gumba za prijavo", "CAS_enabled": "Omogočeno", "CAS_Login_Layout": "Postavitev CAS pri vpisu", @@ -2740,4 +2744,4 @@ "registration.component.form.sendConfirmationEmail": "Pošlji potrditveno e-poštno sporočilo", "Enterprise": "Podjetje", "UpgradeToGetMore_engagement-dashboard_Title": "Analiza" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/sq.i18n.json b/packages/i18n/src/locales/sq.i18n.json index 6fce289fac91b..342ea7e9ea319 100644 --- a/packages/i18n/src/locales/sq.i18n.json +++ b/packages/i18n/src/locales/sq.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "Përfundimi Login në Ditët", "Accounts_ManuallyApproveNewUsers": "Dorë Miratimi Përdoruesit reja", "Accounts_OAuth_Custom_Authorize_Path": "autorizojë Path", + "Accounts_OAuth_Custom_Button_Color": "Button Color", + "Accounts_OAuth_Custom_Button_Label_Color": "Button Text Color", "Accounts_OAuth_Custom_Button_Label_Text": "Button Text", "Accounts_OAuth_Custom_Enable": "mundësoj", "Accounts_OAuth_Custom_id": "Id", @@ -407,6 +409,8 @@ "CAS_autoclose": "Autoclose Login Popup", "CAS_base_url": "URL bazë e SSO", "CAS_base_url_Description": "URL-ja bazë e shërbimit tuaj të jashtëm të SSO-së: https: //sso.example.undef/sso/", + "CAS_button_color": "Butoni i hyrjes Historiku i ngjyrës", + "CAS_button_label_color": "Butoni i identifikimit Ngjyra e tekstit", "CAS_button_label_text": "Etiketa e butonit të identifikimit", "CAS_enabled": "enabled", "CAS_Login_Layout": "CAS Layout Hyrje", @@ -2749,4 +2753,4 @@ "registration.component.form.sendConfirmationEmail": "Dërgo email konfirmimi", "Enterprise": "Ndërmarrje", "UpgradeToGetMore_engagement-dashboard_Title": "Analitikë" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/sr.i18n.json b/packages/i18n/src/locales/sr.i18n.json index a2d5fa916d23c..a483c6be75f5b 100644 --- a/packages/i18n/src/locales/sr.i18n.json +++ b/packages/i18n/src/locales/sr.i18n.json @@ -58,6 +58,8 @@ "Accounts_LoginExpiration": "Истек пријаве у данима", "Accounts_ManuallyApproveNewUsers": "Ручно одобри нове кориснике", "Accounts_OAuth_Custom_Authorize_Path": "Путања ауторизације", + "Accounts_OAuth_Custom_Button_Color": "Боја дугмета", + "Accounts_OAuth_Custom_Button_Label_Color": "Боја текста дугмета", "Accounts_OAuth_Custom_Button_Label_Text": "Текст дугмета", "Accounts_OAuth_Custom_Enable": "Омогући", "Accounts_OAuth_Custom_id": "Id", @@ -314,6 +316,8 @@ "CAS_autoclose": "Аутоцлосе Логин Попуп", "CAS_base_url": "База базе података ССО", "CAS_base_url_Description": "Основни УРЛ вашег спољног сервиса ССО: хттпс: //ссо.екампле.ундеф/ссо/", + "CAS_button_color": "Боја дугмета за пријављивање", + "CAS_button_label_color": "Боја текста дугмета за пријављивање", "CAS_enabled": "Омогућено", "CAS_Login_Layout": "Распоред пријаве ЦАС-а", "CAS_popup_height": "Пријава Попуп висина", @@ -2542,4 +2546,4 @@ "registration.component.form.sendConfirmationEmail": "Пошаљи потврдну поруку", "Enterprise": "Предузеће", "UpgradeToGetMore_engagement-dashboard_Title": "Аналитика" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/sv.i18n.json b/packages/i18n/src/locales/sv.i18n.json index fa9acc737e3a8..a46173af84d5b 100644 --- a/packages/i18n/src/locales/sv.i18n.json +++ b/packages/i18n/src/locales/sv.i18n.json @@ -118,6 +118,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Parameternamn för åtkomsttoken", "Accounts_OAuth_Custom_Authorize_Path": "Tillåt sökväg", "Accounts_OAuth_Custom_Avatar_Field": "Avatarfält", + "Accounts_OAuth_Custom_Button_Color": "Knappfärg", + "Accounts_OAuth_Custom_Button_Label_Color": "Textfärg på knapp", "Accounts_OAuth_Custom_Button_Label_Text": "Knapptext", "Accounts_OAuth_Custom_Channel_Admin": "Mappning av användardatagrupp", "Accounts_OAuth_Custom_Channel_Map": "Kanalmappning för OAuth-grupp", @@ -862,6 +864,8 @@ "CAS_autoclose": "Stäng loginpopup automatiskt", "CAS_base_url": "SSO-basadress", "CAS_base_url_Description": "Basadressen till din externa SSO-tjänst, t ex: https: //sso.example.undef/sso/", + "CAS_button_color": "Inloggningsknapp bakgrundsfärg", + "CAS_button_label_color": "Textfärg på inloggningsknapp", "CAS_button_label_text": "Text på inloggningsknapp", "CAS_Creation_User_Enabled": "Tillåt skapande av användare", "CAS_Creation_User_Enabled_Description": "Tillåt skapande av CAS-användare utifrån data som tillhandahålls av CAS-förfrågan.", @@ -5736,4 +5740,4 @@ "Uninstall_grandfathered_app": "Avinstallera {{appName}}?", "Enterprise": "Enterprise", "UpgradeToGetMore_engagement-dashboard_Title": "Analytics" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/ta-IN.i18n.json b/packages/i18n/src/locales/ta-IN.i18n.json index 4f60aa48d2fe3..83f1d0726a679 100644 --- a/packages/i18n/src/locales/ta-IN.i18n.json +++ b/packages/i18n/src/locales/ta-IN.i18n.json @@ -71,6 +71,8 @@ "Accounts_LoginExpiration": "டேஸ் காலாவதி தேதி", "Accounts_ManuallyApproveNewUsers": "கைமுறையாக புதிய பயனர்களுக்கு ஒப்புதல்", "Accounts_OAuth_Custom_Authorize_Path": "பாதை அங்கீகரி", + "Accounts_OAuth_Custom_Button_Color": "பட்டன் கலர்", + "Accounts_OAuth_Custom_Button_Label_Color": "பட்டன் உரை வண்ணம்", "Accounts_OAuth_Custom_Button_Label_Text": "பட்டன் உரை", "Accounts_OAuth_Custom_Enable": "இயக்கு", "Accounts_OAuth_Custom_id": "அடையாளம்", @@ -407,6 +409,8 @@ "CAS_autoclose": "புகுபதிகை மேல்மீட்பு", "CAS_base_url": "SSO அடிப்படை URL", "CAS_base_url_Description": "உங்கள் வெளிப்புற SSO சேவையின் அடிப்படை URL எ.கா .: https: //sso.example.undef/sso/", + "CAS_button_color": "பொத்தானை பின்னணி நிறம் உள்நுழைய", + "CAS_button_label_color": "தேதி பட்டன் உரை வண்ணம்", "CAS_button_label_text": "உள்நுழை பட்டன் லேபிள்", "CAS_enabled": "இயக்கப்பட்டது", "CAS_Login_Layout": "CAS தேதி லேஅவுட்", @@ -2752,4 +2756,4 @@ "registration.component.form.sendConfirmationEmail": "உறுதிப்படுத்தும் மின்னஞ்சல் அனுப்பவும்", "Enterprise": "நிறுவன", "UpgradeToGetMore_engagement-dashboard_Title": "அனலிட்டிக்ஸ்" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/th-TH.i18n.json b/packages/i18n/src/locales/th-TH.i18n.json index 3859442e5eb3e..0f5c7de06fe0e 100644 --- a/packages/i18n/src/locales/th-TH.i18n.json +++ b/packages/i18n/src/locales/th-TH.i18n.json @@ -70,6 +70,8 @@ "Accounts_LoginExpiration": "การเข้าระบบมีอายุเป็นจำนวนวัน", "Accounts_ManuallyApproveNewUsers": "ตรวจสอบผู้ใช้ใหม่ด้วยมือ", "Accounts_OAuth_Custom_Authorize_Path": "Authorize Path", + "Accounts_OAuth_Custom_Button_Color": "สีของปุ่ม", + "Accounts_OAuth_Custom_Button_Label_Color": "สีของตัวหนังสือบนปุ่ม", "Accounts_OAuth_Custom_Button_Label_Text": "ตัวหนังสือบนปุ่ม", "Accounts_OAuth_Custom_Enable": "เปิดใช้งาน", "Accounts_OAuth_Custom_id": "Id", @@ -406,6 +408,8 @@ "CAS_autoclose": "ทำให้ป๊อปอัปเข้าสู่ระบบถูกปิดกั้น", "CAS_base_url": "URL ฐานข้อมูล SSO", "CAS_base_url_Description": "URL พื้นฐานของบริการ SSO ภายนอกของคุณเช่น https: //sso.example.undef/sso/", + "CAS_button_color": "สีพื้นหลังปุ่มล็อกอินเข้าสู่ระบบ", + "CAS_button_label_color": "สีข้อความปุ่มเข้าสู่ระบบ", "CAS_button_label_text": "ป้ายชื่อปุ่มเข้าสู่ระบบ", "CAS_enabled": "เปิดการใช้งาน", "CAS_Login_Layout": "เค้าโครงการเข้าสู่ระบบ CAS", @@ -2738,4 +2742,4 @@ "registration.component.form.sendConfirmationEmail": "ส่งอีเมลยืนยัน", "Enterprise": "องค์กร", "UpgradeToGetMore_engagement-dashboard_Title": "Analytics" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/tr.i18n.json b/packages/i18n/src/locales/tr.i18n.json index b3abaa6e6f04e..86385ed56b373 100644 --- a/packages/i18n/src/locales/tr.i18n.json +++ b/packages/i18n/src/locales/tr.i18n.json @@ -84,6 +84,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Erişim belirteci için Param adı", "Accounts_OAuth_Custom_Authorize_Path": "Yol Yetkilendirme", "Accounts_OAuth_Custom_Avatar_Field": "Avatar alanı", + "Accounts_OAuth_Custom_Button_Color": "Tuş Rengi", + "Accounts_OAuth_Custom_Button_Label_Color": "Tuş Metin Rengi", "Accounts_OAuth_Custom_Button_Label_Text": "Tuş Metni", "Accounts_OAuth_Custom_Enable": "Etkinleştir", "Accounts_OAuth_Custom_id": "Kimlik", @@ -496,6 +498,8 @@ "CAS_autoclose": "Giriş baloncuğunu otomatik kapat", "CAS_base_url": "SSO Temel URL", "CAS_base_url_Description": "Kullandığınız SSO servisinin temel URL'i. Ör: `https://sso.example.undef/sso/`", + "CAS_button_color": "Giriş butonu arka plan rengi", + "CAS_button_label_color": "Giriş butonu yazı rengi", "CAS_button_label_text": "Giriş butonu etiketi", "CAS_enabled": "Etkin", "CAS_Login_Layout": "CAS Giriş Düzeni", @@ -3260,4 +3264,4 @@ "RegisterWorkspace_Features_Omnichannel_Title": "Çoklu Kanal", "Enterprise": "Kuruluş", "UpgradeToGetMore_engagement-dashboard_Title": "Mantıksal Analiz" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/ug.i18n.json b/packages/i18n/src/locales/ug.i18n.json index 59812915df1ef..c177d0dfa0659 100644 --- a/packages/i18n/src/locales/ug.i18n.json +++ b/packages/i18n/src/locales/ug.i18n.json @@ -38,6 +38,8 @@ "Accounts_LoginExpiration": "كىرىش كۈچتىن قالغان ۋەقە", "Accounts_ManuallyApproveNewUsers": "يېڭى ئابونتنى ئاپتوماتسىز تەكشۈرۈش", "Accounts_OAuth_Custom_Authorize_Path": "نىڭ دەلىللەنگەن ئادرېسنى ئۆزلىكىدىن بېكىتىشOAuth ", + "Accounts_OAuth_Custom_Button_Color": "ئاستىنىڭ رەڭگى", + "Accounts_OAuth_Custom_Button_Label_Color": "ئاستى خېتىنىڭ رەڭگى", "Accounts_OAuth_Custom_Button_Label_Text": "ئاستى خېتى", "Accounts_OAuth_Custom_Enable": "ئىشلىتىشكە باشلىماق", "Accounts_OAuth_Custom_id": "ID تېرمىنال", @@ -1247,4 +1249,4 @@ "registration.component.form.confirmPassword": "مەخپىي نومۇرنى جەزملەشتۈرۈش", "registration.component.form.sendConfirmationEmail": "جەزملەشتۈرگەن ئىلخەت يوللاندى", "UpgradeToGetMore_engagement-dashboard_Title": "ئانالىز قىلىش" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/uk.i18n.json b/packages/i18n/src/locales/uk.i18n.json index d1841727b5a23..40f4f74bf8ae3 100644 --- a/packages/i18n/src/locales/uk.i18n.json +++ b/packages/i18n/src/locales/uk.i18n.json @@ -91,6 +91,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Назва Параметру для токена доступу", "Accounts_OAuth_Custom_Authorize_Path": "Шлях авторизації", "Accounts_OAuth_Custom_Avatar_Field": "Поле аватару", + "Accounts_OAuth_Custom_Button_Color": "колір кнопки", + "Accounts_OAuth_Custom_Button_Label_Color": "Колір тексту кнопки", "Accounts_OAuth_Custom_Button_Label_Text": "Текст кнопки", "Accounts_OAuth_Custom_Channel_Admin": "Карта групи даних користувачів", "Accounts_OAuth_Custom_Channel_Map": "Карта Channel групи OAuth", @@ -562,6 +564,8 @@ "CAS_autoclose": "Автозакриття спливаючого вікна логіну", "CAS_base_url": "Базова URL-адреса SSO", "CAS_base_url_Description": "Базова URL-адреса зовнішньої служби SSO, наприклад: https: //sso.example.undef/sso/", + "CAS_button_color": "Колір фону кнопки входу", + "CAS_button_label_color": "Колір тексту кнопки входу", "CAS_button_label_text": "Мітка кнопки входу", "CAS_enabled": "Увімкнено", "CAS_Login_Layout": "Стиль входу в CAS", @@ -3347,4 +3351,4 @@ "Enterprise": "Підприємство", "UpgradeToGetMore_engagement-dashboard_Title": "Аналітика", "UpgradeToGetMore_auditing_Title": "Аудит повідомлень" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/vi-VN.i18n.json b/packages/i18n/src/locales/vi-VN.i18n.json index e8950891b9d29..05df188f9c23b 100644 --- a/packages/i18n/src/locales/vi-VN.i18n.json +++ b/packages/i18n/src/locales/vi-VN.i18n.json @@ -91,6 +91,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "Tên Param cho mã thông báo truy cập", "Accounts_OAuth_Custom_Authorize_Path": "Đường dẫn ủy quyền (Authorize)", "Accounts_OAuth_Custom_Avatar_Field": "Lĩnh vực Avatar", + "Accounts_OAuth_Custom_Button_Color": "Màu của nút", + "Accounts_OAuth_Custom_Button_Label_Color": "Màu chữ của nút", "Accounts_OAuth_Custom_Button_Label_Text": "Màu chữ", "Accounts_OAuth_Custom_Channel_Admin": "Bản đồ nhóm dữ liệu người dùng", "Accounts_OAuth_Custom_Email_Field": "Trường email", @@ -502,6 +504,8 @@ "CAS_autoclose": "Tự động đăng nhập Đăng nhập", "CAS_base_url": "URL cơ sở của SSO", "CAS_base_url_Description": "URL cơ sở của dịch vụ SSO bên ngoài của bạn, ví dụ: https: //sso.example.undef/sso/", + "CAS_button_color": "Màu nền nút đăng nhập", + "CAS_button_label_color": "Màu văn bản của nút đăng nhập", "CAS_button_label_text": "Nhãn Nút Đăng nhập", "CAS_enabled": "Đã bật", "CAS_Login_Layout": "Giao diện đăng nhập CAS", @@ -2849,4 +2853,4 @@ "registration.component.form.sendConfirmationEmail": "Gửi email xác nhận", "Enterprise": "Doanh nghiệp", "UpgradeToGetMore_engagement-dashboard_Title": "phân tích" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/zh-HK.i18n.json b/packages/i18n/src/locales/zh-HK.i18n.json index 53aed0cc5a704..42fd9fb00919a 100644 --- a/packages/i18n/src/locales/zh-HK.i18n.json +++ b/packages/i18n/src/locales/zh-HK.i18n.json @@ -81,6 +81,8 @@ "Accounts_LoginExpiration": "登入過期日數", "Accounts_ManuallyApproveNewUsers": "手動審核新使用者", "Accounts_OAuth_Custom_Authorize_Path": "授權路徑", + "Accounts_OAuth_Custom_Button_Color": "按鈕顏色", + "Accounts_OAuth_Custom_Button_Label_Color": "按鈕文字顏色", "Accounts_OAuth_Custom_Button_Label_Text": "按鈕文字", "Accounts_OAuth_Custom_Enable": "啟用", "Accounts_OAuth_Custom_id": "ID", @@ -428,6 +430,8 @@ "CAS_autoclose": "自动关闭登录弹出窗口", "CAS_base_url": "SSO基本网址", "CAS_base_url_Description": "您的外部SSO服务的基本网址,例如:https://sso.example.undef/sso/", + "CAS_button_color": "登录按钮背景颜色", + "CAS_button_label_color": "登录按钮文本颜色", "CAS_button_label_text": "登录按钮标签", "CAS_enabled": "启用", "CAS_Login_Layout": "CAS登录布局", @@ -2773,4 +2777,4 @@ "registration.component.form.sendConfirmationEmail": "已发送确认电子邮件", "Enterprise": "企业", "UpgradeToGetMore_engagement-dashboard_Title": "分析" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/zh-TW.i18n.json b/packages/i18n/src/locales/zh-TW.i18n.json index 3bfd91d5fe9af..6dc853cb69e65 100644 --- a/packages/i18n/src/locales/zh-TW.i18n.json +++ b/packages/i18n/src/locales/zh-TW.i18n.json @@ -96,6 +96,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "存取 token 的參數名稱", "Accounts_OAuth_Custom_Authorize_Path": "授權路徑", "Accounts_OAuth_Custom_Avatar_Field": "大頭貼欄位", + "Accounts_OAuth_Custom_Button_Color": "按鈕顏色", + "Accounts_OAuth_Custom_Button_Label_Color": "按鈕文字顏色", "Accounts_OAuth_Custom_Button_Label_Text": "按鈕文字", "Accounts_OAuth_Custom_Channel_Admin": "使用者資料群組對應", "Accounts_OAuth_Custom_Channel_Map": "OAuth 群組對應 Channel", @@ -725,6 +727,8 @@ "CAS_autoclose": "自動關閉登入彈出視窗", "CAS_base_url": "SSO 基本網址", "CAS_base_url_Description": "您的外部SSO服務的基本網址,例如:https://sso.example.undef/sso/", + "CAS_button_color": "登入按鈕背景色", + "CAS_button_label_color": "登入按鈕文字顏色", "CAS_button_label_text": "登入按鈕標籤", "CAS_Creation_User_Enabled": "允許使用者建立", "CAS_Creation_User_Enabled_Description": "允許從 CAS 憑單提供的資料建立 CAS 使用者。", @@ -4572,4 +4576,4 @@ "Enterprise": "企業", "UpgradeToGetMore_engagement-dashboard_Title": "分析", "UpgradeToGetMore_auditing_Title": "訊息稽核" -} +} \ No newline at end of file diff --git a/packages/i18n/src/locales/zh.i18n.json b/packages/i18n/src/locales/zh.i18n.json index db503aa45d520..31ba47b5f279d 100644 --- a/packages/i18n/src/locales/zh.i18n.json +++ b/packages/i18n/src/locales/zh.i18n.json @@ -93,6 +93,8 @@ "Accounts_OAuth_Custom_Access_Token_Param": "访问令牌参数名称", "Accounts_OAuth_Custom_Authorize_Path": "授权路径", "Accounts_OAuth_Custom_Avatar_Field": "头像字段", + "Accounts_OAuth_Custom_Button_Color": "按钮颜色", + "Accounts_OAuth_Custom_Button_Label_Color": "按钮文字颜色", "Accounts_OAuth_Custom_Button_Label_Text": "按钮文本", "Accounts_OAuth_Custom_Channel_Admin": "用户数据组映射", "Accounts_OAuth_Custom_Channel_Map": "OAuth 组频道映射", @@ -642,6 +644,8 @@ "CAS_autoclose": "自动关闭登录窗口", "CAS_base_url": "SSO 基本 URL", "CAS_base_url_Description": "外部 SSO 服务的基本 URL,例如:`https://sso.example.undef/sso/`", + "CAS_button_color": "登录按钮背景颜色", + "CAS_button_label_color": "登录按钮文字颜色", "CAS_button_label_text": "登录按钮标签", "CAS_Creation_User_Enabled": "允许创建用户", "CAS_Creation_User_Enabled_Description": "允许从 CAS 单据数据创建 CAS 用户", @@ -4131,4 +4135,4 @@ "Enterprise": "企业", "UpgradeToGetMore_engagement-dashboard_Title": "分析", "UpgradeToGetMore_auditing_Title": "消息审计" -} +} \ No newline at end of file