How to get rid of laquo
-
Hello,
I’ve set a separate page to display my posts. But what I see on the bottom is ugly “Starsze posty «” (Older posts «).
What is more, when I click it I get once again “Older posts «” and “» Brak postów” (No posts or whatever it is in english translation) on the second, third and so on page…
How to make it look correctly and fix no posts while there are posts 😛
Admin
Which page is this happening on?
direct link: http://dealwynajem.pl/aktualnosci
Page 2: http://dealwynajem.pl/aktualnosci/page/2
“Brak postów” means “No posts”
Did you hack the parent theme? Because Graphene is
XHTML 1.0 Strict
and yours’ isXHTML 1.0 Transitional
.Also, your page source shows this,
<p class="previous"><a href="http://dealwynajem.pl/aktualnosci/page/3" >Starsze posty «</a></p>
This should be
<p class="previous"><a href="http://dealwynajem.pl/aktualnosci/page/3" >Starsze posty &[no_space]laquo;</a></p>
It is a translation error. I think you are using Polish language. And, it is missing a
;
afterlaquo
#: includes/theme-loop.php:137
msgid "Older posts &[no_space]laquo;"
msgstr "Starsze posty «"(pl_PL.po line no. 2220)
Notice that there is no
;
afterStarsze posty «
. Using POEdit, changeStarsze posty «
toStarsze posty &[no_space]laquo;
and update language files.Who is maintaining the Polish language translation for Graphene theme?
Note: I’ve added
[no_space]
to stop bbPress from rendering it as «. Please remove[no_space]
while updating the language files.Yay! Fixing .po file did it! I don’t know who is maintaining it, but I can start to do it 🙂
I changed it back to strict, probably second person taking care of this website did it.
Now there’s another translation error, in .po file there is
Code:Continue reading »translated into
Code:Kontynuuj czytanie »but on site I see
Code:Continue reading (post title) »;/
You can see it here: http://dealwynajem.pl/aktualnosci at the second post.
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.