* core: Added shortcut translatef for translate and format
[project/luci.git] / core / src / i18n.lua
index 88381dd..4e41873 100644 (file)
@@ -55,4 +55,9 @@ end
 -- Returns the i18n-value defined by "key" or if there is no such: "default"
 function translate(key, default)
        return table[key] or default
+end
+
+-- Translate shourtcut with sprintf/string.format inclusion
+function translatef(key, default, ...)
+       return translate(key, default):format(...)
 end
\ No newline at end of file