translate showEnnoblementsPopup into Polish

This commit is contained in:
Dawid Wysokiński 2020-07-20 15:37:38 +02:00
parent 57df4d01f0
commit 6f8fcb1794
8 changed files with 132 additions and 21 deletions

View File

@ -287,6 +287,33 @@ var _default = function _default() {
}
};
exports.default = _default;
},{}],"tKRp":[function(require,module,exports) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
const translations = {
pl_PL: {
date: 'Data',
newOwner: 'Nowy właściciel',
oldOwner: 'Stary właściciel',
village: 'Wioska',
title: 'Przejęcia'
},
en_DK: {
date: 'Date',
newOwner: 'New owner',
oldOwner: 'Old owner',
village: 'Village',
title: 'Ennoblements'
}
};
var _default = () => translations[window.game_data.locale] || translations.en_DK;
exports.default = _default;
},{}],"fCHX":[function(require,module,exports) {
"use strict";
@ -569,6 +596,8 @@ Object.defineProperty(exports, "__esModule", {
});
exports.default = void 0;
var _showEnnoblementsPopup = _interopRequireDefault(require("../i18n/showEnnoblementsPopup"));
var _pagination = require("./pagination");
var _showPopup = _interopRequireDefault(require("./showPopup"));
@ -580,6 +609,7 @@ var _tribalwars = require("./tribalwars");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
const PAGINATION_CONTAINER_ID = 'ennoblementsPagination';
const translations = (0, _showEnnoblementsPopup.default)();
const getPlayerTd = (player, tribe) => {
if (player) {
@ -600,7 +630,7 @@ var _default = function _default(e, ennoblements) {
limit,
currentPage
});
const html = "\n <div style=\"".concat((0, _pagination.getContainerStyles)(), "\" id=\"").concat(PAGINATION_CONTAINER_ID, "\">\n ").concat(paginationItems.join(''), "\n </div>\n <table class=\"vis\" style=\"border-collapse: separate; border-spacing: 2px; width: 100%;\">\n <tbody>\n <tr>\n <th>\n Date\n </th>\n <th>\n Village\n </th>\n <th>\n New Owner\n </th>\n <th>\n Old Owner\n </th>\n </tr>\n ").concat(ennoblements.items.map(ennoblement => {
const html = "\n <div style=\"".concat((0, _pagination.getContainerStyles)(), "\" id=\"").concat(PAGINATION_CONTAINER_ID, "\">\n ").concat(paginationItems.join(''), "\n </div>\n <table class=\"vis\" style=\"border-collapse: separate; border-spacing: 2px; width: 100%;\">\n <tbody>\n <tr>\n <th>\n ").concat(translations.date, "\n </th>\n <th>\n ").concat(translations.village, "\n </th>\n <th>\n ").concat(translations.newOwner, "\n </th>\n <th>\n ").concat(translations.oldOwner, "\n </th>\n </tr>\n ").concat(ennoblements.items.map(ennoblement => {
let rowHTML = '<tr>' + "<td>".concat((0, _formatDate.default)(ennoblement.ennobledAt), "</td>");
if (ennoblement.village) {
@ -615,7 +645,7 @@ var _default = function _default(e, ennoblements) {
}).join(''), "\n </tbody>\n </table>\n ");
(0, _showPopup.default)({
e,
title: "Ennoblements",
title: translations.title,
id: 'ennoblements',
html
});
@ -625,7 +655,7 @@ var _default = function _default(e, ennoblements) {
};
exports.default = _default;
},{"./pagination":"fCHX","./showPopup":"chDM","./formatDate":"V6Mf","./tribalwars":"fHHP"}],"VYL5":[function(require,module,exports) {
},{"../i18n/showEnnoblementsPopup":"tKRp","./pagination":"fCHX","./showPopup":"chDM","./formatDate":"V6Mf","./tribalwars":"fHHP"}],"VYL5":[function(require,module,exports) {
"use strict";
Object.defineProperty(exports, "__esModule", {
@ -981,7 +1011,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
// @namespace https://github.com/tribalwarshelp/scripts
// @updateURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedPlayerProfile.js
// @downloadURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedPlayerProfile.js
// @version 1.0.4
// @version 1.0.5
// @description Extended Player Profile
// @author Kichiyaki http://dawid-wysokinski.pl/
// @match *://*/game.php*screen=info_player*

View File

@ -1104,7 +1104,34 @@ var _default = (container, stats) => {
};
exports.default = _default;
},{"../i18n/renderTodaysStats":"l9PO","./isNil":"yQib"}],"chDM":[function(require,module,exports) {
},{"../i18n/renderTodaysStats":"l9PO","./isNil":"yQib"}],"tKRp":[function(require,module,exports) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
const translations = {
pl_PL: {
date: 'Data',
newOwner: 'Nowy właściciel',
oldOwner: 'Stary właściciel',
village: 'Wioska',
title: 'Przejęcia'
},
en_DK: {
date: 'Date',
newOwner: 'New owner',
oldOwner: 'Old owner',
village: 'Village',
title: 'Ennoblements'
}
};
var _default = () => translations[window.game_data.locale] || translations.en_DK;
exports.default = _default;
},{}],"chDM":[function(require,module,exports) {
"use strict";
Object.defineProperty(exports, "__esModule", {
@ -1344,6 +1371,8 @@ Object.defineProperty(exports, "__esModule", {
});
exports.default = void 0;
var _showEnnoblementsPopup = _interopRequireDefault(require("../i18n/showEnnoblementsPopup"));
var _pagination = require("./pagination");
var _showPopup = _interopRequireDefault(require("./showPopup"));
@ -1355,6 +1384,7 @@ var _tribalwars = require("./tribalwars");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
const PAGINATION_CONTAINER_ID = 'ennoblementsPagination';
const translations = (0, _showEnnoblementsPopup.default)();
const getPlayerTd = (player, tribe) => {
if (player) {
@ -1375,7 +1405,7 @@ var _default = function _default(e, ennoblements) {
limit,
currentPage
});
const html = "\n <div style=\"".concat((0, _pagination.getContainerStyles)(), "\" id=\"").concat(PAGINATION_CONTAINER_ID, "\">\n ").concat(paginationItems.join(''), "\n </div>\n <table class=\"vis\" style=\"border-collapse: separate; border-spacing: 2px; width: 100%;\">\n <tbody>\n <tr>\n <th>\n Date\n </th>\n <th>\n Village\n </th>\n <th>\n New Owner\n </th>\n <th>\n Old Owner\n </th>\n </tr>\n ").concat(ennoblements.items.map(ennoblement => {
const html = "\n <div style=\"".concat((0, _pagination.getContainerStyles)(), "\" id=\"").concat(PAGINATION_CONTAINER_ID, "\">\n ").concat(paginationItems.join(''), "\n </div>\n <table class=\"vis\" style=\"border-collapse: separate; border-spacing: 2px; width: 100%;\">\n <tbody>\n <tr>\n <th>\n ").concat(translations.date, "\n </th>\n <th>\n ").concat(translations.village, "\n </th>\n <th>\n ").concat(translations.newOwner, "\n </th>\n <th>\n ").concat(translations.oldOwner, "\n </th>\n </tr>\n ").concat(ennoblements.items.map(ennoblement => {
let rowHTML = '<tr>' + "<td>".concat((0, _formatDate.default)(ennoblement.ennobledAt), "</td>");
if (ennoblement.village) {
@ -1390,7 +1420,7 @@ var _default = function _default(e, ennoblements) {
}).join(''), "\n </tbody>\n </table>\n ");
(0, _showPopup.default)({
e,
title: "Ennoblements",
title: translations.title,
id: 'ennoblements',
html
});
@ -1400,7 +1430,7 @@ var _default = function _default(e, ennoblements) {
};
exports.default = _default;
},{"./pagination":"fCHX","./showPopup":"chDM","./formatDate":"V6Mf","./tribalwars":"fHHP"}],"VYL5":[function(require,module,exports) {
},{"../i18n/showEnnoblementsPopup":"tKRp","./pagination":"fCHX","./showPopup":"chDM","./formatDate":"V6Mf","./tribalwars":"fHHP"}],"VYL5":[function(require,module,exports) {
"use strict";
Object.defineProperty(exports, "__esModule", {
@ -1685,7 +1715,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
// @namespace https://github.com/tribalwarshelp/scripts
// @updateURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedTribeProfile.js
// @downloadURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedTribeProfile.js
// @version 0.9.1
// @version 0.9.2
// @description Extended Tribe Profile
// @author Kichiyaki http://dawid-wysokinski.pl/
// @match *://*/game.php*screen=info_ally*

View File

@ -258,6 +258,33 @@ exports.default = void 0;
var _default = url => parseInt(new URLSearchParams(url).get('id'));
exports.default = _default;
},{}],"tKRp":[function(require,module,exports) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
const translations = {
pl_PL: {
date: 'Data',
newOwner: 'Nowy właściciel',
oldOwner: 'Stary właściciel',
village: 'Wioska',
title: 'Przejęcia'
},
en_DK: {
date: 'Date',
newOwner: 'New owner',
oldOwner: 'Old owner',
village: 'Village',
title: 'Ennoblements'
}
};
var _default = () => translations[window.game_data.locale] || translations.en_DK;
exports.default = _default;
},{}],"chDM":[function(require,module,exports) {
"use strict";
@ -488,6 +515,8 @@ Object.defineProperty(exports, "__esModule", {
});
exports.default = void 0;
var _showEnnoblementsPopup = _interopRequireDefault(require("../i18n/showEnnoblementsPopup"));
var _pagination = require("./pagination");
var _showPopup = _interopRequireDefault(require("./showPopup"));
@ -499,6 +528,7 @@ var _tribalwars = require("./tribalwars");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
const PAGINATION_CONTAINER_ID = 'ennoblementsPagination';
const translations = (0, _showEnnoblementsPopup.default)();
const getPlayerTd = (player, tribe) => {
if (player) {
@ -519,7 +549,7 @@ var _default = function _default(e, ennoblements) {
limit,
currentPage
});
const html = "\n <div style=\"".concat((0, _pagination.getContainerStyles)(), "\" id=\"").concat(PAGINATION_CONTAINER_ID, "\">\n ").concat(paginationItems.join(''), "\n </div>\n <table class=\"vis\" style=\"border-collapse: separate; border-spacing: 2px; width: 100%;\">\n <tbody>\n <tr>\n <th>\n Date\n </th>\n <th>\n Village\n </th>\n <th>\n New Owner\n </th>\n <th>\n Old Owner\n </th>\n </tr>\n ").concat(ennoblements.items.map(ennoblement => {
const html = "\n <div style=\"".concat((0, _pagination.getContainerStyles)(), "\" id=\"").concat(PAGINATION_CONTAINER_ID, "\">\n ").concat(paginationItems.join(''), "\n </div>\n <table class=\"vis\" style=\"border-collapse: separate; border-spacing: 2px; width: 100%;\">\n <tbody>\n <tr>\n <th>\n ").concat(translations.date, "\n </th>\n <th>\n ").concat(translations.village, "\n </th>\n <th>\n ").concat(translations.newOwner, "\n </th>\n <th>\n ").concat(translations.oldOwner, "\n </th>\n </tr>\n ").concat(ennoblements.items.map(ennoblement => {
let rowHTML = '<tr>' + "<td>".concat((0, _formatDate.default)(ennoblement.ennobledAt), "</td>");
if (ennoblement.village) {
@ -534,7 +564,7 @@ var _default = function _default(e, ennoblements) {
}).join(''), "\n </tbody>\n </table>\n ");
(0, _showPopup.default)({
e,
title: "Ennoblements",
title: translations.title,
id: 'ennoblements',
html
});
@ -544,7 +574,7 @@ var _default = function _default(e, ennoblements) {
};
exports.default = _default;
},{"./pagination":"fCHX","./showPopup":"chDM","./formatDate":"V6Mf","./tribalwars":"fHHP"}],"UdfQ":[function(require,module,exports) {
},{"../i18n/showEnnoblementsPopup":"tKRp","./pagination":"fCHX","./showPopup":"chDM","./formatDate":"V6Mf","./tribalwars":"fHHP"}],"UdfQ":[function(require,module,exports) {
"use strict";
var _requestCreator = _interopRequireDefault(require("./libs/requestCreator"));
@ -564,7 +594,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
// @namespace https://github.com/tribalwarshelp/scripts
// @updateURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedVillageProfile.js
// @downloadURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedVillageProfile.js
// @version 0.5.1
// @version 0.5.2
// @description Extended Village Profile
// @author Kichiyaki http://dawid-wysokinski.pl/
// @match *://*/game.php*screen=info_village*

View File

@ -21,7 +21,7 @@ import { setItem, getItem } from './utils/localStorage';
// @namespace https://github.com/tribalwarshelp/scripts
// @updateURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedPlayerProfile.js
// @downloadURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedPlayerProfile.js
// @version 1.0.4
// @version 1.0.5
// @description Extended Player Profile
// @author Kichiyaki http://dawid-wysokinski.pl/
// @match *://*/game.php*screen=info_player*

View File

@ -23,7 +23,7 @@ import { formatPlayerURL as formatPlayerURLTribalWars } from './utils/tribalwars
// @namespace https://github.com/tribalwarshelp/scripts
// @updateURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedTribeProfile.js
// @downloadURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedTribeProfile.js
// @version 0.9.1
// @version 0.9.2
// @description Extended Tribe Profile
// @author Kichiyaki http://dawid-wysokinski.pl/
// @match *://*/game.php*screen=info_ally*

View File

@ -9,7 +9,7 @@ import showEnnoblementsPopup from './utils/showEnnoblementsPopup';
// @namespace https://github.com/tribalwarshelp/scripts
// @updateURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedVillageProfile.js
// @downloadURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedVillageProfile.js
// @version 0.5.1
// @version 0.5.2
// @description Extended Village Profile
// @author Kichiyaki http://dawid-wysokinski.pl/
// @match *://*/game.php*screen=info_village*

View File

@ -0,0 +1,19 @@
const translations = {
pl_PL: {
date: 'Data',
newOwner: 'Nowy właściciel',
oldOwner: 'Stary właściciel',
village: 'Wioska',
title: 'Przejęcia',
},
en_DK: {
date: 'Date',
newOwner: 'New owner',
oldOwner: 'Old owner',
village: 'Village',
title: 'Ennoblements',
},
};
export default () =>
translations[window.game_data.locale] || translations.en_DK;

View File

@ -1,3 +1,4 @@
import getTranslations from '../i18n/showEnnoblementsPopup';
import { generatePaginationItems, getContainerStyles } from './pagination';
import showPopup from './showPopup';
import formatDate from './formatDate';
@ -9,6 +10,7 @@ import {
} from './tribalwars';
const PAGINATION_CONTAINER_ID = 'ennoblementsPagination';
const translations = getTranslations();
const getPlayerTd = (player, tribe) => {
if (player) {
@ -39,16 +41,16 @@ export default (
<tbody>
<tr>
<th>
Date
${translations.date}
</th>
<th>
Village
${translations.village}
</th>
<th>
New Owner
${translations.newOwner}
</th>
<th>
Old Owner
${translations.oldOwner}
</th>
</tr>
${ennoblements.items
@ -85,7 +87,7 @@ export default (
showPopup({
e,
title: `Ennoblements`,
title: translations.title,
id: 'ennoblements',
html,
});