forked from Mirrorlandia_minetest/minetest
Minor fixes in translations
This commit is contained in:
parent
7f6fc148bd
commit
2b635a892c
@ -96,7 +96,7 @@ local function get_formspec(tabview, name, tabdata)
|
|||||||
else
|
else
|
||||||
--show dependencies
|
--show dependencies
|
||||||
|
|
||||||
retval = retval .. ",Depends:,"
|
retval = retval .. "," .. fgettext("Depends:") .. ","
|
||||||
|
|
||||||
local toadd = modmgr.get_dependencies(selected_mod.path)
|
local toadd = modmgr.get_dependencies(selected_mod.path)
|
||||||
|
|
||||||
|
@ -59,9 +59,9 @@ local function get_formspec(tabview, name, tabdata)
|
|||||||
"text,align=right;" .. -- clients
|
"text,align=right;" .. -- clients
|
||||||
"text,align=center,padding=0.25;" .. -- "/"
|
"text,align=center,padding=0.25;" .. -- "/"
|
||||||
"text,align=right,padding=0.25;" .. -- clients_max
|
"text,align=right,padding=0.25;" .. -- clients_max
|
||||||
image_column("Creative mode", "creative") .. ",padding=1;" ..
|
image_column(fgettext("Creative mode"), "creative") .. ",padding=1;" ..
|
||||||
image_column("Damage enabled", "damage") .. ",padding=0.25;" ..
|
image_column(fgettext("Damage enabled"), "damage") .. ",padding=0.25;" ..
|
||||||
image_column("PvP enabled", "pvp") .. ",padding=0.25;" ..
|
image_column(fgettext("PvP enabled"), "pvp") .. ",padding=0.25;" ..
|
||||||
"text,padding=1]" -- name
|
"text,padding=1]" -- name
|
||||||
else
|
else
|
||||||
retval = retval .. "tablecolumns[text]"
|
retval = retval .. "tablecolumns[text]"
|
||||||
|
@ -42,9 +42,9 @@ local function get_formspec(tabview, name, tabdata)
|
|||||||
"text,align=right;" .. -- clients
|
"text,align=right;" .. -- clients
|
||||||
"text,align=center,padding=0.25;" .. -- "/"
|
"text,align=center,padding=0.25;" .. -- "/"
|
||||||
"text,align=right,padding=0.25;" .. -- clients_max
|
"text,align=right,padding=0.25;" .. -- clients_max
|
||||||
image_column("Creative mode", "creative") .. ",padding=1;" ..
|
image_column(fgettext("Creative mode"), "creative") .. ",padding=1;" ..
|
||||||
image_column("Damage enabled", "damage") .. ",padding=0.25;" ..
|
image_column(fgettext("Damage enabled"), "damage") .. ",padding=0.25;" ..
|
||||||
image_column("PvP enabled", "pvp") .. ",padding=0.25;" ..
|
image_column(fgettext("PvP enabled"), "pvp") .. ",padding=0.25;" ..
|
||||||
"text,padding=1]" -- name
|
"text,padding=1]" -- name
|
||||||
else
|
else
|
||||||
retval = retval .. "tablecolumns[text]"
|
retval = retval .. "tablecolumns[text]"
|
||||||
|
@ -1074,7 +1074,7 @@ static void show_deathscreen(GUIFormSpecMenu **cur_formspec,
|
|||||||
std::string(FORMSPEC_VERSION_STRING) +
|
std::string(FORMSPEC_VERSION_STRING) +
|
||||||
SIZE_TAG
|
SIZE_TAG
|
||||||
"bgcolor[#320000b4;true]"
|
"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") + "]"
|
"button_exit[4,3;3,0.5;btn_respawn;" + gettext("Respawn") + "]"
|
||||||
;
|
;
|
||||||
|
|
||||||
|
@ -156,8 +156,8 @@ void GUIKeyChangeMenu::regenerateGui(v2u32 screensize)
|
|||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
s32 option_x = offset.X + 10;
|
s32 option_x = offset.X;
|
||||||
s32 option_y = offset.Y;
|
s32 option_y = offset.Y + 5;
|
||||||
u32 option_w = 180;
|
u32 option_w = 180;
|
||||||
{
|
{
|
||||||
core::rect<s32> rect(0, 0, option_w, 30);
|
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_x = offset.X;
|
||||||
s32 option_y = offset.Y;
|
s32 option_y = offset.Y + 5;
|
||||||
u32 option_w = 220;
|
u32 option_w = 280;
|
||||||
{
|
{
|
||||||
core::rect<s32> rect(0, 0, option_w, 30);
|
core::rect<s32> rect(0, 0, option_w, 30);
|
||||||
rect += topleft + v2s32(option_x, option_y);
|
rect += topleft + v2s32(option_x, option_y);
|
||||||
|
@ -103,8 +103,8 @@ void GUIPasswordChange::regenerateGui(v2u32 screensize)
|
|||||||
*/
|
*/
|
||||||
s32 ypos = 50;
|
s32 ypos = 50;
|
||||||
{
|
{
|
||||||
core::rect<s32> rect(0, 0, 110, 20);
|
core::rect<s32> rect(0, 0, 150, 20);
|
||||||
rect += topleft_client + v2s32(35, ypos+6);
|
rect += topleft_client + v2s32(25, ypos+6);
|
||||||
text = wgettext("Old Password");
|
text = wgettext("Old Password");
|
||||||
Environment->addStaticText(text, rect, false, true, this, -1);
|
Environment->addStaticText(text, rect, false, true, this, -1);
|
||||||
delete[] text;
|
delete[] text;
|
||||||
@ -119,8 +119,8 @@ void GUIPasswordChange::regenerateGui(v2u32 screensize)
|
|||||||
}
|
}
|
||||||
ypos += 50;
|
ypos += 50;
|
||||||
{
|
{
|
||||||
core::rect<s32> rect(0, 0, 110, 20);
|
core::rect<s32> rect(0, 0, 150, 20);
|
||||||
rect += topleft_client + v2s32(35, ypos+6);
|
rect += topleft_client + v2s32(25, ypos+6);
|
||||||
text = wgettext("New Password");
|
text = wgettext("New Password");
|
||||||
Environment->addStaticText(text, rect, false, true, this, -1);
|
Environment->addStaticText(text, rect, false, true, this, -1);
|
||||||
delete[] text;
|
delete[] text;
|
||||||
@ -134,8 +134,8 @@ void GUIPasswordChange::regenerateGui(v2u32 screensize)
|
|||||||
}
|
}
|
||||||
ypos += 50;
|
ypos += 50;
|
||||||
{
|
{
|
||||||
core::rect<s32> rect(0, 0, 110, 20);
|
core::rect<s32> rect(0, 0, 150, 20);
|
||||||
rect += topleft_client + v2s32(35, ypos+6);
|
rect += topleft_client + v2s32(25, ypos+6);
|
||||||
text = wgettext("Confirm Password");
|
text = wgettext("Confirm Password");
|
||||||
Environment->addStaticText(text, rect, false, true, this, -1);
|
Environment->addStaticText(text, rect, false, true, this, -1);
|
||||||
delete[] text;
|
delete[] text;
|
||||||
|
Loading…
Reference in New Issue
Block a user