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/extendedVillageProfile.js

16 lines
275 B
JavaScript

const translations = {
pl_PL: {
action: {
showEnnoblements: 'Pokaż przejęcia',
},
},
en_DK: {
action: {
showEnnoblements: 'Show ennoblements',
},
},
};
export default () =>
translations[window.game_data.locale] || translations.en_DK;