Source js/bauplan.i18n.js

  1. define([], function () {
  2. /**
  3. * @module bauplan%i18n
  4. * @description ## Internationalisation (i18n)
  5. *
  6. * Loads and parse lang files for use by Larynx and specifically {@link template:phrase}, the Larynx Handlebars helper
  7. *
  8. * As the phrase helper is essentially a Handlebars template in its own right, it can contain variables and nested phrases
  9. *
  10. * @see template:phrase
  11. *
  12. * @return {instance} BauplanI18N
  13. */
  14. var BauplanI18N = {
  15. langs: {},
  16. raw: {},
  17. parsed: {},
  18. /**
  19. * @method init
  20. * @param {function} callback
  21. * @instance
  22. */
  23. init: function (callback) {
  24. this.load(this.Config.config.langs, callback);
  25. },
  26. /**
  27. * @method load
  28. * @instance
  29. * @description Load app lang files
  30. * @param {object} langs Language path key/value pairs
  31. * @param {function} callback
  32. */
  33. load: function BauplanI18NLoad (langs, callback) {
  34. var paths = this.Require.paths(langs, {
  35. suffix: "lang",
  36. extension: "properties"
  37. });
  38. var i18n = this;
  39. this.Require.load(paths, {
  40. plugin: "text",
  41. paths: paths,
  42. keys: paths.originalkeys,
  43. callback: function(langs) {
  44. i18n.process(langs, callback);
  45. }
  46. });
  47. },
  48. /**
  49. * @method process
  50. * @instance
  51. * @param {array} langs Array of language key/value pairs
  52. * @param {function} callback
  53. * @description Parses all lang files and then merges the results for all defined locales
  54. *
  55. * First specified values for a phrase key are always honoured
  56. */
  57. process: function (langs, callback) {
  58. var tlangs = {};
  59. for (var lang = 0, langmax = langs.length; lang < langmax; lang++) {
  60. var data = langs[lang];
  61. var loc = data.key;
  62. if (!this.raw[loc] || this.raw[loc] !== data.value) {
  63. this.raw[loc] = data.value;
  64. this.parsed[loc] = this.parse(data.value);
  65. }
  66. var normalisedloc = loc.replace(/\..*$/, "");
  67. tlangs[normalisedloc] = tlangs[normalisedloc] || {};
  68. for (var phrase in this.parsed[loc]) {
  69. tlangs[normalisedloc][phrase] = this.parsed[loc][phrase];
  70. }
  71. }
  72. var deflang = this.defaultlang();
  73. for (var dlang in tlangs) {
  74. if (dlang !== deflang) {
  75. for (var dphrase in tlangs[deflang]) {
  76. if (tlangs[dlang][dphrase] === undefined) {
  77. tlangs[dlang][dphrase] = tlangs[deflang][dphrase];
  78. }
  79. }
  80. }
  81. }
  82. this.langs = tlangs;
  83. if (callback) {
  84. callback(this.langs);
  85. }
  86. return this.langs;
  87. },
  88. /**
  89. * @method parse
  90. * @instance
  91. * @param {string} data
  92. * @description Parses a string representing a resource bundle .properties file
  93. *
  94. * - lines beginning with comments are ignored
  95. * - values can span multiple lines
  96. *
  97. * @return {object} lang
  98. */
  99. parse: function parseLangProperties (data) {
  100. var lang = {};
  101. var dataLines = data.split("\n");
  102. dataLines[dataLines.length-1] = dataLines[dataLines.length-1].replace(/\s+$/, "");
  103. var lineProp;
  104. for (var l = 0, dataLen = dataLines.length; l < dataLen; l++) {
  105. var line = dataLines[l];
  106. if (line.indexOf("#") === 0) {
  107. continue;
  108. }
  109. if (line.indexOf("\\#") === 0) {
  110. line = line.replace(/^\\/, "");
  111. }
  112. var lineVal = line;
  113. var lineMatch = line.match(/^([\S]+?)\s*=\s*(.*)/);
  114. if (lineMatch) {
  115. if (l) {
  116. dataLines[l-1] = dataLines[l-1].replace(/\s+$/, "");
  117. }
  118. lineProp = lineMatch[1];
  119. lineVal = lineMatch[2];
  120. } else {
  121. lineVal = "\n" + lineVal;
  122. }
  123. if (!lang[lineProp]) {
  124. lang[lineProp] = "";
  125. }
  126. lang[lineProp] += lineVal;
  127. }
  128. return lang;
  129. },
  130. /**
  131. * @method defaultlang
  132. * @description Gets the default language as specified in the config
  133. * @instance
  134. * @return {string} Default language
  135. */
  136. defaultlang: function() {
  137. return this.Config.config.defaultlang;
  138. }
  139. };
  140. return BauplanI18N;
  141. });