about summary refs log tree commit diff
path: root/config/webpack/translationRunner.js
blob: c636170b9f3d88e467a438d95edf250ae3c5e7cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const manageTranslations = require('react-intl-translations-manager').default;

manageTranslations({
  messagesDirectory: 'build/messages',
  translationsDirectory: 'app/javascript/mastodon/locales/',
  detectDuplicateIds: false,
  singleMessagesFile: true,
  languages: [
    'ar',
    'en',
    'de',
    'es',
    'fa',
    'hr',
    'hu',
    'io',
    'it',
    'fr',
    'nl',
    'no',
    'oc',
    'pt',
    'pt-BR',
    'uk',
    'fi',
    'eo',
    'ru',
    'ja',
    'zh-HK',
    'zh-CN',
    'bg',
    'id',
  ],
})