summaryrefslogtreecommitdiffstats
path: root/l10n/te/lib.po
diff options
context:
space:
mode:
authorJenkins for ownCloud <thomas.mueller@tmit.eu>2013-05-28 02:07:51 +0200
committerJenkins for ownCloud <thomas.mueller@tmit.eu>2013-05-28 02:07:51 +0200
commit3420d853ab1e5e03a1a7c400192b1faf8b194bd6 (patch)
treec589ec47ad7f07005953e27c2fca1bb515b7bb87 /l10n/te/lib.po
parentaeff1a4c4d579e2370bfab3a65cdf918d689d463 (diff)
downloadnextcloud-server-3420d853ab1e5e03a1a7c400192b1faf8b194bd6.tar.gz
nextcloud-server-3420d853ab1e5e03a1a7c400192b1faf8b194bd6.zip
[tx-robot] updated from transifex
Diffstat (limited to 'l10n/te/lib.po')
-rw-r--r--l10n/te/lib.po12
1 files changed, 6 insertions, 6 deletions
diff --git a/l10n/te/lib.po b/l10n/te/lib.po
index 412d91f87b3..5167031470b 100644
--- a/l10n/te/lib.po
+++ b/l10n/te/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-05-27 02:01+0200\n"
-"PO-Revision-Date: 2013-05-27 00:02+0000\n"
+"POT-Creation-Date: 2013-05-28 02:01+0200\n"
+"PO-Revision-Date: 2013-05-28 00:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n"
"MIME-Version: 1.0\n"
@@ -41,19 +41,19 @@ msgstr ""
msgid "Admin"
msgstr ""
-#: files.php:207
+#: files.php:210
msgid "ZIP download is turned off."
msgstr ""
-#: files.php:208
+#: files.php:211
msgid "Files need to be downloaded one by one."
msgstr ""
-#: files.php:209 files.php:242
+#: files.php:212 files.php:245
msgid "Back to Files"
msgstr ""
-#: files.php:239
+#: files.php:242
msgid "Selected files too large to generate zip file."
msgstr ""
{ color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php

/**
* ownCloud status page. Useful if you want to check from the outside if an ownCloud installation exists
*
* @author Frank Karlitschek
* @copyright 2012 Frank Karlitschek frank@owncloud.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
*
*/

try {

	require_once 'lib/base.php';

	if(OC_Config::getValue('installed')==1) $installed='true'; else $installed='false';
	$values=array(
		'installed'=>$installed,
		'version'=>implode('.', OC_Util::getVersion()),
		'versionstring'=>OC_Util::getVersionString(),
		'edition'=>OC_Util::getEditionString());
	if (OC::$CLI) {
		print_r($values);
	} else {
		echo(json_encode($values));
	}

} catch (Exception $ex) {
	OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR);
	\OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL);
}