Info
- 11 posts
- 2 voices
- Started 3 years ago by johnnydoe
- Latest reply from johnnydoe
- This topic is not resolved
change text.
-
- Posted 3 years ago #
hello,
where can i find the language file, because i want to remove things like » and such.
thanks
-
- Posted 3 years ago #
You can find out more here:
http://bbshowcase.org/forums/topic/bbpress-translation-internationalization-into-local-languages
http://svn.automattic.com/bbpress-i18n/The original POT file for translation:
http://svn.automattic.com/bbpress-i18n/pot/trunk/bbpress.pot -
- Posted 3 years ago #
i guess this is a way over my head, is there no single php file or such where i'm able to change the phrases directly with a text editor?
thanks
-
- Posted 3 years ago #
You're not talking about changing everything into a new language then?
Where does the text appear that you want to change? You can change anything that appears in a template file without hurting anything else. Maybe what you want to change appears in a template file. Where are the characters you want to change? Is it just »?
You might be asking about two different things: language file, and characters that appear in the template files.
-
- Posted 3 years ago #
well actually i want to change things like "» " or the "|" in the footer (Welcome, admin | Admin | Log Out ) .
so sorry for the confusion so far :D
-
- Posted 3 years ago #
Where does the » appear on your page? In the page title, or by the Add New or between the forum name and topic name? And that admin link for me is in the header not the footer. Can you post a screenshot with the items circled that you want to change?
-
- Posted 3 years ago #
it's the Topic - Add New » on front-page.php
<th align="left"><?php _e('Topic'); ?> <?php new_topic(); ?></th>thats why i thought there is a language file or such around, because the phrases here are actually php tags.
-
- Posted 3 years ago #
What version did you install?
-
- Posted 3 years ago #
In the front-page.php file in your template folder, you can do this:
Change:
<th><?php _e('Topic'); ?> — <?php new_topic(); ?></th>to:
<th><?php _e('Topic'); ?> — <?php new_topic('Add New ---->'); ?></th>Where Add New ----> is what you want displayed instead of the default.
-
- Posted 3 years ago #
ah gotcha that worked like a charm, thanks a ton.
btw i use 0.9.0.2 .
-
- Posted 3 years ago #
sorry to bother you again, but i also need to change the [sticky] tag on the frontpage in to something else, lets say in ricky.
the same trick you've mentioned above with the add new?thanks
-
You must log in to post.