diff options
author | Paramat <paramat@users.noreply.github.com> | 2018-10-06 03:43:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-06 03:43:26 +0100 |
commit | d6f2a1c4b8ab13cee92e2041b3410fe3548e88e6 (patch) | |
tree | d33ee291b747eb6ea46b9ab4333f66f80308369d /builtin/mainmenu/pkgmgr.lua | |
parent | b982e45456050bd055352b7d487b0fb88f8989d7 (diff) | |
download | minetest-d6f2a1c4b8ab13cee92e2041b3410fe3548e88e6.tar.gz minetest-d6f2a1c4b8ab13cee92e2041b3410fe3548e88e6.tar.bz2 minetest-d6f2a1c4b8ab13cee92e2041b3410fe3548e88e6.zip |
Various grammar improvements (#7769)
In builtin//pkgmgr.lua, README.md and settingtypes.txt.
Based on 2 pull requests by comradekingu.
Diffstat (limited to 'builtin/mainmenu/pkgmgr.lua')
-rw-r--r-- | builtin/mainmenu/pkgmgr.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/mainmenu/pkgmgr.lua b/builtin/mainmenu/pkgmgr.lua index 49ab78c24..eb062ccc8 100644 --- a/builtin/mainmenu/pkgmgr.lua +++ b/builtin/mainmenu/pkgmgr.lua @@ -431,7 +431,7 @@ function pkgmgr.install_dir(type, path, basename, targetpath) targetpath = core.get_modpath() .. DIR_DELIM .. clean_path else return nil, - fgettext("Install Mod: unable to find suitable foldername for modpack $1", + fgettext("Install Mod: Unable to find suitable folder name for modpack $1", modfilename) end end @@ -457,7 +457,7 @@ function pkgmgr.install_dir(type, path, basename, targetpath) if targetfolder ~= nil and pkgmgr.isValidModname(targetfolder) then targetpath = core.get_modpath() .. DIR_DELIM .. targetfolder else - return nil, fgettext("Install Mod: unable to find real modname for: $1", modfilename) + return nil, fgettext("Install Mod: Unable to find real mod name for: $1", modfilename) end end @@ -493,7 +493,7 @@ function pkgmgr.install(type, modfilename, basename, dest) if path == nil then return nil, fgettext("Install: file: \"$1\"", archive_info.name) .. "\n" .. - fgettext("Install: unsupported filetype \"$1\" or broken archive", + fgettext("Install: Unsupported file type \"$1\" or broken archive", archive_info.type) end |