diff options
Diffstat (limited to 'core')
62 files changed, 720 insertions, 142 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/hu.js b/core/l10n/hu.js index 894f2960a26..b0dc66b3a7f 100644 --- a/core/l10n/hu.js +++ b/core/l10n/hu.js @@ -7,7 +7,7 @@ OC.L10N.register( "The selected file cannot be read." : "A kiválasztott fájl nem olvasható.", "The file was uploaded" : "A fájl feltöltve", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "A feltöltött fájl meghaladja a php.ini-ben szereplő upload_max_filesize direktívában megadott méretet", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "A feltöltött fájl meghaladja a HTML űrlapon megadott MAX_FILE_SIZE direktívában meghatározott méretet.", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "A feltöltött fájl meghaladja a HTML űrlapon megadott MAX_FILE_SIZE direktívában meghatározott méretet", "The file was only partially uploaded" : "A fájl csak részben került feltöltésre", "No file was uploaded" : "Egyetlen fájl sem töltődött fel", "Missing a temporary folder" : "Hiányzik egy ideiglenes mappa", @@ -27,6 +27,7 @@ OC.L10N.register( "Could not complete login" : "A bejelentkezés nem fejezhető be", "State token missing" : "Az állapottoken hiányzik", "Your login token is invalid or has expired" : "A bejelentkezési token érvénytelen vagy lejárt", + "Please use original client" : "Használja az eredeti klienset", "This community release of Nextcloud is unsupported and push notifications are limited." : "A Nextcloud e közösségi kiadása nem támogatott, és a leküldéses értesítések korlátozottak.", "Login" : "Bejelentkezés", "Unsupported email length (>255)" : "Nem támogatott hosszúságú e-mail-cím (>255)", @@ -43,6 +44,7 @@ OC.L10N.register( "Task not found" : "A feladat nem található", "Internal error" : "Belső hiba", "Not found" : "Nem található", + "Node is locked" : "A csomópont zárolva van", "Bad request" : "Hibás kérés", "Requested task type does not exist" : "A kért feladattípus nem létezik", "Necessary language model provider is not available" : "A szükséges nyelvimodell-szolgáltató nem érhető el", @@ -79,8 +81,125 @@ OC.L10N.register( "%s (incompatible)" : "%s (nem kompatibilis)", "The following apps have been disabled: %s" : "A következő alkalmazások le lettek tiltva: %s", "Already up to date" : "Már naprakész", + "Windows Command Script" : "Windows-parancsfájl", + "Electronic book document" : "Elektronikus könyvdokumentum", + "TrueType Font Collection" : "TrueType betűkészlet-gyűjtemény", + "Web Open Font Format" : "Nyílt webes betűkészlet-formátum", + "GPX geographic data" : "GPX földrajzi adatok", + "Gzip archive" : "Gzip-archívum", + "Adobe Illustrator document" : "Adobe Illustrator-dokumentum", + "Java source code" : "Java-forrásfájl", + "JavaScript source code" : "JavaScript-forrásfájl", + "JSON document" : "JSON-dokumentum", + "Microsoft Access database" : "Microsoft Excel-adatbázis", + "Microsoft OneNote document" : "Microsfot OneNote-dokumentum", + "Microsoft Word document" : "Microsoft Word dokumentum", "Unknown" : "Ismeretlen", - "PNG image" : "PNG kép", + "PDF document" : "PDF-dokumentum", + "PostScript document" : "PostScript-dokumentum", + "RSS summary" : "RSS-összefoglaló", + "Android package" : "Android-csomag", + "KML geographic data" : "KML földrajzi adatok", + "KML geographic compressed data" : "KML tömörített földrajzi adatok", + "Lotus Word Pro document" : "Lotus Word Pro-dokumentum", + "Excel spreadsheet" : "Excel-munkafüzet", + "Excel add-in" : "Excel-bővítmény", + "Excel 2007 binary spreadsheet" : "Excel 2007 bináris munkafüzet", + "Excel spreadsheet template" : "Excel-munkafüzetsablon", + "Outlook Message" : "Outlook-üzenet", + "PowerPoint presentation" : "PowerPoint-bemutató", + "PowerPoint add-in" : "PowerPoint-bővítmény", + "PowerPoint presentation template" : "PowerPoint-bemutatósablon", + "Word document" : "Word-dokumentum", + "ODF formula" : "ODF-képlet", + "ODG drawing" : "ODG-rajz", + "ODG drawing (Flat XML)" : "ODG-rajz (lapos XML)", + "ODG template" : "ODG-sablon", + "ODP presentation" : "ODP-bemutató", + "ODP presentation (Flat XML)" : "ODP-bemutató (lapos XML)", + "ODP template" : "ODF-sablon", + "ODS spreadsheet" : "ODS-munkafüzet", + "ODS spreadsheet (Flat XML)" : "ODS-munkafüzet (lapos XML)", + "ODS template" : "ODS-sablon", + "ODT document" : "ODT-dokumentum", + "ODT document (Flat XML)" : "ODT-sablon (lapos XML)", + "ODT template" : "ODT-sablon", + "PowerPoint 2007 presentation" : "PowerPoint 2007-bemutató", + "PowerPoint 2007 show" : "PowerPoint 2007-vetítés", + "PowerPoint 2007 presentation template" : "PowerPoint 2007-bemutatósablon", + "Excel 2007 spreadsheet" : "Excel 2007-munkafüzet", + "Excel 2007 spreadsheet template" : "Excel 2007-munkafüzetsablon", + "Word 2007 document" : "Word 2007-dokumentum", + "Word 2007 document template" : "Word 2007-dokumentumsablon", + "Microsoft Visio document" : "Microsoft Visio-dokumentum", + "WordPerfect document" : "WordPerfect-dokumentum", + "7-zip archive" : "7-zip-archívum", + "Blender scene" : "Blender-jelenet", + "Bzip2 archive" : "Bzip2-archívum", + "Debian package" : "Debian-csomag", + "FictionBook document" : "FictionBook-dokumentum", + "Unknown font" : "Ismeretlen betűkészlet", + "Krita document" : "Krita-dokumentum", + "Mobipocket e-book" : "Mobipocket ekönyv", + "Windows Installer package" : "Windows Installer-csomag", + "Perl script" : "Perl-parancsfájl", + "PHP script" : "PHP-parancsfájl", + "Tar archive" : "Tar-archívum", + "XML document" : "XML-dokumentum", + "YAML document" : "YAML-dokumentum", + "Zip archive" : "Zip-archívum", + "Zstandard archive" : "Zstandard-archívum", + "AAC audio" : "AAC-hang", + "FLAC audio" : "FLAC-hang", + "MPEG-4 audio" : "MPEG-4-hang", + "MP3 audio" : "MP3-hang", + "Ogg audio" : "Ogg-hang", + "RIFF/WAVe standard Audio" : "RIFF/WAVe szabványos hang", + "WebM audio" : "WebM-hang", + "MP3 ShoutCast playlist" : "MP3 ShoutCast-lejátszólista", + "Windows BMP image" : "Windows BMP-kép", + "Better Portable Graphics image" : "Better Portable Graphics-kép", + "EMF image" : "EMF-kép", + "GIF image" : "GIF-kép", + "HEIC image" : "HEIC-kép", + "HEIF image" : "HEIF-kép", + "JPEG-2000 JP2 image" : "JPEG-2000 JP2-kép", + "JPEG image" : "JPEG-kép", + "PNG image" : "PNG-kép", + "SVG image" : "SVG-kép", + "Truevision Targa image" : "Truevision Targa-kép", + "TIFF image" : "TIFF-kép", + "WebP image" : "WebP-kép", + "Digital raw image" : "Digitális nyerskép", + "Windows Icon" : "Windows-ikon", + "Email message" : "E-mail-üzenet", + "VCS/ICS calendar" : "VCS/ICS-naptár", + "CSS stylesheet" : "CSS-stíluslap", + "CSV document" : "CSV-dokumentum", + "HTML document" : "HTML-dokumentum", + "Markdown document" : "Markdown-dokumentum", + "Org-mode file" : "Org-mode-fájl", + "Plain text document" : "Egyszerű szöveges dokumentum", + "Rich Text document" : "Rich Text-dokumentum", + "Electronic business card" : "Elektronikus névjegykártya", + "C++ source code" : "C++-forráskód", + "LDIF address book" : "LDIF-címjegyzék", + "NFO document" : "NFO-dokumentum", + "PHP source" : "PHP-forráskód", + "Python script" : "Python-parancsfájl", + "ReStructuredText document" : "ReStructuredText-dokumentum", + "3GPP multimedia file" : "3GPP-multimédiafájl", + "MPEG video" : "MPEG-videó", + "DV video" : "DV-videó", + "MPEG-2 transport stream" : "MPEG-2 átviteli adatfolyam", + "MPEG-4 video" : "MPEG-4-videó", + "Ogg video" : "Ogg-videó", + "QuickTime video" : "QuickTime-videó", + "WebM video" : "WebM-videó", + "Flash video" : "FLash-videó", + "Matroska video" : "Matroska-videó", + "Windows Media video" : "Windows Media-videó", + "AVI video" : "AVI-videó", "Error occurred while checking server setup" : "Hiba történt a kiszolgálóbeállítások ellenőrzésekor", "For more details see the {linkstart}documentation ↗{linkend}." : "További részletekért lásd a {linkstart}dokumentációt↗{linkend}.", "unknown text" : "ismeretlen szöveg", @@ -148,6 +267,8 @@ OC.L10N.register( "Account name" : "Fiók neve", "Server side authentication failed!" : "A kiszolgálóoldali hitelesítés sikertelen.", "Please contact your administrator." : "Lépjen kapcsolatba a rendszergazdával.", + "Session error" : "Munkamenethiba", + "It appears your session token has expired, please refresh the page and try again." : "Úgy tűnik, hogy a munkamenettoken lejárt, frissítse az oldalt, és próbálja újra.", "An internal error occurred." : "Belső hiba történt.", "Please try again or contact your administrator." : "Próbálja meg újra, vagy vegye fel a kapcsolatot a rendszergazdával.", "Password" : "Jelszó", @@ -165,7 +286,7 @@ OC.L10N.register( "Password cannot be changed. Please contact your administrator." : "A jelszó nem módosítható. Lépjen kapcsolatba a rendszergazdával.", "New password" : "Új jelszó", "Your files are encrypted. There will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" : "A fájljai titkosítva vannak. A jelszó visszaállítása után sehogy sem fogja tudja visszaszerezni azokat. Ha nem tudja mi a teendő, akkor beszéljen a helyi rendszergazdával. Biztos, hogy folytatja?", - "I know what I'm doing" : "Tudom mit csinálok.", + "I know what I'm doing" : "Tudom mit csinálok", "Resetting password" : "Jelszó visszaállítása", "Schedule work & meetings, synced with all your devices." : "Ütemezett munkáját és találkozóit, szinkronizálva az összes eszközén.", "Keep your colleagues and friends in one place without leaking their private info." : "Tartsa egy helyen kollégáit és barátait, anélkül hogy kiszivárogtatná a személyes adataikat.", @@ -207,35 +328,49 @@ OC.L10N.register( "Login form is disabled." : "A bejelentkezési űrlap letiltva.", "The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "A Nextcloud bejelentkezési űrlap le van tiltva. Használjon más bejelentkezési lehetőséget, ha van ilyen, vagy lépjen kapcsolatba az adminisztrációval.", "More actions" : "További műveletek", + "User menu" : "Felhasználói menü", + "You will be identified as {user} by the account owner." : "A fióktulajdonos által {user} felhasználóként lesz azonosítva.", + "You are currently not identified." : "Jelenleg nincs azonosítva.", + "Set public name" : "Nyilvános név beállítása", + "Change public name" : "Nyilvános név módosítása", "Password is too weak" : "Jelszó túl gyenge", - "Password is weak" : "Jelszó gyenge", - "Password is average" : "Jelszó átlagos", + "Password is weak" : "A jelszó gyenge", + "Password is average" : "A jelszó átlagos", "Password is strong" : "A jelszó erős", "Password is very strong" : "A jelszó nagyon erős", - "Password is extremely strong" : "A jelszó extrém erős", - "Unknown password strength" : "Ismeretlen jelszó erősség", + "Password is extremely strong" : "A jelszó kiemelkedően erős", + "Unknown password strength" : "Ismeretlen jelszóerősség", + "Your data directory and files are probably accessible from the internet because the <code>.htaccess</code> file does not work." : "Az adatkönyvtára és a fájljai valószínűleg elérhetőek az internetről, mert a <code>.htaccess</code> fájl nem működik.", + "For information how to properly configure your server, please {linkStart}see the documentation{linkEnd}" : "A kiszolgáló helyes beállításához {linkStart}tekintse meg a dokumentációt{linkEnd}", "Autoconfig file detected" : "Autoconfig fájl felismerve", + "The setup form below is pre-filled with the values from the config file." : "A lenti beállítási űrlap a konfigurációs fájlban lévő értékekkel van előre kitöltve.", "Security warning" : "Biztonsági figyelmeztetés", + "Create administration account" : "Rendszergazdai fiók létrehozása", + "Administration account name" : "Rendszergazdai fiók neve", + "Administration account password" : "Rendszergazdai fiók jelszava", "Storage & database" : "Tárhely és adatbázis", - "Data folder" : "Adat mappa", + "Data folder" : "Adatmappa", + "Database configuration" : "Adatbázis-beállítások", + "Only {firstAndOnlyDatabase} is available." : "Csak a(z) {firstAndOnlyDatabase} érhető el.", "Install and activate additional PHP modules to choose other database types." : "Telepítse és aktiválja a bővített PHP modulokat, hogy tudjon más adatbázis típust is kiválasztani.", "For more details check out the documentation." : "További részletekért nézze meg a dokumentációt.", "Performance warning" : "Teljesítménybeli figyelmeztetés", "You chose SQLite as database." : "SQLite adatbázist választott.", "SQLite should only be used for minimal and development instances. For production we recommend a different database backend." : "Az SQLite-ot csak minimális és fejlesztési célú példányok esetén szabad használni. Éles működés esetén más adatbázis-kezelőt ajánlunk.", "If you use clients for file syncing, the use of SQLite is highly discouraged." : "Ha klienseket használt a fájlszinkronizáláshoz, akkor az SQLite használata erősen ellenjavallt.", - "Database user" : "Adatbázis felhasználónév", - "Database password" : "Adatbázis jelszó", - "Database name" : "Az adatbázis neve", - "Database tablespace" : "Az adatbázis táblázattér (tablespace)", + "Database user" : "Adatbázis-felhasználó", + "Database password" : "Adatbázisjelszó", + "Database name" : "Adatbázis neve", + "Database tablespace" : "Adatbázis táblatere", "Please specify the port number along with the host name (e.g., localhost:5432)." : "Adja meg a port számát a kiszolgáló neve után (például localhost:5432).", "Database host" : "Adatbázis-kiszolgáló", + "localhost" : "localhost", "Installing …" : "Telepítés…", "Install" : "Telepítés", "Need help?" : "Segítségre van szüksége?", "See the documentation" : "Nézze meg a dokumentációt", "{name} version {version} and above" : "{name} {version} verziója, és újabb", - "This browser is not supported" : "Ez a böngésző nem támogatott.", + "This browser is not supported" : "Ez a böngésző nem támogatott", "Your browser is not supported. Please upgrade to a newer version or a supported one." : "A böngészője nem támogatott. Frissítsen újabb verzióra, vagy váltson egy támogatott böngészőre.", "Continue with this unsupported browser" : "Folytatás ezzel a nem támogatott böngészővel", "Supported versions" : "Támogatott verziók", @@ -259,7 +394,7 @@ OC.L10N.register( "(all selected)" : "(összes kiválasztva)", "({count} selected)" : "({count} kiválasztva)", "Error loading file exists template" : "Hiba a „fájl már létezik” sablon betöltésekor", - "Saving …" : "Mentés ...", + "Saving …" : "Mentés…", "seconds ago" : "pár másodperce", "Connection to server lost" : "A kapcsolat megszakadt a kiszolgálóval", "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Probléma az oldal betöltésekor, újratöltés %n másodperc múlva","Probléma az oldal betöltésekor, újratöltés %n másodperc múlva"], @@ -272,7 +407,7 @@ OC.L10N.register( "Failed to add the item to the project" : "Az elem hozzáadása a projekthez sikertelen", "Connect items to a project to make them easier to find" : "Kössön hozzá elemeket a projekthez, hogy könnyebben megtalálhatóak legyenek", "Type to search for existing projects" : "Gépeljen a meglévő projektet kereséséhez", - "New in" : "Új itt", + "New in" : "Újdonságok a következőben:", "View changelog" : "Változásnapló megtekintése", "No action available" : "Nincs elérhető művelet", "Error fetching contact actions" : "Hiba a kapcsolati műveletek lekérésekor", @@ -285,12 +420,13 @@ OC.L10N.register( "Rename" : "Átnevezés", "Collaborative tags" : "Együttműködési címkék", "No tags found" : "Nem találhatók címkék", - "Clipboard not available, please copy manually" : "A vágólap nem érhető el. Másolja át kézileg.", + "Clipboard not available, please copy manually" : "A vágólap nem érhető el, másolja kézileg", "Personal" : "Személyes", "Accounts" : "Fiókok", "Admin" : "Rendszergazda", "Help" : "Súgó", "Access forbidden" : "A hozzáférés nem engedélyezett", + "You are not allowed to access this page." : "Nem férhet hozzá ehhez az oldalhoz.", "Back to %s" : "Vissza ide %s", "Page not found" : "Az oldal nem található", "The page could not be found on the server or you may not be allowed to view it." : "Az oldal nem található a kiszolgálón, vagy lehet, hogy nincs engedélye arra, hogy megnézze.", @@ -302,7 +438,7 @@ OC.L10N.register( "If this happens again, please send the technical details below to the server administrator." : "Ha ez még egyszer előfordul küldd el az alábbi technikai részleteket a rendszergazdának.", "More details can be found in the server log." : "További részletek találhatók a kiszolgáló naplójában.", "For more details see the documentation ↗." : "További részletekért nézze meg a dokumentációt ↗.", - "Technical details" : "Technikai adatok", + "Technical details" : "Műszaki adatok", "Remote Address: %s" : "Távoli cím: %s", "Request ID: %s" : "Kérésazonosító: %s", "Type: %s" : "Típus: %s", @@ -338,7 +474,7 @@ OC.L10N.register( "Password sent!" : "Jelszó elküldve.", "You are not authorized to request a password for this share" : "Nincs jogosultsága, hogy jelszót kérjen ehhez a megosztáshoz", "Two-factor authentication" : "Kétfaktoros hitelesítés", - "Enhanced security is enabled for your account. Choose a second factor for authentication:" : "A fokozott biztonság engedélyezett a fiókja számára. Válasszon egy második faktort a hitelesítéshez.", + "Enhanced security is enabled for your account. Choose a second factor for authentication:" : "A fokozott biztonság engedélyezett a fiókja számára. Válasszon egy második faktort a hitelesítéshez:", "Could not load at least one of your enabled two-factor auth methods. Please contact your admin." : "Nem lehet betölteni legalább egy engedélyezett kétfaktoros hitelesítési módot. Lépjen kapcsolatba a rendszergazdával.", "Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance." : "A kétfaktoros hitelesítés kötelező, de még nem lett beállítva a fiókjához. Segítségért lépjen kapcsolatba a rendszergazdával.", "Two-factor authentication is enforced but has not been configured on your account. Please continue to setup two-factor authentication." : "A kétfaktoros hitelesítés be van tartatva, de nincs beállítva a fiókján. Folytassa a kétfaktoros hitelesítés beállításával.", @@ -368,7 +504,7 @@ OC.L10N.register( "Maintenance mode" : "Karbantartási üzemmód", "This %s instance is currently in maintenance mode, which may take a while." : "Ez a %s példány éppen karbantartási üzemmódban van, amely eltarthat egy darabig.", "This page will refresh itself when the instance is available again." : "Ez az oldal frissíteni fogja magát, amint a példány ismét elérhető lesz.", - "Contact your system administrator if this message persists or appeared unexpectedly." : "Ha ez az üzenet mindig vagy váratlanul megjelenik, akkor keresse fel a rendszergazdáját!", + "Contact your system administrator if this message persists or appeared unexpectedly." : "Ha ez az üzenet mindig vagy váratlanul megjelenik, akkor keresse fel a rendszergazdáját.", "Chatting, video calls, screensharing, online meetings and web conferencing – in your browser and with mobile apps." : "Csevegés, videóhívások, képernyőmegosztás, online megbeszélések és webes konferencia – a böngészőjében és mobilalkalmazásokkal.", "You have not added any info yet" : "Még nem adott meg semmilyen információt", "{user} has not added any info yet" : "{user} még nem adott meg semmilyen információt", diff --git a/core/l10n/hu.json b/core/l10n/hu.json index 4c43a871cd6..a450c0177f2 100644 --- a/core/l10n/hu.json +++ b/core/l10n/hu.json @@ -5,7 +5,7 @@ "The selected file cannot be read." : "A kiválasztott fájl nem olvasható.", "The file was uploaded" : "A fájl feltöltve", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "A feltöltött fájl meghaladja a php.ini-ben szereplő upload_max_filesize direktívában megadott méretet", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "A feltöltött fájl meghaladja a HTML űrlapon megadott MAX_FILE_SIZE direktívában meghatározott méretet.", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "A feltöltött fájl meghaladja a HTML űrlapon megadott MAX_FILE_SIZE direktívában meghatározott méretet", "The file was only partially uploaded" : "A fájl csak részben került feltöltésre", "No file was uploaded" : "Egyetlen fájl sem töltődött fel", "Missing a temporary folder" : "Hiányzik egy ideiglenes mappa", @@ -25,6 +25,7 @@ "Could not complete login" : "A bejelentkezés nem fejezhető be", "State token missing" : "Az állapottoken hiányzik", "Your login token is invalid or has expired" : "A bejelentkezési token érvénytelen vagy lejárt", + "Please use original client" : "Használja az eredeti klienset", "This community release of Nextcloud is unsupported and push notifications are limited." : "A Nextcloud e közösségi kiadása nem támogatott, és a leküldéses értesítések korlátozottak.", "Login" : "Bejelentkezés", "Unsupported email length (>255)" : "Nem támogatott hosszúságú e-mail-cím (>255)", @@ -41,6 +42,7 @@ "Task not found" : "A feladat nem található", "Internal error" : "Belső hiba", "Not found" : "Nem található", + "Node is locked" : "A csomópont zárolva van", "Bad request" : "Hibás kérés", "Requested task type does not exist" : "A kért feladattípus nem létezik", "Necessary language model provider is not available" : "A szükséges nyelvimodell-szolgáltató nem érhető el", @@ -77,8 +79,125 @@ "%s (incompatible)" : "%s (nem kompatibilis)", "The following apps have been disabled: %s" : "A következő alkalmazások le lettek tiltva: %s", "Already up to date" : "Már naprakész", + "Windows Command Script" : "Windows-parancsfájl", + "Electronic book document" : "Elektronikus könyvdokumentum", + "TrueType Font Collection" : "TrueType betűkészlet-gyűjtemény", + "Web Open Font Format" : "Nyílt webes betűkészlet-formátum", + "GPX geographic data" : "GPX földrajzi adatok", + "Gzip archive" : "Gzip-archívum", + "Adobe Illustrator document" : "Adobe Illustrator-dokumentum", + "Java source code" : "Java-forrásfájl", + "JavaScript source code" : "JavaScript-forrásfájl", + "JSON document" : "JSON-dokumentum", + "Microsoft Access database" : "Microsoft Excel-adatbázis", + "Microsoft OneNote document" : "Microsfot OneNote-dokumentum", + "Microsoft Word document" : "Microsoft Word dokumentum", "Unknown" : "Ismeretlen", - "PNG image" : "PNG kép", + "PDF document" : "PDF-dokumentum", + "PostScript document" : "PostScript-dokumentum", + "RSS summary" : "RSS-összefoglaló", + "Android package" : "Android-csomag", + "KML geographic data" : "KML földrajzi adatok", + "KML geographic compressed data" : "KML tömörített földrajzi adatok", + "Lotus Word Pro document" : "Lotus Word Pro-dokumentum", + "Excel spreadsheet" : "Excel-munkafüzet", + "Excel add-in" : "Excel-bővítmény", + "Excel 2007 binary spreadsheet" : "Excel 2007 bináris munkafüzet", + "Excel spreadsheet template" : "Excel-munkafüzetsablon", + "Outlook Message" : "Outlook-üzenet", + "PowerPoint presentation" : "PowerPoint-bemutató", + "PowerPoint add-in" : "PowerPoint-bővítmény", + "PowerPoint presentation template" : "PowerPoint-bemutatósablon", + "Word document" : "Word-dokumentum", + "ODF formula" : "ODF-képlet", + "ODG drawing" : "ODG-rajz", + "ODG drawing (Flat XML)" : "ODG-rajz (lapos XML)", + "ODG template" : "ODG-sablon", + "ODP presentation" : "ODP-bemutató", + "ODP presentation (Flat XML)" : "ODP-bemutató (lapos XML)", + "ODP template" : "ODF-sablon", + "ODS spreadsheet" : "ODS-munkafüzet", + "ODS spreadsheet (Flat XML)" : "ODS-munkafüzet (lapos XML)", + "ODS template" : "ODS-sablon", + "ODT document" : "ODT-dokumentum", + "ODT document (Flat XML)" : "ODT-sablon (lapos XML)", + "ODT template" : "ODT-sablon", + "PowerPoint 2007 presentation" : "PowerPoint 2007-bemutató", + "PowerPoint 2007 show" : "PowerPoint 2007-vetítés", + "PowerPoint 2007 presentation template" : "PowerPoint 2007-bemutatósablon", + "Excel 2007 spreadsheet" : "Excel 2007-munkafüzet", + "Excel 2007 spreadsheet template" : "Excel 2007-munkafüzetsablon", + "Word 2007 document" : "Word 2007-dokumentum", + "Word 2007 document template" : "Word 2007-dokumentumsablon", + "Microsoft Visio document" : "Microsoft Visio-dokumentum", + "WordPerfect document" : "WordPerfect-dokumentum", + "7-zip archive" : "7-zip-archívum", + "Blender scene" : "Blender-jelenet", + "Bzip2 archive" : "Bzip2-archívum", + "Debian package" : "Debian-csomag", + "FictionBook document" : "FictionBook-dokumentum", + "Unknown font" : "Ismeretlen betűkészlet", + "Krita document" : "Krita-dokumentum", + "Mobipocket e-book" : "Mobipocket ekönyv", + "Windows Installer package" : "Windows Installer-csomag", + "Perl script" : "Perl-parancsfájl", + "PHP script" : "PHP-parancsfájl", + "Tar archive" : "Tar-archívum", + "XML document" : "XML-dokumentum", + "YAML document" : "YAML-dokumentum", + "Zip archive" : "Zip-archívum", + "Zstandard archive" : "Zstandard-archívum", + "AAC audio" : "AAC-hang", + "FLAC audio" : "FLAC-hang", + "MPEG-4 audio" : "MPEG-4-hang", + "MP3 audio" : "MP3-hang", + "Ogg audio" : "Ogg-hang", + "RIFF/WAVe standard Audio" : "RIFF/WAVe szabványos hang", + "WebM audio" : "WebM-hang", + "MP3 ShoutCast playlist" : "MP3 ShoutCast-lejátszólista", + "Windows BMP image" : "Windows BMP-kép", + "Better Portable Graphics image" : "Better Portable Graphics-kép", + "EMF image" : "EMF-kép", + "GIF image" : "GIF-kép", + "HEIC image" : "HEIC-kép", + "HEIF image" : "HEIF-kép", + "JPEG-2000 JP2 image" : "JPEG-2000 JP2-kép", + "JPEG image" : "JPEG-kép", + "PNG image" : "PNG-kép", + "SVG image" : "SVG-kép", + "Truevision Targa image" : "Truevision Targa-kép", + "TIFF image" : "TIFF-kép", + "WebP image" : "WebP-kép", + "Digital raw image" : "Digitális nyerskép", + "Windows Icon" : "Windows-ikon", + "Email message" : "E-mail-üzenet", + "VCS/ICS calendar" : "VCS/ICS-naptár", + "CSS stylesheet" : "CSS-stíluslap", + "CSV document" : "CSV-dokumentum", + "HTML document" : "HTML-dokumentum", + "Markdown document" : "Markdown-dokumentum", + "Org-mode file" : "Org-mode-fájl", + "Plain text document" : "Egyszerű szöveges dokumentum", + "Rich Text document" : "Rich Text-dokumentum", + "Electronic business card" : "Elektronikus névjegykártya", + "C++ source code" : "C++-forráskód", + "LDIF address book" : "LDIF-címjegyzék", + "NFO document" : "NFO-dokumentum", + "PHP source" : "PHP-forráskód", + "Python script" : "Python-parancsfájl", + "ReStructuredText document" : "ReStructuredText-dokumentum", + "3GPP multimedia file" : "3GPP-multimédiafájl", + "MPEG video" : "MPEG-videó", + "DV video" : "DV-videó", + "MPEG-2 transport stream" : "MPEG-2 átviteli adatfolyam", + "MPEG-4 video" : "MPEG-4-videó", + "Ogg video" : "Ogg-videó", + "QuickTime video" : "QuickTime-videó", + "WebM video" : "WebM-videó", + "Flash video" : "FLash-videó", + "Matroska video" : "Matroska-videó", + "Windows Media video" : "Windows Media-videó", + "AVI video" : "AVI-videó", "Error occurred while checking server setup" : "Hiba történt a kiszolgálóbeállítások ellenőrzésekor", "For more details see the {linkstart}documentation ↗{linkend}." : "További részletekért lásd a {linkstart}dokumentációt↗{linkend}.", "unknown text" : "ismeretlen szöveg", @@ -146,6 +265,8 @@ "Account name" : "Fiók neve", "Server side authentication failed!" : "A kiszolgálóoldali hitelesítés sikertelen.", "Please contact your administrator." : "Lépjen kapcsolatba a rendszergazdával.", + "Session error" : "Munkamenethiba", + "It appears your session token has expired, please refresh the page and try again." : "Úgy tűnik, hogy a munkamenettoken lejárt, frissítse az oldalt, és próbálja újra.", "An internal error occurred." : "Belső hiba történt.", "Please try again or contact your administrator." : "Próbálja meg újra, vagy vegye fel a kapcsolatot a rendszergazdával.", "Password" : "Jelszó", @@ -163,7 +284,7 @@ "Password cannot be changed. Please contact your administrator." : "A jelszó nem módosítható. Lépjen kapcsolatba a rendszergazdával.", "New password" : "Új jelszó", "Your files are encrypted. There will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" : "A fájljai titkosítva vannak. A jelszó visszaállítása után sehogy sem fogja tudja visszaszerezni azokat. Ha nem tudja mi a teendő, akkor beszéljen a helyi rendszergazdával. Biztos, hogy folytatja?", - "I know what I'm doing" : "Tudom mit csinálok.", + "I know what I'm doing" : "Tudom mit csinálok", "Resetting password" : "Jelszó visszaállítása", "Schedule work & meetings, synced with all your devices." : "Ütemezett munkáját és találkozóit, szinkronizálva az összes eszközén.", "Keep your colleagues and friends in one place without leaking their private info." : "Tartsa egy helyen kollégáit és barátait, anélkül hogy kiszivárogtatná a személyes adataikat.", @@ -205,35 +326,49 @@ "Login form is disabled." : "A bejelentkezési űrlap letiltva.", "The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "A Nextcloud bejelentkezési űrlap le van tiltva. Használjon más bejelentkezési lehetőséget, ha van ilyen, vagy lépjen kapcsolatba az adminisztrációval.", "More actions" : "További műveletek", + "User menu" : "Felhasználói menü", + "You will be identified as {user} by the account owner." : "A fióktulajdonos által {user} felhasználóként lesz azonosítva.", + "You are currently not identified." : "Jelenleg nincs azonosítva.", + "Set public name" : "Nyilvános név beállítása", + "Change public name" : "Nyilvános név módosítása", "Password is too weak" : "Jelszó túl gyenge", - "Password is weak" : "Jelszó gyenge", - "Password is average" : "Jelszó átlagos", + "Password is weak" : "A jelszó gyenge", + "Password is average" : "A jelszó átlagos", "Password is strong" : "A jelszó erős", "Password is very strong" : "A jelszó nagyon erős", - "Password is extremely strong" : "A jelszó extrém erős", - "Unknown password strength" : "Ismeretlen jelszó erősség", + "Password is extremely strong" : "A jelszó kiemelkedően erős", + "Unknown password strength" : "Ismeretlen jelszóerősség", + "Your data directory and files are probably accessible from the internet because the <code>.htaccess</code> file does not work." : "Az adatkönyvtára és a fájljai valószínűleg elérhetőek az internetről, mert a <code>.htaccess</code> fájl nem működik.", + "For information how to properly configure your server, please {linkStart}see the documentation{linkEnd}" : "A kiszolgáló helyes beállításához {linkStart}tekintse meg a dokumentációt{linkEnd}", "Autoconfig file detected" : "Autoconfig fájl felismerve", + "The setup form below is pre-filled with the values from the config file." : "A lenti beállítási űrlap a konfigurációs fájlban lévő értékekkel van előre kitöltve.", "Security warning" : "Biztonsági figyelmeztetés", + "Create administration account" : "Rendszergazdai fiók létrehozása", + "Administration account name" : "Rendszergazdai fiók neve", + "Administration account password" : "Rendszergazdai fiók jelszava", "Storage & database" : "Tárhely és adatbázis", - "Data folder" : "Adat mappa", + "Data folder" : "Adatmappa", + "Database configuration" : "Adatbázis-beállítások", + "Only {firstAndOnlyDatabase} is available." : "Csak a(z) {firstAndOnlyDatabase} érhető el.", "Install and activate additional PHP modules to choose other database types." : "Telepítse és aktiválja a bővített PHP modulokat, hogy tudjon más adatbázis típust is kiválasztani.", "For more details check out the documentation." : "További részletekért nézze meg a dokumentációt.", "Performance warning" : "Teljesítménybeli figyelmeztetés", "You chose SQLite as database." : "SQLite adatbázist választott.", "SQLite should only be used for minimal and development instances. For production we recommend a different database backend." : "Az SQLite-ot csak minimális és fejlesztési célú példányok esetén szabad használni. Éles működés esetén más adatbázis-kezelőt ajánlunk.", "If you use clients for file syncing, the use of SQLite is highly discouraged." : "Ha klienseket használt a fájlszinkronizáláshoz, akkor az SQLite használata erősen ellenjavallt.", - "Database user" : "Adatbázis felhasználónév", - "Database password" : "Adatbázis jelszó", - "Database name" : "Az adatbázis neve", - "Database tablespace" : "Az adatbázis táblázattér (tablespace)", + "Database user" : "Adatbázis-felhasználó", + "Database password" : "Adatbázisjelszó", + "Database name" : "Adatbázis neve", + "Database tablespace" : "Adatbázis táblatere", "Please specify the port number along with the host name (e.g., localhost:5432)." : "Adja meg a port számát a kiszolgáló neve után (például localhost:5432).", "Database host" : "Adatbázis-kiszolgáló", + "localhost" : "localhost", "Installing …" : "Telepítés…", "Install" : "Telepítés", "Need help?" : "Segítségre van szüksége?", "See the documentation" : "Nézze meg a dokumentációt", "{name} version {version} and above" : "{name} {version} verziója, és újabb", - "This browser is not supported" : "Ez a böngésző nem támogatott.", + "This browser is not supported" : "Ez a böngésző nem támogatott", "Your browser is not supported. Please upgrade to a newer version or a supported one." : "A böngészője nem támogatott. Frissítsen újabb verzióra, vagy váltson egy támogatott böngészőre.", "Continue with this unsupported browser" : "Folytatás ezzel a nem támogatott böngészővel", "Supported versions" : "Támogatott verziók", @@ -257,7 +392,7 @@ "(all selected)" : "(összes kiválasztva)", "({count} selected)" : "({count} kiválasztva)", "Error loading file exists template" : "Hiba a „fájl már létezik” sablon betöltésekor", - "Saving …" : "Mentés ...", + "Saving …" : "Mentés…", "seconds ago" : "pár másodperce", "Connection to server lost" : "A kapcsolat megszakadt a kiszolgálóval", "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Probléma az oldal betöltésekor, újratöltés %n másodperc múlva","Probléma az oldal betöltésekor, újratöltés %n másodperc múlva"], @@ -270,7 +405,7 @@ "Failed to add the item to the project" : "Az elem hozzáadása a projekthez sikertelen", "Connect items to a project to make them easier to find" : "Kössön hozzá elemeket a projekthez, hogy könnyebben megtalálhatóak legyenek", "Type to search for existing projects" : "Gépeljen a meglévő projektet kereséséhez", - "New in" : "Új itt", + "New in" : "Újdonságok a következőben:", "View changelog" : "Változásnapló megtekintése", "No action available" : "Nincs elérhető művelet", "Error fetching contact actions" : "Hiba a kapcsolati műveletek lekérésekor", @@ -283,12 +418,13 @@ "Rename" : "Átnevezés", "Collaborative tags" : "Együttműködési címkék", "No tags found" : "Nem találhatók címkék", - "Clipboard not available, please copy manually" : "A vágólap nem érhető el. Másolja át kézileg.", + "Clipboard not available, please copy manually" : "A vágólap nem érhető el, másolja kézileg", "Personal" : "Személyes", "Accounts" : "Fiókok", "Admin" : "Rendszergazda", "Help" : "Súgó", "Access forbidden" : "A hozzáférés nem engedélyezett", + "You are not allowed to access this page." : "Nem férhet hozzá ehhez az oldalhoz.", "Back to %s" : "Vissza ide %s", "Page not found" : "Az oldal nem található", "The page could not be found on the server or you may not be allowed to view it." : "Az oldal nem található a kiszolgálón, vagy lehet, hogy nincs engedélye arra, hogy megnézze.", @@ -300,7 +436,7 @@ "If this happens again, please send the technical details below to the server administrator." : "Ha ez még egyszer előfordul küldd el az alábbi technikai részleteket a rendszergazdának.", "More details can be found in the server log." : "További részletek találhatók a kiszolgáló naplójában.", "For more details see the documentation ↗." : "További részletekért nézze meg a dokumentációt ↗.", - "Technical details" : "Technikai adatok", + "Technical details" : "Műszaki adatok", "Remote Address: %s" : "Távoli cím: %s", "Request ID: %s" : "Kérésazonosító: %s", "Type: %s" : "Típus: %s", @@ -336,7 +472,7 @@ "Password sent!" : "Jelszó elküldve.", "You are not authorized to request a password for this share" : "Nincs jogosultsága, hogy jelszót kérjen ehhez a megosztáshoz", "Two-factor authentication" : "Kétfaktoros hitelesítés", - "Enhanced security is enabled for your account. Choose a second factor for authentication:" : "A fokozott biztonság engedélyezett a fiókja számára. Válasszon egy második faktort a hitelesítéshez.", + "Enhanced security is enabled for your account. Choose a second factor for authentication:" : "A fokozott biztonság engedélyezett a fiókja számára. Válasszon egy második faktort a hitelesítéshez:", "Could not load at least one of your enabled two-factor auth methods. Please contact your admin." : "Nem lehet betölteni legalább egy engedélyezett kétfaktoros hitelesítési módot. Lépjen kapcsolatba a rendszergazdával.", "Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance." : "A kétfaktoros hitelesítés kötelező, de még nem lett beállítva a fiókjához. Segítségért lépjen kapcsolatba a rendszergazdával.", "Two-factor authentication is enforced but has not been configured on your account. Please continue to setup two-factor authentication." : "A kétfaktoros hitelesítés be van tartatva, de nincs beállítva a fiókján. Folytassa a kétfaktoros hitelesítés beállításával.", @@ -366,7 +502,7 @@ "Maintenance mode" : "Karbantartási üzemmód", "This %s instance is currently in maintenance mode, which may take a while." : "Ez a %s példány éppen karbantartási üzemmódban van, amely eltarthat egy darabig.", "This page will refresh itself when the instance is available again." : "Ez az oldal frissíteni fogja magát, amint a példány ismét elérhető lesz.", - "Contact your system administrator if this message persists or appeared unexpectedly." : "Ha ez az üzenet mindig vagy váratlanul megjelenik, akkor keresse fel a rendszergazdáját!", + "Contact your system administrator if this message persists or appeared unexpectedly." : "Ha ez az üzenet mindig vagy váratlanul megjelenik, akkor keresse fel a rendszergazdáját.", "Chatting, video calls, screensharing, online meetings and web conferencing – in your browser and with mobile apps." : "Csevegés, videóhívások, képernyőmegosztás, online megbeszélések és webes konferencia – a böngészőjében és mobilalkalmazásokkal.", "You have not added any info yet" : "Még nem adott meg semmilyen információt", "{user} has not added any info yet" : "{user} még nem adott meg semmilyen információt", diff --git a/core/l10n/tr.js b/core/l10n/tr.js index ab89ca6ef6b..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", @@ -64,24 +65,141 @@ OC.L10N.register( "Enter your subscription key in the support app in order to increase the account limit. This does also grant you all additional benefits that Nextcloud Enterprise offers and is highly recommended for the operation in companies." : "Hesap sayısı sınırını artırmak için destek uygulamasına abonelik kodunuzu yazın. Bu ayrıca size Nextcloud Enterprise sürümünün sunduğu ve kurumsal operasyonlar için önemle önerilen tüm ek faydaları sağlar.", "Learn more ↗" : "Ayrıntılı bilgi alın ↗", "Preparing update" : "Güncelleme hazırlanıyor", - "Please use the command line updater because updating via browser is disabled in your config.php." : "Tarayıcı üzerinden güncelleme config.php dosyasında devre dışı bırakılmış olduğundan, komut satırı güncelleyicisini kullanın.", + "Please use the command line updater because updating via browser is disabled in your config.php." : "Tarayıcı üzerinden güncelleme özelliği config.php dosyasından kapatılmış olduğundan, komut satırı güncelleyicisini kullanın.", "Turned on maintenance mode" : "Bakım kipi açıldı", "Turned off maintenance mode" : "Bakım kipi kapatıldı", "Maintenance mode is kept active" : "Bakım kipi kullanımda tutuldu", - "Updating database schema" : "Veritabanı şeması güncelleniyor", - "Updated database" : "Veritabanı güncellendi", + "Updating database schema" : "Veri tabanı şeması güncelleniyor", + "Updated database" : "Veri tabanı güncellendi", "Update app \"%s\" from App Store" : "Uygulama mağazasından \"%s\" uygulamasını güncelle", - "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "%s için veritabanı şeması güncellemesi denetleniyor (veri tabanının büyüklüğüne bağlı olarak uzun sürebilir)", + "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "%s için veri tabanı şeması güncellemesi denetleniyor (veri tabanının büyüklüğüne bağlı olarak uzun sürebilir)", "Updated \"%1$s\" to %2$s" : "\"%1$s\", %2$s sürümüne güncellendi", "Set log level to debug" : "Günlük kaydı düzeyi hata ayıklama olarak ayarlanıyor", "Reset log level" : "Günlük kaydı düzeyi sıfırlanıyor", "Starting code integrity check" : "Kod bütünlüğü sınaması başlatılıyor", "Finished code integrity check" : "Kod bütünlüğü sınaması tamamlandı", "%s (incompatible)" : "%s (uyumsuz)", - "The following apps have been disabled: %s" : "Şu uygulamalar devre dışı bırakıldı: %s", + "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", - "PNG image" : "PNG Görseli", + "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", @@ -143,7 +261,7 @@ OC.L10N.register( "Logging in …" : "Oturum açılıyor …", "Log in to {productName}" : "{productName} oturumu aç", "Wrong login or password." : "Hatalı kullanıcı adı ya da parolası.", - "This account is disabled" : "Bu hesap devre dışı bırakılmış", + "This account is disabled" : "Bu hesap kullanımdan kaldırılmış", "We have detected multiple invalid login attempts from your IP. Therefore your next login is throttled up to 30 seconds." : "IP adresinizden yapılan birden çok geçersiz oturum açma girişimi algılandı. Bu nedenle oturum açmanız 30 saniye süreyle engellendi.", "Account name or email" : "Hesap adı ya da e-posta adresi", "Account name" : "Hesap adı", @@ -173,7 +291,7 @@ OC.L10N.register( "Schedule work & meetings, synced with all your devices." : "İşlerinizi ve toplantılarınızı planlayın ve tüm aygıtlarınızla eşitleyin.", "Keep your colleagues and friends in one place without leaking their private info." : "İş arkadaşlarınızın ve tanıdıklarınızın kayıtlarını kişisel bilgilerini sızdırmadan tek bir yerde tutun.", "Simple email app nicely integrated with Files, Contacts and Calendar." : "Dosyalar, Kişiler ve Takvim uygulamaları ile bir arada çalışan basit bir e-posta uygulaması.", - "Chatting, video calls, screen sharing, online meetings and web conferencing – in your browser and with mobile apps." : "Sohbet, görüntülü çağrı, ekran paylaşımı, çevrim içi toplantılar ve internet görüşmeleri - masaüstü ve mobil için uygulamalar.", + "Chatting, video calls, screen sharing, online meetings and web conferencing – in your browser and with mobile apps." : "Sohbet, görüntülü çağrı, ekran paylaşımı, çevrim içi toplantılar ve internet görüşmeleri. Bilgisayar ve mobil aygıtlar için uygulamalar.", "Collaborative documents, spreadsheets and presentations, built on Collabora Online." : "Collabora Online üzerinde hazırlanmış iş birlikli çalışma belgeleri, hesap tabloları ve sunumlar.", "Distraction free note taking app." : "Dikkatinizi dağıtmayan not alma uygulaması.", "Recommended apps" : "Önerilen uygulamalar", @@ -207,9 +325,14 @@ OC.L10N.register( "Forgot password?" : "Parolamı unuttum", "Back to login form" : "Oturum açma formuna dön", "Back" : "Geri", - "Login form is disabled." : "Oturum açma formu devre dışı bırakılmış.", - "The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "Nextcloud oturum açma formu devre dışı bırakılmış. Varsa başka bir oturum açma seçeneğini kullanın ya da yöneticiniz ile görüşün.", + "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", @@ -225,22 +348,22 @@ OC.L10N.register( "Create administration account" : "Yönetici hesabı oluştur", "Administration account name" : "Yönetici hesabı kullanıcı adı", "Administration account password" : "Yönetici hesabı parolası", - "Storage & database" : "Depolama ve veritabanı", + "Storage & database" : "Depolama alanı ve veri tabanı", "Data folder" : "Veri klasörü", - "Database configuration" : "Veritabanı yapılandırması", + "Database configuration" : "Veri tabanı yapılandırması", "Only {firstAndOnlyDatabase} is available." : "Yalnızca {firstAndOnlyDatabase} kullanılabilir.", - "Install and activate additional PHP modules to choose other database types." : "Diğer veritabanı türlerini seçebilmek için ek PHP modüllerini kurun ve etkinleştirin.", + "Install and activate additional PHP modules to choose other database types." : "Diğer veri tabanı türlerini seçebilmek için ek PHP modüllerini kurun ve etkinleştirin.", "For more details check out the documentation." : "Ayrıntılı bilgi almak için belgelere bakabilirsiniz.", "Performance warning" : "Başarım uyarısı", - "You chose SQLite as database." : "Veritabanı olarak SQLite seçtiniz.", - "SQLite should only be used for minimal and development instances. For production we recommend a different database backend." : "SQLite yalnızca küçük ve geliştirme ortamları için seçilmelidir. Üretim ortamları için farklı bir veritabanı kullanmanız önerilir.", + "You chose SQLite as database." : "Veri tabanı olarak SQLite seçtiniz.", + "SQLite should only be used for minimal and development instances. For production we recommend a different database backend." : "SQLite yalnızca küçük ve geliştirme ortamları için seçilmelidir. Üretim ortamları için farklı bir veri tabanı kullanmanız önerilir.", "If you use clients for file syncing, the use of SQLite is highly discouraged." : "Dosya eşitlemesi için istemcileri kullanıyorsanız SQLite kullanımından kaçınmalısınız.", - "Database user" : "Veritabanı kullanıcı adı", - "Database password" : "Veritabanı parolası", - "Database name" : "Veritabanı adı", - "Database tablespace" : "Veritabanı tablo alanı", + "Database user" : "Veri tabanı kullanıcı adı", + "Database password" : "Veri tabanı parolası", + "Database name" : "Veri tabanı adı", + "Database tablespace" : "Veri tabanı tablo alanı", "Please specify the port number along with the host name (e.g., localhost:5432)." : "Lütfen sunucu adının yanında bağlantı noktasını da belirtin (Örnek: localhost:5432).", - "Database host" : "Veritabanı sunucusu", + "Database host" : "Veri tabanı sunucusu", "localhost" : "localhost", "Installing …" : "Kuruluyor…", "Install" : "Kur", @@ -272,7 +395,7 @@ OC.L10N.register( "({count} selected)" : "({count} seçilmiş)", "Error loading file exists template" : "Dosya var kalıbı yüklenirken sorun çıktı", "Saving …" : "Kaydediliyor …", - "seconds ago" : "saniyeler önce", + "seconds ago" : "saniye önce", "Connection to server lost" : "Sunucu bağlantısı kesildi", "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Sayfa yüklenirken bir sorun çıktı. %n saniye sonra yeniden yüklenecek","Sayfa yüklenirken bir sorun çıktı. %n saniye sonra yeniden yüklenecek"], "Add to a project" : "Bir projeye ekle", @@ -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.", @@ -350,15 +474,15 @@ OC.L10N.register( "Password sent!" : "Parola gönderildi!", "You are not authorized to request a password for this share" : "Bu paylaşım için parola isteğinde bulunma izniniz yok", "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 aşama seçin:", - "Could not load at least one of your enabled two-factor auth methods. Please contact your admin." : "Etkinleştirilmiş 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.", + "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ı 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.", @@ -366,9 +490,9 @@ OC.L10N.register( "App update required" : "Uygulamanın güncellenmesi gerekli", "%1$s will be updated to version %2$s" : "%1$s, %2$s sürümüne güncellenecek", "The following apps will be updated:" : "Şu uygulamalar güncellenecek:", - "These incompatible apps will be disabled:" : "Şu uyumsuz uygulamalar devre dışı bırakılacak:", - "The theme %s has been disabled." : "%s teması devre dışı bırakıldı.", - "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "İlerlemeden önce lütfen veritabanı, yapılandırma klasörü ve veri klasörünün yedeklenmiş olduğundan emin olun.", + "These incompatible apps will be disabled:" : "Şu uyumsuz uygulamalar kullanımdan kaldırılacak:", + "The theme %s has been disabled." : "%s teması kullanımdan kaldırıldı.", + "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "İlerlemeden önce lütfen veri tabanı, yapılandırma klasörü ve veri klasörünün yedeklenmiş olduğundan emin olun.", "Start update" : "Güncellemeyi başlat", "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Daha büyük kurulumlarda zaman aşımlarının önüne geçmek için, kurulum klasörünüzden şu komutu da çalıştırabilirsiniz:", "Detailed logs" : "Ayrıntılı günlükler", @@ -381,7 +505,7 @@ OC.L10N.register( "This %s instance is currently in maintenance mode, which may take a while." : "Bu %s kopyası şu anda bakım kipinde, bu işlem biraz zaman alabilir.", "This page will refresh itself when the instance is available again." : "Sistem yeniden kullanılabilir olduğunda bu sayfa kendiliğinden yenilenecek", "Contact your system administrator if this message persists or appeared unexpectedly." : "Bu ileti görüntülenmeyi sürdürüyor ya da beklenmedik şekilde ortaya çıkıyorsa BT yöneticiniz ile görüşün.", - "Chatting, video calls, screensharing, online meetings and web conferencing – in your browser and with mobile apps." : "Sohbet, görüntülü çağrı, ekran paylaşımı, çevrim içi toplantılar ve internet görüşmeleri - masaüstü ve mobil için uygulamalar.", + "Chatting, video calls, screensharing, online meetings and web conferencing – in your browser and with mobile apps." : "Sohbet, görüntülü çağrı, ekran paylaşımı, çevrim içi toplantılar ve internet görüşmeleri. Bilgisayar ve mobil aygıtlar için uygulamalar.", "You have not added any info yet" : "Henüz herhangi bir bilgi eklememişsiniz", "{user} has not added any info yet" : "{user} henüz herhangi bir bilgi eklememiş", "Error opening the user status modal, try hard refreshing the page" : "Üste açılan kullanıcı durumu penceresinde sorun çıktı. Sayfası temizleyerek yenilemeyi deneyin ", @@ -403,6 +527,6 @@ OC.L10N.register( "Toggle password visibility" : "Parolayı görüntüle/gizle", "Configure the database" : "Veri tabanını yapılandır", "Only %s is available." : "Yalnızca %s kullanılabilir.", - "Database account" : "Veritabanı hesabı" + "Database account" : "Veri tabanı hesabı" }, "nplurals=2; plural=(n > 1);"); diff --git a/core/l10n/tr.json b/core/l10n/tr.json index 656bfa01926..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", @@ -62,24 +63,141 @@ "Enter your subscription key in the support app in order to increase the account limit. This does also grant you all additional benefits that Nextcloud Enterprise offers and is highly recommended for the operation in companies." : "Hesap sayısı sınırını artırmak için destek uygulamasına abonelik kodunuzu yazın. Bu ayrıca size Nextcloud Enterprise sürümünün sunduğu ve kurumsal operasyonlar için önemle önerilen tüm ek faydaları sağlar.", "Learn more ↗" : "Ayrıntılı bilgi alın ↗", "Preparing update" : "Güncelleme hazırlanıyor", - "Please use the command line updater because updating via browser is disabled in your config.php." : "Tarayıcı üzerinden güncelleme config.php dosyasında devre dışı bırakılmış olduğundan, komut satırı güncelleyicisini kullanın.", + "Please use the command line updater because updating via browser is disabled in your config.php." : "Tarayıcı üzerinden güncelleme özelliği config.php dosyasından kapatılmış olduğundan, komut satırı güncelleyicisini kullanın.", "Turned on maintenance mode" : "Bakım kipi açıldı", "Turned off maintenance mode" : "Bakım kipi kapatıldı", "Maintenance mode is kept active" : "Bakım kipi kullanımda tutuldu", - "Updating database schema" : "Veritabanı şeması güncelleniyor", - "Updated database" : "Veritabanı güncellendi", + "Updating database schema" : "Veri tabanı şeması güncelleniyor", + "Updated database" : "Veri tabanı güncellendi", "Update app \"%s\" from App Store" : "Uygulama mağazasından \"%s\" uygulamasını güncelle", - "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "%s için veritabanı şeması güncellemesi denetleniyor (veri tabanının büyüklüğüne bağlı olarak uzun sürebilir)", + "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "%s için veri tabanı şeması güncellemesi denetleniyor (veri tabanının büyüklüğüne bağlı olarak uzun sürebilir)", "Updated \"%1$s\" to %2$s" : "\"%1$s\", %2$s sürümüne güncellendi", "Set log level to debug" : "Günlük kaydı düzeyi hata ayıklama olarak ayarlanıyor", "Reset log level" : "Günlük kaydı düzeyi sıfırlanıyor", "Starting code integrity check" : "Kod bütünlüğü sınaması başlatılıyor", "Finished code integrity check" : "Kod bütünlüğü sınaması tamamlandı", "%s (incompatible)" : "%s (uyumsuz)", - "The following apps have been disabled: %s" : "Şu uygulamalar devre dışı bırakıldı: %s", + "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", - "PNG image" : "PNG Görseli", + "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", @@ -141,7 +259,7 @@ "Logging in …" : "Oturum açılıyor …", "Log in to {productName}" : "{productName} oturumu aç", "Wrong login or password." : "Hatalı kullanıcı adı ya da parolası.", - "This account is disabled" : "Bu hesap devre dışı bırakılmış", + "This account is disabled" : "Bu hesap kullanımdan kaldırılmış", "We have detected multiple invalid login attempts from your IP. Therefore your next login is throttled up to 30 seconds." : "IP adresinizden yapılan birden çok geçersiz oturum açma girişimi algılandı. Bu nedenle oturum açmanız 30 saniye süreyle engellendi.", "Account name or email" : "Hesap adı ya da e-posta adresi", "Account name" : "Hesap adı", @@ -171,7 +289,7 @@ "Schedule work & meetings, synced with all your devices." : "İşlerinizi ve toplantılarınızı planlayın ve tüm aygıtlarınızla eşitleyin.", "Keep your colleagues and friends in one place without leaking their private info." : "İş arkadaşlarınızın ve tanıdıklarınızın kayıtlarını kişisel bilgilerini sızdırmadan tek bir yerde tutun.", "Simple email app nicely integrated with Files, Contacts and Calendar." : "Dosyalar, Kişiler ve Takvim uygulamaları ile bir arada çalışan basit bir e-posta uygulaması.", - "Chatting, video calls, screen sharing, online meetings and web conferencing – in your browser and with mobile apps." : "Sohbet, görüntülü çağrı, ekran paylaşımı, çevrim içi toplantılar ve internet görüşmeleri - masaüstü ve mobil için uygulamalar.", + "Chatting, video calls, screen sharing, online meetings and web conferencing – in your browser and with mobile apps." : "Sohbet, görüntülü çağrı, ekran paylaşımı, çevrim içi toplantılar ve internet görüşmeleri. Bilgisayar ve mobil aygıtlar için uygulamalar.", "Collaborative documents, spreadsheets and presentations, built on Collabora Online." : "Collabora Online üzerinde hazırlanmış iş birlikli çalışma belgeleri, hesap tabloları ve sunumlar.", "Distraction free note taking app." : "Dikkatinizi dağıtmayan not alma uygulaması.", "Recommended apps" : "Önerilen uygulamalar", @@ -205,9 +323,14 @@ "Forgot password?" : "Parolamı unuttum", "Back to login form" : "Oturum açma formuna dön", "Back" : "Geri", - "Login form is disabled." : "Oturum açma formu devre dışı bırakılmış.", - "The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "Nextcloud oturum açma formu devre dışı bırakılmış. Varsa başka bir oturum açma seçeneğini kullanın ya da yöneticiniz ile görüşün.", + "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", @@ -223,22 +346,22 @@ "Create administration account" : "Yönetici hesabı oluştur", "Administration account name" : "Yönetici hesabı kullanıcı adı", "Administration account password" : "Yönetici hesabı parolası", - "Storage & database" : "Depolama ve veritabanı", + "Storage & database" : "Depolama alanı ve veri tabanı", "Data folder" : "Veri klasörü", - "Database configuration" : "Veritabanı yapılandırması", + "Database configuration" : "Veri tabanı yapılandırması", "Only {firstAndOnlyDatabase} is available." : "Yalnızca {firstAndOnlyDatabase} kullanılabilir.", - "Install and activate additional PHP modules to choose other database types." : "Diğer veritabanı türlerini seçebilmek için ek PHP modüllerini kurun ve etkinleştirin.", + "Install and activate additional PHP modules to choose other database types." : "Diğer veri tabanı türlerini seçebilmek için ek PHP modüllerini kurun ve etkinleştirin.", "For more details check out the documentation." : "Ayrıntılı bilgi almak için belgelere bakabilirsiniz.", "Performance warning" : "Başarım uyarısı", - "You chose SQLite as database." : "Veritabanı olarak SQLite seçtiniz.", - "SQLite should only be used for minimal and development instances. For production we recommend a different database backend." : "SQLite yalnızca küçük ve geliştirme ortamları için seçilmelidir. Üretim ortamları için farklı bir veritabanı kullanmanız önerilir.", + "You chose SQLite as database." : "Veri tabanı olarak SQLite seçtiniz.", + "SQLite should only be used for minimal and development instances. For production we recommend a different database backend." : "SQLite yalnızca küçük ve geliştirme ortamları için seçilmelidir. Üretim ortamları için farklı bir veri tabanı kullanmanız önerilir.", "If you use clients for file syncing, the use of SQLite is highly discouraged." : "Dosya eşitlemesi için istemcileri kullanıyorsanız SQLite kullanımından kaçınmalısınız.", - "Database user" : "Veritabanı kullanıcı adı", - "Database password" : "Veritabanı parolası", - "Database name" : "Veritabanı adı", - "Database tablespace" : "Veritabanı tablo alanı", + "Database user" : "Veri tabanı kullanıcı adı", + "Database password" : "Veri tabanı parolası", + "Database name" : "Veri tabanı adı", + "Database tablespace" : "Veri tabanı tablo alanı", "Please specify the port number along with the host name (e.g., localhost:5432)." : "Lütfen sunucu adının yanında bağlantı noktasını da belirtin (Örnek: localhost:5432).", - "Database host" : "Veritabanı sunucusu", + "Database host" : "Veri tabanı sunucusu", "localhost" : "localhost", "Installing …" : "Kuruluyor…", "Install" : "Kur", @@ -270,7 +393,7 @@ "({count} selected)" : "({count} seçilmiş)", "Error loading file exists template" : "Dosya var kalıbı yüklenirken sorun çıktı", "Saving …" : "Kaydediliyor …", - "seconds ago" : "saniyeler önce", + "seconds ago" : "saniye önce", "Connection to server lost" : "Sunucu bağlantısı kesildi", "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Sayfa yüklenirken bir sorun çıktı. %n saniye sonra yeniden yüklenecek","Sayfa yüklenirken bir sorun çıktı. %n saniye sonra yeniden yüklenecek"], "Add to a project" : "Bir projeye ekle", @@ -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.", @@ -348,15 +472,15 @@ "Password sent!" : "Parola gönderildi!", "You are not authorized to request a password for this share" : "Bu paylaşım için parola isteğinde bulunma izniniz yok", "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 aşama seçin:", - "Could not load at least one of your enabled two-factor auth methods. Please contact your admin." : "Etkinleştirilmiş 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.", + "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ı 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.", @@ -364,9 +488,9 @@ "App update required" : "Uygulamanın güncellenmesi gerekli", "%1$s will be updated to version %2$s" : "%1$s, %2$s sürümüne güncellenecek", "The following apps will be updated:" : "Şu uygulamalar güncellenecek:", - "These incompatible apps will be disabled:" : "Şu uyumsuz uygulamalar devre dışı bırakılacak:", - "The theme %s has been disabled." : "%s teması devre dışı bırakıldı.", - "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "İlerlemeden önce lütfen veritabanı, yapılandırma klasörü ve veri klasörünün yedeklenmiş olduğundan emin olun.", + "These incompatible apps will be disabled:" : "Şu uyumsuz uygulamalar kullanımdan kaldırılacak:", + "The theme %s has been disabled." : "%s teması kullanımdan kaldırıldı.", + "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "İlerlemeden önce lütfen veri tabanı, yapılandırma klasörü ve veri klasörünün yedeklenmiş olduğundan emin olun.", "Start update" : "Güncellemeyi başlat", "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Daha büyük kurulumlarda zaman aşımlarının önüne geçmek için, kurulum klasörünüzden şu komutu da çalıştırabilirsiniz:", "Detailed logs" : "Ayrıntılı günlükler", @@ -379,7 +503,7 @@ "This %s instance is currently in maintenance mode, which may take a while." : "Bu %s kopyası şu anda bakım kipinde, bu işlem biraz zaman alabilir.", "This page will refresh itself when the instance is available again." : "Sistem yeniden kullanılabilir olduğunda bu sayfa kendiliğinden yenilenecek", "Contact your system administrator if this message persists or appeared unexpectedly." : "Bu ileti görüntülenmeyi sürdürüyor ya da beklenmedik şekilde ortaya çıkıyorsa BT yöneticiniz ile görüşün.", - "Chatting, video calls, screensharing, online meetings and web conferencing – in your browser and with mobile apps." : "Sohbet, görüntülü çağrı, ekran paylaşımı, çevrim içi toplantılar ve internet görüşmeleri - masaüstü ve mobil için uygulamalar.", + "Chatting, video calls, screensharing, online meetings and web conferencing – in your browser and with mobile apps." : "Sohbet, görüntülü çağrı, ekran paylaşımı, çevrim içi toplantılar ve internet görüşmeleri. Bilgisayar ve mobil aygıtlar için uygulamalar.", "You have not added any info yet" : "Henüz herhangi bir bilgi eklememişsiniz", "{user} has not added any info yet" : "{user} henüz herhangi bir bilgi eklememiş", "Error opening the user status modal, try hard refreshing the page" : "Üste açılan kullanıcı durumu penceresinde sorun çıktı. Sayfası temizleyerek yenilemeyi deneyin ", @@ -401,6 +525,6 @@ "Toggle password visibility" : "Parolayı görüntüle/gizle", "Configure the database" : "Veri tabanını yapılandır", "Only %s is available." : "Yalnızca %s kullanılabilir.", - "Database account" : "Veritabanı hesabı" + "Database account" : "Veri tabanı hesabı" },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file |