aboutsummaryrefslogtreecommitdiff
path: root/po/lt
diff options
context:
space:
mode:
authorMinecraftTAO <guangtao13631219661@outlook.com>2022-02-27 10:47:49 +0000
committersfan5 <sfan5@live.de>2022-07-20 21:28:26 +0200
commitc0e03f7ce76aa7c0e7111d5ab69d9fa68d198c42 (patch)
tree7da01f33406defbec12fe51d12992247a81e500e /po/lt
parent93247a8a35d9aa8e7bc831df3febda6336b04efa (diff)
downloadminetest-c0e03f7ce76aa7c0e7111d5ab69d9fa68d198c42.tar.gz
minetest-c0e03f7ce76aa7c0e7111d5ab69d9fa68d198c42.tar.bz2
minetest-c0e03f7ce76aa7c0e7111d5ab69d9fa68d198c42.zip
Translated using Weblate (Chinese (Simplified))
Currently translated at 93.3% (1322 of 1416 strings)
Diffstat (limited to 'po/lt')
0 files changed, 0 insertions, 0 deletions
class="hl ppc"> #include "config.h" struct HTTPFetchRequest; struct HTTPFetchResult; class ModApiHttp : public ModApiBase { private: #if USE_CURL // Helpers for HTTP fetch functions static void read_http_fetch_request(lua_State *L, HTTPFetchRequest &req); static void push_http_fetch_result(lua_State *L, HTTPFetchResult &res, bool completed = true); // http_fetch_sync({url=, timeout=, data=}) static int l_http_fetch_sync(lua_State *L); // http_fetch_async({url=, timeout=, data=}) static int l_http_fetch_async(lua_State *L); // http_fetch_async_get(handle) static int l_http_fetch_async_get(lua_State *L); // request_http_api() static int l_request_http_api(lua_State *L); // get_http_api()