Going through the pt_PT translated files I’ve found some duplicate keys, p.e.:
$app_lists = array {
// Some 200 or 300 lines here...
'LBL_CREATE_CASE' => 'Criar Ocorrência',
// Some other 900 lines or a thousand...
'LBL_CREATE_CASE' => 'Criar Ocorrência',
// the rest of the array...
};
Shouldn’t we get rid of theese duplicates ? From the PHP language point-of-view, the second instance of the key will overrite the first…