From c6c50b3ec60b284107f459e5923c146d515afd2a Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sun, 25 May 2008 15:55:39 +0000 Subject: [PATCH] * core: Added shortcut translatef for translate and format --- core/src/i18n.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/src/i18n.lua b/core/src/i18n.lua index 88381dde7..4e4187308 100644 --- a/core/src/i18n.lua +++ b/core/src/i18n.lua @@ -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 -- 2.11.0