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
44
45
|
<?php
$en_array = array(
'beechat:icons:home' => 'Home',
'beechat:contacts:button' => 'Chat',
'beechat:availability:available' => 'Available',
'beechat:availability:dnd' => 'Do not disturb',
'beechat:availability:away' => 'Away',
'beechat:availability:xa' => 'Extended away',
'beechat:availability:offline' => 'Offline',
'beechat:connection:state:offline' => 'Offline',
'beechat:connection:state:connecting' => 'Connecting...',
'beechat:connection:state:authenticating' => 'Authenticating...',
'beechat:connection:state:online' => 'Online',
'beechat:connection:state:failed' => 'Failed',
'beechat:connection:state:disconnecting' => 'Disconnecting...',
'beechat:chat:self' => 'Me',
'beechat:chat:composing' => ' is typing.',
'beechat:box:minimize' => 'Minimize',
'beechat:box:close' => 'Close',
'beechat:box:showhide' => 'Show/Hide this chat window',
'beechat:enabled' => 'Chat enabled',
'beechat:disabled' => 'Chat disabled',
'beechat:enablechat' => 'Enable chat',
'beechat:disablechat' => 'Disable chat',
'beechat:domain' => 'Chat domain',
'beechat:groupdomain' => 'MUC domain',
'beechat:chatroom' => 'Group chat',
'beechat:dbname' => 'Database name',
'beechat:dbhost' => 'Database host',
'beechat:dbuser' => 'Database user',
'beechat:dbuser' => 'notification:method:xmpp',
'notification:method:xmpp' => 'Xmpp/Jabber',
'beechat:dbpassword' => 'Database password',
'beechat:xmlrpcip' => 'Ejabberd IP'
);
add_translation('en', $en_array);
?>
|