joomlagerman / joomla

The J!German translation team provides German translation for Joomla!
https://www.jgerman.de
GNU General Public License v2.0
25 stars 46 forks source link

[5.x] Template color scheme configuration #3129

Closed heelc29 closed 6 months ago

heelc29 commented 6 months ago

https://github.com/joomla/joomla-cms/pull/42221

Click to expand the diff! ```diff diff --git a/administrator/language/en-GB/com_users.ini b/administrator/language/en-GB/com_users.ini index 723b24fe7a63b..16f622a8c5871 100644 --- a/administrator/language/en-GB/com_users.ini +++ b/administrator/language/en-GB/com_users.ini @@ -399,6 +399,10 @@ COM_USERS_USER_BACKUPCODES_CAPTIVE_PROMPT="If you do not have access to your usu COM_USERS_USER_BACKUPCODES_DESC="Lets you access the site if all other Multi-factor Authentication methods you have set up fail." COM_USERS_USER_BATCH_FAILED="An error was encountered while performing the batch operation: %s." COM_USERS_USER_BATCH_SUCCESS="Batch operation completed." +COM_USERS_USER_COLORSCHEME_LABEL="Dark Mode" +COM_USERS_USER_COLORSCHEME_OPTION_DARK="Use Dark color scheme" +COM_USERS_USER_COLORSCHEME_OPTION_FOLLOW_OS="Follow OS settings" +COM_USERS_USER_COLORSCHEME_OPTION_LIGHT="Use Light color scheme" COM_USERS_USER_FIELD_BACKEND_LANGUAGE_LABEL="Backend Language" COM_USERS_USER_FIELD_BACKEND_TEMPLATE_LABEL="Backend Template Style" COM_USERS_USER_FIELD_BLOCK="Blocked" diff --git a/administrator/language/en-GB/mod_user.ini b/administrator/language/en-GB/mod_user.ini index 16ccdf2eaa2d2..c68f66b4005ac 100644 --- a/administrator/language/en-GB/mod_user.ini +++ b/administrator/language/en-GB/mod_user.ini @@ -8,4 +8,6 @@ MOD_USER_ACCESSIBILITY_SETTINGS="Accessibility Settings" MOD_USER_EDIT_ACCOUNT="Edit Account" MOD_USER_MENU="User Menu" MOD_USER_TITLE="Signed in as %s" +MOD_USER_LIGHT_MODE="Light Mode" +MOD_USER_DARK_MODE="Dark Mode" MOD_USER_XML_DESCRIPTION="This module shows the User Menu and is intended to be displayed in the 'status' position." diff --git a/administrator/language/en-GB/tpl_atum.ini b/administrator/language/en-GB/tpl_atum.ini index 99f5348503dea..0cf1c38ac75bd 100644 --- a/administrator/language/en-GB/tpl_atum.ini +++ b/administrator/language/en-GB/tpl_atum.ini @@ -6,6 +6,10 @@ ATUM="Atum Administrator template" TPL_ATUM_BACK_TO_CONTROL_PANEL="Back to Dashboard" TPL_ATUM_BACKEND_LOGIN="Joomla Administrator Login" +TPL_ATUM_COLORSCHEME_LABEL="Dark Mode" +TPL_ATUM_COLORSCHEME_OPTION_DARK="Use Dark color scheme" +TPL_ATUM_COLORSCHEME_OPTION_FOLLOW_OS="Follow OS settings" +TPL_ATUM_COLORSCHEME_OPTION_LIGHT="Use Light color scheme" TPL_ATUM_COLORS_HUE="Choose your hue value for the dark template colour" TPL_ATUM_COLORS_SETTINGS_BG_LIGHT_LABEL="Light Background" TPL_ATUM_COLORS_SETTINGS_LABEL="Colour Settings" diff --git a/language/en-GB/com_users.ini b/language/en-GB/com_users.ini index 1e1d270d6d75d..6878e13fce773 100644 --- a/language/en-GB/com_users.ini +++ b/language/en-GB/com_users.ini @@ -145,6 +145,10 @@ COM_USERS_USER_BACKUPCODES="Backup Codes" COM_USERS_USER_BACKUPCODES_CAPTIVE_PROMPT="If you do not have access to your usual Multi-factor Authentication method use any of your Backup Codes in the field below. Please remember that this emergency backup code cannot be reused." COM_USERS_USER_BACKUPCODES_DESC="If you do not have access to your Multi-factor Authentication device you can use any of the following passwords instead of a regular security code. Each one of these emergency codes is immediately destroyed upon use. We recommend printing these codes out and keeping the printout in a safe and accessible location, eg your wallet or a safety deposit box." COM_USERS_USER_BLOCKED="This user is blocked. If this is an error, please contact an administrator." +COM_USERS_USER_COLORSCHEME_LABEL="Dark Mode" +COM_USERS_USER_COLORSCHEME_OPTION_DARK="Use Dark color scheme" +COM_USERS_USER_COLORSCHEME_OPTION_FOLLOW_OS="Follow OS settings" +COM_USERS_USER_COLORSCHEME_OPTION_LIGHT="Use Light color scheme" COM_USERS_USER_FIELD_BACKEND_LANGUAGE_LABEL="Backend Language" COM_USERS_USER_FIELD_BACKEND_TEMPLATE_LABEL="Backend Template Style" COM_USERS_USER_FIELD_EDITOR_LABEL="Editor" ```