# HG changeset patch # User Wuzzy # Date 1525367642 -3600 # Node ID af21a73676406a49ad8343fd0d88025ea9235926 # Parent 95ac8a844befeb10141792bc7b2e680da1a0a503 LuaLibraryLocale: clarify loc(str) diff -r 95ac8a844bef -r af21a7367640 LuaLibraryLocale.wiki --- a/LuaLibraryLocale.wiki Thu May 03 02:46:36 2018 +0100 +++ b/LuaLibraryLocale.wiki Thu May 03 18:14:02 2018 +0100 @@ -27,7 +27,7 @@ l = loc ("Hello World") -- Contains space l = loc('Hello World') -- Not double quotes local str = "Hello World" -l = loc(str) -- Not a literal string +l = loc(str) -- Not a literal string, only use this if you use this together with `loc_noop` l = loc(str .. ", how are you?") -- Only partially a literal string