summaryrefslogtreecommitdiff
path: root/computer/tetris.lua
diff options
context:
space:
mode:
Diffstat (limited to 'computer/tetris.lua')
-rw-r--r--computer/tetris.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/computer/tetris.lua b/computer/tetris.lua
index 023fc4d..85e9151 100644
--- a/computer/tetris.lua
+++ b/computer/tetris.lua
@@ -1,5 +1,5 @@
-local S = homedecor_i18n.gettext
+local S = homedecor.gettext
local shapes = {
{ { x = {0, 1, 0, 1}, y = {0, 0, 1, 1} } },
@@ -231,7 +231,7 @@ local function step(pos, fields)
local scr = { formsize, background,
t.boardstring, t.previewstring,
draw_shape(t.cur, t.x, t.y, t.rot, boardx, boardy),
- "label[3.8,0.1;"..S("Next...").."]label[3.8,2.7;"..S("Score: "),
+ "label[3.8,0.1;"..S("Next...").."]label[3.8,2.7;"..S("Score: "),
t.score, close, buttons }