From 4d79f693a137e3fca27c9bbd34e78fa811a1158e Mon Sep 17 00:00:00 2001 From: gnulos Date: Wed, 29 Apr 2015 17:24:36 +0200 Subject: [PATCH] translates --- app/widgets/AdminTest/admintest.tpl | 18 +++++++++--------- app/widgets/AdminTest/locales.ini | 11 +++++++++++ 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/app/widgets/AdminTest/admintest.tpl b/app/widgets/AdminTest/admintest.tpl index 2ad128002..b54b58230 100755 --- a/app/widgets/AdminTest/admintest.tpl +++ b/app/widgets/AdminTest/admintest.tpl @@ -13,22 +13,22 @@
- Browser + {$c->__('schema.browser')}
- Movim Core + {$c->__('schema.movim')}
- Movim Daemon + {$c->__('schema.daemon')}
- Database + {$c->__('schema.database')}
- API + {$c->__('schema.api')}
- XMPP + {$c->__('schema.xmpp')}
@@ -42,7 +42,7 @@ {if="$dbinfos > 0"}
  • - The database need to be updated, go to the database panel to fix this + {$c->__('compatibility.db')}
  • {else} @@ -60,7 +60,7 @@ - WebSocket connection error, check if the Movim Daemon is running and is reacheable + {$c->__('compatibility.websocket')} @@ -69,7 +69,7 @@ - XMPP Websocket connection error, please check the validity of the URL given in the General Configuration. {$websocketurl} + {$c->__('compatibility.xmpp_websocket')} {$websocketurl} diff --git a/app/widgets/AdminTest/locales.ini b/app/widgets/AdminTest/locales.ini index 78c5cbc13..508ef4b73 100755 --- a/app/widgets/AdminTest/locales.ini +++ b/app/widgets/AdminTest/locales.ini @@ -8,3 +8,14 @@ compatibility.curl = 'Install the php5-curl library' compatibility.imagick = 'Install the php5-imagick library' compatibility.rights = "Read and write rights for the webserver in Movim's root directory" compatibility.rewrite = 'The URL Rewriting support is currently disabled' +compatibility.db = 'The database need to be updated, go to the database panel to fix this' +compatibility.websocket = 'WebSocket connection error, check if the Movim Daemon is running and is reacheable' +compatibility.xmpp_websocket = 'XMPP Websocket connection error, please check the validity of the URL given in the General Configuration' + +[schema] +schema.browser = 'Browser' +schema.movim = 'Movim Core' +schema.daemon = 'Movim Daemon' +schema.database = 'Database' +schema.api = 'API' +schema.xmpp = 'XMPP'