quote translator and add strings

This commit is contained in:
Lio Young 2021-07-10 20:57:45 +02:00
parent d746f3fcc0
commit a44f30e0f6
2 changed files with 6 additions and 2 deletions

View File

@ -2,7 +2,7 @@ meta:
name: ":flag_us: English (US)" name: ":flag_us: English (US)"
locale: en locale: en
translators: translators:
- 318044130796109825 # Lio - "318044130796109825" # Lio
missing: missing:
tags: tags:
@ -48,9 +48,11 @@ locale:
language: Language language: Language
translators: AMOUNT Translator(s) translators: AMOUNT Translator(s)
title: LANGUAGE by TRANSLATOR title: LANGUAGE by TRANSLATOR
amount: "BOT is available in AMOUNT Languages, you can easily change BOT's current Language by running `PREFIX locale set <country_code>`\n\n[Translations](https://t8.pm/lingua) are provided by the Community " amount: "BOT is available in AMOUNT Languages, you can easily change BOT's current Language by running `PREFIX locale set <locales>`\n\n[Translations](https://t8.pm/lingua) are provided by the Community "
updated: Successfully updated SETTING updated: Successfully updated SETTING
unsupported: BOT does not support VALUE at this time. unsupported: BOT does not support VALUE at this time.
current: Current Language
sub: "• Use `PREFIX locale set <locale>` to set the Guild's Language"
misc: misc:
invite: You can invite BOT using this Link invite: You can invite BOT using this Link

View File

@ -47,6 +47,8 @@ export interface Locale {
amount: string; amount: string;
updated: string; updated: string;
unsupported: string; unsupported: string;
current: string
sub: string
} }
export interface Meta { export interface Meta {