Added new languages

french (fr), slovak (sk), turkish (tr), and chinese (zh)
This commit is contained in:
kodxana 2019-11-03 18:46:26 +01:00 committed by Sean Yesmunt
parent ec11bd8ad2
commit ee944e3c47

View file

@ -15,7 +15,7 @@ function SettingLanguage(props: Props) {
const [isFetching, setIsFetching] = useState(false);
// this should be fetched from lbry.com/transifex
const languages = { en: 'English', pl: 'Polski', id: 'Bahasa Indonesia', de: 'Deutsche' };
const languages = { en: 'English', pl: 'Polski', id: 'Bahasa Indonesia', de: 'Deutsche' , fr: 'Français', sk: 'Slovenský', tr: 'Türk', zh: '中文' };
const { language, showToast, setClientSetting } = props;