
widgets.pbRichTextarea.assets.js.textAngular.i18n.config.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-designer-artifact-builder-generator-angularjs Show documentation
Show all versions of ui-designer-artifact-builder-generator-angularjs Show documentation
This module is a generator on AngularJS for Artifact Builder
The newest version!
(function () {
'use strict';
angular.module('textAngular-i18n', ['bonitasoft.ui.i18n', 'textAngular']).config(
function($provide) {
$provide.decorator('taTranslations', function($delegate, gettextCatalog, i18n) {
i18n.init();
$delegate.clear.tooltip = 'Toggle the text area to HTML source code / Rich text area';
Object.keys($delegate).forEach(function(item) {
Object.keys($delegate[item]).forEach(function(key) {
$delegate[item][key] = gettextCatalog.getString($delegate[item][key]);
});
});
return $delegate;
});
});
})();
© 2015 - 2025 Weber Informatics LLC | Privacy Policy