If i merge a language pack like danish into the phpBB folder and visit the installation page the page content is in english but at the top of the page in the dropdown list to choose language "Dansk" is selected because it appears top most in the list.
I would like British English to be selected by default so it reflects the language used on the page. Also when the user have not switched the language by using the list and Change button.
Like so:The select attribute is added when the user changes the language but before.
You might need to clear cookies for the site if you have changed the language and want to see what it looks like fresh before changing the language.
Code:
<select id="language" name="language"><option value="da">Dansk</option><option value="en">British English</option></select>
Like so:
Code:
<select id="language" name="language"><option value="da">Dansk</option><option value="en" selected="selected">British English</option></select>
You might need to clear cookies for the site if you have changed the language and want to see what it looks like fresh before changing the language.
Statistics: Posted by scootergrisen — Sun Sep 22, 2024 12:45 pm