Closed (works as designed)
Project:
Read More Link (Drupal 6 and earlier)
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Mar 2007 at 00:28 UTC
Updated:
19 Dec 2008 at 18:18 UTC
Jump to comment: Most recent file
Comments
Comment #1
BooDy commentedThis patch solves the problem for 5.x-1.x-dev by translating the default and the modified messages.
Comment #2
thomas23@drupal.org commentedI'm having the same issue with 6.x-3.x-dev version. I don't see why ed_readmore even requires a string to be shown as "read more" text in the first place. Why not take the string from drupal core?
Whish I could do the programming as I'd like to see this fixed for D6, too. Cheers.
Edit: I just noticed this is a fairly old bug! Almost 1,5 years old...
Comment #3
sognus commentedThere is no bug: the "read more" text is a variable, you just need to add it to the list of multilingual variables.
To do that, add this to settings.php:
$conf['i18n_variables'] = array(
// 'site_name',
// 'site_slogan',
// 'site_mission',
'ed_readmore_text',
// 'site_footer',
// 'anonymous',
// 'menu_primary_menu',
// 'menu_secondary_menu',
);
Then you have to save the string in the module configuration page, one time for every language.