mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-22 04:11:15 +00:00
Making language a different color
This commit is contained in:
parent
ce386d57f8
commit
5e1235c404
1 changed files with 4 additions and 2 deletions
|
@ -148,8 +148,10 @@ export class Support extends Component<any, any> {
|
|||
<span>{i18n.t("thanks_translators")}</span>
|
||||
{convertTranslators().map(t => (
|
||||
<span>
|
||||
<b>{languagesAll[t.lang].native}</b>
|
||||
{t.country && <b> {countries[t.country].native}</b>}
|
||||
<span class="text-error">{languagesAll[t.lang].native}</span>
|
||||
{t.country && (
|
||||
<span class="text-error"> {countries[t.country].native}</span>
|
||||
)}
|
||||
<span>: </span>
|
||||
{t.translators.map((translator, i) => (
|
||||
<span>
|
||||
|
|
Loading…
Reference in a new issue