translate commandSender into English

This commit is contained in:
Dawid Wysokiński 2020-07-12 20:29:59 +02:00
parent 89a1fa312c
commit dad65159b5
4 changed files with 7 additions and 9 deletions

View File

@ -120,7 +120,7 @@ parcelRequire = (function (modules, cache, entry, globalName) {
})({"tYTs":[function(require,module,exports) {
// ==UserScript==
// @name Command sender
// @namespace https://github.com/
// @namespace https://github.com/tribalwarshelp/scripts
// @updateURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/commandSender.js
// @downloadURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/commandSender.js
// @version 0.1
@ -156,8 +156,7 @@ const calcMillisecondsToAttack = date => {
const handleStart = () => {
const ms = calcMillisecondsToAttack(document.querySelector('#' + INPUT_ID).value);
console.log(ms);
if (ms <= 0 || isNaN(ms)) return UI.ErrorMessage('Wprowadzono nieprawidłowy czas!');
if (ms <= 0 || isNaN(ms)) return UI.ErrorMessage('Invalid date!');
document.querySelector('#' + START_BUTTON_ID).disabled = true;
document.querySelector('#' + CANCEL_BUTTON_ID).disabled = false;
timeoutID = setTimeout(() => {
@ -174,7 +173,7 @@ const handleCancel = () => {
const render = () => {
const container = document.createElement('div');
const label = document.createElement('label');
label.innerHTML = 'Czas dotarcia ataku:';
label.innerHTML = 'Attack time:';
label.style.marginRight = '15px';
container.appendChild(label);
const input = document.createElement('input');

View File

@ -455,7 +455,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
// ==UserScript==
// @name Extended Player Profile
// @namespace https://github.com/
// @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 0.5

View File

@ -442,7 +442,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
// ==UserScript==
// @name Latest ennoblements
// @namespace https://github.com/
// @namespace https://github.com/tribalwarshelp/scripts
// @updateURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/latestEnnoblements.js
// @downloadURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/latestEnnoblements.js
// @version 0.5

View File

@ -47,8 +47,7 @@ const handleStart = () => {
const ms = calcMillisecondsToAttack(
document.querySelector('#' + INPUT_ID).value
);
if (ms <= 0 || isNaN(ms))
return UI.ErrorMessage('Wprowadzono nieprawidłowy czas!');
if (ms <= 0 || isNaN(ms)) return UI.ErrorMessage('Invalid date!');
document.querySelector('#' + START_BUTTON_ID).disabled = true;
document.querySelector('#' + CANCEL_BUTTON_ID).disabled = false;
@ -67,7 +66,7 @@ const handleCancel = () => {
const render = () => {
const container = document.createElement('div');
const label = document.createElement('label');
label.innerHTML = 'Czas dotarcia ataku:';
label.innerHTML = 'Attack time:';
label.style.marginRight = '15px';
container.appendChild(label);
const input = document.createElement('input');