1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-16 18:01:40 +00:00

Mainmenu: Make capitalisation consistent in mainmenu and advanced settings

This commit is contained in:
ezhh 2017-11-13 19:02:26 +00:00 committed by paramat
parent a0c8c05242
commit 8ea86338ab
4 changed files with 29 additions and 29 deletions

View file

@ -74,7 +74,7 @@ local function get_formspec(tabview, name, tabdata)
end
retval = retval ..
"label[5.5,1.7;".. fgettext("Mod information:") .. "]" ..
"label[5.5,1.7;".. fgettext("Mod Information:") .. "]" ..
"textlist[5.5,2.2;6.2,2.4;description;"
for i=1,#descriptionlines,1 do
@ -87,7 +87,7 @@ local function get_formspec(tabview, name, tabdata)
"button[10,4.85;2,0.5;btn_mod_mgr_rename_modpack;" ..
fgettext("Rename") .. "]"
retval = retval .. "button[5.5,4.85;4.5,0.5;btn_mod_mgr_delete_mod;"
.. fgettext("Uninstall selected modpack") .. "]"
.. fgettext("Uninstall Selected Modpack") .. "]"
else
--show dependencies
local toadd_hard, toadd_soft = modmgr.get_dependencies(selected_mod.path)
@ -110,7 +110,7 @@ local function get_formspec(tabview, name, tabdata)
retval = retval .. ";0]"
retval = retval .. "button[5.5,4.85;4.5,0.5;btn_mod_mgr_delete_mod;"
.. fgettext("Uninstall selected mod") .. "]"
.. fgettext("Uninstall Selected Mod") .. "]"
end
end
return retval