dcstes

Results 45 comments of dcstes

OK for crosscompiling VM_HOST_OS was changed to VM_TARGET_OS. That happened a few years ago in OpenSmalltalk commit 7c1614a06eb16d3d479d324bc343ce9a9dedde15. But in both cases VM_HOST_OS or VM_TARGET_OS it's config.guess output. The script...

A lot of GNU software (and other UNIX software) is using Solaris message catalogues or GNU gettext message catalogues and .po portable object files for translation (and .mo message object...

a lot of software on GNOME desktop or KDE (Plasma) desktop provides .po files for internationalisation of GNOME or KDE applications

NuScratch loads (succesfully) from SqueakMap catalog into a Squeak 5.2 image for me (but not into a 6.1 Squeak image) , provided I install first the ScratchSkin files from https://github.com/raspberrypi/scratch....

I found .po files for Scratch 1.4 in the ScratchFoundation project : https://github.com/scratchfoundation/Scratch_1.4/ If I run the Scratch.image from that git repository using the Squeak classic VM for Squeak 4.6...

Indeed there is a fairly large list of .po (message translation files) for languages in Scratch for non Latin script (russian, korean, japanese, chinese, vietnamese and many others, I think)....

NuScratch on OpenSmalltalk (just like Scratch 1.4 on Squeak Classic VM) also provides a translated userinterface, if I load NuScratch (from SqueakMap) into a Squeak 5.2 image. (version 382 from...

I changed the title of this issue, as I think Scratch shows that the use of .po files is independent of the LocalePlugin.

When running autoconf 2.72 on the OpenSmalltalk platforms/unix/config/configure.in script, this emits a bunch of warnings that AC_TRY_COMPILE supposedly is obsolete. Although that replacing ` AC_TRY_COMPILE( somecode ) ` by `...

Tested the following platforms/unix/vm-sound-Sun/acinclude.m4 ``` AC_MSG_CHECKING([for SunOS/Solaris audio]) AC_TRY_COMPILE([#include ],[AUDIO_SUNVTS;],[ AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include int test = AUDIO_SUNVTS;]])],[ AC_MSG_RESULT(yes) AC_DEFINE_UNQUOTED(HAVE_SYS_AUDIOIO_H,1, [SunOS/Solaris audio]) ],[ AC_TRY_COMPILE([#include ],[AUDIO_SUNVTS;],[ AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include int test = AUDIO_SUNVTS;]])],[ AC_MSG_RESULT(yes) AC_DEFINE_UNQUOTED(HAVE_SUN_AUDIOIO_H,1, [Sun...