diff options
author | ngosang <diegodelasheras@gmail.com> | 2015-01-21 02:50:33 +0100 |
---|---|---|
committer | BlockMen <nmuelll@web.de> | 2015-02-14 13:11:33 +0100 |
commit | 2b635a892cf6f484c327307f24a91dca472f4fd4 (patch) | |
tree | 234b6e43f08e33b06bb5cb39e2e3d9258e9b05aa /src | |
parent | 7f6fc148bd6f8337781efe59fd4f189fa94a2fda (diff) | |
download | minetest-2b635a892cf6f484c327307f24a91dca472f4fd4.tar.gz minetest-2b635a892cf6f484c327307f24a91dca472f4fd4.tar.bz2 minetest-2b635a892cf6f484c327307f24a91dca472f4fd4.zip |
Minor fixes in translations
Diffstat (limited to 'src')
-rw-r--r-- | src/game.cpp | 2 | ||||
-rw-r--r-- | src/guiKeyChangeMenu.cpp | 10 | ||||
-rw-r--r-- | src/guiPasswordChange.cpp | 12 |
3 files changed, 12 insertions, 12 deletions
diff --git a/src/game.cpp b/src/game.cpp index a1e2b807a..896973515 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -1074,7 +1074,7 @@ static void show_deathscreen(GUIFormSpecMenu **cur_formspec, std::string(FORMSPEC_VERSION_STRING) + SIZE_TAG "bgcolor[#320000b4;true]" - "label[4.85,1.35;You died.]" + "label[4.85,1.35;" + gettext("You died.") + "]" "button_exit[4,3;3,0.5;btn_respawn;" + gettext("Respawn") + "]" ; diff --git a/src/guiKeyChangeMenu.cpp b/src/guiKeyChangeMenu.cpp index 9bc8118a1..4cd9f36d9 100644 --- a/src/guiKeyChangeMenu.cpp +++ b/src/guiKeyChangeMenu.cpp @@ -156,8 +156,8 @@ void GUIKeyChangeMenu::regenerateGui(v2u32 screensize) } { - s32 option_x = offset.X + 10; - s32 option_y = offset.Y; + s32 option_x = offset.X; + s32 option_y = offset.Y + 5; u32 option_w = 180; { core::rect<s32> rect(0, 0, option_w, 30); @@ -171,9 +171,9 @@ void GUIKeyChangeMenu::regenerateGui(v2u32 screensize) } { - s32 option_x = offset.X + 10; - s32 option_y = offset.Y; - u32 option_w = 220; + s32 option_x = offset.X; + s32 option_y = offset.Y + 5; + u32 option_w = 280; { core::rect<s32> rect(0, 0, option_w, 30); rect += topleft + v2s32(option_x, option_y); diff --git a/src/guiPasswordChange.cpp b/src/guiPasswordChange.cpp index d9a5cc48b..0e19f571d 100644 --- a/src/guiPasswordChange.cpp +++ b/src/guiPasswordChange.cpp @@ -103,8 +103,8 @@ void GUIPasswordChange::regenerateGui(v2u32 screensize) */ s32 ypos = 50; { - core::rect<s32> rect(0, 0, 110, 20); - rect += topleft_client + v2s32(35, ypos+6); + core::rect<s32> rect(0, 0, 150, 20); + rect += topleft_client + v2s32(25, ypos+6); text = wgettext("Old Password"); Environment->addStaticText(text, rect, false, true, this, -1); delete[] text; @@ -119,8 +119,8 @@ void GUIPasswordChange::regenerateGui(v2u32 screensize) } ypos += 50; { - core::rect<s32> rect(0, 0, 110, 20); - rect += topleft_client + v2s32(35, ypos+6); + core::rect<s32> rect(0, 0, 150, 20); + rect += topleft_client + v2s32(25, ypos+6); text = wgettext("New Password"); Environment->addStaticText(text, rect, false, true, this, -1); delete[] text; @@ -134,8 +134,8 @@ void GUIPasswordChange::regenerateGui(v2u32 screensize) } ypos += 50; { - core::rect<s32> rect(0, 0, 110, 20); - rect += topleft_client + v2s32(35, ypos+6); + core::rect<s32> rect(0, 0, 150, 20); + rect += topleft_client + v2s32(25, ypos+6); text = wgettext("Confirm Password"); Environment->addStaticText(text, rect, false, true, this, -1); delete[] text; |