Hi,
Some pieces of text (for example: the contact form send button, send us mail title, the breadcrumbs, the search field) aren't wrapped in Gettext call, therefore they can't be translated with WPML.
Screenshot: http://farm9.staticflickr.com/8083/8262000771_03867f91a0_b.jpg
WPML documentation about Gettext: http://wpml.org/faq/language-setup
1) How can i add <?php _e('text','theme-text-domain'); ?> to contact-form.php for 'Send us mail' and 'Send':
$form_args = array(
"heading" => "<h3>".__('Send us mail','avia_framework')."</h3>",
"success" => "<h3>".__('Your message has been sent!','avia_framework')."</h3><p>".__('Thank you!','avia_framework')."</p>",
"submit" => __('Send','avia_framework'),
"action" => get_permalink(),
"myemail" => avia_get_option('email'),
"myblogname" => get_option('blogname'),
"autoresponder" => avia_get_option('autoresponder'),
"autoresponder_subject" => __('Thank you for your Message!','avia_framework'),
"autoresponder_email" => avia_get_option('email')
);
2) How can i add <?php _e('text','theme-text-domain'); ?> to searchform.php for 'Search site':
<form action="<?php echo home_url( '/' ); ?>" id="searchform" method="get">
<div>
<input type="submit" value="" id="searchsubmit" class="button"/>
<input type="text" id="s" name="s" value="<?php _e('search site','avia_framework')?>"/>
<?php do_action('avia_frontend_search_form'); ?>
</div>
</form>
3) How can I also do this with the breadcrumbs? Where are they located?














