aboutsummaryrefslogtreecommitdiffstats
path: root/sdnc_report_api_sdnc_253_story/sdnc_reports_service/src/main/resources/static/lang/translator.js
diff options
context:
space:
mode:
authorDan Timoney <dt5972@att.com>2018-03-23 23:25:50 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-23 23:25:50 +0000
commit19764646b72ff406620c84d1e1152ddf966bd9b6 (patch)
tree4b8c4ad59ced71e182933c714c70e963c048e64c /sdnc_report_api_sdnc_253_story/sdnc_reports_service/src/main/resources/static/lang/translator.js
parent8f7fa68bb6bf09b8c6d8c22249bdc1f00587fc08 (diff)
parent543004a668263b6d669ffd338b99154d7f91f6a0 (diff)
Merge "SDNC-254 Historical Report Swagger API"
Diffstat (limited to 'sdnc_report_api_sdnc_253_story/sdnc_reports_service/src/main/resources/static/lang/translator.js')
-rw-r--r--sdnc_report_api_sdnc_253_story/sdnc_reports_service/src/main/resources/static/lang/translator.js39
1 files changed, 39 insertions, 0 deletions
diff --git a/sdnc_report_api_sdnc_253_story/sdnc_reports_service/src/main/resources/static/lang/translator.js b/sdnc_report_api_sdnc_253_story/sdnc_reports_service/src/main/resources/static/lang/translator.js
new file mode 100644
index 0000000..591f6d4
--- /dev/null
+++ b/sdnc_report_api_sdnc_253_story/sdnc_reports_service/src/main/resources/static/lang/translator.js
@@ -0,0 +1,39 @@
+'use strict';
+
+/**
+ * Translator for documentation pages.
+ *
+ * To enable translation you should include one of language-files in your index.html
+ * after <script src='lang/translator.js' type='text/javascript'></script>.
+ * For example - <script src='lang/ru.js' type='text/javascript'></script>
+ *
+ * If you wish to translate some new texsts you should do two things:
+ * 1. Add a new phrase pair ("New Phrase": "New Translation") into your language file (for example lang/ru.js). It will be great if you add it in other language files too.
+ * 2. Mark that text it templates this way <anyHtmlTag data-sw-translate>New Phrase</anyHtmlTag> or <anyHtmlTag data-sw-translate value='New Phrase'/>.
+ * The main thing here is attribute data-sw-translate. Only inner html, title-attribute and value-attribute are going to translate.
+ *
+ */
+window.SwaggerTranslator = {
+
+ _words:[],
+
+ translate: function(sel) {
+ var $this = this;
+ sel = sel || '[data-sw-translate]';
+
+ $(sel).each(function() {
+ $(this).html($this._tryTranslate($(this).html()));
+
+ $(this).val($this._tryTranslate($(this).val()));
+ $(this).attr('title', $this._tryTranslate($(this).attr('title')));
+ });
+ },
+
+ _tryTranslate: function(word) {
+ return this._words[$.trim(word)] !== undefined ? this._words[$.trim(word)] : word;
+ },
+
+ learn: function(wordsMap) {
+ this._words = wordsMap;
+ }
+};