How to change "YOUAH" in Breadcrumbs to "You are here:"? {SOLVED}

GK User
Mon Feb 14, 2011 4:54 pm
Hello everyone,
I have noticed in the Breadcrumbs module (published in the Breadcrumb position) that it begins with "YOUAH" but I would like to change that to read "You are here:".

I have looked in template.css and see that the style is .youah but I don't know which file to look in to change what it says at the beginning of the breadcrumbs themselves. Does anyone know?
User avatar
Junior Boarder

GK User
Mon Feb 14, 2011 10:46 pm
I would be interested also, because I searched and can't find the place
User avatar
Junior Boarder

GK User
Mon Feb 14, 2011 11:08 pm
That is hard coded to change it you need to edit gk_cherrydesign/html/mod_breadcrumbs/default.php

Look around line 30 for this...
Code: Select all
<span class="mod_breadcrumbs">
   <span class="youah"><?php echo JText::_('YOUAH'); ?></span>


Change the echoed text to the text you would like. B)
User avatar
Expert Boarder

GK User
Mon Feb 14, 2011 11:19 pm
I think it is different from what I search.
I want to change you are here for something else, in french
I can't find it whare you point the place
Thanks for your help
User avatar
Junior Boarder

GK User
Mon Feb 14, 2011 11:26 pm
Thanks, freshgs!!

Nicobel, look in templates/gk_cherrydesign/html/mod_breadcrumbs/default.php

This is what the code looks like, lines 31-32:
Code: Select all
<span class="mod_breadcrumbs">
   <span class="youah"><?php echo JText::_('YOUAH'); ?></span>


You can change the ('YOUAH') to whatever you want. If you want it to say something in French, perhaps something like
('Vous êtes ici:')

Hope that helps?

When you have found what you need and are able to change it to your satisfaction, please post here, and then I will change the title to add the {SOLVED} for others who may have the same question.
User avatar
Junior Boarder

GK User
Mon Feb 14, 2011 11:38 pm
Thanks, I was looking for the integral text
Is there a way to put accent on the e?
User avatar
Junior Boarder

GK User
Mon Feb 14, 2011 11:54 pm
For windows users who don't have a grep function maybe you would be interested in this handy dandy little tool grepWin This tool will bring the power of the grep command to your windows box.

Essentially that means you can run find and replace commands across your drive or any given directory. You can either use advanced regex or text strings, which is a great time saver!

Image

In the image above you will see that I ran a plain text search on the gk_cherrydesign template directory - there are four files which contain the string YOUAH or youah it's that easy!

There are other free and paid grep tools for windows just search google for win32 grep tool or something.

Here is a guide to regular expression REGEX GUIDE
User avatar
Expert Boarder

GK User
Tue Feb 15, 2011 2:43 am
I found how to make my accent here

http://www.starr.net/is/type/htmlcodes.html

Thanks for the small program, I will give it a try
User avatar
Junior Boarder

GK User
Tue Feb 15, 2011 2:53 am
Hi,

Glad you got it the way you want it.

grepWin is a really handy tool, I'm sure it will save you a lot of time when trying to find/replace strings in multiple file sets.

If you really get into grep for windows, this is an amazing tool PowerGREP but it's quite expensive @ 119 Euros.
User avatar
Expert Boarder


cron