You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
399 B
29 lines
399 B
import en from './en'; |
|
import de from './de'; |
|
import es from './es'; |
|
import hu from './hu'; |
|
import fr from './fr'; |
|
import pt from './pt'; |
|
import uk from './uk'; |
|
import fi from './fi'; |
|
import eo from './eo'; |
|
import ru from './ru'; |
|
|
|
|
|
const locales = { |
|
en, |
|
de, |
|
es, |
|
hu, |
|
fr, |
|
pt, |
|
uk, |
|
fi, |
|
eo, |
|
ru |
|
|
|
}; |
|
|
|
export default function getMessagesForLocale (locale) { |
|
return locales[locale]; |
|
};
|
|
|