# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" msgstr "Giriş kabul edildi" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" msgstr "Dropbox depo yapılandırma hatası" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" msgstr "Erişim sağlandı" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." msgstr "Lütfen Dropbox app key ve secret temin ediniz" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" msgstr "Google Drive depo yapılandırma hatası" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Uyari.''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, " #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr ". Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin." #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." msgstr " Ihbar . Dayanma Curl PHPden aktif veya yuklemedi degil. Monte ownClouden/WebDay veya GoogleDrive mumkun degil. Lutfen sistm yonetici sormak yuklemek icin. " #: templates/settings.php:3 msgid "External Storage" msgstr "Harici Depolama" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" msgstr "Dizin ismi" #: templates/settings.php:10 msgid "External storage" msgstr "Harici Depolama" #: templates/settings.php:11 msgid "Configuration" msgstr "Yapılandırma" #: templates/settings.php:12 msgid "Options" msgstr "Seçenekler" #: templates/settings.php:13 msgid "Applicable" msgstr "Uygulanabilir" #: templates/settings.php:33 msgid "Add storage" msgstr "Depo ekle" #: templates/settings.php:90 msgid "None set" msgstr "Hiçbiri" #: templates/settings.php:91 msgid "All Users" msgstr "Tüm Kullanıcılar" #: templates/settings.php:92 msgid "Groups" msgstr "Gruplar" #: templates/settings.php:100 msgid "Users" msgstr "Kullanıcılar" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" msgstr "Sil" #: templates/settings.php:129 msgid "Enable User External Storage" msgstr "Kullanıcılar için Harici Depolamayı Etkinleştir" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" msgstr "Kullanıcıların kendi harici depolamalarını bağlamalarına izin ver" #: templates/settings.php:141 msgid "SSL root certificates" msgstr "SSL kök sertifikaları" #: templates/settings.php:159 msgid "Import Root Certificate" msgstr "Kök Sertifikalarını İçe Aktar" eat/reset_route_when_sidebar_and_viewer_are_close Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
blob: 58a5695aff8c990cdecaad3ed25fdce55e52f8e3 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
 * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace OCA\Files_Sharing;

use OC\Files\Storage\Wrapper\Wrapper;

class ReadOnlyWrapper extends Wrapper {
	public function isUpdatable($path) {
		return false;
	}

	public function isCreatable($path) {
		return false;
	}

	public function isDeletable($path) {
		return false;
	}

	public function getPermissions($path) {
		return $this->storage->getPermissions($path) & (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_SHARE);
	}

	public function rename($path1, $path2) {
		return false;
	}

	public function touch($path, $mtime = null) {
		return false;
	}

	public function mkdir($path) {
		return false;
	}

	public function rmdir($path) {
		return false;
	}

	public function unlink($path) {
		return false;
	}

	public function getCache($path = '', $storage = null) {
		if (!$storage) {
			$storage = $this;
		}
		return new ReadOnlyCache($storage);
	}
}