ElkArte Community

Elk Development => Bug Reports => Exterminated Bugs => Topic started by: Jorin on August 12, 2014, 12:42:46 pm

Title: [RC2] split/move topics message: missing link to new topic
Post by: Jorin on August 12, 2014, 12:42:46 pm
When I move or split a thread the message misses the link to the new topic.
Title: Re: [RC2] split/move topics message: missing link to new topic
Post by: emanuele on August 12, 2014, 01:00:27 pm
Have a look in index.german.php at the two strings:
Code: [Select]
$txt['movetopic_auto_topic']
$txt['movetopic_default']
The second should have the "[TOPIC LINK]" translated the same as the first, so in your case probably it should look like:
Code: [Select]
$txt['movetopic_default'] = 'Eine oder mehr Beitrage in diesem Thema wurden verschoben nach [BOARD] - [THEMEN LINK]';
Title: Re: [RC2] split/move topics message: missing link to new topic
Post by: Jorin on August 12, 2014, 01:26:24 pm
It is the same:

Code: [Select]
$txt['movetopic_auto_board'] = '[BOARD]';
$txt['movetopic_auto_topic'] = '[THEMEN LINK]';
$txt['movetopic_default'] = 'Dieses Thema wurde verschoben nach [BOARD] - [THEMEN LINK]';
Title: Re: [RC2] split/move topics message: missing link to new topic
Post by: emanuele on August 12, 2014, 03:59:45 pm
I tried some combinations, but apparently works on my test forum...
I'm not sure what to look at.