Ability to select Available Languages in the user's profile

XMLWordPrintable

    • Type: Suggestion
    • Resolution: Unresolved
    • None
    • Component/s: Data Center - Core
    • None
    • 1

      Some customers ask about the possibility of selecting which languages can the users choose from their profile settings. 

      Currently, this is not possible as the available languages cannot be disabled.

       

      Workaround

      I checked and the following can be added to General Configuration > Look and Feel > Stylesheet:

      /* Global CSS for Confluence */
      select[name="preferredUserLocale"] {
        font-size: 14px;
        color: #333;
      }
      /* Hide unwanted language options */
      select[name="preferredUserLocale"] option {
        display: none; /* Hide all options initially */
      }
      /* Show only specific language options */
      select[name="preferredUserLocale"] option[value="en_US"],
      select[name="preferredUserLocale"] option[value="en_GB"],
      select[name="preferredUserLocale"] option[value="fr_FR"] {
        display: block; /* Show only the desired language options */
      }

      You can add/remove option lines for the intended languages. It would show the language list as the following:

              Assignee:
              Unassigned
              Reporter:
              Roberto Diaz (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

                Created:
                Updated: