17689 Posts in 4607 Topics by 2180 members
General Questions
SilverStripe Forums » General Questions » (solved) translatable and header images
General questions about getting started with SilverStripe that don't fit in any of the categories above.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 547 Views |
-
(solved) translatable and header images

8 July 2010 at 10:53am Last edited: 8 July 2010 12:17pm
Is there some code i can use for header images that if site is in english i use english header and when some other some other header image??
-
Re: (solved) translatable and header images

8 July 2010 at 12:17pm
<% if Locale=en_US %>
<img src="themes/blackcandy/images/headen.png" width="800" height="100" border="0"/>
<% else %>
<img src="themes/blackcandy/images/head.png" width="800" height="100" border="0"/>
<% end_if %>worked like charm in page.ss
-
Re: (solved) translatable and header images

11 November 2011 at 6:34am
This was huge help for me today. Thank you for posting this solution.
-
Re: (solved) translatable and header images

11 November 2011 at 8:32am
I'd go one step further...
<img src="themes/blackcandy/images/head_{$Locale}.png" width="800" height="100" border="0"/>
then with other locales no code change is needed.
| 547 Views | ||
|
Page:
1
|
Go to Top |



