Skip to content
Snippets Groups Projects
Commit 34155f91 authored by Yasmeen Abuerrub's avatar Yasmeen Abuerrub Committed by Rajab Natshah
Browse files

Issue #2900313 by yasmeensalah, Mohammed J. Razem: Add ability to embed tweets...

Issue #2900313 by yasmeensalah, Mohammed J. Razem: Add ability to embed tweets and other rich content in WYSIWYG with Varbase Editor [Rich editor] Text format
parent 233caa23
No related branches found
No related tags found
No related merge requests found
Showing
with 144 additions and 2 deletions
...@@ -135,7 +135,8 @@ ...@@ -135,7 +135,8 @@
"drupal/entity_browser_enhanced": "1.0-beta5", "drupal/entity_browser_enhanced": "1.0-beta5",
"drupal/vmi": "1.0-beta2", "drupal/vmi": "1.0-beta2",
"drupal/varbase_bootstrap_paragraphs": "4.x-dev#acd6df8043ffa883aed7913427a98f6845eb23ce", "drupal/varbase_bootstrap_paragraphs": "4.x-dev#acd6df8043ffa883aed7913427a98f6845eb23ce",
"drupal/varbase_editor": "4.15", "drupal/ckeditor_media_embed": "1.1",
"drupal/varbase_editor": "4.x-dev",
"drupal/varbase_heroslider_media": "4.0-beta8", "drupal/varbase_heroslider_media": "4.0-beta8",
"drupal/varbase_carousels": "4.0-beta2", "drupal/varbase_carousels": "4.0-beta2",
"drupal/varbase_total_control": "1.0-beta4", "drupal/varbase_total_control": "1.0-beta4",
...@@ -280,6 +281,10 @@ ...@@ -280,6 +281,10 @@
"drupal/responsive_preview": { "drupal/responsive_preview": {
"Issue #2899640: Responsive Preview shows 'Page not found' when multilingual site is enabled with Path-prefix setting": "Issue #2899640: Responsive Preview shows 'Page not found' when multilingual site is enabled with Path-prefix setting":
"https://www.drupal.org/files/issues/responsive_preview_with_path_prefix-2899640-2_0.patch" "https://www.drupal.org/files/issues/responsive_preview_with_path_prefix-2899640-2_0.patch"
},
"drupal/ckeditor_media_embed": {
"Issue #2900313: Add ability to embed tweets and other rich content in WYSIWYG":
"https://www.drupal.org/files/issues/embed_rich_content_in_WYSIWYG-2900313-2.patch"
} }
} }
} }
......
...@@ -8,3 +8,7 @@ ...@@ -8,3 +8,7 @@
.adminimal-admin-toolbar .toolbar-icon-admin-toolbar-tools-help:hover:before { .adminimal-admin-toolbar .toolbar-icon-admin-toolbar-tools-help:hover:before {
background-image: url(../files/images/varbase-x-small-emblem-white.png); background-image: url(../files/images/varbase-x-small-emblem-white.png);
} }
span .cke_button__embed_icon {
background-image:url('../images/embed.png') !important;
}
...@@ -256,6 +256,11 @@ projects[login_destination][download][url] = https://git.drupal.org/project/logi ...@@ -256,6 +256,11 @@ projects[login_destination][download][url] = https://git.drupal.org/project/logi
projects[login_destination][download][revision] = 98892eb84eba6fe69d4fc48dc5b1fdaccb21c8a7 projects[login_destination][download][revision] = 98892eb84eba6fe69d4fc48dc5b1fdaccb21c8a7
projects[login_destination][download][branch] = 8.x-1.x projects[login_destination][download][branch] = 8.x-1.x
projects[ckeditor_media_embed][type] = module
projects[ckeditor_media_embed][version] = 1.1
;; Issue #2900313: Add ability to embed tweets and other rich content in WYSIWYG
projects[ckeditor_media_embed][patch][] = https://www.drupal.org/files/issues/embed_rich_content_in_WYSIWYG-2900313-2.patch
;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;
;; Contrib modules for Varbase SEO. ;; Contrib modules for Varbase SEO.
;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;
...@@ -430,7 +435,7 @@ projects[total_control][version] = 2.0-alpha2 ...@@ -430,7 +435,7 @@ projects[total_control][version] = 2.0-alpha2
;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;
projects[varbase_editor][type] = module projects[varbase_editor][type] = module
projects[varbase_editor][version] = 4.15 projects[varbase_editor][version] = 4.x-dev
projects[varbase_heroslider_media][type] = module projects[varbase_heroslider_media][type] = module
projects[varbase_heroslider_media][version] = 4.0-beta8 projects[varbase_heroslider_media][version] = 4.0-beta8
......
images/embed.png

3 KiB

/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'az', {
embeddingInProgress: 'Dahil etdiyiniz link yerləşdirilir...',
embeddingFailed: 'Bu cür linki avtomatik yerləşdirmək mövcud deyil.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'ca', {
embeddingInProgress: 'Provant d\'incrustar URL copiada...',
embeddingFailed: 'Aquesta URL no es pot incrustar automàticament.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'cs', {
embeddingInProgress: 'Pokus o vnoření vložené URL',
embeddingFailed: 'Tato URL nemůže být automaticky vnořena.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'de-ch', {
embeddingInProgress: 'Einbetten der eingefügten URL wird versucht...',
embeddingFailed: 'Diese URL konnte nicht automatisch eingebettet werden.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'de', {
embeddingInProgress: 'Einbetten der eingefügten URL wird versucht...',
embeddingFailed: 'Diese URL konnte nicht automatisch eingebettet werden.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'en', {
embeddingInProgress: 'Trying to embed pasted URL...',
embeddingFailed: 'This URL could not be automatically embedded.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'eo', {
embeddingInProgress: 'Provas enkorpigi la algluitan URL ...',
embeddingFailed: 'Ne eblis enkorpigi aŭtomate tiun URL.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'es-mx', {
embeddingInProgress: 'Tratando de empotrar la URL pegada...',
embeddingFailed: 'Esta URL no puede ser empotrada automáticamente.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'es', {
embeddingInProgress: 'Intentando incrustar URL pegada...',
embeddingFailed: 'Está URL no pudo ser automáticamente incrustada.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'eu', {
embeddingInProgress: 'Itsatsitako URLa txertatzen saiatzen...',
embeddingFailed: 'URL hau ezin izan da automatikoki txertatu.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'fr', {
embeddingInProgress: 'Incorporation de l\'URL collée...',
embeddingFailed: 'Cette URL n\'a pas pu être incorporée automatiquement.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'gl', {
embeddingInProgress: 'Tentando incrustar URL pegado...',
embeddingFailed: 'Non foi posíbel incrustar automaticamente este URL.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'hr', {
embeddingInProgress: 'Pokušavam umetnuti URL...',
embeddingFailed: 'URL nije moguće umetnuti automatski.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'hu', {
embeddingInProgress: 'A beillesztett URL beágyazásának megkísérlése...',
embeddingFailed: 'Ezt az URL-t nem lehet automatikusan beágyazni.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'it', {
embeddingInProgress: 'Prova a incorporare l\'URL incollato...',
embeddingFailed: 'Non è stato possibile incorporare automaticamente questo URL.'
} );
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'autoembed', 'ja', {
embeddingInProgress: '貼り付けられたURLを埋め込み中...',
embeddingFailed: 'このURLは自動的に埋め込むことが出来ません。'
} );
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment