Deporteando (@albertof) |
how to change the language? from:
Choose file
what is the code?
Where is the file ?
file: modules/images/images.php, function ajax_form_data($page_type='', $page_id=0)
[code]
$output .= '<script>
$(document).ready( function(){
'.autocompletetagjs().'
$("#gallery_name").focus();
$(":file").filestyle({size:"sm"});
});
</script>';
return $output;
[/code]
new
[code]
$output .= '<script>
$(document).ready( function(){
'.autocompletetagjs().'
$("#gallery_name").focus();
$(":file").filestyle({buttonText: "'.t('Choose file').'"}); $(":file").filestyle({size:"sm"});
});
</script>';
return $output;
[/code]
Jcow Master @falcone
114 months ago
|