31 lines
777 B
JavaScript
31 lines
777 B
JavaScript
|
|
(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);
|