Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added WIP Locales config setting #7690

Merged
merged 3 commits into from
Jan 10, 2025
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 38 additions & 9 deletions source/configure/site-configuration-settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -331,13 +331,6 @@ iOS app download link
| String input. Default is ``https://about.mattermost.com/mattermost-ios-app/``. | |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------+

.. config:setting:: exp-appcustomurlschemes
:displayname: App custom URL schemes (Customization)
:systemconsole: N/A
:configjson: .NativeAppSettings.AppCustomURLSchemes
:environment: MM_NativeAppSettings_AppCustomURLSchemes = mmauth:// mmauthbeta://
:description: Define valid custom URL schemes for redirect links provided by custom-built mobile Mattermost apps.

.. config:setting:: custom-enabledesktoplandingpage
:displayname: Enable desktop app landing page (Customization)
:systemconsole: Site Configuration > Customization
Expand All @@ -357,6 +350,13 @@ Enable desktop app landing page
| | - Environment variable: ``MM_SERVICESETTINGS_ENABLEDESKTOPLANDINGPAGE`` |
+-----------------------------------------------------------------+------------------------------------------------------------------------------------------+

.. config:setting:: exp-appcustomurlschemes
:displayname: App custom URL schemes (Customization)
:systemconsole: N/A
:configjson: .NativeAppSettings.AppCustomURLSchemes
:environment: MM_NativeAppSettings_AppCustomURLSchemes = mmauth:// mmauthbeta://
:description: Define valid custom URL schemes for redirect links provided by custom-built mobile Mattermost apps.

App custom URL schemes
~~~~~~~~~~~~~~~~~~~~~~

Expand Down Expand Up @@ -412,7 +412,7 @@ Access the following configuration settings in the System Console by going to **
:environment: MM_LOCALIZATIONSETTINGS_DEFAULTSERVERLOCALE
:description: The default language for system messages and logs. Default value is **en**.


Default server language
~~~~~~~~~~~~~~~~~~~~~~~

+--------------------------------------------------------------------------------+--------------------------------------------------------------------------------+
Expand Down Expand Up @@ -480,6 +480,36 @@ Available languages
| Default is ``"en"``. | |
+--------------------------------------------------------------------------------+---------------------------------------------------------------------------+

.. config:setting:: localization-enable-wip-locales
:displayname: Enable experimental locales (Localization)
:systemconsole: Site Configuration > Localization
:configjson: EnableExperimentalLocales
:environment: MM_LOCALIZATIONETTINGS_ENABLEEXPERIMENTALLOCALES
:description: nable work in progress languages in Mattermost to review translations and identify translation gaps.

- **true**: Work in progress languages are available in Mattermost in addition to officially supported languages.
- **false**: **(Default)** Only officially supported languages are available in Mattermost.

Enable experimental locales
~~~~~~~~~~~~~~~~~~~~~~~~~~~

Enable work in progress languages in Mattermost to review translations and identify translation gaps.

+--------------------------------------------------------+--------------------------------------------------------------------------------------------------+
| - **true**: Work in progress languages are available | - System Config path: **Site Configuration > Localization** |
| in Mattermost in addition to officially supported | - ``config.json`` setting: ``LocalizationSettings`` > ``EnableExperimentalLocales`` > ``false`` |
cwarnermm marked this conversation as resolved.
Show resolved Hide resolved
| languages. | - Environment variable: ``MM_LOCALIZATIONETTINGS_ENABLEEXPERIMENTALLOCALES`` |
| - **false**: **(Default)** Only officially supported | |
| languages are available in Mattermost. | |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------+

.. note::

- Cloud system admins can request this configuration setting to be enabled for their instance by contacting their Mattermost Account Manager.
- Work in progress languages may be incomplete. Strings missing translations display in US English.
- Currently, only web and desktop app product strings are impacted by this configuration setting. Server and mobile product strings aren't impacted by this setting.
- See the :ref:`language <preferences/manage-your-display-options:language>` documentation for details on selecting a language preference in Mattermost.

----

Users and teams
Expand Down Expand Up @@ -633,7 +663,6 @@ Lock teammate name display for all users
| | - ``config.json`` setting: ``TeamSettings`` > ``LockTeammateNameDisplay`` > ``false`` |
| - **true**: Users **cannot** change the Teammate Name Display. | - Environment variable: ``MM_TEAMSETTINGS_LOCKTEAMMATENAMEDISPLAY`` |
| - **false**: **(Default)** Users can change the Teammate Name Display setting. | |
| | |
+---------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------+

.. config:setting:: users-viewarchivedchannels
Expand Down
Loading