diff options
Diffstat (limited to 'core')
60 files changed, 354 insertions, 48 deletions
diff --git a/core/Command/App/Disable.php b/core/Command/App/Disable.php index a0a20ef21dd..121ad3f010c 100644 --- a/core/Command/App/Disable.php +++ b/core/Command/App/Disable.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 ownCloud, Inc. * SPDX-License-Identifier: AGPL-3.0-only diff --git a/core/Command/App/ListApps.php b/core/Command/App/ListApps.php index bb59e441119..dc947bea55f 100644 --- a/core/Command/App/ListApps.php +++ b/core/Command/App/ListApps.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 ownCloud, Inc. * SPDX-License-Identifier: AGPL-3.0-only diff --git a/core/Command/Config/System/Base.php b/core/Command/Config/System/Base.php index ce39cd4c95b..088d902b4fd 100644 --- a/core/Command/Config/System/Base.php +++ b/core/Command/Config/System/Base.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/Db/ConvertFilecacheBigInt.php b/core/Command/Db/ConvertFilecacheBigInt.php index f5028aacaef..0d96d139701 100644 --- a/core/Command/Db/ConvertFilecacheBigInt.php +++ b/core/Command/Db/ConvertFilecacheBigInt.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/Db/ConvertMysqlToMB4.php b/core/Command/Db/ConvertMysqlToMB4.php index 8a2abecc804..926e56c4300 100644 --- a/core/Command/Db/ConvertMysqlToMB4.php +++ b/core/Command/Db/ConvertMysqlToMB4.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2017 ownCloud GmbH * SPDX-License-Identifier: AGPL-3.0-only diff --git a/core/Command/Db/Migrations/ExecuteCommand.php b/core/Command/Db/Migrations/ExecuteCommand.php index cb6edd7c78c..a89072c1ad1 100644 --- a/core/Command/Db/Migrations/ExecuteCommand.php +++ b/core/Command/Db/Migrations/ExecuteCommand.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2017 ownCloud GmbH diff --git a/core/Command/Db/Migrations/GenerateCommand.php b/core/Command/Db/Migrations/GenerateCommand.php index aeedef8df2f..a75280fa8b1 100644 --- a/core/Command/Db/Migrations/GenerateCommand.php +++ b/core/Command/Db/Migrations/GenerateCommand.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2017 ownCloud GmbH @@ -22,8 +23,8 @@ use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Question\ConfirmationQuestion; class GenerateCommand extends Command implements CompletionAwareInterface { - protected static $_templateSimple = - '<?php + protected static $_templateSimple + = '<?php declare(strict_types=1); diff --git a/core/Command/Encryption/ChangeKeyStorageRoot.php b/core/Command/Encryption/ChangeKeyStorageRoot.php index 76cde1b8e77..3049fd2ca08 100644 --- a/core/Command/Encryption/ChangeKeyStorageRoot.php +++ b/core/Command/Encryption/ChangeKeyStorageRoot.php @@ -123,8 +123,8 @@ class ChangeKeyStorageRoot extends Command { */ protected function moveSystemKeys($oldRoot, $newRoot) { if ( - $this->rootView->is_dir($oldRoot . '/files_encryption') && - $this->targetExists($newRoot . '/files_encryption') === false + $this->rootView->is_dir($oldRoot . '/files_encryption') + && $this->targetExists($newRoot . '/files_encryption') === false ) { $this->rootView->rename($oldRoot . '/files_encryption', $newRoot . '/files_encryption'); } @@ -183,8 +183,8 @@ class ChangeKeyStorageRoot extends Command { $source = $oldRoot . '/' . $user . '/files_encryption'; $target = $newRoot . '/' . $user . '/files_encryption'; if ( - $this->rootView->is_dir($source) && - $this->targetExists($target) === false + $this->rootView->is_dir($source) + && $this->targetExists($target) === false ) { $this->prepareParentFolder($newRoot . '/' . $user); $this->rootView->rename($source, $target); diff --git a/core/Command/Encryption/EncryptAll.php b/core/Command/Encryption/EncryptAll.php index 684591f4586..f2c991471b6 100644 --- a/core/Command/Encryption/EncryptAll.php +++ b/core/Command/Encryption/EncryptAll.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2016 ownCloud, Inc. diff --git a/core/Command/Encryption/MigrateKeyStorage.php b/core/Command/Encryption/MigrateKeyStorage.php index c2090d22d1c..937b17cde5f 100644 --- a/core/Command/Encryption/MigrateKeyStorage.php +++ b/core/Command/Encryption/MigrateKeyStorage.php @@ -80,10 +80,10 @@ class MigrateKeyStorage extends Command { continue; } - if ($node['name'] === 'fileKey' || - str_ends_with($node['name'], '.privateKey') || - str_ends_with($node['name'], '.publicKey') || - str_ends_with($node['name'], '.shareKey')) { + if ($node['name'] === 'fileKey' + || str_ends_with($node['name'], '.privateKey') + || str_ends_with($node['name'], '.publicKey') + || str_ends_with($node['name'], '.shareKey')) { $path = $folder . '/' . $node['name']; $content = $this->rootView->file_get_contents($path); @@ -127,10 +127,10 @@ class MigrateKeyStorage extends Command { return (substr($haystack, -$length) === $needle); }; - if ($node['name'] === 'fileKey' || - $endsWith($node['name'], '.privateKey') || - $endsWith($node['name'], '.publicKey') || - $endsWith($node['name'], '.shareKey')) { + if ($node['name'] === 'fileKey' + || $endsWith($node['name'], '.privateKey') + || $endsWith($node['name'], '.publicKey') + || $endsWith($node['name'], '.shareKey')) { $path = $folder . '/' . $node['name']; $content = $this->rootView->file_get_contents($path); diff --git a/core/Command/Group/AddUser.php b/core/Command/Group/AddUser.php index 1f144b13893..999113390af 100644 --- a/core/Command/Group/AddUser.php +++ b/core/Command/Group/AddUser.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/Group/ListCommand.php b/core/Command/Group/ListCommand.php index a3622585d18..01522a23f7f 100644 --- a/core/Command/Group/ListCommand.php +++ b/core/Command/Group/ListCommand.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/Group/RemoveUser.php b/core/Command/Group/RemoveUser.php index 7c58f9ac4c4..952fc6e7712 100644 --- a/core/Command/Group/RemoveUser.php +++ b/core/Command/Group/RemoveUser.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/Maintenance/Install.php b/core/Command/Maintenance/Install.php index 48fcb335583..6170c5a2638 100644 --- a/core/Command/Maintenance/Install.php +++ b/core/Command/Maintenance/Install.php @@ -60,8 +60,8 @@ class Install extends Command { $this->printErrors($output, $errors); // ignore the OS X setup warning - if (count($errors) !== 1 || - (string)$errors[0]['error'] !== 'Mac OS X is not supported and Nextcloud will not work properly on this platform. Use it at your own risk!') { + if (count($errors) !== 1 + || (string)$errors[0]['error'] !== 'Mac OS X is not supported and Nextcloud will not work properly on this platform. Use it at your own risk!') { return 1; } } diff --git a/core/Command/Maintenance/UpdateTheme.php b/core/Command/Maintenance/UpdateTheme.php index f819b9c8e58..3fbcb546cca 100644 --- a/core/Command/Maintenance/UpdateTheme.php +++ b/core/Command/Maintenance/UpdateTheme.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/SetupChecks.php b/core/Command/SetupChecks.php index 60517e224b3..6ef67726839 100644 --- a/core/Command/SetupChecks.php +++ b/core/Command/SetupChecks.php @@ -61,12 +61,12 @@ class SetupChecks extends Base { $description = $this->richTextFormatter->richToParsed($description, $descriptionParameters); } $output->writeln( - "\t\t" . - ($styleTag !== null ? "<{$styleTag}>" : '') . - "{$emoji} " . - ($check->getName() ?? $check::class) . - ($description !== null ? ': ' . $description : '') . - ($styleTag !== null ? "</{$styleTag}>" : ''), + "\t\t" + . ($styleTag !== null ? "<{$styleTag}>" : '') + . "{$emoji} " + . ($check->getName() ?? $check::class) + . ($description !== null ? ': ' . $description : '') + . ($styleTag !== null ? "</{$styleTag}>" : ''), $verbosity ); } diff --git a/core/Command/SystemTag/Add.php b/core/Command/SystemTag/Add.php index 92ed42c37bc..df8b507b07d 100644 --- a/core/Command/SystemTag/Add.php +++ b/core/Command/SystemTag/Add.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/SystemTag/Delete.php b/core/Command/SystemTag/Delete.php index 73b3dc8187a..f657f4473ab 100644 --- a/core/Command/SystemTag/Delete.php +++ b/core/Command/SystemTag/Delete.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/SystemTag/Edit.php b/core/Command/SystemTag/Edit.php index 614f2798ce4..09c662e58e9 100644 --- a/core/Command/SystemTag/Edit.php +++ b/core/Command/SystemTag/Edit.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/SystemTag/ListCommand.php b/core/Command/SystemTag/ListCommand.php index 836869f157d..2c6435d6faf 100644 --- a/core/Command/SystemTag/ListCommand.php +++ b/core/Command/SystemTag/ListCommand.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/TaskProcessing/EnabledCommand.php b/core/Command/TaskProcessing/EnabledCommand.php index b382de12a81..7195d19a7a4 100644 --- a/core/Command/TaskProcessing/EnabledCommand.php +++ b/core/Command/TaskProcessing/EnabledCommand.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later @@ -47,15 +48,15 @@ class EnabledCommand extends Base { } else { $taskTypeSettings = json_decode($json, true, flags: JSON_THROW_ON_ERROR); } - + $taskTypeSettings[$taskType] = $enabled; - + $this->config->setAppValue('core', 'ai.taskprocessing_type_preferences', json_encode($taskTypeSettings)); $this->writeArrayInOutputFormat($input, $output, $taskTypeSettings); return 0; } catch (\JsonException $e) { throw new \JsonException('Error in TaskType DB entry'); } - + } } diff --git a/core/Command/TaskProcessing/GetCommand.php b/core/Command/TaskProcessing/GetCommand.php index a61ddbe1621..5c4fd17f2f8 100644 --- a/core/Command/TaskProcessing/GetCommand.php +++ b/core/Command/TaskProcessing/GetCommand.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/TaskProcessing/ListCommand.php b/core/Command/TaskProcessing/ListCommand.php index f4ea76729d9..81eb258d35d 100644 --- a/core/Command/TaskProcessing/ListCommand.php +++ b/core/Command/TaskProcessing/ListCommand.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/TaskProcessing/Statistics.php b/core/Command/TaskProcessing/Statistics.php index a3dc9ee0254..86478b34db1 100644 --- a/core/Command/TaskProcessing/Statistics.php +++ b/core/Command/TaskProcessing/Statistics.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/TwoFactorAuth/Base.php b/core/Command/TwoFactorAuth/Base.php index 70e33bfd23c..034ea36afca 100644 --- a/core/Command/TwoFactorAuth/Base.php +++ b/core/Command/TwoFactorAuth/Base.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php index 1b6fe369ceb..c3d6aacc714 100644 --- a/core/Command/Upgrade.php +++ b/core/Command/Upgrade.php @@ -227,9 +227,9 @@ class Upgrade extends Command { $trustedDomains = $this->config->getSystemValue('trusted_domains', []); if (empty($trustedDomains)) { $output->write( - '<warning>The setting "trusted_domains" could not be ' . - 'set automatically by the upgrade script, ' . - 'please set it manually</warning>' + '<warning>The setting "trusted_domains" could not be ' + . 'set automatically by the upgrade script, ' + . 'please set it manually</warning>' ); } } diff --git a/core/Command/User/AuthTokens/Delete.php b/core/Command/User/AuthTokens/Delete.php index f2c75a8ad99..2047d2eae2a 100644 --- a/core/Command/User/AuthTokens/Delete.php +++ b/core/Command/User/AuthTokens/Delete.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/User/AuthTokens/ListCommand.php b/core/Command/User/AuthTokens/ListCommand.php index 1ebd4a0f0b4..b36aa717505 100644 --- a/core/Command/User/AuthTokens/ListCommand.php +++ b/core/Command/User/AuthTokens/ListCommand.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/User/Info.php b/core/Command/User/Info.php index 220bbbf571d..e7fc9286e74 100644 --- a/core/Command/User/Info.php +++ b/core/Command/User/Info.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/User/ListCommand.php b/core/Command/User/ListCommand.php index e7fb3de71f0..66b831c793b 100644 --- a/core/Command/User/ListCommand.php +++ b/core/Command/User/ListCommand.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/User/SyncAccountDataCommand.php b/core/Command/User/SyncAccountDataCommand.php index 3e3ba3961ee..c353df6fe9f 100644 --- a/core/Command/User/SyncAccountDataCommand.php +++ b/core/Command/User/SyncAccountDataCommand.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Command/User/Welcome.php b/core/Command/User/Welcome.php index 35ce32ff174..65637759689 100644 --- a/core/Command/User/Welcome.php +++ b/core/Command/User/Welcome.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2023 FedericoHeichou <federicoheichou@gmail.com> * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Controller/AvatarController.php b/core/Controller/AvatarController.php index 4e7a2f8714a..b577b2fd460 100644 --- a/core/Controller/AvatarController.php +++ b/core/Controller/AvatarController.php @@ -193,8 +193,8 @@ class AvatarController extends Controller { } } elseif (!is_null($files)) { if ( - $files['error'][0] === 0 && - is_uploaded_file($files['tmp_name'][0]) + $files['error'][0] === 0 + && is_uploaded_file($files['tmp_name'][0]) ) { if ($files['size'][0] > 20 * 1024 * 1024) { return new JSONResponse( diff --git a/core/Controller/ClientFlowLoginController.php b/core/Controller/ClientFlowLoginController.php index 57ea20071b6..4464af890c4 100644 --- a/core/Controller/ClientFlowLoginController.php +++ b/core/Controller/ClientFlowLoginController.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later @@ -109,8 +110,8 @@ class ClientFlowLoginController extends Controller { $this->appName, 'error', [ - 'errors' => - [ + 'errors' + => [ [ 'error' => 'Access Forbidden', 'hint' => 'Invalid request', diff --git a/core/Controller/ContactsMenuController.php b/core/Controller/ContactsMenuController.php index f4ded1ed42b..d90ee8a1c61 100644 --- a/core/Controller/ContactsMenuController.php +++ b/core/Controller/ContactsMenuController.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Controller/GuestAvatarController.php b/core/Controller/GuestAvatarController.php index 818b25a0c80..711158e0708 100644 --- a/core/Controller/GuestAvatarController.php +++ b/core/Controller/GuestAvatarController.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Controller/LoginController.php b/core/Controller/LoginController.php index 7e8afd9f083..5a21d27898f 100644 --- a/core/Controller/LoginController.php +++ b/core/Controller/LoginController.php @@ -93,8 +93,8 @@ class LoginController extends Controller { $this->session->close(); if ( - $this->request->getServerProtocol() === 'https' && - !$this->request->isUserAgent([Request::USER_AGENT_CHROME, Request::USER_AGENT_ANDROID_MOBILE_CHROME]) + $this->request->getServerProtocol() === 'https' + && !$this->request->isUserAgent([Request::USER_AGENT_CHROME, Request::USER_AGENT_ANDROID_MOBILE_CHROME]) ) { $response->addHeader('Clear-Site-Data', '"cache", "storage"'); } diff --git a/core/Controller/NavigationController.php b/core/Controller/NavigationController.php index 5fc929b4eb4..017061ef979 100644 --- a/core/Controller/NavigationController.php +++ b/core/Controller/NavigationController.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Controller/OCJSController.php b/core/Controller/OCJSController.php index 176558b013d..ea372b43b2e 100644 --- a/core/Controller/OCJSController.php +++ b/core/Controller/OCJSController.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Controller/OCSController.php b/core/Controller/OCSController.php index b05ddd0e298..fb0280479c4 100644 --- a/core/Controller/OCSController.php +++ b/core/Controller/OCSController.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Controller/PreviewController.php b/core/Controller/PreviewController.php index 7dd14b19f79..aac49c06d57 100644 --- a/core/Controller/PreviewController.php +++ b/core/Controller/PreviewController.php @@ -157,10 +157,7 @@ class PreviewController extends Controller { if ($isNextcloudPreview === false && $storage->instanceOfStorage(ISharedStorage::class)) { /** @var ISharedStorage $storage */ $share = $storage->getShare(); - $attributes = $share->getAttributes(); - // No "allow preview" header set, so we must check if - // the share has not explicitly disabled download permissions - if ($attributes?->getAttribute('permissions', 'download') === false) { + if (!$share->canSeeContent()) { return new DataResponse([], Http::STATUS_FORBIDDEN); } } diff --git a/core/Controller/WalledGardenController.php b/core/Controller/WalledGardenController.php index b55e90675a1..d0bc0665534 100644 --- a/core/Controller/WalledGardenController.php +++ b/core/Controller/WalledGardenController.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Controller/WhatsNewController.php b/core/Controller/WhatsNewController.php index b3bb7becbac..af8c3d4853b 100644 --- a/core/Controller/WhatsNewController.php +++ b/core/Controller/WhatsNewController.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Migrations/Version13000Date20170705121758.php b/core/Migrations/Version13000Date20170705121758.php index 7233cc0302e..17262cf0743 100644 --- a/core/Migrations/Version13000Date20170705121758.php +++ b/core/Migrations/Version13000Date20170705121758.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Migrations/Version13000Date20170718121200.php b/core/Migrations/Version13000Date20170718121200.php index 1adbf2f0ea2..d33d489c579 100644 --- a/core/Migrations/Version13000Date20170718121200.php +++ b/core/Migrations/Version13000Date20170718121200.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Migrations/Version13000Date20170814074715.php b/core/Migrations/Version13000Date20170814074715.php index 73de1af0e0a..6e7ca19fc3c 100644 --- a/core/Migrations/Version13000Date20170814074715.php +++ b/core/Migrations/Version13000Date20170814074715.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Migrations/Version13000Date20170919121250.php b/core/Migrations/Version13000Date20170919121250.php index ae6eff99bcd..b3e9541d605 100644 --- a/core/Migrations/Version13000Date20170919121250.php +++ b/core/Migrations/Version13000Date20170919121250.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Migrations/Version13000Date20170926101637.php b/core/Migrations/Version13000Date20170926101637.php index 42bbf74fb74..aca772de313 100644 --- a/core/Migrations/Version13000Date20170926101637.php +++ b/core/Migrations/Version13000Date20170926101637.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Migrations/Version14000Date20180129121024.php b/core/Migrations/Version14000Date20180129121024.php index 6da5f2602e8..c16d95ed71b 100644 --- a/core/Migrations/Version14000Date20180129121024.php +++ b/core/Migrations/Version14000Date20180129121024.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Migrations/Version14000Date20180516101403.php b/core/Migrations/Version14000Date20180516101403.php index c024b1b93ab..a71673a9674 100644 --- a/core/Migrations/Version14000Date20180516101403.php +++ b/core/Migrations/Version14000Date20180516101403.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Migrations/Version14000Date20180626223656.php b/core/Migrations/Version14000Date20180626223656.php index 3a08fb45c20..7d4dea585f6 100644 --- a/core/Migrations/Version14000Date20180626223656.php +++ b/core/Migrations/Version14000Date20180626223656.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Migrations/Version14000Date20180712153140.php b/core/Migrations/Version14000Date20180712153140.php index 4d27a60bbb4..b1a295ea2f6 100644 --- a/core/Migrations/Version14000Date20180712153140.php +++ b/core/Migrations/Version14000Date20180712153140.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/core/Migrations/Version23000Date20210721100600.php b/core/Migrations/Version23000Date20210721100600.php index 72437337326..a611c0c4b36 100644 --- a/core/Migrations/Version23000Date20210721100600.php +++ b/core/Migrations/Version23000Date20210721100600.php @@ -36,7 +36,7 @@ class Version23000Date20210721100600 extends SimpleMigrationStep { 'notnull' => true, 'length' => 200, ]); - + $table->setPrimaryKey(['id']); $table->addIndex(['group_id'], 'admindel_groupid_idx'); return $schema; diff --git a/core/Migrations/Version25000Date20220515204012.php b/core/Migrations/Version25000Date20220515204012.php index 2ec96bc5175..7f7c6b6cee2 100644 --- a/core/Migrations/Version25000Date20220515204012.php +++ b/core/Migrations/Version25000Date20220515204012.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2019 ownCloud GmbH * SPDX-License-Identifier: AGPL-3.0-only diff --git a/core/Migrations/Version29000Date20240131122720.php b/core/Migrations/Version29000Date20240131122720.php index 14f02331587..abd5e73165a 100644 --- a/core/Migrations/Version29000Date20240131122720.php +++ b/core/Migrations/Version29000Date20240131122720.php @@ -29,8 +29,8 @@ class Version29000Date20240131122720 extends SimpleMigrationStep { $tableProperties = $schema->getTable('properties'); - if ($tableProperties->hasIndex('property_index') && - $tableProperties->hasIndex('properties_path_index')) { + if ($tableProperties->hasIndex('property_index') + && $tableProperties->hasIndex('properties_path_index')) { $tableProperties->dropIndex('property_index'); } diff --git a/core/Migrations/Version30000Date20240906095113.php b/core/Migrations/Version30000Date20240906095113.php index bab03241db4..7c3efe41bc3 100644 --- a/core/Migrations/Version30000Date20240906095113.php +++ b/core/Migrations/Version30000Date20240906095113.php @@ -31,7 +31,7 @@ class Version30000Date20240906095113 extends SimpleMigrationStep { if ($schema->hasTable('taskprocessing_tasks')) { $table = $schema->getTable('taskprocessing_tasks'); $column = $table->getColumn('error_message'); - + if ($column->getLength() < 4000) { $column->setLength(4000); } diff --git a/core/l10n/eo.js b/core/l10n/eo.js index c5d442450b0..cacb876036f 100644 --- a/core/l10n/eo.js +++ b/core/l10n/eo.js @@ -25,8 +25,12 @@ OC.L10N.register( "State token does not match" : "Stata ĵetono ne kongruas", "Invalid app password" : "Nevalida aplikaĵo-pasvorto", "Could not complete login" : "Ensaluto ne eblis", + "State token missing" : "Mankas ĵetono pri stato", "Your login token is invalid or has expired" : "Via ensaluta ĵetono ne validas aŭ senvalidiĝis", + "Please use original client" : "Bonvolu uzi la originan klienton", + "This community release of Nextcloud is unsupported and push notifications are limited." : "Tiu ĉi komunuma eldonaĵo de Nextcloud ne havas subtenon, kaj puŝajn atentigojn estas limigitaj.", "Login" : "Login", + "Unsupported email length (>255)" : "Nevalida longeco de retadreso (>255)", "Password reset is disabled" : "Pasvorta restarigo malebligita", "Could not reset password because the token is expired" : "Ne eblis restarigi pasvorton, ĉar la ĵetono senvalidiĝis", "Could not reset password because the token is invalid" : "Ne eblis restarigi pasvorton, ĉar la ĵetono ne validas", @@ -36,9 +40,13 @@ OC.L10N.register( "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Alklaku la jenan butonon por restarigi vian pasvorton. Si vi ne petis restarigon de via pasvorto, simple ignoru tiun ĉi retmesaĝon.", "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Alklaku la jenan ligilon por restarigi vian pasvorton. Si vi ne petis restarigon de via pasvorto, simple ignoru tiun ĉi retmesaĝon.", "Reset your password" : "Restarigi vian pasvorton ", + "The given provider is not available" : "La provizanto menciita ne estas disponebla", "Task not found" : "Tasko ne trovita", "Internal error" : "Interna eraro", "Not found" : "Ne trovita", + "Node is locked" : "Nodo estas ŝlosita", + "Bad request" : "Malbona peto", + "Requested task type does not exist" : "Petita task-tipo ne ekzistas", "Image not found" : "Bildo ne trovita", "Unable to translate" : "Ne eblas traduki", "[%d / %d]: %s" : "[%d / %d]: %s", diff --git a/core/l10n/eo.json b/core/l10n/eo.json index 3090648d69c..2f1a3539c5d 100644 --- a/core/l10n/eo.json +++ b/core/l10n/eo.json @@ -23,8 +23,12 @@ "State token does not match" : "Stata ĵetono ne kongruas", "Invalid app password" : "Nevalida aplikaĵo-pasvorto", "Could not complete login" : "Ensaluto ne eblis", + "State token missing" : "Mankas ĵetono pri stato", "Your login token is invalid or has expired" : "Via ensaluta ĵetono ne validas aŭ senvalidiĝis", + "Please use original client" : "Bonvolu uzi la originan klienton", + "This community release of Nextcloud is unsupported and push notifications are limited." : "Tiu ĉi komunuma eldonaĵo de Nextcloud ne havas subtenon, kaj puŝajn atentigojn estas limigitaj.", "Login" : "Login", + "Unsupported email length (>255)" : "Nevalida longeco de retadreso (>255)", "Password reset is disabled" : "Pasvorta restarigo malebligita", "Could not reset password because the token is expired" : "Ne eblis restarigi pasvorton, ĉar la ĵetono senvalidiĝis", "Could not reset password because the token is invalid" : "Ne eblis restarigi pasvorton, ĉar la ĵetono ne validas", @@ -34,9 +38,13 @@ "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Alklaku la jenan butonon por restarigi vian pasvorton. Si vi ne petis restarigon de via pasvorto, simple ignoru tiun ĉi retmesaĝon.", "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Alklaku la jenan ligilon por restarigi vian pasvorton. Si vi ne petis restarigon de via pasvorto, simple ignoru tiun ĉi retmesaĝon.", "Reset your password" : "Restarigi vian pasvorton ", + "The given provider is not available" : "La provizanto menciita ne estas disponebla", "Task not found" : "Tasko ne trovita", "Internal error" : "Interna eraro", "Not found" : "Ne trovita", + "Node is locked" : "Nodo estas ŝlosita", + "Bad request" : "Malbona peto", + "Requested task type does not exist" : "Petita task-tipo ne ekzistas", "Image not found" : "Bildo ne trovita", "Unable to translate" : "Ne eblas traduki", "[%d / %d]: %s" : "[%d / %d]: %s", diff --git a/core/l10n/tr.js b/core/l10n/tr.js index 6dcd18842a7..ae1275fa13c 100644 --- a/core/l10n/tr.js +++ b/core/l10n/tr.js @@ -44,6 +44,7 @@ OC.L10N.register( "Task not found" : "Görev bulunamadı", "Internal error" : "İçeride bir sorun çıktı", "Not found" : "Bulunamadı", + "Node is locked" : "Düğüm kilitlenmiş", "Bad request" : "İstek hatalı", "Requested task type does not exist" : "İstenilen görev türü bulunamadı", "Necessary language model provider is not available" : "Gerekli dil modeli sağlayıcısı kullanılamıyor", @@ -80,8 +81,125 @@ OC.L10N.register( "%s (incompatible)" : "%s (uyumsuz)", "The following apps have been disabled: %s" : "Şu uygulamalar kullanımdan kaldırıldı: %s", "Already up to date" : "Zaten güncel", + "Windows Command Script" : "Windows komut satırı betiği", + "Electronic book document" : "Elektronik kitap belgesi", + "TrueType Font Collection" : "TrueType yazı tipi derlemesi", + "Web Open Font Format" : "Web Open yazı tipi biçimi", + "GPX geographic data" : "GPX coğrafi verileri", + "Gzip archive" : "Gzip arşivi", + "Adobe Illustrator document" : "Adobe Illustrator belgesi", + "Java source code" : "Java kaynak kodu", + "JavaScript source code" : "JavaScript kaynak kodu", + "JSON document" : "JSON belgesi", + "Microsoft Access database" : "Microsoft Access veri tabanı", + "Microsoft OneNote document" : "Microsoft OneNote belgesi", + "Microsoft Word document" : "Microsoft Word belgesi", "Unknown" : "Bilinmiyor", + "PDF document" : "PDF belgesi", + "PostScript document" : "PostScript belgesi", + "RSS summary" : "RSS özeti", + "Android package" : "Android paketi", + "KML geographic data" : "KML coğrafi verileri", + "KML geographic compressed data" : "KML sıkıştırılmış coğrafi verileri", + "Lotus Word Pro document" : "Lotus Word Pro belgesi", + "Excel spreadsheet" : "Excel çalışma sayfası", + "Excel add-in" : "Excel eklentisi", + "Excel 2007 binary spreadsheet" : "Excel 2007 binary çalışma sayfası", + "Excel spreadsheet template" : "Excel çalışma sayfası kalıbı", + "Outlook Message" : "Outlook iletisi", + "PowerPoint presentation" : "PowerPoint sunumu", + "PowerPoint add-in" : "PowerPoint eklentisi", + "PowerPoint presentation template" : "PowerPoint sunumu kalıbı", + "Word document" : "Word belgesi", + "ODF formula" : "ODF formülü", + "ODG drawing" : "ODG çizimi", + "ODG drawing (Flat XML)" : "ODG çizimi (Düz XML)", + "ODG template" : "ODG kalıbı", + "ODP presentation" : "ODP sunumu", + "ODP presentation (Flat XML)" : "ODP sunumu (Düz XML)", + "ODP template" : "ODP kalıbı", + "ODS spreadsheet" : "ODS çalışma sayfası", + "ODS spreadsheet (Flat XML)" : "ODS çalışma sayfası (Düz XML)", + "ODS template" : "ODS kalıbı", + "ODT document" : "ODT belgesi", + "ODT document (Flat XML)" : "ODT belgesi (Düz XML)", + "ODT template" : "ODT kalıbı", + "PowerPoint 2007 presentation" : "PowerPoint 2007 sunumu", + "PowerPoint 2007 show" : "PowerPoint 2007 gösterisi", + "PowerPoint 2007 presentation template" : "PowerPoint 2007 sunumu kalıbı", + "Excel 2007 spreadsheet" : "Excel 2007 çalışma sayfası", + "Excel 2007 spreadsheet template" : "Excel 2007 çalışma sayfası kalıbı", + "Word 2007 document" : "Word 2007 belgesi", + "Word 2007 document template" : "Word 2007 belgesi kalıbı", + "Microsoft Visio document" : "Microsoft Visio belgesi", + "WordPerfect document" : "WordPerfect belgesi", + "7-zip archive" : "7-zip arşivi", + "Blender scene" : "Blender manzarası", + "Bzip2 archive" : "Bzip2 arşivi", + "Debian package" : "Debian paketi", + "FictionBook document" : "FictionBook belgesi", + "Unknown font" : "Yazı tipi bilinmiyor", + "Krita document" : "Krita belgesi", + "Mobipocket e-book" : "Mobipocket e-kitabı", + "Windows Installer package" : "Windows kurulum paketi", + "Perl script" : "Perl betiği", + "PHP script" : "PHP betiği", + "Tar archive" : "Tar arşivi", + "XML document" : "XML belgesi", + "YAML document" : "YAML belgesi", + "Zip archive" : "Zip arşivi", + "Zstandard archive" : "Zstandard arşivi", + "AAC audio" : "AAC ses dosyası", + "FLAC audio" : "FLAC ses dosyası", + "MPEG-4 audio" : "MPEG-4 ses dosyası", + "MP3 audio" : "MP3 ses dosyası", + "Ogg audio" : "Ogg ses dosyası", + "RIFF/WAVe standard Audio" : "RIFF/WAVe standart ses dosyası", + "WebM audio" : "WebM ses dosyası", + "MP3 ShoutCast playlist" : "MP3 ShoutCast oynatma listesi", + "Windows BMP image" : "Windows BMP görseli", + "Better Portable Graphics image" : "Better Portable Graphics görseli", + "EMF image" : "EMF görseli", + "GIF image" : "GIF görseli", + "HEIC image" : "HEIC görseli", + "HEIF image" : "HEIF görseli", + "JPEG-2000 JP2 image" : "JPEG-2000 JP2 görseli", + "JPEG image" : "JPEG görseli", "PNG image" : "PNG görseli", + "SVG image" : "SVG görseli", + "Truevision Targa image" : "Truevision Targa görseli", + "TIFF image" : "TIFF görseli", + "WebP image" : "WebP görseli", + "Digital raw image" : "Dijital ham görseli", + "Windows Icon" : "Windows simgesi", + "Email message" : "E-posta iletisi", + "VCS/ICS calendar" : "VCS/ICS takvimi", + "CSS stylesheet" : "CSS biçem sayfası", + "CSV document" : "CSV belgesi", + "HTML document" : "HTML belgesi", + "Markdown document" : "Markdown belgesi", + "Org-mode file" : "Org-mode dosyası", + "Plain text document" : "Düz metin belgesi", + "Rich Text document" : "Zengin metin belgesi", + "Electronic business card" : "Elektronik kartvizit", + "C++ source code" : "C++ kaynak kodu", + "LDIF address book" : "LDIF adres defteri", + "NFO document" : "NFO belgesi", + "PHP source" : "PHP kaynak kodu", + "Python script" : "Python betiği", + "ReStructuredText document" : "ReStructuredText belgesi", + "3GPP multimedia file" : "3GPP çoklu ortam dosyası", + "MPEG video" : "MPEG görüntü dosyası", + "DV video" : "DV görüntü dosyası", + "MPEG-2 transport stream" : "MPEG-2 aktarım akışı", + "MPEG-4 video" : "MPEG-4 görüntü dosyası", + "Ogg video" : "Ogg görüntü dosyası", + "QuickTime video" : "QuickTime görüntü dosyası", + "WebM video" : "WebM görüntü dosyası", + "Flash video" : "Flash görüntü dosyası", + "Matroska video" : "Matroska görüntü dosyası", + "Windows Media video" : "Windows Media görüntü dosyası", + "AVI video" : "AVI görüntü dosyası", "Error occurred while checking server setup" : "Sunucu ayarları denetlenirken sorun çıktı", "For more details see the {linkstart}documentation ↗{linkend}." : "Ayrıntılı bilgi almak için {linkstart}belgeler ↗{linkend} bölümüne bakabilirsiniz.", "unknown text" : "bilinmeyen metin", @@ -210,6 +328,11 @@ OC.L10N.register( "Login form is disabled." : "Oturum açma formu kullanımdan kaldırılmış.", "The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "Nextcloud oturum açma formu kullanımdan kaldırılmış. Varsa başka bir oturum açma seçeneğini kullanın ya da yöneticiniz ile görüşün.", "More actions" : "Diğer işlemler", + "User menu" : "Kullanıcı menüsü", + "You will be identified as {user} by the account owner." : "Hesap sahibi tarafından {user} olarak tanınacaksınız.", + "You are currently not identified." : "Şu anda tanımlanmamışsınız.", + "Set public name" : "Herkese açık adı ayarla", + "Change public name" : "Herkese açık adı değiştir", "Password is too weak" : "Parola çok kolay", "Password is weak" : "Parola kolay", "Password is average" : "Parola orta zorlukta", @@ -303,6 +426,7 @@ OC.L10N.register( "Admin" : "Yönetici", "Help" : "Yardım", "Access forbidden" : "Erişim engellendi", + "You are not allowed to access this page." : "Bu sayfaya erişme izniniz yok.", "Back to %s" : "%s sayfasına dön", "Page not found" : "Sayfa bulunamadı", "The page could not be found on the server or you may not be allowed to view it." : "Sayfa sunucuda bulunamadı ya da görüntülemenize izin verilmiyor olabilir.", @@ -352,13 +476,13 @@ OC.L10N.register( "Two-factor authentication" : "İki adımlı doğrulama", "Enhanced security is enabled for your account. Choose a second factor for authentication:" : "Hesabınız için gelişmiş güvenlik etkinleştirildi. Kimlik doğrulaması için bir ikinci adım seçin:", "Could not load at least one of your enabled two-factor auth methods. Please contact your admin." : "Kullanıma alınmış iki adımlı doğrulama yöntemlerinden en az biri yüklenemedi. Lütfen yöneticiniz ile görüşün.", - "Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance." : "İki adımlı doğrulama kullanımı zorunlu kılınmış ancak hesabınız için yapılandırılmamış. Yardım almak için sistem yöneticiniz ile görüşün.", - "Two-factor authentication is enforced but has not been configured on your account. Please continue to setup two-factor authentication." : "İki adımlı doğrulama kullanımı dayatılmış ancak hesabınız için yapılandırılması tamamlanmamış. Lütfen işlemi sürdürmek için iki adımlı doğrulamayı kurun.", + "Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance." : "İki adımlı doğrulama kullanımı zorunlu kılınmış. Ancak hesabınız için yapılandırılmamış. Yardım almak için sistem yöneticiniz ile görüşün.", + "Two-factor authentication is enforced but has not been configured on your account. Please continue to setup two-factor authentication." : "İki adımlı doğrulama kullanımı zorunlu kılınmış. Ancak hesabınız için yapılandırılmamış. Lütfen işlemi sürdürmek için iki adımlı doğrulamayı kurun.", "Set up two-factor authentication" : "İki adımlı doğrulama kurulumu", "Two-factor authentication is enforced but has not been configured on your account. Use one of your backup codes to log in or contact your admin for assistance." : "İki adımlı doğrulama kullanımı zorunlu kılınmış ancak hesabınız için yapılandırılmamış. Yedek kodlarınızdan birini kullanın ya da yardım almak için sistem yöneticiniz ile görüşün.", "Use backup code" : "Yedek kodu kullanacağım", "Cancel login" : "Oturum açmaktan vazgeç", - "Enhanced security is enforced for your account. Choose which provider to set up:" : "Hesabınız için gelişmiş güvenlik kullanımı dayatılmış. Kuracağınız hizmet sağlayıcıyı seçin:", + "Enhanced security is enforced for your account. Choose which provider to set up:" : "Hesabınız için gelişmiş güvenlik kullanımı zorunlu kılınmış. Kurulacak hizmet sağlayıcıyı seçin:", "Error while validating your second factor" : "İkinci aşama doğrulanırken sorun çıktı", "Access through untrusted domain" : "Güvenilmeyen etki alanı üzerinden erişim", "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "Lütfen BT yöneticiniz ile görüşün. Yöneticisi siz iseniz, config/config.php dosyası içerisindeki \"trusted_domain\" ayarını config/config.sample.php dosyasındaki gibi düzenleyin.", diff --git a/core/l10n/tr.json b/core/l10n/tr.json index 401317adb64..16bf2c68f53 100644 --- a/core/l10n/tr.json +++ b/core/l10n/tr.json @@ -42,6 +42,7 @@ "Task not found" : "Görev bulunamadı", "Internal error" : "İçeride bir sorun çıktı", "Not found" : "Bulunamadı", + "Node is locked" : "Düğüm kilitlenmiş", "Bad request" : "İstek hatalı", "Requested task type does not exist" : "İstenilen görev türü bulunamadı", "Necessary language model provider is not available" : "Gerekli dil modeli sağlayıcısı kullanılamıyor", @@ -78,8 +79,125 @@ "%s (incompatible)" : "%s (uyumsuz)", "The following apps have been disabled: %s" : "Şu uygulamalar kullanımdan kaldırıldı: %s", "Already up to date" : "Zaten güncel", + "Windows Command Script" : "Windows komut satırı betiği", + "Electronic book document" : "Elektronik kitap belgesi", + "TrueType Font Collection" : "TrueType yazı tipi derlemesi", + "Web Open Font Format" : "Web Open yazı tipi biçimi", + "GPX geographic data" : "GPX coğrafi verileri", + "Gzip archive" : "Gzip arşivi", + "Adobe Illustrator document" : "Adobe Illustrator belgesi", + "Java source code" : "Java kaynak kodu", + "JavaScript source code" : "JavaScript kaynak kodu", + "JSON document" : "JSON belgesi", + "Microsoft Access database" : "Microsoft Access veri tabanı", + "Microsoft OneNote document" : "Microsoft OneNote belgesi", + "Microsoft Word document" : "Microsoft Word belgesi", "Unknown" : "Bilinmiyor", + "PDF document" : "PDF belgesi", + "PostScript document" : "PostScript belgesi", + "RSS summary" : "RSS özeti", + "Android package" : "Android paketi", + "KML geographic data" : "KML coğrafi verileri", + "KML geographic compressed data" : "KML sıkıştırılmış coğrafi verileri", + "Lotus Word Pro document" : "Lotus Word Pro belgesi", + "Excel spreadsheet" : "Excel çalışma sayfası", + "Excel add-in" : "Excel eklentisi", + "Excel 2007 binary spreadsheet" : "Excel 2007 binary çalışma sayfası", + "Excel spreadsheet template" : "Excel çalışma sayfası kalıbı", + "Outlook Message" : "Outlook iletisi", + "PowerPoint presentation" : "PowerPoint sunumu", + "PowerPoint add-in" : "PowerPoint eklentisi", + "PowerPoint presentation template" : "PowerPoint sunumu kalıbı", + "Word document" : "Word belgesi", + "ODF formula" : "ODF formülü", + "ODG drawing" : "ODG çizimi", + "ODG drawing (Flat XML)" : "ODG çizimi (Düz XML)", + "ODG template" : "ODG kalıbı", + "ODP presentation" : "ODP sunumu", + "ODP presentation (Flat XML)" : "ODP sunumu (Düz XML)", + "ODP template" : "ODP kalıbı", + "ODS spreadsheet" : "ODS çalışma sayfası", + "ODS spreadsheet (Flat XML)" : "ODS çalışma sayfası (Düz XML)", + "ODS template" : "ODS kalıbı", + "ODT document" : "ODT belgesi", + "ODT document (Flat XML)" : "ODT belgesi (Düz XML)", + "ODT template" : "ODT kalıbı", + "PowerPoint 2007 presentation" : "PowerPoint 2007 sunumu", + "PowerPoint 2007 show" : "PowerPoint 2007 gösterisi", + "PowerPoint 2007 presentation template" : "PowerPoint 2007 sunumu kalıbı", + "Excel 2007 spreadsheet" : "Excel 2007 çalışma sayfası", + "Excel 2007 spreadsheet template" : "Excel 2007 çalışma sayfası kalıbı", + "Word 2007 document" : "Word 2007 belgesi", + "Word 2007 document template" : "Word 2007 belgesi kalıbı", + "Microsoft Visio document" : "Microsoft Visio belgesi", + "WordPerfect document" : "WordPerfect belgesi", + "7-zip archive" : "7-zip arşivi", + "Blender scene" : "Blender manzarası", + "Bzip2 archive" : "Bzip2 arşivi", + "Debian package" : "Debian paketi", + "FictionBook document" : "FictionBook belgesi", + "Unknown font" : "Yazı tipi bilinmiyor", + "Krita document" : "Krita belgesi", + "Mobipocket e-book" : "Mobipocket e-kitabı", + "Windows Installer package" : "Windows kurulum paketi", + "Perl script" : "Perl betiği", + "PHP script" : "PHP betiği", + "Tar archive" : "Tar arşivi", + "XML document" : "XML belgesi", + "YAML document" : "YAML belgesi", + "Zip archive" : "Zip arşivi", + "Zstandard archive" : "Zstandard arşivi", + "AAC audio" : "AAC ses dosyası", + "FLAC audio" : "FLAC ses dosyası", + "MPEG-4 audio" : "MPEG-4 ses dosyası", + "MP3 audio" : "MP3 ses dosyası", + "Ogg audio" : "Ogg ses dosyası", + "RIFF/WAVe standard Audio" : "RIFF/WAVe standart ses dosyası", + "WebM audio" : "WebM ses dosyası", + "MP3 ShoutCast playlist" : "MP3 ShoutCast oynatma listesi", + "Windows BMP image" : "Windows BMP görseli", + "Better Portable Graphics image" : "Better Portable Graphics görseli", + "EMF image" : "EMF görseli", + "GIF image" : "GIF görseli", + "HEIC image" : "HEIC görseli", + "HEIF image" : "HEIF görseli", + "JPEG-2000 JP2 image" : "JPEG-2000 JP2 görseli", + "JPEG image" : "JPEG görseli", "PNG image" : "PNG görseli", + "SVG image" : "SVG görseli", + "Truevision Targa image" : "Truevision Targa görseli", + "TIFF image" : "TIFF görseli", + "WebP image" : "WebP görseli", + "Digital raw image" : "Dijital ham görseli", + "Windows Icon" : "Windows simgesi", + "Email message" : "E-posta iletisi", + "VCS/ICS calendar" : "VCS/ICS takvimi", + "CSS stylesheet" : "CSS biçem sayfası", + "CSV document" : "CSV belgesi", + "HTML document" : "HTML belgesi", + "Markdown document" : "Markdown belgesi", + "Org-mode file" : "Org-mode dosyası", + "Plain text document" : "Düz metin belgesi", + "Rich Text document" : "Zengin metin belgesi", + "Electronic business card" : "Elektronik kartvizit", + "C++ source code" : "C++ kaynak kodu", + "LDIF address book" : "LDIF adres defteri", + "NFO document" : "NFO belgesi", + "PHP source" : "PHP kaynak kodu", + "Python script" : "Python betiği", + "ReStructuredText document" : "ReStructuredText belgesi", + "3GPP multimedia file" : "3GPP çoklu ortam dosyası", + "MPEG video" : "MPEG görüntü dosyası", + "DV video" : "DV görüntü dosyası", + "MPEG-2 transport stream" : "MPEG-2 aktarım akışı", + "MPEG-4 video" : "MPEG-4 görüntü dosyası", + "Ogg video" : "Ogg görüntü dosyası", + "QuickTime video" : "QuickTime görüntü dosyası", + "WebM video" : "WebM görüntü dosyası", + "Flash video" : "Flash görüntü dosyası", + "Matroska video" : "Matroska görüntü dosyası", + "Windows Media video" : "Windows Media görüntü dosyası", + "AVI video" : "AVI görüntü dosyası", "Error occurred while checking server setup" : "Sunucu ayarları denetlenirken sorun çıktı", "For more details see the {linkstart}documentation ↗{linkend}." : "Ayrıntılı bilgi almak için {linkstart}belgeler ↗{linkend} bölümüne bakabilirsiniz.", "unknown text" : "bilinmeyen metin", @@ -208,6 +326,11 @@ "Login form is disabled." : "Oturum açma formu kullanımdan kaldırılmış.", "The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "Nextcloud oturum açma formu kullanımdan kaldırılmış. Varsa başka bir oturum açma seçeneğini kullanın ya da yöneticiniz ile görüşün.", "More actions" : "Diğer işlemler", + "User menu" : "Kullanıcı menüsü", + "You will be identified as {user} by the account owner." : "Hesap sahibi tarafından {user} olarak tanınacaksınız.", + "You are currently not identified." : "Şu anda tanımlanmamışsınız.", + "Set public name" : "Herkese açık adı ayarla", + "Change public name" : "Herkese açık adı değiştir", "Password is too weak" : "Parola çok kolay", "Password is weak" : "Parola kolay", "Password is average" : "Parola orta zorlukta", @@ -301,6 +424,7 @@ "Admin" : "Yönetici", "Help" : "Yardım", "Access forbidden" : "Erişim engellendi", + "You are not allowed to access this page." : "Bu sayfaya erişme izniniz yok.", "Back to %s" : "%s sayfasına dön", "Page not found" : "Sayfa bulunamadı", "The page could not be found on the server or you may not be allowed to view it." : "Sayfa sunucuda bulunamadı ya da görüntülemenize izin verilmiyor olabilir.", @@ -350,13 +474,13 @@ "Two-factor authentication" : "İki adımlı doğrulama", "Enhanced security is enabled for your account. Choose a second factor for authentication:" : "Hesabınız için gelişmiş güvenlik etkinleştirildi. Kimlik doğrulaması için bir ikinci adım seçin:", "Could not load at least one of your enabled two-factor auth methods. Please contact your admin." : "Kullanıma alınmış iki adımlı doğrulama yöntemlerinden en az biri yüklenemedi. Lütfen yöneticiniz ile görüşün.", - "Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance." : "İki adımlı doğrulama kullanımı zorunlu kılınmış ancak hesabınız için yapılandırılmamış. Yardım almak için sistem yöneticiniz ile görüşün.", - "Two-factor authentication is enforced but has not been configured on your account. Please continue to setup two-factor authentication." : "İki adımlı doğrulama kullanımı dayatılmış ancak hesabınız için yapılandırılması tamamlanmamış. Lütfen işlemi sürdürmek için iki adımlı doğrulamayı kurun.", + "Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance." : "İki adımlı doğrulama kullanımı zorunlu kılınmış. Ancak hesabınız için yapılandırılmamış. Yardım almak için sistem yöneticiniz ile görüşün.", + "Two-factor authentication is enforced but has not been configured on your account. Please continue to setup two-factor authentication." : "İki adımlı doğrulama kullanımı zorunlu kılınmış. Ancak hesabınız için yapılandırılmamış. Lütfen işlemi sürdürmek için iki adımlı doğrulamayı kurun.", "Set up two-factor authentication" : "İki adımlı doğrulama kurulumu", "Two-factor authentication is enforced but has not been configured on your account. Use one of your backup codes to log in or contact your admin for assistance." : "İki adımlı doğrulama kullanımı zorunlu kılınmış ancak hesabınız için yapılandırılmamış. Yedek kodlarınızdan birini kullanın ya da yardım almak için sistem yöneticiniz ile görüşün.", "Use backup code" : "Yedek kodu kullanacağım", "Cancel login" : "Oturum açmaktan vazgeç", - "Enhanced security is enforced for your account. Choose which provider to set up:" : "Hesabınız için gelişmiş güvenlik kullanımı dayatılmış. Kuracağınız hizmet sağlayıcıyı seçin:", + "Enhanced security is enforced for your account. Choose which provider to set up:" : "Hesabınız için gelişmiş güvenlik kullanımı zorunlu kılınmış. Kurulacak hizmet sağlayıcıyı seçin:", "Error while validating your second factor" : "İkinci aşama doğrulanırken sorun çıktı", "Access through untrusted domain" : "Güvenilmeyen etki alanı üzerinden erişim", "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "Lütfen BT yöneticiniz ile görüşün. Yöneticisi siz iseniz, config/config.php dosyası içerisindeki \"trusted_domain\" ayarını config/config.sample.php dosyasındaki gibi düzenleyin.", |