media_embed_ckeditor.theme.js 526 B

12345678910111213141516
  1. /**
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/2815083
  5. * @preserve
  6. **/
  7. (function (Drupal) {
  8. Drupal.theme.mediaEmbedPreviewError = function () {
  9. return '<div>' + Drupal.t('An error occurred while trying to preview the media. Please save your work and reload this page.') + '</div>';
  10. };
  11. Drupal.theme.mediaEmbedEditButton = function () {
  12. return '<button class="media-library-item__edit">' + Drupal.t('Edit media') + '</button>';
  13. };
  14. })(Drupal);