mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-02-22 23:28:11 +00:00
16 lines
236 B
JavaScript
16 lines
236 B
JavaScript
import en from './en.json';
|
|
import fr from './fr.json';
|
|
import ko from './ko.json';
|
|
import ru from './ru.json';
|
|
import pt_BR from './pt_BR.json';
|
|
|
|
const translations = {
|
|
en,
|
|
fr,
|
|
ko,
|
|
ru,
|
|
pt_BR,
|
|
};
|
|
|
|
export default translations;
|