1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<?php
$es_array = array(
'beechat:icons:home' => 'Home',
'beechat:contacts:button' => 'Chat',
'beechat:availability:available' => 'Disponible',
'beechat:availability:dnd' => 'No molestar',
'beechat:availability:away' => 'Fuera',
'beechat:availability:xa' => 'Fuera bastante tiempo',
'beechat:availability:offline' => 'Desconectado',
'beechat:connection:state:offline' => 'Desconectado',
'beechat:connection:state:connecting' => 'Conectando...',
'beechat:connection:state:authenticating' => 'Iniciando...',
'beechat:connection:state:online' => 'Conectado',
'beechat:connection:state:failed' => 'Fallo',
'beechat:connection:state:disconnecting' => 'Desconectando...',
'beechat:chat:self' => 'Yo',
'beechat:chat:composing' => ' esta escribiendo.',
'beechat:box:minimize' => 'Minimizar',
'beechat:box:close' => 'Cerrar',
'beechat:box:showhide' => 'Mostrar/Ocultar esta ventana de chat',
'beechat:enabled' => 'Chat activado',
'beechat:disabled' => 'Chat desactivado',
'beechat:enablechat' => 'Activar chat',
'beechat:disablechat' => 'Desactivar chat',
'beechat:domain' => 'Dominio Chat',
'beechat:groupdomain' => 'Dominio MUC',
'beechat:chatroom' => 'Chat del grupo',
'beechat:dbname' => 'Database name',
'beechat:dbhost' => 'Database host',
'beechat:dbuser' => 'Database user',
'beechat:dbpassword' => 'Database password',
'beechat:xmlrpcip' => 'Ejabberd IP'
);
add_translation('es', $es_array);
?>
|