blob: 7c7079262a350fd54bbf3f5f7f272d4d37b9118a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/**
* Elgg profile plugin language pack
*/
$spanish = array(
'profile' => 'Perfil',
'profile:notfound' => 'Lo sentimos. No se pudo encontrar el perfil solicitado.',
);
add_translation('es', $spanish);
|