This repository has been archived on 2023-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
scripts-old/src/i18n/commandRenamer.js

18 lines
284 B
JavaScript
Raw Normal View History

2020-07-31 09:25:42 +00:00
const translations = {
pl_PL: {
rename: 'Zmień',
name: 'Nazwa',
},
en_DK: {
rename: 'Rename',
name: 'Name',
},
2021-05-08 07:56:55 +00:00
de_DE: {
rename: 'Umbenennen',
name: 'Name',
},
2020-07-31 09:25:42 +00:00
};
export default () =>
translations[window.game_data.locale] || translations.en_DK;