diff options
author | paramat <paramat@users.noreply.github.com> | 2018-03-13 01:59:01 +0000 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2018-03-13 03:54:52 +0000 |
commit | 92ca9dda54299a9ccbccf43071f6d44468cac05d (patch) | |
tree | 518e4b7abbabab1ad27e6fe2fa752084357e2cf0 /builtin/mainmenu/dlg_create_world.lua | |
parent | d57024b7c94d935994695875c542ef71327c1590 (diff) | |
download | minetest-92ca9dda54299a9ccbccf43071f6d44468cac05d.tar.xz |
Rename 'subgame' to 'game'
Diffstat (limited to 'builtin/mainmenu/dlg_create_world.lua')
-rw-r--r-- | builtin/mainmenu/dlg_create_world.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/mainmenu/dlg_create_world.lua b/builtin/mainmenu/dlg_create_world.lua index 13061ee40..134eeebc1 100644 --- a/builtin/mainmenu/dlg_create_world.lua +++ b/builtin/mainmenu/dlg_create_world.lua @@ -85,12 +85,12 @@ local function create_world_formspec(dialogdata) if #gamemgr.games == 0 then retval = retval .. "box[2,4;8,1;#ff8800]label[2.25,4;" .. - fgettext("You have no subgames installed.") .. "]label[2.25,4.4;" .. + fgettext("You have no games installed.") .. "]label[2.25,4.4;" .. fgettext("Download one from minetest.net") .. "]" elseif #gamemgr.games == 1 and gamemgr.games[1].id == "minimal" then retval = retval .. "box[1.75,4;8.7,1;#ff8800]label[2,4;" .. fgettext("Warning: The minimal development test is meant for developers.") .. "]label[2,4.4;" .. - fgettext("Download a subgame, such as minetest_game, from minetest.net") .. "]" + fgettext("Download a game, such as minetest_game, from minetest.net") .. "]" end return retval |