Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Old Version fixes and change logs (http://forum.bytesforall.com/forumdisplay.php?f=37)
-   -   PATCH 373-04: Fix missing translation in bfa_post_parts.php (http://forum.bytesforall.com/showthread.php?t=16576)

juggledad Jan 23, 2012 10:36 AM

PATCH 373-04: Fix missing translation in bfa_post_parts.php
 
there are three places that are missing a translation in bfa_post_parts (Thanks to merlin for pointing them out) To correct this edit bfa_post_parts.php and

change line 39 from
HTML Code:

                                <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute('echo=1') ?>">
to
HTML Code:

                                <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link to ','atahualpa') . the_title_attribute('echo=1') ?>">
change line 63 from
HTML Code:

                <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link">Permalink</a><?php
to
HTML Code:

                <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link','atahualpa')?>">Permalink</a><?php
and change line 71 from
HTML Code:

                        <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute('echo=1') ?>"><?php
to
HTML Code:

                        <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link to ','atahualpa') .  the_title_attribute('echo=1') ?>"><?php
then add to the end of the atahualpa.pot
HTML Code:

#: functions/bfa_post_parts.php:39
#: functions/bfa_post_parts.php:39
msgid "Permanent Link to "
msgstr ""
#: functions/bfa_post_parts.php:63
msgid "Permanent Link"
msgstr ""



All times are GMT -6. The time now is 12:16 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.