We made a significant (?) change to admin/editor/editor.php, to print
variables correctly in portuguese. The way it was setup before the
translation did not work, so we had to create variables with similar names
(just to remember) and created a translation to fit...
here´s the change:
<tr><td align="center"><b><span class="medtext_white"><?php echo
_tr('EDITOR1') ?></span></b></td></tr>
<tr><td align="center"><nobr><b><span class="medtext_white"><?php echo
_tr('REVIEW1') ?></span></b> </nobr></td></tr>
<td align="center"><b><span class="medtext_white"><?php echo
_tr('COPYEDIT1') ?></span></b></td>
previous code:
<tr><td align="center"><b><span class="medtext_white"><?php echo
_tr('EDITOR') ?></span></b></td></tr>
<tr><td align="center"><nobr><b><span class="medtext_white"><?php echo
_tr('REVIEW') ?></span></b> </nobr></td></tr>
<td align="center"><b><span class="medtext_white"><?php echo _tr('COPYEDIT')
?></span></b></td>
variables added to locale/pt/admin.inc.php
* admin/author/authorconflict.php
line 70 - define('EDITOR1', 'Avaliação');
* admin/author/articlestatus.php
line 57 - define('REVIEW1', 'Editorial');
* admin/include/requestsubmit.php
line 1699 - define('COPYEDIT1', 'Edição Texto');
However, the concern is that the structure of this header is a bit
confusing.. there could be specific variables for each header, and the html
could be simplified greatly... (I wonder why add tables within tables just
for a piece of text, might have been to keep alignment, but still..)
that´s it for the editor.php
----------------------------
we also made changes to admin/include/table2.php
in line 169 it printed a "Declined" so we added the variable that existed
but wasn´t used.
echo _tr('DECLINED'); // inclusão de variável já existente no admin.inc.php
We also changed this a while ago, don´t know if I told you, all the $from
from that same file have to print a specific variable, to show who wrote the
coment (it was printing "editor", "reviewer", instead of...):
$from = _tr('REVIEWER'); (example)
that´s it for today...

)
............................................................................
...........................................
Ramón Martins S. da Fonseca
Desenvolvimento Web
IBICT
Instituto Brasileiro de Informação em Ciência e Tecnologia
+55 61 217 6443 / 6347
............................................................................
...........................................