summaryrefslogtreecommitdiffstats
path: root/apps/federatedfilesharing
diff options
context:
space:
mode:
Diffstat (limited to 'apps/federatedfilesharing')
-rw-r--r--apps/federatedfilesharing/js/settings-admin.js2
-rw-r--r--apps/federatedfilesharing/l10n/tr.js6
-rw-r--r--apps/federatedfilesharing/l10n/tr.json6
-rw-r--r--apps/federatedfilesharing/tests/TestCase.php2
4 files changed, 12 insertions, 4 deletions
diff --git a/apps/federatedfilesharing/js/settings-admin.js b/apps/federatedfilesharing/js/settings-admin.js
index 257c864b04f..a0b8feb945e 100644
--- a/apps/federatedfilesharing/js/settings-admin.js
+++ b/apps/federatedfilesharing/js/settings-admin.js
@@ -5,7 +5,7 @@ $(document).ready(function() {
if (this.checked) {
value = 'yes';
}
- OC.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
+ OCP.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
});
});
diff --git a/apps/federatedfilesharing/l10n/tr.js b/apps/federatedfilesharing/l10n/tr.js
index 073b4441cbd..b331223ee52 100644
--- a/apps/federatedfilesharing/l10n/tr.js
+++ b/apps/federatedfilesharing/l10n/tr.js
@@ -7,7 +7,11 @@ OC.L10N.register(
"Remote share password" : "Uzak paylaşım parolası",
"Cancel" : "İptal",
"Add remote share" : "Uzak paylaşım ekle",
- "Invalid Federated Cloud ID" : "Geçersiz Birleşmiş Bulut Kimliği",
+ "Copied!" : "Kopyalandı!",
+ "Not supported!" : "Desteklenmiyor!",
+ "Press ⌘-C to copy." : "Kopyalamak için ⌘-C kullanın.",
+ "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C kullanın.",
+ "Invalid Federated Cloud ID" : "Birleşmiş Bulut Kimliği Geçersiz",
"Server to server sharing is not enabled on this server" : "Sunucudan sunucuya paylaşım bu sunucuda etkin değil",
"Couldn't establish a federated share." : "Bir federatif paylaşım kurulamadı.",
"Couldn't establish a federated share, maybe the password was wrong." : "Bir federatif paylaşım kurulamadı, parola hatalı olabilir.",
diff --git a/apps/federatedfilesharing/l10n/tr.json b/apps/federatedfilesharing/l10n/tr.json
index f9e157f916b..6383dc91cf9 100644
--- a/apps/federatedfilesharing/l10n/tr.json
+++ b/apps/federatedfilesharing/l10n/tr.json
@@ -5,7 +5,11 @@
"Remote share password" : "Uzak paylaşım parolası",
"Cancel" : "İptal",
"Add remote share" : "Uzak paylaşım ekle",
- "Invalid Federated Cloud ID" : "Geçersiz Birleşmiş Bulut Kimliği",
+ "Copied!" : "Kopyalandı!",
+ "Not supported!" : "Desteklenmiyor!",
+ "Press ⌘-C to copy." : "Kopyalamak için ⌘-C kullanın.",
+ "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C kullanın.",
+ "Invalid Federated Cloud ID" : "Birleşmiş Bulut Kimliği Geçersiz",
"Server to server sharing is not enabled on this server" : "Sunucudan sunucuya paylaşım bu sunucuda etkin değil",
"Couldn't establish a federated share." : "Bir federatif paylaşım kurulamadı.",
"Couldn't establish a federated share, maybe the password was wrong." : "Bir federatif paylaşım kurulamadı, parola hatalı olabilir.",
diff --git a/apps/federatedfilesharing/tests/TestCase.php b/apps/federatedfilesharing/tests/TestCase.php
index f8a47f27336..3ce1cac860c 100644
--- a/apps/federatedfilesharing/tests/TestCase.php
+++ b/apps/federatedfilesharing/tests/TestCase.php
@@ -113,7 +113,7 @@ abstract class TestCase extends \Test\TestCase {
* reset init status for the share storage
*/
protected static function resetStorage() {
- $storage = new \ReflectionClass('\OC\Files\Storage\Shared');
+ $storage = new \ReflectionClass('\OCA\Files_Sharing\SharedStorage');
$isInitialized = $storage->getProperty('initialized');
$isInitialized->setAccessible(true);
$isInitialized->setValue($storage, false);