blob: a2534214576df676f0d8d4b79507a4a3bc166924 [file] [log] [blame]
angular.module('gettext').run(['gettextCatalog', function(gettextCatalog) {
// Load all supported languages
angular.forEach(require('./langs'), function(value, key) {
if (key !== 'en') {
gettextCatalog.setStrings(key,
require('./translations/stf.' + key + '.json')[key])
}
})
}])
module.exports = angular.module('stf/lang', [
'gettext'
])