Translation problems
-
Hi there!
While translating your plugin to portuguese (can send you the PO file if you want), I’ve come across with two problems in the metabox.php file:
a) This string isn’t translatable
‘title’ => ‘Restrict this content’,b) all the translations in this variable don’t get replaced by the translation string:
$rc_meta_box = array( 'id' => 'rcMetaBox', 'title' => 'Restrict this content', 'context' => 'normal', 'priority' => 'high', 'fields' => array( array( 'name' => __('User Level', 'restrict-content'), 'id' => 'rcUserLevel', 'type' => 'select', 'desc' => __('Choose the user level that can see this page / post', 'restrict-content'), 'options' => array('None', 'Administrator', 'Editor', 'Author', 'Contributor', 'Subscriber'), 'std' => 'None' ), array( 'name' => __('Hide from Feed?', 'restrict-content'), 'id' => 'rcFeedHide', 'type' => 'checkbox', 'desc' => __('Hide the excerpt of this post / page from the Feed?', 'restrict-content'), 'std' => '' ) ) );All the other strings are translated and well replaced, after being translated. What can it be?
Best Regards,
Paulo
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Translation problems’ is closed to new replies.