aboutsummaryrefslogtreecommitdiff
path: root/po/es/minetest.po
diff options
context:
space:
mode:
authorIlya Zhuravlev <zhuravlevilya@ya.ru>2013-04-07 15:36:46 +0400
committerIlya Zhuravlev <zhuravlevilya@ya.ru>2013-04-07 15:36:46 +0400
commit4468ea84e6d0faede5a01e8d97d359c537aa7ec8 (patch)
tree448910ad6d787d21c63b505c79b730228a57684f /po/es/minetest.po
parent96e2931c5c154262566359495d4a0b8515376947 (diff)
downloadminetest-4468ea84e6d0faede5a01e8d97d359c537aa7ec8.tar.gz
minetest-4468ea84e6d0faede5a01e8d97d359c537aa7ec8.tar.bz2
minetest-4468ea84e6d0faede5a01e8d97d359c537aa7ec8.zip
Add Ukrainian language.
Diffstat (limited to 'po/es/minetest.po')
0 files changed, 0 insertions, 0 deletions
class='logsubject'>Android: fix horrible libiconv buildest312015-07-29 | | | | | | | | | | | | | | | | | | | Before, our libiconv build was a joke. We first called configure for our own build host system, then called make, before we executed a Android.mk script we provided as patch. The first "native make" always failed, and the LIBICONV_LIB file setting in our Makefile didn't match the built one, resulting in an always-rebuild of iconv. This commit cleans up this total mess, removes the double-build, and the Android.mk, and properly calls ./configure with the according target platform, and uses a built toolchain. As we have to deal with the android bug "NDK: Support for prebuild libs with full sonames" https://code.google.com/p/android/issues/detail?id=55868 as the 2013 patch https://lists.gnu.org/archive/html/libtool-patches/2013-06/msg00002.html by Google's David Turner wasn't inside the 2011 libtool, we pass -avoid-version to libtool. Thanks to the proper build, wide_to_utf8 works for android now, removing us of the need to disable it. * Use UTF-8 instead of narrowest312015-07-08 | | | | | Use wide_to_utf8 and utf8_to_wide instead of wide_to_narrow and narrow_to_wide at almost all places. Only exceptions: test functions for narrow conversion, and chat, which is done in a separate commit. * Fix *BSD build with GNU iconvkwolekr2015-06-29 | * Fix string conversion error messageest312015-06-23 | * Fail iconv call gracefullyest312015-06-17 | | | | No freezing when inbuf_size doesn't decrease over time. * Android: bypass broken wide_to_utf8 with wide_to_narrowest312015-06-14 | | | | | While utf8_to_wide works well, wide_to_utf8 is quite broken on android, for some reason. * Add utf-8 conversion utilities and re-add intlGUIEditBoxest312015-06-13 | * Make early protocol auth mechanism generic, and add SRPest312015-05-11 | | | | | | | Adds everything needed for SRP (and everything works too), but still deactivated, as protocol v25 init packets aren't final yet. Can be activated by changing the LATEST_PROTOCOL_VERSION header to 25 inside networkprotocol.h. * Refactor around translatePasswordest312015-04-17 | | | | | | | Change types for passed password from wstring to string, which removes converting back and forth in most cases. Move the narrow_to_wide conversion, where its neccessary, closer to irrlicht. Remove trailing spaces in guiPasswordChange.cpp. Make parameters for translatePassword passed as const reference. * For usages of assert() that are meant to persist in Release builds (when ↵Craig Robbins2015-03-07 | | | | NDEBUG is defined), replace those usages with persistent alternatives * Fix Android text bug (no text displaying)Craig Robbins2015-03-07 | * Fix narrow_to_wide_c (ANDROID)Craig Robbins2015-03-02 | | | | | * Ensure converted string is NUL terminated * Restore logic to that used prior to 9e2a9b5 * Fix minor memory leak (Android)Craig Robbins2015-02-27