Commit 61e068e6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

input: show elementary stream language in current user locale

...rather than in the language's own spelling or in English.
parent 8beb0c93
......@@ -2720,11 +2720,7 @@ static char *LanguageGetName( const char *psz_code )
}
else
{
if( *pl->psz_native_name )
{
return strdup( pl->psz_native_name );
}
return strdup( pl->psz_eng_name );
return strdup( vlc_gettext(pl->psz_eng_name) );
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment