Telegram Web, preconfigured for usage in I2P.
http://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
3.8 KiB
123 lines
3.8 KiB
10 years ago
|
'use strict';
|
||
|
|
||
|
angular.module('myApp.i18n', ['izhukov.utils'])
|
||
10 years ago
|
.factory('_', ['$rootScope', '$locale', function($rootScope, $locale) {
|
||
10 years ago
|
var locale = Config.I18n.locale;
|
||
|
var messages = Config.I18n.messages;
|
||
|
var fallbackMessages = Config.I18n.fallback_messages;
|
||
10 years ago
|
var paramRegEx = /\{\s*([a-zA-Z\d\-_]+)(?:\s*:\s*(.*?))?\s*\}/g;
|
||
10 years ago
|
|
||
|
function insertParams(msgstr, params) {
|
||
10 years ago
|
return msgstr.replace(paramRegEx, function ($0, paramKey, nestedMsgStr) {
|
||
|
var param = params[paramKey];
|
||
|
if (param === undefined) {
|
||
|
console.warn('[i18n] missing param ' + paramKey + ' for message "' + msgstr + '"');
|
||
|
return '';
|
||
10 years ago
|
}
|
||
10 years ago
|
if (nestedMsgStr !== undefined) {
|
||
|
param = insertParams(param, nestedMsgStr.split('|'));
|
||
|
}
|
||
|
return param.toString().trim();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function parseMarkdownString(msgstr, msgid) {
|
||
10 years ago
|
msgstr = msgstr
|
||
|
.replace(/\*\*(.+?)\*\*/g, "<strong>$1</strong>")
|
||
|
.replace(/\n| /g, "<br/>");
|
||
|
|
||
10 years ago
|
return msgstr;
|
||
|
}
|
||
|
|
||
|
function _(msgid, params) {
|
||
10 years ago
|
var raw = false;
|
||
10 years ago
|
var msgstr = msgid;
|
||
10 years ago
|
|
||
|
if (msgid.substr(-4) === '_raw') {
|
||
|
raw = true;
|
||
|
msgid = msgid.substr(0, msgid.length - 4);
|
||
|
}
|
||
|
|
||
10 years ago
|
if (messages.hasOwnProperty(msgid)) {
|
||
|
msgstr = messages[msgid];
|
||
10 years ago
|
} else if (fallbackMessages.hasOwnProperty(msgid)) {
|
||
|
msgstr = fallbackMessages[msgid];
|
||
|
console.warn('[i18n] missing locale key ' + locale + ' / ' + msgid);
|
||
10 years ago
|
} else {
|
||
10 years ago
|
console.warn('[i18n] missing key ' + msgid);
|
||
|
return msgid;
|
||
|
}
|
||
|
|
||
|
if (!raw) {
|
||
|
msgstr = encodeEntities(msgstr);
|
||
10 years ago
|
}
|
||
10 years ago
|
if (msgid.substr(-3) == '_md') {
|
||
|
msgstr = parseMarkdownString(msgstr);
|
||
|
}
|
||
|
|
||
10 years ago
|
if (arguments.length > 1) {
|
||
|
if (typeof params == 'string') {
|
||
|
Array.prototype.shift.apply(arguments);
|
||
|
msgstr = insertParams(msgstr, arguments);
|
||
|
} else {
|
||
|
msgstr = insertParams(msgstr, params);
|
||
|
}
|
||
|
}
|
||
10 years ago
|
|
||
10 years ago
|
return msgstr;
|
||
|
}
|
||
|
|
||
10 years ago
|
_.locale = function () {
|
||
|
return locale;
|
||
10 years ago
|
};
|
||
|
|
||
10 years ago
|
_.pluralize = function (msgid) {
|
||
|
var categories = $rootScope.$eval(_(msgid + '_raw'));
|
||
|
return function (count) {
|
||
|
return (categories[$locale.pluralCat(count)] || '').replace('{}', count);
|
||
|
}
|
||
|
};
|
||
|
|
||
10 years ago
|
return _;
|
||
|
}])
|
||
|
|
||
|
.filter('i18n', ['_', function(_) {
|
||
10 years ago
|
return function (msgid, params) {
|
||
|
return _(msgid + '_raw', params);
|
||
|
}
|
||
10 years ago
|
}])
|
||
|
|
||
10 years ago
|
.directive('ngPluralize', ['_', function(_) {
|
||
|
return {
|
||
|
restrict: 'EA',
|
||
|
priority: 1, // execute before built-in ngPluralize
|
||
|
compile: function(element) {
|
||
|
var msgid = element.attr('when');
|
||
10 years ago
|
var msgstr = _(msgid + '_raw');
|
||
10 years ago
|
element.attr('when', msgstr);
|
||
|
}
|
||
|
}
|
||
|
}])
|
||
|
|
||
10 years ago
|
.directive('myI18n', ['_', function(_) {
|
||
|
return {
|
||
|
restrict: 'EA',
|
||
|
compile: function(element) {
|
||
|
var params = element.children('my-i18n-param:not([name]), [my-i18n-param=""]:not([name])').map(function(index, param) {
|
||
|
return param.outerHTML;
|
||
|
}).toArray();
|
||
|
element.children('my-i18n-param[name], [my-i18n-param]:not([my-i18n-param=""]), [my-i18n-param][name]').each(function(i, param) {
|
||
|
params[angular.element(param).attr('my-i18n-param') || angular.element(param).attr('name')] = param.outerHTML;
|
||
|
});
|
||
|
element.children('my-i18n-param').remove();
|
||
|
var formats = element.attr("my-i18n") || element.attr("msgid") ? element : element.children('my-i18n-format, [my-i18n-format]');
|
||
|
formats.each(function(index, element) {
|
||
|
var format = angular.element(element);
|
||
|
var msgid = format.attr("my-i18n") || format.attr("msgid") || format.attr("my-i18n-format") || format.html().replace(/\s+/g, ' ').trim();
|
||
|
var msgstr = _(msgid, params);
|
||
|
format.html(msgstr);
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}]);
|