Remove translation macro on native language names.

I believe we don't translate these since this is already the translated form?

When the language is supported later, the English version will be added to the string database instead.
This commit is contained in:
infiinte-persistence 2020-10-30 10:38:32 +08:00 committed by Sean Yesmunt
parent 2952bec959
commit 591f604073
3 changed files with 2 additions and 13 deletions

View file

@ -1468,16 +1468,5 @@
"Publish Something": "Publish Something",
"Watch on lbry.tv": "Watch on lbry.tv",
"Paid content cannot be embedded.": "Paid content cannot be embedded.",
"Hrvatski": "Hrvatski",
"Nederlands": "Nederlands",
"Français": "Français",
"Deutsch": "Deutsch",
"Italiano": "Italiano",
"Polski": "Polski",
"Português": "Português",
"Русский": "Русский",
"Español": "Español",
"Türkçe": "Türkçe",
"Česky": "Česky",
"--end--": "--end--"
}

View file

@ -71,7 +71,7 @@ function ChannelAbout(props: Props) {
{/* this could use some nice 'tags' styling */}
{languages && languages.length
? languages.reduce((acc, lang, i) => {
return acc + `${__(SUPPORTED_LANGUAGES[lang])}` + ' ';
return acc + `${SUPPORTED_LANGUAGES[lang]}` + ' ';
}, '')
: null}
</div>

View file

@ -385,7 +385,7 @@ function ClaimListHeader(props: Props) {
{Object.entries(SEARCHABLE_LANGUAGES).map(([code, label]) => {
return (
<option key={code} value={code}>
{__(String(label))}
{String(label)}
</option>
);
})}