Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
How to find the definitions you want to change?
Hello again,
I am in the process of overhauling all the icons on my forum. Instead of finding the core files, i have been changing things through definitions. How do you find specific definitions? I am trying to find this one as shown in the picture, but cannot do it.
It is the little button you click on to get to Edit Profile.
I have tried things like Profile Options Profile, i mean, can it be this hard?
0
Comments
Had a look at this, still could not find the right one.
https://github.com/vanilla/locales/blob/master/tx-source/dash_core.php
and this
https://github.com/vanilla/locales/blob/master/tx-source/site_core.php
http://vanillaforums.org/discussion/26597/tutorial-how-to-change-wording-how-to-change-text-how-to-change-language-how-to-change-locale
you have a few choices, browse around in translations. or identify the file that produces the "thing" you are searching for.
the translation is Hidden. you need to use a web-developer tool - identify the class. then grep for class to find file and than look for translateable item.
in css
add what you need to make the hidden translation appear.
then use
$Definition['Edit Profile'] = "whatever you want.";
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
OK, i see now. Use CSS to make the definitions become text. I think i have this now. I will post back if i have questions.
EDIT: I was using a developer tool, i just did not know what to look for. Firebug is awesome.
Thanks again.
a new tutorial for you.
http://vanillaforums.org/discussion/30993/how-to-use-locale-developer-config-statement-to-identify-translateable-items-on-a-particular-page/p1
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.