fix misspelling of 'shorten' verb

This commit is contained in:
Simon Grim 2016-03-22 23:12:34 +05:00
parent aad737f10d
commit 2cfaae8568
2 changed files with 3 additions and 3 deletions

View File

@ -806,14 +806,14 @@ function openRequestShortURIForm() {
if (!defaultScreenName) { if (!defaultScreenName) {
alertPopup({ alertPopup({
//txtTitle: polyglot.t(''), add some title (not 'error', please) or just KISS //txtTitle: polyglot.t(''), add some title (not 'error', please) or just KISS
txtMessage: 'You can\'t short links because you are not logged in.' txtMessage: 'You can\'t shorten links because you are not logged in.'
}); });
return; return;
} }
if (parseInt(twisterVersion) < 93500) { if (parseInt(twisterVersion) < 93500) {
alertPopup({ alertPopup({
//txtTitle: polyglot.t(''), add some title (not 'error', please) or just KISS //txtTitle: polyglot.t(''), add some title (not 'error', please) or just KISS
txtMessage: 'You can\'t short links because twister daemon is obsolete!\n' txtMessage: 'You can\'t shorten links because twister daemon is obsolete!\n'
+ 'Version 0.9.35 or higher is required. Please keep your twister up to date.' + 'Version 0.9.35 or higher is required. Please keep your twister up to date.'
}); });
return; return;

View File

@ -325,7 +325,7 @@ function newRtMsg(postData, msg) {
function newShortURI(uri, cbFunc, cbReq) { function newShortURI(uri, cbFunc, cbReq) {
if (!uri || !defaultScreenName) return; if (!uri || !defaultScreenName) return;
if (parseInt(twisterVersion) < 93500) { if (parseInt(twisterVersion) < 93500) {
console.warn('can\'t short URI "' + uri + '": daemon is obsolete, version 0.9.35 or higher is required'); console.warn('can\'t shorten URI "' + uri + '": daemon is obsolete, version 0.9.35 or higher is required');
return; return;
} }