diff options
Diffstat (limited to 'mod/beechat/languages/en.php')
| -rw-r--r-- | mod/beechat/languages/en.php | 45 | 
1 files changed, 45 insertions, 0 deletions
diff --git a/mod/beechat/languages/en.php b/mod/beechat/languages/en.php new file mode 100644 index 000000000..38f03be98 --- /dev/null +++ b/mod/beechat/languages/en.php @@ -0,0 +1,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); + +?>  | 
