From: Alexander Ebert Date: Sun, 11 Sep 2016 10:14:45 +0000 (+0200) Subject: Fixed phrase reference X-Git-Tag: 3.0.0_Beta_1~223 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=7ada056a266d24ef2a1ef7ab9f88147fc6ab6ee9;p=GitHub%2FWoltLab%2FWCF.git Fixed phrase reference --- diff --git a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Redactor/DragAndDrop.js b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Redactor/DragAndDrop.js index f57b8062b4..72bc07d224 100644 --- a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Redactor/DragAndDrop.js +++ b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Redactor/DragAndDrop.js @@ -104,7 +104,7 @@ define(['Dictionary', 'EventHandler', 'Language'], function (Dictionary, EventHa element.className = 'redactorDropArea'; elData(element, 'element-id', data.editor.$element[0].id); elData(element, 'drop-here', Language.get('wcf.attachment.dragAndDrop.dropHere')); - elData(element, 'drop-now', Language.get('Drop now to upload')); + elData(element, 'drop-now', Language.get('wcf.attachment.dragAndDrop.dropNow')); element.addEventListener('dragover', function () { element.classList.add('active'); }); element.addEventListener('dragleave', function () { element.classList.remove('active'); });