HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Strings in categoryfollowtoggle.php dosent get translated. Missing T(. Update i next version!
Torbjorn
New
Hi
There are missing T( in 'categoryfollowtoggle.php' so strings don´t get translated.
Missing T(<p><?php echo T('CategoriesViewingAll', 'You are currently viewing all categories.'); ?><p>
Should be
<p><?php echo T('CategoriesViewingAll', T('You are currently viewing all categories.')); ?><p>
Same for the other lines.
Not so familiar with GitHub so i post this issue here.
0
Best Answer
-
Todd Vanilla Staff
This is not a bug. You don't translate the second part. The second argument is a default. You do the following:
$Definition['CategoriesViewingAll'] = 'Your translation';
5
Answers
Issues that don't find their way to gitHub will most likely not be handled.
Try to add your report to gitHub please :-)
There was an error rendering this rich post.
@Todd Please handle this. I have not added this to gitHub.
I submitted it for you:
gitHub #1387
This is not a bug. You don't translate the second part. The second argument is a default. You do the following:
Thanks Todd. Sorry for false bug report.