HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
How to translate this?
hallaman
New
How to translate this piece of text in the Message Field?
I tried to add
$Definition['You have selected'] = 'Markiert:';
to the site_core.php of the german locale pack
0
Comments
Welcome to the community!
Some translate strings support variable information. My guess is it is something like 'You have selected %s'. You will need to search the files for 'You have selected' to make sure.
Search first
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
it is not translatable in vanilla 2.0.18.x , unless you make the following changes.
in
applications/vanilla/controllers/class.moderationcontroller.php
since you didn't specify your version of vanilla, I can't provide you with exact line numbers.
If there is already a T on the line all you need to do is add the proper definition, which you should easily find by learning how to search code with grep or notepad++.
after you make the change in core (if necessary) than add a definition
$Definition['You have selected %1$s.'] = 'Have you learned to use search or grep in your code %1$s.';
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
use the locale developer plugin. search for T strings in code.
identify your version of vanilla in your OP always. since the answer may be different depending on your version of vanilla
three posts for the same thing? you got to love it.
http://vanillaforums.org/discussion/23130/forum-post-ettikett-etiquette
http://vanillaforums.org/discussion/17954/food-for-thought-forum-etiquette
http://vanillaforums.org/discussion/25115/how-to-how-can-a-new-user-better-help-the-community-when-asking-a-question
http://vanillaforums.org/discussion/23483/advice-for-all-those-just-starting-out-with-vanilla
http://vanillaforums.org/discussion/20231/how-to-become-somewhat-adept-at-modifying-vanilla-to-meet-your-needs-for-free
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.