it responds: "Configuration written & saved"
but doesn't do the change,
I dont know if I do something wrong or it is a bug
somebody can help me please?
thanks.
I first change the language under "Personal Settings" but I don't see any change in the blog interface, and it happens same when I try change of language under "Configuration".ghoti wrote:Did you change the language under Configuration or Personal Settings? The former is for the blog itself, while the latter is for the admin interface.
Hi! Garvingarvinhicking wrote:Hi!
Can you check your serendipity_config table and look for the "lang" value for the authorid of the author you try to change it, if you know how to handle phpMyAdmin?
The "configuration written & changed" only comes on the Global Configuration section, so your personal language is really only affected when being changed in "Personal Configuration". If you re-enter your personal configuration, is the dropdown of the language choosing set to the language you want, or to another language?
Regards
Garvin
Hi! Yes. I want the language "spanish", but I see the language "english" .garvinhicking wrote:Hi!
So the language you want is "spanish", but the language you see is "english", is that true?
Which Serendipity version are you using? Which event plugins do you have installed?
Regards,
Garvin
garvinhicking wrote:Hi!
Do you have configured your blog as "Native" or "UTF-8"? (Glboal configuration, not personal)
And can you check if the file lang/serendipity_lang_es.inc.php and lang/UTF-8/serendipity_lang_es.inc.php are existing? Those are the files that should be loaded for you; if they are missing or not readable, serendipity will fallback to english language!
Also note that spanish language version is missing some translations, so not everything will be spanish...
The plugins you listed to me are only sidebar plugins, but I would need the list of Event plugins you have installed!
Code: Select all
if (!defined('serendipity_LANG_LOADED') || serendipity_LANG_LOADED !== true) {
// Try and include preferred language from the configurated setting
if (@include(S9Y_INCLUDE_PATH . 'lang/' . $serendipity['charset'] . 'serendipity_lang_'. $serendipity['lang'] .'.inc.php') ) {
// Only here can we truely say the language is loaded
define('serendipity_LANG_LOADED', true);
} elseif (IS_installed === false || (defined('IS_up2date') && IS_up2date === false)) { /* -- Auto-Guess -- */
// If no config file is loaded, language includes are not available.
// Now include one. Try to auto-guess the language by looking up the HTTP_ACCEPT_LANGUAGE.
serendipity_detectLang(true);
} //endif
// Do fallback to english
if (IS_installed === false || (defined('IS_up2date') && IS_up2date === false)) {
@include_once(S9Y_INCLUDE_PATH . 'lang/serendipity_lang_en.inc.php');
}
}
Code: Select all
if (!defined('serendipity_LANG_LOADED') || serendipity_LANG_LOADED !== true) {
// Try and include preferred language from the configurated setting
echo "Trying to include lang file: {$serendipity['charset']} / {$serendipity['lang']}: " . S9Y_INCLUDE_PATH . 'lang/' . $serendipity['charset'] . 'serendipity_lang_'. $serendipity['lang'] .'.inc.php' . "<br />\n";
if (@include(S9Y_INCLUDE_PATH . 'lang/' . $serendipity['charset'] . 'serendipity_lang_'. $serendipity['lang'] .'.inc.php') ) {
// Only here can we truely say the language is loaded
echo "Inclusion successfull.<br />\n";
define('serendipity_LANG_LOADED', true);
} elseif (IS_installed === false || (defined('IS_up2date') && IS_up2date === false)) { /* -- Auto-Guess -- */
// If no config file is loaded, language includes are not available.
// Now include one. Try to auto-guess the language by looking up the HTTP_ACCEPT_LANGUAGE.
echo "Starting auto-detection..<br />\n";
serendipity_detectLang(true);
} //endif
// Do fallback to english
if (IS_installed === false || (defined('IS_up2date') && IS_up2date === false)) {
echo "Fallback required: " . S9Y_INCLUDE_PATH . 'lang/serendipity_lang_en.inc.php' . "<br />\n";
@include_once(S9Y_INCLUDE_PATH . 'lang/serendipity_lang_en.inc.php');
}
}
Code: Select all
echo "Loading language...";
if (!defined('serendipity_LANG_LOADED') || serendipity_LANG_LOADED !== true) {
// Try and include preferred language from the configurated setting
echo "Trying to include lang file: {$serendipity['charset']} / {$serendipity['lang']}: " . S9Y_INCLUDE_PATH . 'lang/' . $serendipity['charset'] . 'serendipity_lang_'. $serendipity['lang'] .'.inc.php' . "<br />\n";
if (@include(S9Y_INCLUDE_PATH . 'lang/' . $serendipity['charset'] . 'serendipity_lang_'. $serendipity['lang'] .'.inc.php') ) {
// Only here can we truely say the language is loaded
echo "Inclusion successfull.<br />\n";
define('serendipity_LANG_LOADED', true);
} elseif (IS_installed === false || (defined('IS_up2date') && IS_up2date === false)) { /* -- Auto-Guess -- */
// If no config file is loaded, language includes are not available.
// Now include one. Try to auto-guess the language by looking up the HTTP_ACCEPT_LANGUAGE.
echo "Starting auto-detection..<br />\n";
serendipity_detectLang(true);
} //endif
// Do fallback to english
if (IS_installed === false || (defined('IS_up2date') && IS_up2date === false)) {
echo "Fallback required: " . S9Y_INCLUDE_PATH . 'lang/serendipity_lang_en.inc.php' . "<br />\n";
@include_once(S9Y_INCLUDE_PATH . 'lang/serendipity_lang_en.inc.php');
}
}
die('Language run done');
you do not offend to me. thanks for your help!!I'm sorry to tell you that you are not editing the right file