6f0b3b069f
* Create ar.jsx * Preparing file for translation. * Create ar.yml * Preparing file for translation. * Create simple_form.ar.yml * Preparing file for translation. * Create devise.ar.yml * Preparing file for translation. * Create doorkeeper.ar.yml * Preparing file for translation. * Update index.jsx Preparing file for translation. * Update mastodon.jsx * Preparing file to translation. * Correction thanks to @Taekiro https://github.com/tootsuite/mastodon/pull/1798#pullrequestreview-32924922 * Update settings_helper.rb Preparing file to translation. * Update application.rb * Preparing file to translation. * Update simple_form.ar.yml * Update doorkeeper.ar.yml * Update devise.ar.yml * Update ar.yml * Fix i18n-tasks unused issue (ar) Remove unused translation strings * Update application.rb * Update ar.jsx * Fix various issues with Arabic translation * Fix duplication caused in merge * Fix syntax error in devise.ar.yml * Fix import error Duplicated incorrect import in mastodon.jsx * Fix duplication error in locales/index.jsx * Update ar.yml * Update ar.jsx * Update ar.yml * Update ar.jsx * Fix ar translation
54 lines
829 B
JavaScript
54 lines
829 B
JavaScript
import ar from './ar';
|
|
import en from './en';
|
|
import de from './de';
|
|
import es from './es';
|
|
import hr from './hr';
|
|
import hu from './hu';
|
|
import io from './io';
|
|
import it from './it';
|
|
import fr from './fr';
|
|
import nl from './nl';
|
|
import no from './no';
|
|
import oc from './oc';
|
|
import pt from './pt';
|
|
import pt_br from './pt-br';
|
|
import uk from './uk';
|
|
import fi from './fi';
|
|
import eo from './eo';
|
|
import ru from './ru';
|
|
import ja from './ja';
|
|
import zh_hk from './zh-hk';
|
|
import zh_cn from './zh-cn';
|
|
import bg from './bg';
|
|
import id from './id';
|
|
|
|
const locales = {
|
|
ar,
|
|
en,
|
|
de,
|
|
es,
|
|
hr,
|
|
hu,
|
|
io,
|
|
it,
|
|
fr,
|
|
nl,
|
|
no,
|
|
oc,
|
|
pt,
|
|
'pt-BR': pt_br,
|
|
uk,
|
|
fi,
|
|
eo,
|
|
ru,
|
|
ja,
|
|
'zh-HK': zh_hk,
|
|
'zh-CN': zh_cn,
|
|
bg,
|
|
id,
|
|
};
|
|
|
|
export default function getMessagesForLocale (locale) {
|
|
return locales[locale];
|
|
};
|