From 0d9c43df6c5235c16a305fbd8138f168f2b9ec1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotrek=20Koszuli=C5=84ski?= Date: Tue, 23 Jun 2015 13:32:54 +0200 Subject: [PATCH] Reuse existing common language token. --- dev/langtool/meta/ckeditor.plugin-embedbase/meta.txt | 1 - plugins/embedbase/dialogs/embedbase.js | 2 +- plugins/embedbase/lang/en.js | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/dev/langtool/meta/ckeditor.plugin-embedbase/meta.txt b/dev/langtool/meta/ckeditor.plugin-embedbase/meta.txt index 5772d87dbeb..6cf41d63d58 100644 --- a/dev/langtool/meta/ckeditor.plugin-embedbase/meta.txt +++ b/dev/langtool/meta/ckeditor.plugin-embedbase/meta.txt @@ -3,7 +3,6 @@ pathName = Label displayed in the Elements Path when a media object is selected. title = Label for the Media Embed dialog window. -url = Label for the URL field of the Media Embed dialog window. button = Toolbar button tooltip for the Media Embed feature. unsupportedUrlGiven = Error message displayed when the URL specified by the user is not supported by the Media Embed feature. unsupportedUrl = Error message displayed when the particular URL is not supported by the Media Embed feature. diff --git a/plugins/embedbase/dialogs/embedbase.js b/plugins/embedbase/dialogs/embedbase.js index aa5b17f8808..6eaf9b25633 100644 --- a/plugins/embedbase/dialogs/embedbase.js +++ b/plugins/embedbase/dialogs/embedbase.js @@ -77,7 +77,7 @@ CKEDITOR.dialog.add( 'embedBase', function( editor ) { { type: 'text', id: 'url', - label: lang.url, + label: editor.lang.common.url, setup: function( widget ) { this.setValue( widget.data.url ); diff --git a/plugins/embedbase/lang/en.js b/plugins/embedbase/lang/en.js index f2fd321ae55..01412ff9062 100644 --- a/plugins/embedbase/lang/en.js +++ b/plugins/embedbase/lang/en.js @@ -5,7 +5,6 @@ For licensing, see LICENSE.md or http://ckeditor.com/license CKEDITOR.plugins.setLang( 'embedbase', 'en', { pathName: 'media object', title: 'Media Embed', - url: 'URL', button: 'Insert Media Embed', unsupportedUrlGiven: 'The specified URL is not supported.', unsupportedUrl: 'The URL {url} is not supported by Media Embed.',