| Index: i18n.js |
| =================================================================== |
| --- a/i18n.js |
| +++ b/i18n.js |
| @@ -48,9 +48,11 @@ |
| // Loads and inserts i18n strings into matching elements. Any inner HTML already in the |
| // element is parsed as JSON and used as parameters to substitute into placeholders in the |
| // i18n message. |
| -function loadI18nStrings() { |
| +function loadI18nStrings() |
| +{ |
| var nodes = document.querySelectorAll("[class^='i18n_']"); |
| - for(var i = 0; i < nodes.length; i++) { |
| + for(var i = 0; i < nodes.length; i++) |
| + { |
| var arguments = JSON.parse("[" + nodes[i].textContent + "]"); |
| var className = nodes[i].className; |
| var stringName = className.split(/\s/)[0].substring(5); |
| @@ -63,7 +65,8 @@ |
| } |
| // Provides a more readable string of the current date and time |
| -function i18n_timeDateStrings(when) { |
| +function i18n_timeDateStrings(when) |
| +{ |
| var d = new Date(when); |
| var timeString = d.toLocaleTimeString(); |