Page 1 of 1

Warning for changing to 'en_US'

Posted: Thu Jan 24, 2013 11:00 pm
by aostad
When I change the language to any language except 'en_GB' via "My Settings" page, I get following warning:

string 'bug_link_tl_to_bts' is not localized for locale 'en_US'
or
string 'bug_link_tl_to_bts' is not localized for locale 'de_DE'

Is there any other configuration that I need to do for using different language?

Re: Warning for changing to 'en_US'

Posted: Fri Jan 25, 2013 1:50 am
by TurboPT
Yes, the strings are primarily created in the en_GB area.

So, copy the same variable and string found in locale/en_GB/strings.txt file, to the same area in the
locale/en_US/strings.txt file. The string variables start with $TLS, so the one you have above would be found in the file like this:

Code: Select all

$TLS_bug_link_tl_to_bts = "Link Existent Issue";
It might be easier to do a diff of the two strings.txt files to see what else might possibly be needed.

Re: Warning for changing to 'en_US'

Posted: Fri Jan 25, 2013 3:09 am
by aostad
Thank you for the help.