I need to implement Gettext. If I have to translate
<p>Title: </p>
I can use the following:
<p><?php _e("Title: ","language");?></p>
Which is pretty simple for single word of sentences in PHP files. However how can I implement the above Gettext if in PHP I have already
<?php the_tags('Tags: ', ', ', '<br />'); ?>
?
What I would like to translate is the word "Tags: "... but I can't figure out how to wrap the work "Tags"... or how to change the code...
Thanks
')", "language"); ... but I don't think it works like this.... – Pikk May 03 '14 at 21:55
Tags:
` then it would have been `_e("Tags: ","language")`. But in this case I have `the_tags('Tags: ', ', ', '');` and I don't know how to edit that the right way, thus I decided to write here. – Pikk May 03 '14 at 22:01
');` – Pikk May 03 '14 at 22:29