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

27 lines
551 B
JavaScript

const translations = {
pl_PL: {
date: 'Data',
newOwner: 'Nowy właściciel',
oldOwner: 'Poprzedni właściciel',
village: 'Wioska',
title: 'Przejęcia',
},
en_DK: {
date: 'Date',
newOwner: 'New owner',
oldOwner: 'Old owner',
village: 'Village',
title: 'Ennoblements',
},
de_DE: {
date: 'Datum',
newOwner: 'Neuer Besitzer',
oldOwner: 'Alter Besitzer',
village: 'Dorf',
title: 'Adelungen',
},
};
export default () =>
translations[window.game_data.locale] || translations.en_DK;