Io ho la 5.1 pro (che non è l'ultima versione, l'ultima è la 5.1.1), versione osx.
Nel mio functions.php ho questo:
// $arr_languages = (array) array('English', 'German', 'Italian', 'Japanese', 'ru', 'Spanish', 'French');
$arr_languages = (array) array('English', 'German');
$language = (isset($_REQUEST['language'])) ? $_REQUEST['language'] : 'English';
if (!in_array($language, $arr_languages)) {
$language = 'English';
}
$transFile = dirname(__FILE__) . "/../translate/" . $language . ".json";
if (file_exists($transFile)) {
$GLOBALS["MAMP_TRANSLATE"] = json_decode(file_get_contents($transFile));
}
I file lingua nella 5.1 sono nella cartella /Applicazioni/MAMP/bin/mamp/translate/
e sono sottoforma di files .json
Devi avere un file English.json.
Quindi puoi sempre forzare il caricamento dell'inglese:$transFile = dirname(__FILE__) . "/../translate/" . "English.json";