Skip to content
Closed
Changes from all 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
12 changes: 6 additions & 6 deletions releases/8.0/common.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ function common_header(string $description): void {
function language_chooser(string $currentLang): void {
$LANGUAGES = [
'en' => 'English',
'pt_BR' => 'Brazilian Portuguese',
'de' => 'German',
'es' => 'Spanish',
'fr' => 'French',
'ru' => 'Russian',
'zh' => 'Chinese Simplified',
'de' => 'Deutsch',
'es' => 'Español',
'fr' => 'Français',
'pt_BR' => 'Português do Brasil',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure why you changed the order as well, but I'm not going to worry about that for now. IMO we should probably asort() this whole thing.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah yes, asort() would be better :)

'ru' => 'Русский',
'zh' => '简体中文',
];

// Print out the form with all the options
Expand Down