diff options
author | 2017-09-03 22:04:33 -0500 | |
---|---|---|
committer | 2017-09-03 22:04:33 -0500 | |
commit | cf4c08014b46c803787db96d61eaba14b9b4fa15 (patch) | |
tree | 9ce36c126e035adb27c190f1d1b0b6a09acc076f /plugins/timer/init.lua | |
parent | 5fe8058c17291da81c5b8c5701cb47b2264f3c44 (diff) |
plugins: gettextify localizable strings (nw)
Diffstat (limited to 'plugins/timer/init.lua')
-rw-r--r-- | plugins/timer/init.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/timer/init.lua b/plugins/timer/init.lua index b5b6d355a03..56ccd6b39ed 100644 --- a/plugins/timer/init.lua +++ b/plugins/timer/init.lua @@ -91,11 +91,11 @@ function timer.startplugin() local function menu_populate() local time = os.time() - start_time - return {{ "Current time", "", "off" }, + return {{ _("Current time"), "", "off" }, { sectohms(time), "", "off" }, - { "Total time", "", "off" }, + { _("Total time"), "", "off" }, { sectohms(total_time + time), "", "off" }, - { "Play Count", "", "off" }, + { _("Play Count"), "", "off" }, { play_count, "", "off" }} end @@ -103,7 +103,7 @@ function timer.startplugin() return true end - emu.register_menu(menu_callback, menu_populate, "Timer") + emu.register_menu(menu_callback, menu_populate, _("Timer")) end return exports |