fix i18 issue

master
JFH 2021-05-21 23:12:44 +02:00
parent 04dab1edcf
commit bebc71358c
2 changed files with 2 additions and 3 deletions

View File

@ -557,7 +557,7 @@ class TopPanel {
if (!valid) {
e.target.value = this.selectedElement.getAttribute(attr);
// eslint-disable-next-line no-alert
alert(this.i18next.t('notification.invalidAttrValGiven'));
alert(this.editor.i18next.t('notification.invalidAttrValGiven'));
return false;
}
@ -618,7 +618,7 @@ class TopPanel {
if (!isNullish(this.editor.selectedElement) || this.multiselected) {
// eslint-disable-next-line no-alert
const url = prompt(
this.i18next.t('notification.enterNewLinkURL'),
this.editor.i18next.t('notification.enterNewLinkURL'),
"http://"
);
if (url) {

View File

@ -9,7 +9,6 @@ import Layer from './layer.js';
import HistoryRecordingService from './historyrecording.js';
import { NS } from '../common/namespaces.js';
import { isOpera } from '../common/browser.js';
import {
toXml, getElem
} from './utilities.js';