Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add server side translations capability (#9733)
* Add server side translations capability
- Loading branch information
Showing
with
126 additions
and 18 deletions.
- +15 −0 doc/lua_api.txt
- +1 −1 src/client/client.cpp
- +1 −1 src/client/game.cpp
- +6 −0 src/clientiface.h
- +3 −0 src/network/serverpackethandler.cpp
- +16 −0 src/script/lua_api/l_env.cpp
- +3 −0 src/script/lua_api/l_env.h
- +6 −1 src/script/lua_api/l_server.cpp
- +21 −1 src/server.cpp
- +4 −1 src/server.h
- +11 −2 src/translation.cpp
- +4 −1 src/translation.h
- +31 −10 src/util/string.cpp
- +4 −0 src/util/string.h