mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 12:02:13 +00:00
11 lines
No EOL
286 B
CoffeeScript
11 lines
No EOL
286 B
CoffeeScript
_ = require 'lodash'
|
|
|
|
module.exports =
|
|
strings: {}
|
|
t: (stringName, vars) ->
|
|
string = module.exports.strings[stringName]
|
|
|
|
if string
|
|
if vars then _.template(string, vars) else string
|
|
else
|
|
_.template(module.exports.strings.stringNotFound, {string: stringName}) |