AlkantarClanX12
| Current Path : /var/www/clients/client1/web1/web/sites/all/modules/i18n/i18n_block/ |
| Current File : /var/www/clients/client1/web1/web/sites/all/modules/i18n/i18n_block/i18n_block.js |
(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);