View | Details | Raw Unified | Return to bug 35582
Collapse All | Expand All

(-)a/C4/Languages.pm (-3 / +1 lines)
Lines 229-236 sub getLanguages { Link Here
229
            $language_subtag_registry->{iso639_2_code} = $language_descriptions->{iso639_2_code};
229
            $language_subtag_registry->{iso639_2_code} = $language_descriptions->{iso639_2_code};
230
            # fill in the current selected ui language's translation, as well as the native description of the language
230
            # fill in the current selected ui language's translation, as well as the native description of the language
231
            if ($native_description) {
231
            if ($native_description) {
232
                $language_subtag_registry->{language_description} = $language_descriptions->{description}
232
                $language_subtag_registry->{language_description} = $language_descriptions->{description} || q{};
233
                    if $language_descriptions->{description};
234
                $language_subtag_registry->{language_description} .= " ($native_description)";
233
                $language_subtag_registry->{language_description} .= " ($native_description)";
235
            }
234
            }
236
            else {
235
            else {
237
- 

Return to bug 35582