Welcome to mirror list, hosted at ThFree Co, Russian Federation.

translate.js « directives « common « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: badb9208a9f134db1554a0080ce359be913894e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*!
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

/**
 * Directive for easy & safe complex internationalization. This directive allows
 * users to embed the sprintf arguments used in internationalization inside an HTML
 * element. Since the HTML will eventually be sanitized by AngularJS, HTML can be used
 * within the sprintf args. Using the filter, this is not possible w/o manually sanitizing
 * and creating trusted HTML, which is not as safe.
 *
 * Note: nesting this directive is not supported.
 *
 * Usage:
 * <span piwik-translate="Plugin_TranslationToken">
 *     first arg::<strong>second arg</strong>::{{ unsafeDataThatWillBeSanitized }}
 * </span>
 */
(function () {
    angular.module('piwikApp.directive').directive('piwikTranslate', piwikTranslate);

    /**
     * @deprecated
     */
    function piwikTranslate() {
        return {
            priority: 1,
            restrict: 'A',
            compile: function(element, attrs) {
                var parts = element.html().split('::'),
                    translated = _pk_translate(attrs.piwikTranslate, parts);
                element.html(translated);
            }
        };
    }
})();