123456789101112131415161718192021222324252627282930 |
- (function ($) {
- /**
- * Provide the summary information for the block settings vertical tab.
- */
- Drupal.behaviors.i18nSettingsSummary = {
- attach: function (context) {
- $('fieldset#edit-languages', context).drupalSetSummary(function (context) {
- var summary = '';
- if ($('.form-item-i18n-mode input[type=checkbox]:checked', context).val()) {
- summary += Drupal.t('Translatable');
- }
- else {
- summary += Drupal.t('Not translatable');
- }
- summary += ', ';
- if ($('.form-item-languages input[type=checkbox]:checked', context).val()) {
- summary += Drupal.t('Restricted to certain languages');
- }
- else {
- summary += Drupal.t('Not restricted');
- }
- return summary;
- });
- }
- };
- })(jQuery);
|