13
0

on windows and macos, disable translation by default

This commit is contained in:
Paul Davis 2023-09-19 14:15:33 -06:00
parent f715640aeb
commit 50a4ad4470

View File

@ -875,7 +875,13 @@ ARDOUR::setup_fpu ()
/* this can be changed to modify the translation behaviour for /* this can be changed to modify the translation behaviour for
cases where the user has never expressed a preference. cases where the user has never expressed a preference.
*/ */
#if defined(PLATFORM_WINDOWS) || defined(__APPLE__)
static const bool translate_by_default = false;
#else
static const bool translate_by_default = true; static const bool translate_by_default = true;
#endif
string string
ARDOUR::translation_enable_path () ARDOUR::translation_enable_path ()