summaryrefslogtreecommitdiffstats
path: root/l10n/bg_BG
diff options
context:
space:
mode:
authorJenkins for ownCloud <owncloud-bot@tmit.eu>2014-07-08 01:55:17 -0400
committerJenkins for ownCloud <owncloud-bot@tmit.eu>2014-07-08 01:55:17 -0400
commit20fc4b8b533407c7282bf1634e90f3a52e5619f0 (patch)
tree6b7f292035cf90570de606ebfa914571652b8212 /l10n/bg_BG
parent5506f9dc813f034bc79f41aac1dea0db412092af (diff)
downloadnextcloud-server-20fc4b8b533407c7282bf1634e90f3a52e5619f0.tar.gz
nextcloud-server-20fc4b8b533407c7282bf1634e90f3a52e5619f0.zip
[tx-robot] updated from transifex
Diffstat (limited to 'l10n/bg_BG')
-rw-r--r--l10n/bg_BG/files_sharing.po31
1 files changed, 21 insertions, 10 deletions
diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po
index 3849a384915..d8b7b8403c1 100644
--- a/l10n/bg_BG/files_sharing.po
+++ b/l10n/bg_BG/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2014-07-05 01:54-0400\n"
-"PO-Revision-Date: 2014-07-05 05:54+0000\n"
+"POT-Creation-Date: 2014-07-08 01:54-0400\n"
+"PO-Revision-Date: 2014-07-08 05:54+0000\n"
"Last-Translator: I Robot\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@@ -49,18 +49,25 @@ msgstr ""
msgid "You haven't shared any files by link yet."
msgstr ""
-#: js/external.js:45 js/external.js:48
-msgid "Add {name} from {owner}@{remote}"
+#: js/external.js:48 js/external.js:59
+msgid "Do you want to add the remote share {name} from {owner}@{remote}?"
msgstr ""
-#: js/external.js:46 js/external.js:49
-msgid "Add Share"
+#: js/external.js:51 js/external.js:62
+msgid "Remote share"
msgstr ""
-#: js/external.js:49 templates/authenticate.php:10
-#: templates/authenticate.php:12
-msgid "Password"
-msgstr "Парола"
+#: js/external.js:65
+msgid "Remote share password"
+msgstr ""
+
+#: js/external.js:76
+msgid "Cancel"
+msgstr ""
+
+#: js/external.js:77
+msgid "Add remote share"
+msgstr ""
#: js/public.js:203
msgid "No ownCloud installation found at {remote}"
@@ -86,6 +93,10 @@ msgstr ""
msgid "The password is wrong. Try again."
msgstr ""
+#: templates/authenticate.php:10 templates/authenticate.php:12
+msgid "Password"
+msgstr "Парола"
+
#: templates/list.php:16
msgid "Name"
msgstr "Име"
/* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php
/**
 * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace OC\Memcache;

class APC extends Cache {
	public function get($key) {
		$result = apc_fetch($this->getPrefix() . $key, $success);
		if (!$success) {
			return null;
		}
		return $result;
	}

	public function set($key, $value, $ttl = 0) {
		return apc_store($this->getPrefix() . $key, $value, $ttl);
	}

	public function hasKey($key) {
		return apc_exists($this->getPrefix() . $key);
	}

	public function remove($key) {
		return apc_delete($this->getPrefix() . $key);
	}

	public function clear($prefix = '') {
		$ns = $this->getPrefix() . $prefix;
		$ns = preg_quote($ns, '/');
		$iter = new \APCIterator('user', '/^' . $ns . '/');
		return apc_delete($iter);
	}

	static public function isAvailable() {
		if (!extension_loaded('apc')) {
			return false;
		} elseif (!ini_get('apc.enable_cli') && \OC::$CLI) {
			return false;
		} else {
			return true;
		}
	}
}

if (!function_exists('apc_exists')) {
	function apc_exists($keys) {
		$result = false;
		apc_fetch($keys, $result);
		return $result;
	}
}