The site slogan is not translatable as multilingual variable (the text "This is a multilingual variable" is not visible at all). I had to downgrade back to 6.x-1.1. version which seems to work well.
| Comment | File | Size | Author |
|---|---|---|---|
| #6 | site_Slogan.png | 26.84 KB | droshani |
Comments
Comment #1
forcebook commentedI tested and run properly!
Please read this: http://drupal.org/node/313272#comment-1741688
or
Open file /sites/default/settings.php
Go to $conf and uncomment
and write this:
and before and of config file - before ); add this
And back to your site and make modification
like: www.site.com/en/admin/settings/site-information (english)
like: www.site.com/it/admin/settings/site-information (Italian)
AD.
YOURTHEMENAME - specify your teheme or not work.
Clear chache before save modification.
Work properly for me :)
Comment #2
forcebook commentedThis is my config file, change for your site.
Comment #3
my-family commentedI use this variables in my settings.php. Everytihg has been working UNTIL 6.x.-1.2. version of i18n module. After downgrading to 6.x.-1.1. it works again. So I suppose it is not related to my setting.php configuration.
Comment #4
md2 commentedI am having the same issue but in 6.x-1.4. My settings.php $conf array is set up correctly.
Anyone got any ideas?
Thanks,
Mark
Comment #5
mikou commentedDid any body find a solution ?
Comment #6
droshani commentedI have the same problem, and I work with D6.16 and i18 6.1.4
I made the changes to me settings and but no results.
Hope someone can help. see attached image
My variables
/**
* Multilingual settings
*
* This is a collection of variables that can be set up for each language when i18n enabled.
* These are the basic ones for Drupal core, but you can add your own here.
*/
$conf['i18n_variables'] = array(
'theme_default',
'site_name',
'site_slogan',
'site_mission',
'site_footer',
'anonymous',
// Different front page for each language
'site_frontpage',
'menu_primary_menu',
'menu_secondary_menu',
'contact_form_information',
// Primary and secondary links
'menu_primary_links_source',
'menu_secondary_links_source',
// FAQ variables
'faq_title',
'faq_description',
'faq_question_label',
'faq_answer_label',
'faq_back_to_top',
);
Comment #7
jose reyero commentedI still cannot reproduce this. It may be related to your theme or have something to do with the text editor?
Comment #8
droshani commentedsorry @Jose Reyero is this reply to my question? The issue with Slogan filed in Site Information is not related to any Theme.
Comment #9
Anonymous (not verified) commentedI have a similar problem. I just added a new multilingual variable to the settings.php file, and while the "This is a multilingual variable" string is shown in the UI, it will only show the last saved version of the string on all language versions, i.e.:
* I add the German version of the string: it shows on the German and English version of the site.
* I add the English version of the string on the English version of the site: The English string is shown on both the German and English version of the site.
* I change the German string on the German version of the site: The German version of the string is now shown on both language versions.
Curiously, the strings are always preserved in the edit fields (so they are stored *somewhere*), but only the last saved string will show up regardless of language version.
Comment #10
jose reyero commentedQuestions:
- Does this happen with latest versions? (Drupal 6.17 + Internationalization 6.x-1.5)
- Can you reproduce it with Drupal core + i18n module alone?
Comment #11
droshani commentedI did update to latest D6.17 and i18 6.15 but the problem is still there. The files for Slogan is not translatable. ;(
Comment #12
jose reyero commentedLooking at the screenshot above I'm wondering also whether the visual editor module, which seems to be enabled there has anything to do with this.
It could change the form causing i18n not to find the field. Just wondering.
Comment #13
droshani commentedYou mean having FCKeditor enabled on Mission box?
I removed the editor and nothing changed. Still no Multilingual statement
Comment #14
mikou commentedConcerning #5, I did the exact same actions on another serve and it worked. Same version of drupal, same version of modules. It has something to do with the server configuration. I never understood what !
Comment #15
msozturk commentedHi,
I have the same issue. I have edited settings.ini file, and run the cron and I was expecting to see "This is a multilingual variable" after the site slogan and site mission statement.
However it does not still work. Any more ideas about what might be wrong?
I am using Drupal 6.15
Comment #16
rancas commentedHi,
I had a similar issue but I forgot to enablex menu translation (i18nmenu) module!
After enablig it everything works fine.
Comment #17
Anonymous (not verified) commentedSame issue for me : no This is a multilingual variable text displayed.
(Drupal 6.17 + Internationalization 6.x-1.5)
I then run a test on a fresh Drupal installation on a local server : everything is fine !
Maybe I'll clone the site with problems on my local server to investigate...
Comment #18
Anonymous (not verified) commentedOk, I ran a test on a local server by cloning the site with problems (remote server) : it just work !
PHP version is the same on both server :
5.2.13MySQL version is :
5.1.45on local server5.0.67on remote serverProblem resolved !
The settings.php file is protected on the server. Making modifications on my editor and sending them to the server did not work because of these protections. But the editor did not warn me of such problem !
Thus there were no modifications applied to the server !!!!
And now it works !
Comment #19
linuxbcn commentedA problem with multilingual variable for slogan in Abedeen Theme in D6
I maked all for have a Multilingual settincs for an drupal6 web but the slogan variable don't work for Abedeen theme.
I put the multilingual settings in /sites/default/settings.php like other times in other drupal sites and go to /admin/settings/site-information for change de slogan site fot each language for change this text string
This not saved and don't work ;(
I search the possible solution in i18n settings for this problem and see this in /admin/settings/language/i18n/variables and don't see this variable ;( (http://d.pr/49rc)
Any idea for fix this problem?
tnx!
I try too change settings.php like this:
Comment #20
jose reyero commentedSo it seems this either variable not added to settings php or a theme specific issue (for that open an issue for that theme).
Comment #21
dimch commentedOne common cause of changes made to
i18n_variablesviasettings.phpnot showing up in the Admin page is having the Internalization tests module enabled.In default configuration this module sets the variable to:
If this seems to be the case just disable the Internalization tests module in the Testing section of Administer -> Site Building configuration page.