edgarmiro
Hi,
With multilingual site, you can use the Language overrides of Joomla, just go to Backend > Extensions > Language(s) > Overrides
Create a new override for these 2 constants: VIEW_ALL and TPL_VIEW
http://prntscr.com/li4m7e
Note that in the file: [root]/templates/ja_decor/html/mod_articles_category/triangle.php
If you're using the old code which renders the Reamore text:
<?php if ($params->get('show_readmore')) :?>
<a class="btn btn-default <?php echo $item->active; ?>" href="<?php echo $item->link; ?>">View</a>
<?php endif; ?>
try to change it to:
<?php if ($params->get('show_readmore')) :?>
<a class="btn btn-default <?php echo $item->active; ?>" href="<?php echo $item->link; ?>"><?php echo JText::_('TPL_VIEW'); ?></a>
<?php endif; ?>
Hope this helps.