Confluence Language

Jason Vriends April 27, 2015

I am trying to add a Change Language menu item to the top navigation header in Confluence. The code below works. However, it only detects the browser locale instead of the language specified within the users profile.

How can I detect the user language via AJS?

<script> AJS.toInit(function(){ var browserLang = navigator.language || navigator.userLanguage;     if(browserLang =="en-CA"){ AJS.$('.aui-header-secondary .aui-nav').append('<li><a href="/cra/language/languageswitch.action" class=" aui-nav-imagelink">English</a></li>');} else { AJS.$('.aui-header-secondary .aui-nav').append('<li><a href="/cra/language/languageswitch.action" class=" aui-nav-imagelink">French</a></li>'); } }); </script>

1 answer

1 vote
Jason Vriends April 27, 2015

I found the answer to be AJS.params.userLocale

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events